]> git.mxchange.org Git - friendica.git/blob - src/Protocol/ActivityPub/Receiver.php
058d210a24072d484d799a9ff2f4933e2c29cce3
[friendica.git] / src / Protocol / ActivityPub / Receiver.php
1 <?php
2 /**
3  * @file src/Protocol/ActivityPub/Receiver.php
4  */
5 namespace Friendica\Protocol\ActivityPub;
6
7 use Friendica\Database\DBA;
8 use Friendica\Core\Logger;
9 use Friendica\Core\Protocol;
10 use Friendica\Model\Contact;
11 use Friendica\Model\APContact;
12 use Friendica\Model\Conversation;
13 use Friendica\Model\Item;
14 use Friendica\Model\User;
15 use Friendica\Protocol\ActivityPub;
16 use Friendica\Util\DateTimeFormat;
17 use Friendica\Util\HTTPSignature;
18 use Friendica\Util\JsonLD;
19 use Friendica\Util\LDSignature;
20 use Friendica\Util\Strings;
21
22 /**
23  * @brief ActivityPub Receiver Protocol class
24  *
25  * To-Do:
26  * - Undo Announce
27  *
28  * Check what this is meant to do:
29  * - Add
30  * - Block
31  * - Flag
32  * - Remove
33  * - Undo Block
34  */
35 class Receiver
36 {
37         const PUBLIC_COLLECTION = 'as:Public';
38         const ACCOUNT_TYPES = ['as:Person', 'as:Organization', 'as:Service', 'as:Group', 'as:Application'];
39         const CONTENT_TYPES = ['as:Note', 'as:Article', 'as:Video', 'as:Image', 'as:Event'];
40         const ACTIVITY_TYPES = ['as:Like', 'as:Dislike', 'as:Accept', 'as:Reject', 'as:TentativeAccept'];
41
42         /**
43          * Checks if the web request is done for the AP protocol
44          *
45          * @return bool is it AP?
46          */
47         public static function isRequest()
48         {
49                 return stristr(defaults($_SERVER, 'HTTP_ACCEPT', ''), 'application/activity+json') ||
50                         stristr(defaults($_SERVER, 'HTTP_ACCEPT', ''), 'application/ld+json');
51         }
52
53         /**
54          * Checks incoming message from the inbox
55          *
56          * @param         $body
57          * @param         $header
58          * @param integer $uid User ID
59          * @throws \Exception
60          */
61         public static function processInbox($body, $header, $uid)
62         {
63                 $http_signer = HTTPSignature::getSigner($body, $header);
64                 if (empty($http_signer)) {
65                         Logger::warning('Invalid HTTP signature, message will be discarded.');
66                         return;
67                 } else {
68                         Logger::info('Valid HTTP signature', ['signer' => $http_signer]);
69                 }
70
71                 $activity = json_decode($body, true);
72
73                 if (empty($activity)) {
74                         Logger::warning('Invalid body.');
75                         return;
76                 }
77
78                 $ldactivity = JsonLD::compact($activity);
79
80                 $actor = JsonLD::fetchElement($ldactivity, 'as:actor', '@id');
81
82                 Logger::info('Message for user ' . $uid . ' is from actor ' . $actor);
83
84                 if (LDSignature::isSigned($activity)) {
85                         $ld_signer = LDSignature::getSigner($activity);
86                         if (empty($ld_signer)) {
87                                 Logger::log('Invalid JSON-LD signature from ' . $actor, Logger::DEBUG);
88                         }
89                         if (!empty($ld_signer && ($actor == $http_signer))) {
90                                 Logger::log('The HTTP and the JSON-LD signature belong to ' . $ld_signer, Logger::DEBUG);
91                                 $trust_source = true;
92                         } elseif (!empty($ld_signer)) {
93                                 Logger::log('JSON-LD signature is signed by ' . $ld_signer, Logger::DEBUG);
94                                 $trust_source = true;
95                         } elseif ($actor == $http_signer) {
96                                 Logger::log('Bad JSON-LD signature, but HTTP signer fits the actor.', Logger::DEBUG);
97                                 $trust_source = true;
98                         } else {
99                                 Logger::log('Invalid JSON-LD signature and the HTTP signer is different.', Logger::DEBUG);
100                                 $trust_source = false;
101                         }
102                 } elseif ($actor == $http_signer) {
103                         Logger::log('Trusting post without JSON-LD signature, The actor fits the HTTP signer.', Logger::DEBUG);
104                         $trust_source = true;
105                 } else {
106                         Logger::log('No JSON-LD signature, different actor.', Logger::DEBUG);
107                         $trust_source = false;
108                 }
109
110                 self::processActivity($ldactivity, $body, $uid, $trust_source);
111         }
112
113         /**
114          * Fetches the object type for a given object id
115          *
116          * @param array   $activity
117          * @param string  $object_id Object ID of the the provided object
118          * @param integer $uid       User ID
119          *
120          * @return string with object type
121          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
122          * @throws \ImagickException
123          */
124         private static function fetchObjectType($activity, $object_id, $uid = 0)
125         {
126                 if (!empty($activity['as:object'])) {
127                         $object_type = JsonLD::fetchElement($activity['as:object'], '@type');
128                         if (!empty($object_type)) {
129                                 return $object_type;
130                         }
131                 }
132
133                 if (Item::exists(['uri' => $object_id, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]])) {
134                         // We just assume "note" since it doesn't make a difference for the further processing
135                         return 'as:Note';
136                 }
137
138                 $profile = APContact::getByURL($object_id);
139                 if (!empty($profile['type'])) {
140                         return 'as:' . $profile['type'];
141                 }
142
143                 $data = ActivityPub::fetchContent($object_id, $uid);
144                 if (!empty($data)) {
145                         $object = JsonLD::compact($data);
146                         $type = JsonLD::fetchElement($object, '@type');
147                         if (!empty($type)) {
148                                 return $type;
149                         }
150                 }
151
152                 return null;
153         }
154
155         /**
156          * Prepare the object array
157          *
158          * @param array   $activity
159          * @param integer $uid User ID
160          * @param         $trust_source
161          *
162          * @return array with object data
163          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
164          * @throws \ImagickException
165          */
166         private static function prepareObjectData($activity, $uid, &$trust_source)
167         {
168                 $actor = JsonLD::fetchElement($activity, 'as:actor', '@id');
169                 if (empty($actor)) {
170                         Logger::log('Empty actor', Logger::DEBUG);
171                         return [];
172                 }
173
174                 $type = JsonLD::fetchElement($activity, '@type');
175
176                 // Fetch all receivers from to, cc, bto and bcc
177                 $receivers = self::getReceivers($activity, $actor);
178
179                 // When it is a delivery to a personal inbox we add that user to the receivers
180                 if (!empty($uid)) {
181                         $additional = ['uid:' . $uid => $uid];
182                         $receivers = array_merge($receivers, $additional);
183                 } else {
184                         // We possibly need some user to fetch private content,
185                         // so we fetch the first out ot the list.
186                         $uid = self::getFirstUserFromReceivers($receivers);
187                 }
188
189                 Logger::log('Receivers: ' . $uid . ' - ' . json_encode($receivers), Logger::DEBUG);
190
191                 $object_id = JsonLD::fetchElement($activity, 'as:object', '@id');
192                 if (empty($object_id)) {
193                         Logger::log('No object found', Logger::DEBUG);
194                         return [];
195                 }
196
197                 if (!is_string($object_id)) {
198                         Logger::info('Invalid object id', ['object' => $object_id]);
199                         return [];
200                 }
201
202                 $object_type = self::fetchObjectType($activity, $object_id, $uid);
203
204                 // Fetch the content only on activities where this matters
205                 if (in_array($type, ['as:Create', 'as:Update', 'as:Announce'])) {
206                         if ($type == 'as:Announce') {
207                                 $trust_source = false;
208                         }
209                         $object_data = self::fetchObject($object_id, $activity['as:object'], $trust_source, $uid);
210                         if (empty($object_data)) {
211                                 Logger::log("Object data couldn't be processed", Logger::DEBUG);
212                                 return [];
213                         }
214                         $object_data['object_id'] = $object_id;
215
216                         // Test if it is an answer to a mail
217                         if (DBA::exists('mail', ['uri' => $object_data['reply-to-id']])) {
218                                 $object_data['directmessage'] = true;
219                         } else {
220                                 $object_data['directmessage'] = JsonLD::fetchElement($activity, 'litepub:directMessage');
221                         }
222
223                         // We had been able to retrieve the object data - so we can trust the source
224                         $trust_source = true;
225                 } elseif (in_array($type, array_merge(self::ACTIVITY_TYPES, ['as:Follow'])) && in_array($object_type, self::CONTENT_TYPES)) {
226                         // Create a mostly empty array out of the activity data (instead of the object).
227                         // This way we later don't have to check for the existence of ech individual array element.
228                         $object_data = self::processObject($activity);
229                         $object_data['name'] = $type;
230                         $object_data['author'] = JsonLD::fetchElement($activity, 'as:actor', '@id');
231                         $object_data['object_id'] = $object_id;
232                         $object_data['object_type'] = ''; // Since we don't fetch the object, we don't know the type
233                 } elseif (in_array($type, ['as:Add'])) {
234                         $object_data = [];
235                         $object_data['id'] = JsonLD::fetchElement($activity, '@id');
236                         $object_data['target_id'] = JsonLD::fetchElement($activity, 'as:target', '@id');
237                         $object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object', '@id');
238                         $object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
239                         $object_data['object_content'] = JsonLD::fetchElement($activity['as:object'], 'as:content', '@type');
240                 } else {
241                         $object_data = [];
242                         $object_data['id'] = JsonLD::fetchElement($activity, '@id');
243                         $object_data['object_id'] = JsonLD::fetchElement($activity, 'as:object', '@id');
244                         $object_data['object_actor'] = JsonLD::fetchElement($activity['as:object'], 'as:actor', '@id');
245                         $object_data['object_object'] = JsonLD::fetchElement($activity['as:object'], 'as:object');
246                         $object_data['object_type'] = JsonLD::fetchElement($activity['as:object'], '@type');
247
248                         // An Undo is done on the object of an object, so we need that type as well
249                         if ($type == 'as:Undo') {
250                                 $object_data['object_object_type'] = self::fetchObjectType([], $object_data['object_object'], $uid);
251                         }
252                 }
253
254                 $object_data = self::addActivityFields($object_data, $activity);
255
256                 if (empty($object_data['object_type'])) {
257                         $object_data['object_type'] = $object_type;
258                 }
259
260                 $object_data['type'] = $type;
261                 $object_data['actor'] = $actor;
262                 $object_data['item_receiver'] = $receivers;
263                 $object_data['receiver'] = array_merge(defaults($object_data, 'receiver', []), $receivers);
264
265                 Logger::log('Processing ' . $object_data['type'] . ' ' . $object_data['object_type'] . ' ' . $object_data['id'], Logger::DEBUG);
266
267                 return $object_data;
268         }
269
270         /**
271          * Fetches the first user id from the receiver array
272          *
273          * @param array $receivers Array with receivers
274          * @return integer user id;
275          */
276         public static function getFirstUserFromReceivers($receivers)
277         {
278                 foreach ($receivers as $receiver) {
279                         if (!empty($receiver)) {
280                                 return $receiver;
281                         }
282                 }
283                 return 0;
284         }
285
286         /**
287          * Store the unprocessed data into the conversation table
288          * This has to be done outside the regular function,
289          * since we store everything - not only item posts.
290          *
291          * @param array  $activity Array with activity data
292          * @param string $body     The raw message
293          * @throws \Exception
294          */
295         private static function storeConversation($activity, $body)
296         {
297                 if (empty($body) || empty($activity['id'])) {
298                         return;
299                 }
300
301                 $conversation = [
302                         'protocol' => Conversation::PARCEL_ACTIVITYPUB,
303                         'item-uri' => $activity['id'],
304                         'reply-to-uri' => defaults($activity, 'reply-to-id', ''),
305                         'conversation-href' => defaults($activity, 'context', ''),
306                         'conversation-uri' => defaults($activity, 'conversation', ''),
307                         'source' => $body,
308                         'received' => DateTimeFormat::utcNow()];
309
310                 DBA::insert('conversation', $conversation, true);
311         }
312
313         /**
314          * Processes the activity object
315          *
316          * @param array   $activity     Array with activity data
317          * @param string  $body
318          * @param integer $uid          User ID
319          * @param boolean $trust_source Do we trust the source?
320          * @throws \Exception
321          */
322         public static function processActivity($activity, $body = '', $uid = null, $trust_source = false)
323         {
324                 $type = JsonLD::fetchElement($activity, '@type');
325                 if (!$type) {
326                         Logger::log('Empty type', Logger::DEBUG);
327                         return;
328                 }
329
330                 if (!JsonLD::fetchElement($activity, 'as:object', '@id')) {
331                         Logger::log('Empty object', Logger::DEBUG);
332                         return;
333                 }
334
335                 if (!JsonLD::fetchElement($activity, 'as:actor', '@id')) {
336                         Logger::log('Empty actor', Logger::DEBUG);
337                         return;
338
339                 }
340
341                 // Don't trust the source if "actor" differs from "attributedTo". The content could be forged.
342                 if ($trust_source && ($type == 'as:Create') && is_array($activity['as:object'])) {
343                         $actor = JsonLD::fetchElement($activity, 'as:actor', '@id');
344                         $attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo', '@id');
345                         $trust_source = ($actor == $attributed_to);
346                         if (!$trust_source) {
347                                 Logger::log('Not trusting actor: ' . $actor . '. It differs from attributedTo: ' . $attributed_to, Logger::DEBUG);
348                         }
349                 }
350
351                 // $trust_source is called by reference and is set to true if the content was retrieved successfully
352                 $object_data = self::prepareObjectData($activity, $uid, $trust_source);
353                 if (empty($object_data)) {
354                         Logger::log('No object data found', Logger::DEBUG);
355                         return;
356                 }
357
358                 if (!$trust_source) {
359                         Logger::log('No trust for activity type "' . $type . '", so we quit now.', Logger::DEBUG);
360                         return;
361                 }
362
363                 // Only store content related stuff - and no announces, since they possibly overwrite the original content
364                 if (in_array($object_data['object_type'], self::CONTENT_TYPES) && ($type != 'as:Announce')) {
365                         self::storeConversation($object_data, $body);
366                 }
367
368                 // Internal flag for thread completion. See Processor.php
369                 if (!empty($activity['thread-completion'])) {
370                         $object_data['thread-completion'] = $activity['thread-completion'];
371                 }
372
373                 switch ($type) {
374                         case 'as:Create':
375                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
376                                         ActivityPub\Processor::createItem($object_data);
377                                 }
378                                 break;
379
380                         case 'as:Add':
381                                 if ($object_data['object_type'] == 'as:tag') {
382                                         ActivityPub\Processor::addTag($object_data);
383                                 }
384                                 break;
385
386                         case 'as:Announce':
387                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
388                                         $profile = APContact::getByURL($object_data['actor']);
389                                         // Reshared posts from persons appear as summary at the bottom
390                                         // If this isn't set, then a single reshare appears on top. This is used for groups.
391                                         $object_data['thread-completion'] = ($profile['type'] != 'Group');
392
393                                         ActivityPub\Processor::createItem($object_data);
394
395                                         // Add the bottom reshare information only for persons
396                                         if ($profile['type'] != 'Group') {
397                                                 $announce_object_data = self::processObject($activity);
398                                                 $announce_object_data['name'] = $type;
399                                                 $announce_object_data['author'] = JsonLD::fetchElement($activity, 'as:actor', '@id');
400                                                 $announce_object_data['object_id'] = $object_data['object_id'];
401                                                 $announce_object_data['object_type'] = $object_data['object_type'];
402
403                                                 ActivityPub\Processor::createActivity($announce_object_data, ACTIVITY2_ANNOUNCE);
404                                         }
405                                 }
406                                 break;
407
408                         case 'as:Like':
409                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
410                                         ActivityPub\Processor::createActivity($object_data, ACTIVITY_LIKE);
411                                 }
412                                 break;
413
414                         case 'as:Dislike':
415                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
416                                         ActivityPub\Processor::createActivity($object_data, ACTIVITY_DISLIKE);
417                                 }
418                                 break;
419
420                         case 'as:TentativeAccept':
421                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
422                                         ActivityPub\Processor::createActivity($object_data, ACTIVITY_ATTENDMAYBE);
423                                 }
424                                 break;
425
426                         case 'as:Update':
427                                 if (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
428                                         ActivityPub\Processor::updateItem($object_data);
429                                 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
430                                         ActivityPub\Processor::updatePerson($object_data);
431                                 }
432                                 break;
433
434                         case 'as:Delete':
435                                 if ($object_data['object_type'] == 'as:Tombstone') {
436                                         ActivityPub\Processor::deleteItem($object_data);
437                                 } elseif (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
438                                         ActivityPub\Processor::deletePerson($object_data);
439                                 }
440                                 break;
441
442                         case 'as:Follow':
443                                 if (in_array($object_data['object_type'], self::ACCOUNT_TYPES)) {
444                                         ActivityPub\Processor::followUser($object_data);
445                                 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
446                                         $object_data['reply-to-id'] = $object_data['object_id'];
447                                         ActivityPub\Processor::createActivity($object_data, ACTIVITY_FOLLOW);
448                                 }
449                                 break;
450
451                         case 'as:Accept':
452                                 if ($object_data['object_type'] == 'as:Follow') {
453                                         ActivityPub\Processor::acceptFollowUser($object_data);
454                                 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
455                                         ActivityPub\Processor::createActivity($object_data, ACTIVITY_ATTEND);
456                                 }
457                                 break;
458
459                         case 'as:Reject':
460                                 if ($object_data['object_type'] == 'as:Follow') {
461                                         ActivityPub\Processor::rejectFollowUser($object_data);
462                                 } elseif (in_array($object_data['object_type'], self::CONTENT_TYPES)) {
463                                         ActivityPub\Processor::createActivity($object_data, ACTIVITY_ATTENDNO);
464                                 }
465                                 break;
466
467                         case 'as:Undo':
468                                 if (($object_data['object_type'] == 'as:Follow') &&
469                                         in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
470                                         ActivityPub\Processor::undoFollowUser($object_data);
471                                 } elseif (($object_data['object_type'] == 'as:Accept') &&
472                                         in_array($object_data['object_object_type'], self::ACCOUNT_TYPES)) {
473                                         ActivityPub\Processor::rejectFollowUser($object_data);
474                                 } elseif (in_array($object_data['object_type'], self::ACTIVITY_TYPES) &&
475                                         in_array($object_data['object_object_type'], self::CONTENT_TYPES)) {
476                                         ActivityPub\Processor::undoActivity($object_data);
477                                 }
478                                 break;
479
480                         default:
481                                 Logger::log('Unknown activity: ' . $type . ' ' . $object_data['object_type'], Logger::DEBUG);
482                                 break;
483                 }
484         }
485
486         /**
487          * Fetch the receiver list from an activity array
488          *
489          * @param array  $activity
490          * @param string $actor
491          * @param array  $tags
492          *
493          * @return array with receivers (user id)
494          * @throws \Exception
495          */
496         private static function getReceivers($activity, $actor, $tags = [])
497         {
498                 $receivers = [];
499
500                 // When it is an answer, we inherite the receivers from the parent
501                 $replyto = JsonLD::fetchElement($activity, 'as:inReplyTo', '@id');
502                 if (!empty($replyto)) {
503                         $parents = Item::select(['uid'], ['uri' => $replyto]);
504                         while ($parent = Item::fetch($parents)) {
505                                 $receivers['uid:' . $parent['uid']] = $parent['uid'];
506                         }
507                 }
508
509                 if (!empty($actor)) {
510                         $profile = APContact::getByURL($actor);
511                         $followers = defaults($profile, 'followers', '');
512
513                         Logger::log('Actor: ' . $actor . ' - Followers: ' . $followers, Logger::DEBUG);
514                 } else {
515                         Logger::log('Empty actor', Logger::DEBUG);
516                         $followers = '';
517                 }
518
519                 foreach (['as:to', 'as:cc', 'as:bto', 'as:bcc'] as $element) {
520                         $receiver_list = JsonLD::fetchElementArray($activity, $element, '@id');
521                         if (empty($receiver_list)) {
522                                 continue;
523                         }
524
525                         foreach ($receiver_list as $receiver) {
526                                 if ($receiver == self::PUBLIC_COLLECTION) {
527                                         $receivers['uid:0'] = 0;
528                                 }
529
530                                 if (($receiver == self::PUBLIC_COLLECTION) && !empty($actor)) {
531                                         // This will most likely catch all OStatus connections to Mastodon
532                                         $condition = ['alias' => [$actor, Strings::normaliseLink($actor)], 'rel' => [Contact::SHARING, Contact::FRIEND]
533                                                 , 'archive' => false, 'pending' => false];
534                                         $contacts = DBA::select('contact', ['uid'], $condition);
535                                         while ($contact = DBA::fetch($contacts)) {
536                                                 if ($contact['uid'] != 0) {
537                                                         $receivers['uid:' . $contact['uid']] = $contact['uid'];
538                                                 }
539                                         }
540                                         DBA::close($contacts);
541                                 }
542
543                                 if (in_array($receiver, [$followers, self::PUBLIC_COLLECTION]) && !empty($actor)) {
544                                         $receivers = array_merge($receivers, self::getReceiverForActor($actor, $tags));
545                                         continue;
546                                 }
547
548                                 // Fetching all directly addressed receivers
549                                 $condition = ['self' => true, 'nurl' => Strings::normaliseLink($receiver)];
550                                 $contact = DBA::selectFirst('contact', ['uid', 'contact-type'], $condition);
551                                 if (!DBA::isResult($contact)) {
552                                         continue;
553                                 }
554
555                                 // Check if the potential receiver is following the actor
556                                 // Exception: The receiver is targetted via "to" or this is a comment
557                                 if ((($element != 'as:to') && empty($replyto)) || ($contact['contact-type'] == Contact::TYPE_COMMUNITY)) {
558                                         $networks = Protocol::FEDERATED;
559                                         $condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND],
560                                                 'network' => $networks, 'archive' => false, 'pending' => false, 'uid' => $contact['uid']];
561
562                                         // Forum posts are only accepted from forum contacts
563                                         if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) {
564                                                 $condition['rel'] = [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER];
565                                         }
566
567                                         if (!DBA::exists('contact', $condition)) {
568                                                 continue;
569                                         }
570                                 }
571
572                                 $receivers['uid:' . $contact['uid']] = $contact['uid'];
573                         }
574                 }
575
576                 self::switchContacts($receivers, $actor);
577
578                 return $receivers;
579         }
580
581         /**
582          * Fetch the receiver list of a given actor
583          *
584          * @param string $actor
585          * @param array  $tags
586          *
587          * @return array with receivers (user id)
588          * @throws \Exception
589          */
590         public static function getReceiverForActor($actor, $tags)
591         {
592                 $receivers = [];
593                 $networks = Protocol::FEDERATED;
594                 $condition = ['nurl' => Strings::normaliseLink($actor), 'rel' => [Contact::SHARING, Contact::FRIEND, Contact::FOLLOWER],
595                         'network' => $networks, 'archive' => false, 'pending' => false];
596                 $contacts = DBA::select('contact', ['uid', 'rel'], $condition);
597                 while ($contact = DBA::fetch($contacts)) {
598                         if (self::isValidReceiverForActor($contact, $actor, $tags)) {
599                                 $receivers['uid:' . $contact['uid']] = $contact['uid'];
600                         }
601                 }
602                 DBA::close($contacts);
603                 return $receivers;
604         }
605
606         /**
607          * Tests if the contact is a valid receiver for this actor
608          *
609          * @param array  $contact
610          * @param string $actor
611          * @param array  $tags
612          *
613          * @return bool with receivers (user id)
614          * @throws \Exception
615          */
616         private static function isValidReceiverForActor($contact, $actor, $tags)
617         {
618                 // Public contacts are no valid receiver
619                 if ($contact['uid'] == 0) {
620                         return false;
621                 }
622
623                 // Are we following the contact? Then this is a valid receiver
624                 if (in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND])) {
625                         return true;
626                 }
627
628                 // When the possible receiver isn't a community, then it is no valid receiver
629                 $owner = User::getOwnerDataById($contact['uid']);
630                 if (empty($owner) || ($owner['contact-type'] != Contact::TYPE_COMMUNITY)) {
631                         return false;
632                 }
633
634                 // Is the community account tagged?
635                 foreach ($tags as $tag) {
636                         if ($tag['type'] != 'Mention') {
637                                 continue;
638                         }
639
640                         if ($tag['href'] == $owner['url']) {
641                                 return true;
642                         }
643                 }
644
645                 return false;
646         }
647
648         /**
649          * Switches existing contacts to ActivityPub
650          *
651          * @param integer $cid Contact ID
652          * @param integer $uid User ID
653          * @param string  $url Profile URL
654          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
655          * @throws \ImagickException
656          */
657         public static function switchContact($cid, $uid, $url)
658         {
659                 if (DBA::exists('contact', ['id' => $cid, 'network' => Protocol::ACTIVITYPUB])) {
660                         Logger::info('Contact is already ActivityPub', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
661                         return;
662                 }
663
664                 if (Contact::updateFromProbe($cid, '', true)) {
665                         Logger::info('Update was successful', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
666                 }
667
668                 // Send a new follow request to be sure that the connection still exists
669                 if (($uid != 0) && DBA::exists('contact', ['id' => $cid, 'rel' => [Contact::SHARING, Contact::FRIEND], 'network' => Protocol::ACTIVITYPUB])) {
670                         Logger::info('Contact had been switched to ActivityPub. Sending a new follow request.', ['uid' => $uid, 'url' => $url]);
671                         ActivityPub\Transmitter::sendActivity('Follow', $url, $uid);
672                 }
673         }
674
675         /**
676          *
677          *
678          * @param $receivers
679          * @param $actor
680          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
681          * @throws \ImagickException
682          */
683         private static function switchContacts($receivers, $actor)
684         {
685                 if (empty($actor)) {
686                         return;
687                 }
688
689                 foreach ($receivers as $receiver) {
690                         $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver, 'network' => Protocol::OSTATUS, 'nurl' => Strings::normaliseLink($actor)]);
691                         if (DBA::isResult($contact)) {
692                                 self::switchContact($contact['id'], $receiver, $actor);
693                         }
694
695                         $contact = DBA::selectFirst('contact', ['id'], ['uid' => $receiver, 'network' => Protocol::OSTATUS, 'alias' => [Strings::normaliseLink($actor), $actor]]);
696                         if (DBA::isResult($contact)) {
697                                 self::switchContact($contact['id'], $receiver, $actor);
698                         }
699                 }
700         }
701
702         /**
703          *
704          *
705          * @param       $object_data
706          * @param array $activity
707          *
708          * @return mixed
709          */
710         private static function addActivityFields($object_data, $activity)
711         {
712                 if (!empty($activity['published']) && empty($object_data['published'])) {
713                         $object_data['published'] = JsonLD::fetchElement($activity, 'as:published', '@value');
714                 }
715
716                 if (!empty($activity['diaspora:guid']) && empty($object_data['diaspora:guid'])) {
717                         $object_data['diaspora:guid'] = JsonLD::fetchElement($activity, 'diaspora:guid', '@value');
718                 }
719
720                 $object_data['service'] = JsonLD::fetchElement($activity, 'as:instrument', 'as:name', '@type', 'as:Service');
721                 $object_data['service'] = JsonLD::fetchElement($object_data, 'service', '@value');
722
723                 return $object_data;
724         }
725
726         /**
727          * Fetches the object data from external ressources if needed
728          *
729          * @param string  $object_id    Object ID of the the provided object
730          * @param array   $object       The provided object array
731          * @param boolean $trust_source Do we trust the provided object?
732          * @param integer $uid          User ID for the signature that we use to fetch data
733          *
734          * @return array|false with trusted and valid object data
735          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
736          * @throws \ImagickException
737          */
738         private static function fetchObject(string $object_id, array $object = [], bool $trust_source = false, int $uid = 0)
739         {
740                 // By fetching the type we check if the object is complete.
741                 $type = JsonLD::fetchElement($object, '@type');
742
743                 if (!$trust_source || empty($type)) {
744                         $data = ActivityPub::fetchContent($object_id, $uid);
745                         if (!empty($data)) {
746                                 $object = JsonLD::compact($data);
747                                 Logger::log('Fetched content for ' . $object_id, Logger::DEBUG);
748                         } else {
749                                 Logger::log('Empty content for ' . $object_id . ', check if content is available locally.', Logger::DEBUG);
750
751                                 $item = Item::selectFirst([], ['uri' => $object_id]);
752                                 if (!DBA::isResult($item)) {
753                                         Logger::log('Object with url ' . $object_id . ' was not found locally.', Logger::DEBUG);
754                                         return false;
755                                 }
756                                 Logger::log('Using already stored item for url ' . $object_id, Logger::DEBUG);
757                                 $data = ActivityPub\Transmitter::createNote($item);
758                                 $object = JsonLD::compact($data);
759                         }
760                 } else {
761                         Logger::log('Using original object for url ' . $object_id, Logger::DEBUG);
762                 }
763
764                 $type = JsonLD::fetchElement($object, '@type');
765
766                 if (empty($type)) {
767                         Logger::log('Empty type', Logger::DEBUG);
768                         return false;
769                 }
770
771                 if (in_array($type, self::CONTENT_TYPES)) {
772                         return self::processObject($object);
773                 }
774
775                 if ($type == 'as:Announce') {
776                         $object_id = JsonLD::fetchElement($object, 'object', '@id');
777                         if (empty($object_id) || !is_string($object_id)) {
778                                 return false;
779                         }
780                         return self::fetchObject($object_id, [], false, $uid);
781                 }
782
783                 Logger::log('Unhandled object type: ' . $type, Logger::DEBUG);
784                 return false;
785         }
786
787         /**
788          * Convert tags from JSON-LD format into a simplified format
789          *
790          * @param array $tags Tags in JSON-LD format
791          *
792          * @return array with tags in a simplified format
793          */
794         private static function processTags($tags)
795         {
796                 $taglist = [];
797
798                 if (empty($tags)) {
799                         return [];
800                 }
801
802                 foreach ($tags as $tag) {
803                         if (empty($tag)) {
804                                 continue;
805                         }
806
807                         $element = ['type' => str_replace('as:', '', JsonLD::fetchElement($tag, '@type')),
808                                 'href' => JsonLD::fetchElement($tag, 'as:href', '@id'),
809                                 'name' => JsonLD::fetchElement($tag, 'as:name', '@value')];
810
811                         if (empty($element['type'])) {
812                                 continue;
813                         }
814
815                         $taglist[] = $element;
816                 }
817                 return $taglist;
818         }
819
820         /**
821          * Convert emojis from JSON-LD format into a simplified format
822          *
823          * @param $emojis
824          * @return array with emojis in a simplified format
825          */
826         private static function processEmojis($emojis)
827         {
828                 $emojilist = [];
829
830                 if (empty($emojis)) {
831                         return [];
832                 }
833
834                 foreach ($emojis as $emoji) {
835                         if (empty($emoji) || (JsonLD::fetchElement($emoji, '@type') != 'toot:Emoji') || empty($emoji['as:icon'])) {
836                                 continue;
837                         }
838
839                         $url = JsonLD::fetchElement($emoji['as:icon'], 'as:url', '@id');
840                         $element = ['name' => JsonLD::fetchElement($emoji, 'as:name', '@value'),
841                                 'href' => $url];
842
843                         $emojilist[] = $element;
844                 }
845                 return $emojilist;
846         }
847
848         /**
849          * Convert attachments from JSON-LD format into a simplified format
850          *
851          * @param array $attachments Attachments in JSON-LD format
852          *
853          * @return array with attachmants in a simplified format
854          */
855         private static function processAttachments($attachments)
856         {
857                 $attachlist = [];
858
859                 if (empty($attachments)) {
860                         return [];
861                 }
862
863                 foreach ($attachments as $attachment) {
864                         if (empty($attachment)) {
865                                 continue;
866                         }
867
868                         $attachlist[] = ['type' => str_replace('as:', '', JsonLD::fetchElement($attachment, '@type')),
869                                 'mediaType' => JsonLD::fetchElement($attachment, 'as:mediaType', '@value'),
870                                 'name' => JsonLD::fetchElement($attachment, 'as:name', '@value'),
871                                 'url' => JsonLD::fetchElement($attachment, 'as:url', '@id')];
872                 }
873                 return $attachlist;
874         }
875
876         /**
877          * Fetches data from the object part of an activity
878          *
879          * @param array $object
880          *
881          * @return array
882          * @throws \Exception
883          */
884         private static function processObject($object)
885         {
886                 if (!JsonLD::fetchElement($object, '@id')) {
887                         return false;
888                 }
889
890                 $object_data = [];
891                 $object_data['object_type'] = JsonLD::fetchElement($object, '@type');
892                 $object_data['id'] = JsonLD::fetchElement($object, '@id');
893                 $object_data['reply-to-id'] = JsonLD::fetchElement($object, 'as:inReplyTo', '@id');
894
895                 // An empty "id" field is translated to "./" by the compactor, so we have to check for this content
896                 if (empty($object_data['reply-to-id']) || ($object_data['reply-to-id'] == './')) {
897                         $object_data['reply-to-id'] = $object_data['id'];
898                 }
899
900                 $object_data['published'] = JsonLD::fetchElement($object, 'as:published', '@value');
901                 $object_data['updated'] = JsonLD::fetchElement($object, 'as:updated', '@value');
902
903                 if (empty($object_data['updated'])) {
904                         $object_data['updated'] = $object_data['published'];
905                 }
906
907                 if (empty($object_data['published']) && !empty($object_data['updated'])) {
908                         $object_data['published'] = $object_data['updated'];
909                 }
910
911                 $actor = JsonLD::fetchElement($object, 'as:attributedTo', '@id');
912                 if (empty($actor)) {
913                         $actor = JsonLD::fetchElement($object, 'as:actor', '@id');
914                 }
915
916                 $object_data['diaspora:guid'] = JsonLD::fetchElement($object, 'diaspora:guid', '@value');
917                 $object_data['diaspora:comment'] = JsonLD::fetchElement($object, 'diaspora:comment', '@value');
918                 $object_data['diaspora:like'] = JsonLD::fetchElement($object, 'diaspora:like', '@value');
919                 $object_data['actor'] = $object_data['author'] = $actor;
920                 $object_data['context'] = JsonLD::fetchElement($object, 'as:context', '@id');
921                 $object_data['conversation'] = JsonLD::fetchElement($object, 'ostatus:conversation', '@id');
922                 $object_data['sensitive'] = JsonLD::fetchElement($object, 'as:sensitive');
923                 $object_data['name'] = JsonLD::fetchElement($object, 'as:name', '@value');
924                 $object_data['summary'] = JsonLD::fetchElement($object, 'as:summary', '@value');
925                 $object_data['content'] = JsonLD::fetchElement($object, 'as:content', '@value');
926                 $object_data['source'] = JsonLD::fetchElement($object, 'as:source', 'as:content', 'as:mediaType', 'text/bbcode');
927                 $object_data['source'] = JsonLD::fetchElement($object_data, 'source', '@value');
928                 $object_data['start-time'] = JsonLD::fetchElement($object, 'as:startTime', '@value');
929                 $object_data['end-time'] = JsonLD::fetchElement($object, 'as:endTime', '@value');
930                 $object_data['location'] = JsonLD::fetchElement($object, 'as:location', 'as:name', '@type', 'as:Place');
931                 $object_data['location'] = JsonLD::fetchElement($object_data, 'location', '@value');
932                 $object_data['latitude'] = JsonLD::fetchElement($object, 'as:location', 'as:latitude', '@type', 'as:Place');
933                 $object_data['latitude'] = JsonLD::fetchElement($object_data, 'latitude', '@value');
934                 $object_data['longitude'] = JsonLD::fetchElement($object, 'as:location', 'as:longitude', '@type', 'as:Place');
935                 $object_data['longitude'] = JsonLD::fetchElement($object_data, 'longitude', '@value');
936                 $object_data['attachments'] = self::processAttachments(JsonLD::fetchElementArray($object, 'as:attachment'));
937                 $object_data['tags'] = self::processTags(JsonLD::fetchElementArray($object, 'as:tag'));
938                 $object_data['emojis'] = self::processEmojis(JsonLD::fetchElementArray($object, 'as:tag', 'toot:Emoji'));
939                 $object_data['generator'] = JsonLD::fetchElement($object, 'as:generator', 'as:name', '@type', 'as:Application');
940                 $object_data['generator'] = JsonLD::fetchElement($object_data, 'generator', '@value');
941                 $object_data['alternate-url'] = JsonLD::fetchElement($object, 'as:url', '@id');
942
943                 // Special treatment for Hubzilla links
944                 if (is_array($object_data['alternate-url'])) {
945                         $object_data['alternate-url'] = JsonLD::fetchElement($object_data['alternate-url'], 'as:href', '@id');
946
947                         if (!is_string($object_data['alternate-url'])) {
948                                 $object_data['alternate-url'] = JsonLD::fetchElement($object['as:url'], 'as:href', '@id');
949                         }
950                 }
951
952                 $object_data['receiver'] = self::getReceivers($object, $object_data['actor'], $object_data['tags']);
953
954                 // Common object data:
955
956                 // Unhandled
957                 // @context, type, actor, signature, mediaType, duration, replies, icon
958
959                 // Also missing: (Defined in the standard, but currently unused)
960                 // audience, preview, endTime, startTime, image
961
962                 // Data in Notes:
963
964                 // Unhandled
965                 // contentMap, announcement_count, announcements, context_id, likes, like_count
966                 // inReplyToStatusId, shares, quoteUrl, statusnetConversationId
967
968                 // Data in video:
969
970                 // To-Do?
971                 // category, licence, language, commentsEnabled
972
973                 // Unhandled
974                 // views, waitTranscoding, state, support, subtitleLanguage
975                 // likes, dislikes, shares, comments
976
977                 return $object_data;
978         }
979 }