case Item::PT_GLOBAL:
$row['direction'] = ['direction' => 9, 'title' => DI::l10n()->t('Global')];
break;
- default:
- if ($row['uid'] == 0) {
- $row['direction'] = ['direction' => 9, 'title' => DI::l10n()->t('Global')];
- }
+ case Item::PT_RELAY:
+ $row['direction'] = ['direction' => 10, 'title' => DI::l10n()->t('Relay')];
+ break;
}
if (($row['gravity'] == GRAVITY_PARENT) && !$row['origin'] && ($row['author-id'] == $row['owner-id']) &&
$item['post-type'] = Item::PT_ARTICLE;
}
+ if (in_array($item['post-type'], [Item::PT_GLOBAL, Item::PT_ARTICLE]) && !empty($activity['from-relay'])) {
+ $item['post-type'] = Item::PT_RELAY;
+ }
+
if ($item['isForum'] ?? false) {
$item['contact-id'] = Contact::getIdForURL($activity['actor'], $receiver);
} else {
/**
* Fetches missing posts
*
- * @param string $url message URL
- * @param array $child activity array with the child of this message
+ * @param string $url message URL
+ * @param array $child activity array with the child of this message
+ * @param bool $relaymode Posts arrived via relay
* @return string fetched message URL
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
- public static function fetchMissingActivity(string $url, array $child = [])
+ public static function fetchMissingActivity(string $url, array $child = [], bool $relaymode = false)
{
if (!empty($child['receiver'])) {
$uid = ActivityPub\Receiver::getFirstUserFromReceivers($child['receiver']);
$ldactivity = JsonLD::compact($activity);
$ldactivity['thread-completion'] = true;
+ $ldactivity['from-relay'] = $relaymode;
ActivityPub\Receiver::processActivity($ldactivity, json_encode($activity), $uid, true, false, $signer);
return;
}
- Processor::fetchMissingActivity($object_id);
+ Processor::fetchMissingActivity($object_id, [], true);
$item_id = Item::searchByLink($object_id);
if ($item_id) {
$object_data['thread-completion'] = $activity['thread-completion'];
}
+ // Internal flag for posts that arrived via relay
+ if (!empty($activity['from-relay'])) {
+ $object_data['from-relay'] = $activity['from-relay'];
+ }
+
switch ($type) {
case 'as:Create':
if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
<i class="fa fa-share" aria-hidden="true" title="{{$direction.title}}"></i>
{{elseif $direction.direction == 9}}
<i class="fa fa-globe" aria-hidden="true" title="{{$direction.title}}"></i>
+ {{elseif $direction.direction == 10}}
+ <i class="fa fa-inbox" aria-hidden="true" title="{{$direction.title}}"></i>
{{/if}}
</span>
{{/if}}
<i class="icon-share" aria-hidden="true" title="{{$direction.title}}"></i>
{{elseif $direction.direction == 9}}
<i class="icon-globe" aria-hidden="true" title="{{$direction.title}}"></i>
+ {{elseif $direction.direction == 10}}
+ <i class="icon-inbox" aria-hidden="true" title="{{$direction.title}}"></i>
{{/if}}
</span>
{{/if}}