]> git.mxchange.org Git - friendica.git/blob - src/Protocol/ActivityPub/Processor.php
166530f472729d2312e5b79769035b541e3c5364
[friendica.git] / src / Protocol / ActivityPub / Processor.php
1 <?php
2 /**
3  * @file src/Protocol/ActivityPub/Processor.php
4  */
5 namespace Friendica\Protocol\ActivityPub;
6
7 use Friendica\Database\DBA;
8 use Friendica\Core\Protocol;
9 use Friendica\Model\Conversation;
10 use Friendica\Model\Contact;
11 use Friendica\Model\APContact;
12 use Friendica\Model\Item;
13 use Friendica\Model\User;
14 use Friendica\Content\Text\HTML;
15 use Friendica\Util\JsonLD;
16 use Friendica\Core\Config;
17 use Friendica\Protocol\ActivityPub;
18
19 /**
20  * ActivityPub Protocol class
21  *
22  * To-Do:
23  * - Store Diaspora signature
24  */
25 class Processor
26 {
27         /**
28          * Converts mentions from Pleroma into the Friendica format
29          *
30          * @param string $body
31          *
32          * @return converted body
33          */
34         private static function convertMentions($body)
35         {
36                 $URLSearchString = "^\[\]";
37                 $body = preg_replace("/\[url\=([$URLSearchString]*)\]([#@!])(.*?)\[\/url\]/ism", '$2[url=$1]$3[/url]', $body);
38
39                 return $body;
40         }
41
42         /**
43          * Constructs a string with tags for a given tag array
44          *
45          * @param array $tags
46          * @param boolean $sensitive
47          *
48          * @return string with tags
49          */
50         private static function constructTagList($tags, $sensitive)
51         {
52                 if (empty($tags)) {
53                         return '';
54                 }
55
56                 $tag_text = '';
57                 foreach ($tags as $tag) {
58                         if (in_array(defaults($tag, 'type', ''), ['Mention', 'Hashtag'])) {
59                                 if (!empty($tag_text)) {
60                                         $tag_text .= ',';
61                                 }
62
63                                 $tag_text .= substr($tag['name'], 0, 1) . '[url=' . $tag['href'] . ']' . substr($tag['name'], 1) . '[/url]';
64                         }
65                 }
66
67                 /// @todo add nsfw for $sensitive
68
69                 return $tag_text;
70         }
71
72         /**
73          * Add attachment data to the item array
74          *
75          * @param array $attachments
76          * @param array $item
77          *
78          * @return item array
79          */
80         private static function constructAttachList($attachments, $item)
81         {
82                 if (empty($attachments)) {
83                         return $item;
84                 }
85
86                 foreach ($attachments as $attach) {
87                         $filetype = strtolower(substr($attach['mediaType'], 0, strpos($attach['mediaType'], '/')));
88                         if ($filetype == 'image') {
89                                 $item['body'] .= "\n[img]" . $attach['url'] . '[/img]';
90                         } else {
91                                 if (!empty($item["attach"])) {
92                                         $item["attach"] .= ',';
93                                 } else {
94                                         $item["attach"] = '';
95                                 }
96                                 if (!isset($attach['length'])) {
97                                         $attach['length'] = "0";
98                                 }
99                                 $item["attach"] .= '[attach]href="'.$attach['url'].'" length="'.$attach['length'].'" type="'.$attach['mediaType'].'" title="'.defaults($attach, 'name', '').'"[/attach]';
100                         }
101                 }
102
103                 return $item;
104         }
105
106         /**
107          * Prepares data for a message
108          *
109          * @param array  $activity Activity array
110          */
111         public static function createItem($activity)
112         {
113                 $item = [];
114                 $item['verb'] = ACTIVITY_POST;
115                 $item['parent-uri'] = $activity['reply-to-id'];
116
117                 if ($activity['reply-to-id'] == $activity['id']) {
118                         $item['gravity'] = GRAVITY_PARENT;
119                         $item['object-type'] = ACTIVITY_OBJ_NOTE;
120                 } else {
121                         $item['gravity'] = GRAVITY_COMMENT;
122                         $item['object-type'] = ACTIVITY_OBJ_COMMENT;
123                 }
124
125                 if (($activity['id'] != $activity['reply-to-id']) && !Item::exists(['uri' => $activity['reply-to-id']])) {
126                         logger('Parent ' . $activity['reply-to-id'] . ' not found. Try to refetch it.');
127                         self::fetchMissingActivity($activity['reply-to-id'], $activity);
128                 }
129
130                 self::postItem($activity, $item);
131         }
132
133         /**
134          * Prepare the item array for a "like"
135          *
136          * @param array  $activity Activity array
137          */
138         public static function likeItem($activity)
139         {
140                 $item = [];
141                 $item['verb'] = ACTIVITY_LIKE;
142                 $item['parent-uri'] = $activity['object_id'];
143                 $item['gravity'] = GRAVITY_ACTIVITY;
144                 $item['object-type'] = ACTIVITY_OBJ_NOTE;
145
146                 self::postItem($activity, $item);
147         }
148
149         /**
150          * Delete items
151          *
152          * @param array $activity
153          */
154         public static function deleteItem($activity)
155         {
156                 $owner = Contact::getIdForURL($activity['actor']);
157
158                 logger('Deleting item ' . $activity['object_id'] . ' from ' . $owner, LOGGER_DEBUG);
159                 Item::delete(['uri' => $activity['object_id'], 'owner-id' => $owner]);
160         }
161
162         /**
163          * Prepare the item array for a "dislike"
164          *
165          * @param array  $activity Activity array
166          */
167         public static function dislikeItem($activity)
168         {
169                 $item = [];
170                 $item['verb'] = ACTIVITY_DISLIKE;
171                 $item['parent-uri'] = $activity['object_id'];
172                 $item['gravity'] = GRAVITY_ACTIVITY;
173                 $item['object-type'] = ACTIVITY_OBJ_NOTE;
174
175                 self::postItem($activity, $item);
176         }
177
178         /**
179          * Creates an item post
180          *
181          * @param array  $activity Activity data
182          * @param array  $item     item array
183          */
184         private static function postItem($activity, $item)
185         {
186                 /// @todo What to do with $activity['context']?
187
188                 if (($item['gravity'] != GRAVITY_PARENT) && !Item::exists(['uri' => $item['parent-uri']])) {
189                         logger('Parent ' . $item['parent-uri'] . ' not found, message will be discarded.', LOGGER_DEBUG);
190                         return;
191                 }
192
193                 $item['network'] = Protocol::ACTIVITYPUB;
194                 $item['private'] = !in_array(0, $activity['receiver']);
195                 $item['author-link'] = $activity['author'];
196                 $item['author-id'] = Contact::getIdForURL($activity['author'], 0, true);
197
198                 if (empty($activity['thread-completion'])) {
199                         $item['owner-link'] = $activity['actor'];
200                         $item['owner-id'] = Contact::getIdForURL($activity['actor'], 0, true);
201                 } else {
202                         logger('Ignoring actor because of thread completion.', LOGGER_DEBUG);
203                         $item['owner-link'] = $item['author-link'];
204                         $item['owner-id'] = $item['author-id'];
205                 }
206
207                 $item['uri'] = $activity['id'];
208                 $item['created'] = $activity['published'];
209                 $item['edited'] = $activity['updated'];
210                 $item['guid'] = $activity['diaspora:guid'];
211                 $item['title'] = HTML::toBBCode($activity['name']);
212                 $item['content-warning'] = HTML::toBBCode($activity['summary']);
213                 $item['body'] = self::convertMentions(HTML::toBBCode($activity['content']));
214                 $item['location'] = $activity['location'];
215                 $item['tag'] = self::constructTagList($activity['tags'], $activity['sensitive']);
216                 $item['app'] = $activity['service'];
217                 $item['plink'] = defaults($activity, 'alternate-url', $item['uri']);
218                 $item['diaspora_signed_text'] = defaults($activity, 'diaspora:comment', '');
219
220                 $item = self::constructAttachList($activity['attachments'], $item);
221
222                 if (!empty($activity['source'])) {
223                         $item['body'] = $activity['source'];
224                 }
225
226                 foreach ($activity['receiver'] as $receiver) {
227                         $item['uid'] = $receiver;
228                         $item['contact-id'] = Contact::getIdForURL($activity['author'], $receiver, true);
229
230                         if (($receiver != 0) && empty($item['contact-id'])) {
231                                 $item['contact-id'] = Contact::getIdForURL($activity['author'], 0, true);
232                         }
233
234                         $item_id = Item::insert($item);
235                         logger('Storing for user ' . $item['uid'] . ': ' . $item_id);
236                 }
237         }
238
239         /**
240          * Fetches missing posts
241          *
242          * @param $url
243          * @param $child
244          */
245         private static function fetchMissingActivity($url, $child)
246         {
247                 if (Config::get('system', 'ostatus_full_threads')) {
248                         return;
249                 }
250
251                 $object = ActivityPub::fetchContent($url);
252                 if (empty($object)) {
253                         logger('Activity ' . $url . ' was not fetchable, aborting.');
254                         return;
255                 }
256
257                 $activity = [];
258                 $activity['@context'] = $object['@context'];
259                 unset($object['@context']);
260                 $activity['id'] = $object['id'];
261                 $activity['to'] = defaults($object, 'to', []);
262                 $activity['cc'] = defaults($object, 'cc', []);
263                 $activity['actor'] = $child['author'];
264                 $activity['object'] = $object;
265                 $activity['published'] = $object['published'];
266                 $activity['type'] = 'Create';
267
268                 $ldactivity = JsonLD::compact($activity);
269
270                 $ldactivity['thread-completion'] = true;
271
272                 ActivityPub\Receiver::processActivity($ldactivity);
273                 logger('Activity ' . $url . ' had been fetched and processed.');
274         }
275
276         /**
277          * perform a "follow" request
278          *
279          * @param array $activity
280          */
281         public static function followUser($activity)
282         {
283                 $uid = User::getIdForURL($activity['object_id']);
284                 if (empty($uid)) {
285                         return;
286                 }
287
288                 $owner = User::getOwnerDataById($uid);
289
290                 $cid = Contact::getIdForURL($activity['actor'], $uid);
291                 if (!empty($cid)) {
292                         self::switchContact($cid);
293                         $contact = DBA::selectFirst('contact', [], ['id' => $cid, 'network' => Protocol::NATIVE_SUPPORT]);
294                 } else {
295                         $contact = false;
296                 }
297
298                 $item = ['author-id' => Contact::getIdForURL($activity['actor']),
299                         'author-link' => $activity['actor']];
300
301                 Contact::addRelationship($owner, $contact, $item);
302                 $cid = Contact::getIdForURL($activity['actor'], $uid);
303                 if (empty($cid)) {
304                         return;
305                 }
306
307                 DBA::update('contact', ['hub-verify' => $activity['id']], ['id' => $cid]);
308                 logger('Follow user ' . $uid . ' from contact ' . $cid . ' with id ' . $activity['id']);
309         }
310
311         /**
312          * Update the given profile
313          *
314          * @param array $activity
315          */
316         public static function updatePerson($activity)
317         {
318                 if (empty($activity['object_id'])) {
319                         return;
320                 }
321
322                 logger('Updating profile for ' . $activity['object_id'], LOGGER_DEBUG);
323                 APContact::getByURL($activity['object_id'], true);
324         }
325
326         /**
327          * Delete the given profile
328          *
329          * @param array $activity
330          */
331         public static function deletePerson($activity)
332         {
333                 if (empty($activity['object_id']) || empty($activity['actor'])) {
334                         logger('Empty object id or actor.', LOGGER_DEBUG);
335                         return;
336                 }
337
338                 if ($activity['object_id'] != $activity['actor']) {
339                         logger('Object id does not match actor.', LOGGER_DEBUG);
340                         return;
341                 }
342
343                 $contacts = DBA::select('contact', ['id'], ['nurl' => normalise_link($activity['object_id'])]);
344                 while ($contact = DBA::fetch($contacts)) {
345                         Contact::remove($contact['id']);
346                 }
347                 DBA::close($contacts);
348
349                 logger('Deleted contact ' . $activity['object_id'], LOGGER_DEBUG);
350         }
351
352         /**
353          * Accept a follow request
354          *
355          * @param array $activity
356          */
357         public static function acceptFollowUser($activity)
358         {
359                 $uid = User::getIdForURL($activity['object_actor']);
360                 if (empty($uid)) {
361                         return;
362                 }
363
364                 $owner = User::getOwnerDataById($uid);
365
366                 $cid = Contact::getIdForURL($activity['actor'], $uid);
367                 if (empty($cid)) {
368                         logger('No contact found for ' . $activity['actor'], LOGGER_DEBUG);
369                         return;
370                 }
371
372                 self::switchContact($cid);
373
374                 $fields = ['pending' => false];
375
376                 $contact = DBA::selectFirst('contact', ['rel'], ['id' => $cid]);
377                 if ($contact['rel'] == Contact::FOLLOWER) {
378                         $fields['rel'] = Contact::FRIEND;
379                 }
380
381                 $condition = ['id' => $cid];
382                 DBA::update('contact', $fields, $condition);
383                 logger('Accept contact request from contact ' . $cid . ' for user ' . $uid, LOGGER_DEBUG);
384         }
385
386         /**
387          * Reject a follow request
388          *
389          * @param array $activity
390          */
391         public static function rejectFollowUser($activity)
392         {
393                 $uid = User::getIdForURL($activity['object_actor']);
394                 if (empty($uid)) {
395                         return;
396                 }
397
398                 $owner = User::getOwnerDataById($uid);
399
400                 $cid = Contact::getIdForURL($activity['actor'], $uid);
401                 if (empty($cid)) {
402                         logger('No contact found for ' . $activity['actor'], LOGGER_DEBUG);
403                         return;
404                 }
405
406                 self::switchContact($cid);
407
408                 if (DBA::exists('contact', ['id' => $cid, 'rel' => Contact::SHARING, 'pending' => true])) {
409                         Contact::remove($cid);
410                         logger('Rejected contact request from contact ' . $cid . ' for user ' . $uid . ' - contact had been removed.', LOGGER_DEBUG);
411                 } else {
412                         logger('Rejected contact request from contact ' . $cid . ' for user ' . $uid . '.', LOGGER_DEBUG);
413                 }
414         }
415
416         /**
417          * Undo activity like "like" or "dislike"
418          *
419          * @param array $activity
420          */
421         public static function undoActivity($activity)
422         {
423                 if (empty($activity['object_id'])) {
424                         return;
425                 }
426
427                 if (empty($activity['object_actor'])) {
428                         return;
429                 }
430
431                 $author_id = Contact::getIdForURL($activity['object_actor']);
432                 if (empty($author_id)) {
433                         return;
434                 }
435
436                 Item::delete(['uri' => $activity['object_id'], 'author-id' => $author_id, 'gravity' => GRAVITY_ACTIVITY]);
437         }
438
439         /**
440          * Activity to remove a follower
441          *
442          * @param array $activity
443          */
444         public static function undoFollowUser($activity)
445         {
446                 $uid = User::getIdForURL($activity['object_object']);
447                 if (empty($uid)) {
448                         return;
449                 }
450
451                 $owner = User::getOwnerDataById($uid);
452
453                 $cid = Contact::getIdForURL($activity['actor'], $uid);
454                 if (empty($cid)) {
455                         logger('No contact found for ' . $activity['actor'], LOGGER_DEBUG);
456                         return;
457                 }
458
459                 self::switchContact($cid);
460
461                 $contact = DBA::selectFirst('contact', [], ['id' => $cid]);
462                 if (!DBA::isResult($contact)) {
463                         return;
464                 }
465
466                 Contact::removeFollower($owner, $contact);
467                 logger('Undo following request from contact ' . $cid . ' for user ' . $uid, LOGGER_DEBUG);
468         }
469
470         /**
471          * Switches a contact to AP if needed
472          *
473          * @param integer $cid Contact ID
474          */
475         private static function switchContact($cid)
476         {
477                 $contact = DBA::selectFirst('contact', ['network'], ['id' => $cid, 'network' => Protocol::NATIVE_SUPPORT]);
478                 if (!DBA::isResult($contact) || ($contact['network'] == Protocol::ACTIVITYPUB)) {
479                         return;
480                 }
481
482                 logger('Change existing contact ' . $cid . ' from ' . $contact['network'] . ' to ActivityPub.');
483                 Contact::updateFromProbe($cid, Protocol::ACTIVITYPUB);
484         }
485 }