]> git.mxchange.org Git - friendica.git/blob - src/Protocol/DFRN.php
wrapping up 2019.12
[friendica.git] / src / Protocol / DFRN.php
1 <?php
2 /**
3  * @file include/dfrn.php
4  * @brief The implementation of the dfrn protocol
5  *
6  * @see https://github.com/friendica/friendica/wiki/Protocol and
7  * https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
8  */
9 namespace Friendica\Protocol;
10
11 use DOMDocument;
12 use DOMXPath;
13 use Friendica\App\BaseURL;
14 use Friendica\BaseObject;
15 use Friendica\Content\OEmbed;
16 use Friendica\Content\Text\BBCode;
17 use Friendica\Content\Text\HTML;
18 use Friendica\Core\Config;
19 use Friendica\Core\Hook;
20 use Friendica\Core\Logger;
21 use Friendica\Core\Protocol;
22 use Friendica\Core\System;
23 use Friendica\Database\DBA;
24 use Friendica\Model\Contact;
25 use Friendica\Model\Conversation;
26 use Friendica\Model\Event;
27 use Friendica\Model\GContact;
28 use Friendica\Model\Item;
29 use Friendica\Model\Mail;
30 use Friendica\Model\PermissionSet;
31 use Friendica\Model\Profile;
32 use Friendica\Model\User;
33 use Friendica\Network\Probe;
34 use Friendica\Object\Image;
35 use Friendica\Protocol\ActivityNamespace;
36 use Friendica\Util\Crypto;
37 use Friendica\Util\DateTimeFormat;
38 use Friendica\Util\Images;
39 use Friendica\Util\Network;
40 use Friendica\Util\Strings;
41 use Friendica\Util\XML;
42 use HTMLPurifier;
43 use HTMLPurifier_Config;
44
45 /**
46  * @brief This class contain functions to create and send DFRN XML files
47  */
48 class DFRN
49 {
50
51         const TOP_LEVEL = 0;    // Top level posting
52         const REPLY = 1;                // Regular reply that is stored locally
53         const REPLY_RC = 2;     // Reply that will be relayed
54
55         /**
56          * @brief Generates an array of contact and user for DFRN imports
57          *
58          * This array contains not only the receiver but also the sender of the message.
59          *
60          * @param integer $cid Contact id
61          * @param integer $uid User id
62          *
63          * @return array importer
64          * @throws \Exception
65          */
66         public static function getImporter($cid, $uid = 0)
67         {
68                 $condition = ['id' => $cid, 'blocked' => false, 'pending' => false];
69                 $contact = DBA::selectFirst('contact', [], $condition);
70                 if (!DBA::isResult($contact)) {
71                         return [];
72                 }
73
74                 $contact['cpubkey'] = $contact['pubkey'];
75                 $contact['cprvkey'] = $contact['prvkey'];
76                 $contact['senderName'] = $contact['name'];
77
78                 if ($uid != 0) {
79                         $condition = ['uid' => $uid, 'account_expired' => false, 'account_removed' => false];
80                         $user = DBA::selectFirst('user', [], $condition);
81                         if (!DBA::isResult($user)) {
82                                 return [];
83                         }
84
85                         $user['importer_uid'] = $user['uid'];
86                         $user['uprvkey'] = $user['prvkey'];
87                 } else {
88                         $user = ['importer_uid' => 0, 'uprvkey' => '', 'timezone' => 'UTC',
89                                 'nickname' => '', 'sprvkey' => '', 'spubkey' => '',
90                                 'page-flags' => 0, 'account-type' => 0, 'prvnets' => 0];
91                 }
92
93                 return array_merge($contact, $user);
94         }
95
96         /**
97          * @brief Generates the atom entries for delivery.php
98          *
99          * This function is used whenever content is transmitted via DFRN.
100          *
101          * @param array $items Item elements
102          * @param array $owner Owner record
103          *
104          * @return string DFRN entries
105          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
106          * @throws \ImagickException
107          * @todo  Find proper type-hints
108          */
109         public static function entries($items, $owner)
110         {
111                 $doc = new DOMDocument('1.0', 'utf-8');
112                 $doc->formatOutput = true;
113
114                 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
115
116                 if (! count($items)) {
117                         return trim($doc->saveXML());
118                 }
119
120                 foreach ($items as $item) {
121                         // These values aren't sent when sending from the queue.
122                         /// @todo Check if we can set these values from the queue or if they are needed at all.
123                         $item["entry:comment-allow"] = ($item["entry:comment-allow"] ?? '') ?: true;
124                         $item["entry:cid"] = $item["entry:cid"] ?? 0;
125
126                         $entry = self::entry($doc, "text", $item, $owner, $item["entry:comment-allow"], $item["entry:cid"]);
127                         if (isset($entry)) {
128                                 $root->appendChild($entry);
129                         }
130                 }
131
132                 return trim($doc->saveXML());
133         }
134
135         /**
136          * @brief Generate an atom feed for the given user
137          *
138          * This function is called when another server is pulling data from the user feed.
139          *
140          * @param string  $dfrn_id     DFRN ID from the requesting party
141          * @param string  $owner_nick  Owner nick name
142          * @param string  $last_update Date of the last update
143          * @param int     $direction   Can be -1, 0 or 1.
144          * @param boolean $onlyheader  Output only the header without content? (Default is "no")
145          *
146          * @return string DFRN feed entries
147          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
148          * @throws \ImagickException
149          */
150         public static function feed($dfrn_id, $owner_nick, $last_update, $direction = 0, $onlyheader = false)
151         {
152                 $a = \get_app();
153
154                 $sitefeed    = ((strlen($owner_nick)) ? false : true); // not yet implemented, need to rewrite huge chunks of following logic
155                 $public_feed = (($dfrn_id) ? false : true);
156                 $starred     = false;   // not yet implemented, possible security issues
157                 $converse    = false;
158
159                 if ($public_feed && $a->argc > 2) {
160                         for ($x = 2; $x < $a->argc; $x++) {
161                                 if ($a->argv[$x] == 'converse') {
162                                         $converse = true;
163                                 }
164                                 if ($a->argv[$x] == 'starred') {
165                                         $starred = true;
166                                 }
167                                 if ($a->argv[$x] == 'category' && $a->argc > ($x + 1) && strlen($a->argv[$x+1])) {
168                                         $category = $a->argv[$x+1];
169                                 }
170                         }
171                 }
172
173                 // default permissions - anonymous user
174
175                 $sql_extra = " AND NOT `item`.`private` ";
176
177                 $r = q(
178                         "SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`, `user`.`account-type`
179                         FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
180                         WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
181                         DBA::escape($owner_nick)
182                 );
183
184                 if (! DBA::isResult($r)) {
185                         Logger::log(sprintf('No contact found for nickname=%d', $owner_nick), Logger::WARNING);
186                         exit();
187                 }
188
189                 $owner = $r[0];
190                 $owner_id = $owner['uid'];
191
192                 $sql_post_table = "";
193
194                 if (! $public_feed) {
195                         switch ($direction) {
196                                 case (-1):
197                                         $sql_extra = sprintf(" AND `issued-id` = '%s' ", DBA::escape($dfrn_id));
198                                         break;
199                                 case 0:
200                                         $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", DBA::escape($dfrn_id));
201                                         break;
202                                 case 1:
203                                         $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", DBA::escape($dfrn_id));
204                                         break;
205                                 default:
206                                         return false;
207                                         break; // NOTREACHED
208                         }
209
210                         $r = q(
211                                 "SELECT * FROM `contact` WHERE NOT `blocked` AND `contact`.`uid` = %d $sql_extra LIMIT 1",
212                                 intval($owner_id)
213                         );
214
215                         if (! DBA::isResult($r)) {
216                                 Logger::log(sprintf('No contact found for uid=%d', $owner_id), Logger::WARNING);
217                                 exit();
218                         }
219
220                         $contact = $r[0];
221
222                         $set = PermissionSet::get($owner_id, $contact['id']);
223
224                         if (!empty($set)) {
225                                 $sql_extra = " AND `item`.`psid` IN (" . implode(',', $set) .")";
226                         } else {
227                                 $sql_extra = " AND NOT `item`.`private`";
228                         }
229                 }
230
231                 if ($public_feed) {
232                         $sort = 'DESC';
233                 } else {
234                         $sort = 'ASC';
235                 }
236
237                 if (! strlen($last_update)) {
238                         $last_update = 'now -30 days';
239                 }
240
241                 if (isset($category)) {
242                         $sql_post_table = sprintf(
243                                 "INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
244                                 DBA::escape(Strings::protectSprintf($category)),
245                                 intval(TERM_OBJ_POST),
246                                 intval(TERM_CATEGORY),
247                                 intval($owner_id)
248                         );
249                 }
250
251                 if ($public_feed && ! $converse) {
252                         $sql_extra .= " AND `contact`.`self` = 1 ";
253                 }
254
255                 $check_date = DateTimeFormat::utc($last_update);
256
257                 $r = q(
258                         "SELECT `item`.`id`
259                         FROM `item` USE INDEX (`uid_wall_changed`) $sql_post_table
260                         STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
261                         WHERE `item`.`uid` = %d AND `item`.`wall` AND `item`.`changed` > '%s'
262                         AND `item`.`visible` $sql_extra
263                         ORDER BY `item`.`parent` ".$sort.", `item`.`received` ASC LIMIT 0, 300",
264                         intval($owner_id),
265                         DBA::escape($check_date),
266                         DBA::escape($sort)
267                 );
268
269                 $ids = [];
270                 foreach ($r as $item) {
271                         $ids[] = $item['id'];
272                 }
273
274                 if (!empty($ids)) {
275                         $ret = Item::select(Item::DELIVER_FIELDLIST, ['id' => $ids]);
276                         $items = Item::inArray($ret);
277                 } else {
278                         $items = [];
279                 }
280
281                 /*
282                  * Will check further below if this actually returned results.
283                  * We will provide an empty feed if that is the case.
284                  */
285
286                 $doc = new DOMDocument('1.0', 'utf-8');
287                 $doc->formatOutput = true;
288
289                 $alternatelink = $owner['url'];
290
291                 if (isset($category)) {
292                         $alternatelink .= "/category/".$category;
293                 }
294
295                 if ($public_feed) {
296                         $author = "dfrn:owner";
297                 } else {
298                         $author = "author";
299                 }
300
301                 $root = self::addHeader($doc, $owner, $author, $alternatelink, true);
302
303                 /// @TODO This hook can't work anymore
304                 //      \Friendica\Core\Hook::callAll('atom_feed', $atom);
305
306                 if (!DBA::isResult($items) || $onlyheader) {
307                         $atom = trim($doc->saveXML());
308
309                         Hook::callAll('atom_feed_end', $atom);
310
311                         return $atom;
312                 }
313
314                 foreach ($items as $item) {
315                         // prevent private email from leaking.
316                         if ($item['network'] == Protocol::MAIL) {
317                                 continue;
318                         }
319
320                         // public feeds get html, our own nodes use bbcode
321
322                         if ($public_feed) {
323                                 $type = 'html';
324                                 // catch any email that's in a public conversation and make sure it doesn't leak
325                                 if ($item['private']) {
326                                         continue;
327                                 }
328                         } else {
329                                 $type = 'text';
330                         }
331
332                         $entry = self::entry($doc, $type, $item, $owner, true);
333                         if (isset($entry)) {
334                                 $root->appendChild($entry);
335                         }
336                 }
337
338                 $atom = trim($doc->saveXML());
339
340                 Hook::callAll('atom_feed_end', $atom);
341
342                 return $atom;
343         }
344
345         /**
346          * @brief Generate an atom entry for a given item id
347          *
348          * @param int     $item_id      The item id
349          * @param boolean $conversation Show the conversation. If false show the single post.
350          *
351          * @return string DFRN feed entry
352          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
353          * @throws \ImagickException
354          */
355         public static function itemFeed($item_id, $conversation = false)
356         {
357                 if ($conversation) {
358                         $condition = ['parent' => $item_id];
359                 } else {
360                         $condition = ['id' => $item_id];
361                 }
362
363                 $ret = Item::select(Item::DELIVER_FIELDLIST, $condition);
364                 $items = Item::inArray($ret);
365                 if (!DBA::isResult($items)) {
366                         return '';
367                 }
368
369                 $item = $items[0];
370
371                 if ($item['uid'] != 0) {
372                         $owner = User::getOwnerDataById($item['uid']);
373                         if (!$owner) {
374                                 return '';
375                         }
376                 } else {
377                         $owner = ['uid' => 0, 'nick' => 'feed-item'];
378                 }
379
380                 $doc = new DOMDocument('1.0', 'utf-8');
381                 $doc->formatOutput = true;
382                 $type = 'html';
383
384                 if ($conversation) {
385                         $root = $doc->createElementNS(ActivityNamespace::ATOM1, 'feed');
386                         $doc->appendChild($root);
387
388                         $root->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
389                         $root->setAttribute("xmlns:at", ActivityNamespace::TOMB);
390                         $root->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
391                         $root->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
392                         $root->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
393                         $root->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
394                         $root->setAttribute("xmlns:poco", ActivityNamespace::POCO);
395                         $root->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
396                         $root->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
397
398                         //$root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
399
400                         foreach ($items as $item) {
401                                 $entry = self::entry($doc, $type, $item, $owner, true, 0);
402                                 if (isset($entry)) {
403                                         $root->appendChild($entry);
404                                 }
405                         }
406                 } else {
407                         self::entry($doc, $type, $item, $owner, true, 0, true);
408                 }
409
410                 $atom = trim($doc->saveXML());
411                 return $atom;
412         }
413
414         /**
415          * @brief Create XML text for DFRN mails
416          *
417          * @param array $item  message elements
418          * @param array $owner Owner record
419          *
420          * @return string DFRN mail
421          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
422          * @todo  Find proper type-hints
423          */
424         public static function mail($item, $owner)
425         {
426                 $doc = new DOMDocument('1.0', 'utf-8');
427                 $doc->formatOutput = true;
428
429                 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
430
431                 $mail = $doc->createElement("dfrn:mail");
432                 $sender = $doc->createElement("dfrn:sender");
433
434                 XML::addElement($doc, $sender, "dfrn:name", $owner['name']);
435                 XML::addElement($doc, $sender, "dfrn:uri", $owner['url']);
436                 XML::addElement($doc, $sender, "dfrn:avatar", $owner['thumb']);
437
438                 $mail->appendChild($sender);
439
440                 XML::addElement($doc, $mail, "dfrn:id", $item['uri']);
441                 XML::addElement($doc, $mail, "dfrn:in-reply-to", $item['parent-uri']);
442                 XML::addElement($doc, $mail, "dfrn:sentdate", DateTimeFormat::utc($item['created'] . '+00:00', DateTimeFormat::ATOM));
443                 XML::addElement($doc, $mail, "dfrn:subject", $item['title']);
444                 XML::addElement($doc, $mail, "dfrn:content", $item['body']);
445
446                 $root->appendChild($mail);
447
448                 return trim($doc->saveXML());
449         }
450
451         /**
452          * @brief Create XML text for DFRN friend suggestions
453          *
454          * @param array $item  suggestion elements
455          * @param array $owner Owner record
456          *
457          * @return string DFRN suggestions
458          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
459          * @todo  Find proper type-hints
460          */
461         public static function fsuggest($item, $owner)
462         {
463                 $doc = new DOMDocument('1.0', 'utf-8');
464                 $doc->formatOutput = true;
465
466                 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
467
468                 $suggest = $doc->createElement("dfrn:suggest");
469
470                 XML::addElement($doc, $suggest, "dfrn:url", $item['url']);
471                 XML::addElement($doc, $suggest, "dfrn:name", $item['name']);
472                 XML::addElement($doc, $suggest, "dfrn:photo", $item['photo']);
473                 XML::addElement($doc, $suggest, "dfrn:request", $item['request']);
474                 XML::addElement($doc, $suggest, "dfrn:note", $item['note']);
475
476                 $root->appendChild($suggest);
477
478                 return trim($doc->saveXML());
479         }
480
481         /**
482          * @brief Create XML text for DFRN relocations
483          *
484          * @param array $owner Owner record
485          * @param int   $uid   User ID
486          *
487          * @return string DFRN relocations
488          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
489          * @todo  Find proper type-hints
490          */
491         public static function relocate($owner, $uid)
492         {
493
494                 /* get site pubkey. this could be a new installation with no site keys*/
495                 $pubkey = Config::get('system', 'site_pubkey');
496                 if (! $pubkey) {
497                         $res = Crypto::newKeypair(1024);
498                         Config::set('system', 'site_prvkey', $res['prvkey']);
499                         Config::set('system', 'site_pubkey', $res['pubkey']);
500                 }
501
502                 $rp = q(
503                         "SELECT `resource-id` , `scale`, type FROM `photo`
504                                 WHERE `profile` = 1 AND `uid` = %d ORDER BY scale;",
505                         $uid
506                 );
507                 $photos = [];
508                 $ext = Images::supportedTypes();
509
510                 foreach ($rp as $p) {
511                         $photos[$p['scale']] = System::baseUrl().'/photo/'.$p['resource-id'].'-'.$p['scale'].'.'.$ext[$p['type']];
512                 }
513
514
515                 $doc = new DOMDocument('1.0', 'utf-8');
516                 $doc->formatOutput = true;
517
518                 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
519
520                 $relocate = $doc->createElement("dfrn:relocate");
521
522                 XML::addElement($doc, $relocate, "dfrn:url", $owner['url']);
523                 XML::addElement($doc, $relocate, "dfrn:name", $owner['name']);
524                 XML::addElement($doc, $relocate, "dfrn:addr", $owner['addr']);
525                 XML::addElement($doc, $relocate, "dfrn:avatar", $owner['avatar']);
526                 XML::addElement($doc, $relocate, "dfrn:photo", $photos[4]);
527                 XML::addElement($doc, $relocate, "dfrn:thumb", $photos[5]);
528                 XML::addElement($doc, $relocate, "dfrn:micro", $photos[6]);
529                 XML::addElement($doc, $relocate, "dfrn:request", $owner['request']);
530                 XML::addElement($doc, $relocate, "dfrn:confirm", $owner['confirm']);
531                 XML::addElement($doc, $relocate, "dfrn:notify", $owner['notify']);
532                 XML::addElement($doc, $relocate, "dfrn:poll", $owner['poll']);
533                 XML::addElement($doc, $relocate, "dfrn:sitepubkey", Config::get('system', 'site_pubkey'));
534
535                 $root->appendChild($relocate);
536
537                 return trim($doc->saveXML());
538         }
539
540         /**
541          * @brief Adds the header elements for the DFRN protocol
542          *
543          * @param DOMDocument $doc           XML document
544          * @param array       $owner         Owner record
545          * @param string      $authorelement Element name for the author
546          * @param string      $alternatelink link to profile or category
547          * @param bool        $public        Is it a header for public posts?
548          *
549          * @return object XML root object
550          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
551          * @todo  Find proper type-hints
552          */
553         private static function addHeader(DOMDocument $doc, $owner, $authorelement, $alternatelink = "", $public = false)
554         {
555
556                 if ($alternatelink == "") {
557                         $alternatelink = $owner['url'];
558                 }
559
560                 $root = $doc->createElementNS(ActivityNamespace::ATOM1, 'feed');
561                 $doc->appendChild($root);
562
563                 $root->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
564                 $root->setAttribute("xmlns:at", ActivityNamespace::TOMB);
565                 $root->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
566                 $root->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
567                 $root->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
568                 $root->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
569                 $root->setAttribute("xmlns:poco", ActivityNamespace::POCO);
570                 $root->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
571                 $root->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
572
573                 XML::addElement($doc, $root, "id", System::baseUrl()."/profile/".$owner["nick"]);
574                 XML::addElement($doc, $root, "title", $owner["name"]);
575
576                 $attributes = ["uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION];
577                 XML::addElement($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
578
579                 $attributes = ["rel" => "license", "href" => "http://creativecommons.org/licenses/by/3.0/"];
580                 XML::addElement($doc, $root, "link", "", $attributes);
581
582                 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $alternatelink];
583                 XML::addElement($doc, $root, "link", "", $attributes);
584
585
586                 if ($public) {
587                         // DFRN itself doesn't uses this. But maybe someone else wants to subscribe to the public feed.
588                         OStatus::hublinks($doc, $root, $owner["nick"]);
589
590                         $attributes = ["rel" => "salmon", "href" => System::baseUrl()."/salmon/".$owner["nick"]];
591                         XML::addElement($doc, $root, "link", "", $attributes);
592
593                         $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-replies", "href" => System::baseUrl()."/salmon/".$owner["nick"]];
594                         XML::addElement($doc, $root, "link", "", $attributes);
595
596                         $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-mention", "href" => System::baseUrl()."/salmon/".$owner["nick"]];
597                         XML::addElement($doc, $root, "link", "", $attributes);
598                 }
599
600                 // For backward compatibility we keep this element
601                 if ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
602                         XML::addElement($doc, $root, "dfrn:community", 1);
603                 }
604
605                 // The former element is replaced by this one
606                 XML::addElement($doc, $root, "dfrn:account_type", $owner["account-type"]);
607
608                 /// @todo We need a way to transmit the different page flags like "User::PAGE_FLAGS_PRVGROUP"
609
610                 XML::addElement($doc, $root, "updated", DateTimeFormat::utcNow(DateTimeFormat::ATOM));
611
612                 $author = self::addAuthor($doc, $owner, $authorelement, $public);
613                 $root->appendChild($author);
614
615                 return $root;
616         }
617
618         /**
619          * @brief Adds the author element in the header for the DFRN protocol
620          *
621          * @param DOMDocument $doc           XML document
622          * @param array       $owner         Owner record
623          * @param string      $authorelement Element name for the author
624          * @param boolean     $public        boolean
625          *
626          * @return \DOMElement XML author object
627          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
628          * @todo  Find proper type-hints
629          */
630         private static function addAuthor(DOMDocument $doc, array $owner, $authorelement, $public)
631         {
632                 // Is the profile hidden or shouldn't be published in the net? Then add the "hide" element
633                 $r = q(
634                         "SELECT `id` FROM `profile` INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
635                                 WHERE (`hidewall` OR NOT `net-publish`) AND `user`.`uid` = %d",
636                         intval($owner['uid'])
637                 );
638                 if (DBA::isResult($r)) {
639                         $hidewall = true;
640                 } else {
641                         $hidewall = false;
642                 }
643
644                 $author = $doc->createElement($authorelement);
645
646                 $namdate = DateTimeFormat::utc($owner['name-date'].'+00:00', DateTimeFormat::ATOM);
647                 $uridate = DateTimeFormat::utc($owner['uri-date'].'+00:00', DateTimeFormat::ATOM);
648                 $picdate = DateTimeFormat::utc($owner['avatar-date'].'+00:00', DateTimeFormat::ATOM);
649
650                 $attributes = [];
651
652                 if (!$public || !$hidewall) {
653                         $attributes = ["dfrn:updated" => $namdate];
654                 }
655
656                 XML::addElement($doc, $author, "name", $owner["name"], $attributes);
657                 XML::addElement($doc, $author, "uri", System::baseUrl().'/profile/'.$owner["nickname"], $attributes);
658                 XML::addElement($doc, $author, "dfrn:handle", $owner["addr"], $attributes);
659
660                 $attributes = ["rel" => "photo", "type" => "image/jpeg",
661                                         "media:width" => 300, "media:height" => 300, "href" => $owner['photo']];
662
663                 if (!$public || !$hidewall) {
664                         $attributes["dfrn:updated"] = $picdate;
665                 }
666
667                 XML::addElement($doc, $author, "link", "", $attributes);
668
669                 $attributes["rel"] = "avatar";
670                 XML::addElement($doc, $author, "link", "", $attributes);
671
672                 if ($hidewall) {
673                         XML::addElement($doc, $author, "dfrn:hide", "true");
674                 }
675
676                 // The following fields will only be generated if the data isn't meant for a public feed
677                 if ($public) {
678                         return $author;
679                 }
680
681                 $birthday = feed_birthday($owner['uid'], $owner['timezone']);
682
683                 if ($birthday) {
684                         XML::addElement($doc, $author, "dfrn:birthday", $birthday);
685                 }
686
687                 // Only show contact details when we are allowed to
688                 $r = q(
689                         "SELECT `profile`.`about`, `profile`.`name`, `profile`.`homepage`, `user`.`nickname`,
690                                 `user`.`timezone`, `profile`.`locality`, `profile`.`region`, `profile`.`country-name`,
691                                 `profile`.`pub_keywords`, `profile`.`xmpp`, `profile`.`dob`
692                         FROM `profile`
693                                 INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
694                                 WHERE `profile`.`is-default` AND NOT `user`.`hidewall` AND `user`.`uid` = %d",
695                         intval($owner['uid'])
696                 );
697                 if (DBA::isResult($r)) {
698                         $profile = $r[0];
699
700                         XML::addElement($doc, $author, "poco:displayName", $profile["name"]);
701                         XML::addElement($doc, $author, "poco:updated", $namdate);
702
703                         if (trim($profile["dob"]) > DBA::NULL_DATE) {
704                                 XML::addElement($doc, $author, "poco:birthday", "0000-".date("m-d", strtotime($profile["dob"])));
705                         }
706
707                         XML::addElement($doc, $author, "poco:note", $profile["about"]);
708                         XML::addElement($doc, $author, "poco:preferredUsername", $profile["nickname"]);
709
710                         $savetz = date_default_timezone_get();
711                         date_default_timezone_set($profile["timezone"]);
712                         XML::addElement($doc, $author, "poco:utcOffset", date("P"));
713                         date_default_timezone_set($savetz);
714
715                         if (trim($profile["homepage"]) != "") {
716                                 $urls = $doc->createElement("poco:urls");
717                                 XML::addElement($doc, $urls, "poco:type", "homepage");
718                                 XML::addElement($doc, $urls, "poco:value", $profile["homepage"]);
719                                 XML::addElement($doc, $urls, "poco:primary", "true");
720                                 $author->appendChild($urls);
721                         }
722
723                         if (trim($profile["pub_keywords"]) != "") {
724                                 $keywords = explode(",", $profile["pub_keywords"]);
725
726                                 foreach ($keywords as $keyword) {
727                                         XML::addElement($doc, $author, "poco:tags", trim($keyword));
728                                 }
729                         }
730
731                         if (trim($profile["xmpp"]) != "") {
732                                 $ims = $doc->createElement("poco:ims");
733                                 XML::addElement($doc, $ims, "poco:type", "xmpp");
734                                 XML::addElement($doc, $ims, "poco:value", $profile["xmpp"]);
735                                 XML::addElement($doc, $ims, "poco:primary", "true");
736                                 $author->appendChild($ims);
737                         }
738
739                         if (trim($profile["locality"].$profile["region"].$profile["country-name"]) != "") {
740                                 $element = $doc->createElement("poco:address");
741
742                                 XML::addElement($doc, $element, "poco:formatted", Profile::formatLocation($profile));
743
744                                 if (trim($profile["locality"]) != "") {
745                                         XML::addElement($doc, $element, "poco:locality", $profile["locality"]);
746                                 }
747
748                                 if (trim($profile["region"]) != "") {
749                                         XML::addElement($doc, $element, "poco:region", $profile["region"]);
750                                 }
751
752                                 if (trim($profile["country-name"]) != "") {
753                                         XML::addElement($doc, $element, "poco:country", $profile["country-name"]);
754                                 }
755
756                                 $author->appendChild($element);
757                         }
758                 }
759
760                 return $author;
761         }
762
763         /**
764          * @brief Adds the author elements in the "entry" elements of the DFRN protocol
765          *
766          * @param DOMDocument $doc         XML document
767          * @param string $element     Element name for the author
768          * @param string $contact_url Link of the contact
769          * @param array  $item        Item elements
770          *
771          * @return \DOMElement XML author object
772          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
773          * @todo  Find proper type-hints
774          */
775         private static function addEntryAuthor(DOMDocument $doc, $element, $contact_url, $item)
776         {
777                 $author = $doc->createElement($element);
778
779                 $contact = Contact::getDetailsByURL($contact_url, $item["uid"]);
780                 if (!empty($contact)) {
781                         XML::addElement($doc, $author, "name", $contact["name"]);
782                         XML::addElement($doc, $author, "uri", $contact["url"]);
783                         XML::addElement($doc, $author, "dfrn:handle", $contact["addr"]);
784
785                         /// @Todo
786                         /// - Check real image type and image size
787                         /// - Check which of these boths elements we should use
788                         $attributes = [
789                                 "rel" => "photo",
790                                 "type" => "image/jpeg",
791                                 "media:width" => 80,
792                                 "media:height" => 80,
793                                 "href" => $contact["photo"]];
794                         XML::addElement($doc, $author, "link", "", $attributes);
795
796                         $attributes = [
797                                 "rel" => "avatar",
798                                 "type" => "image/jpeg",
799                                 "media:width" => 80,
800                                 "media:height" => 80,
801                                 "href" => $contact["photo"]];
802                         XML::addElement($doc, $author, "link", "", $attributes);
803                 }
804
805                 return $author;
806         }
807
808         /**
809          * @brief Adds the activity elements
810          *
811          * @param DOMDocument $doc      XML document
812          * @param string      $element  Element name for the activity
813          * @param string      $activity activity value
814          *
815          * @return \DOMElement XML activity object
816          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
817          * @todo  Find proper type-hints
818          */
819         private static function createActivity(DOMDocument $doc, $element, $activity)
820         {
821                 if ($activity) {
822                         $entry = $doc->createElement($element);
823
824                         $r = XML::parseString($activity, false);
825                         if (!$r) {
826                                 return false;
827                         }
828
829                         if ($r->type) {
830                                 XML::addElement($doc, $entry, "activity:object-type", $r->type);
831                         }
832
833                         if ($r->id) {
834                                 XML::addElement($doc, $entry, "id", $r->id);
835                         }
836
837                         if ($r->title) {
838                                 XML::addElement($doc, $entry, "title", $r->title);
839                         }
840
841                         if ($r->link) {
842                                 if (substr($r->link, 0, 1) == '<') {
843                                         if (strstr($r->link, '&') && (! strstr($r->link, '&amp;'))) {
844                                                 $r->link = str_replace('&', '&amp;', $r->link);
845                                         }
846
847                                         $r->link = preg_replace('/\<link(.*?)\"\>/', '<link$1"/>', $r->link);
848
849                                         // XML does need a single element as root element so we add a dummy element here
850                                         $data = XML::parseString("<dummy>" . $r->link . "</dummy>", false);
851                                         if (is_object($data)) {
852                                                 foreach ($data->link as $link) {
853                                                         $attributes = [];
854                                                         foreach ($link->attributes() as $parameter => $value) {
855                                                                 $attributes[$parameter] = $value;
856                                                         }
857                                                         XML::addElement($doc, $entry, "link", "", $attributes);
858                                                 }
859                                         }
860                                 } else {
861                                         $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $r->link];
862                                         XML::addElement($doc, $entry, "link", "", $attributes);
863                                 }
864                         }
865                         if ($r->content) {
866                                 XML::addElement($doc, $entry, "content", BBCode::convert($r->content), ["type" => "html"]);
867                         }
868
869                         return $entry;
870                 }
871
872                 return false;
873         }
874
875         /**
876          * @brief Adds the elements for attachments
877          *
878          * @param object $doc  XML document
879          * @param object $root XML root
880          * @param array  $item Item element
881          *
882          * @return void XML attachment object
883          * @todo  Find proper type-hints
884          */
885         private static function getAttachment($doc, $root, $item)
886         {
887                 $arr = explode('[/attach],', $item['attach']);
888                 if (count($arr)) {
889                         foreach ($arr as $r) {
890                                 $matches = false;
891                                 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|', $r, $matches);
892                                 if ($cnt) {
893                                         $attributes = ["rel" => "enclosure",
894                                                         "href" => $matches[1],
895                                                         "type" => $matches[3]];
896
897                                         if (intval($matches[2])) {
898                                                 $attributes["length"] = intval($matches[2]);
899                                         }
900
901                                         if (trim($matches[4]) != "") {
902                                                 $attributes["title"] = trim($matches[4]);
903                                         }
904
905                                         XML::addElement($doc, $root, "link", "", $attributes);
906                                 }
907                         }
908                 }
909         }
910
911         /**
912          * @brief Adds the "entry" elements for the DFRN protocol
913          *
914          * @param DOMDocument $doc     XML document
915          * @param string      $type    "text" or "html"
916          * @param array       $item    Item element
917          * @param array       $owner   Owner record
918          * @param bool        $comment Trigger the sending of the "comment" element
919          * @param int         $cid     Contact ID of the recipient
920          * @param bool        $single  If set, the entry is created as an XML document with a single "entry" element
921          *
922          * @return null|\DOMElement XML entry object
923          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
924          * @throws \ImagickException
925          * @todo  Find proper type-hints
926          */
927         private static function entry(DOMDocument $doc, $type, array $item, array $owner, $comment = false, $cid = 0, $single = false)
928         {
929                 $mentioned = [];
930
931                 if (!$item['parent']) {
932                         Logger::notice('Item without parent found.', ['type' => $type, 'item' => $item]);
933                         return null;
934                 }
935
936                 if ($item['deleted']) {
937                         $attributes = ["ref" => $item['uri'], "when" => DateTimeFormat::utc($item['edited'] . '+00:00', DateTimeFormat::ATOM)];
938                         return XML::createElement($doc, "at:deleted-entry", "", $attributes);
939                 }
940
941                 if (!$single) {
942                         $entry = $doc->createElement("entry");
943                 } else {
944                         $entry = $doc->createElementNS(ActivityNamespace::ATOM1, 'entry');
945                         $doc->appendChild($entry);
946
947                         $entry->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
948                         $entry->setAttribute("xmlns:at", ActivityNamespace::TOMB);
949                         $entry->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
950                         $entry->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
951                         $entry->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
952                         $entry->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
953                         $entry->setAttribute("xmlns:poco", ActivityNamespace::POCO);
954                         $entry->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
955                         $entry->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
956                 }
957
958                 if ($item['private']) {
959                         $body = Item::fixPrivatePhotos($item['body'], $owner['uid'], $item, $cid);
960                 } else {
961                         $body = $item['body'];
962                 }
963
964                 // Remove the abstract element. It is only locally important.
965                 $body = BBCode::stripAbstract($body);
966
967                 $htmlbody = '';
968                 if ($type == 'html') {
969                         $htmlbody = $body;
970
971                         if ($item['title'] != "") {
972                                 $htmlbody = "[b]" . $item['title'] . "[/b]\n\n" . $htmlbody;
973                         }
974
975                         $htmlbody = BBCode::convert($htmlbody, false, 7);
976                 }
977
978                 $author = self::addEntryAuthor($doc, "author", $item["author-link"], $item);
979                 $entry->appendChild($author);
980
981                 $dfrnowner = self::addEntryAuthor($doc, "dfrn:owner", $item["owner-link"], $item);
982                 $entry->appendChild($dfrnowner);
983
984                 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
985                         $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
986                         $parent = Item::selectFirst(['guid', 'plink'], ['uri' => $parent_item, 'uid' => $item['uid']]);
987                         $attributes = ["ref" => $parent_item, "type" => "text/html",
988                                                 "href" => $parent['plink'],
989                                                 "dfrn:diaspora_guid" => $parent['guid']];
990                         XML::addElement($doc, $entry, "thr:in-reply-to", "", $attributes);
991                 }
992
993                 // Add conversation data. This is used for OStatus
994                 $conversation_href = System::baseUrl()."/display/".$item["parent-guid"];
995                 $conversation_uri = $conversation_href;
996
997                 if (isset($parent_item)) {
998                         $conversation = DBA::selectFirst('conversation', ['conversation-uri', 'conversation-href'], ['item-uri' => $item['parent-uri']]);
999                         if (DBA::isResult($conversation)) {
1000                                 if ($conversation['conversation-uri'] != '') {
1001                                         $conversation_uri = $conversation['conversation-uri'];
1002                                 }
1003                                 if ($conversation['conversation-href'] != '') {
1004                                         $conversation_href = $conversation['conversation-href'];
1005                                 }
1006                         }
1007                 }
1008
1009                 $attributes = [
1010                                 "href" => $conversation_href,
1011                                 "ref" => $conversation_uri];
1012
1013                 XML::addElement($doc, $entry, "ostatus:conversation", $conversation_uri, $attributes);
1014
1015                 XML::addElement($doc, $entry, "id", $item["uri"]);
1016                 XML::addElement($doc, $entry, "title", $item["title"]);
1017
1018                 XML::addElement($doc, $entry, "published", DateTimeFormat::utc($item["created"] . "+00:00", DateTimeFormat::ATOM));
1019                 XML::addElement($doc, $entry, "updated", DateTimeFormat::utc($item["edited"] . "+00:00", DateTimeFormat::ATOM));
1020
1021                 // "dfrn:env" is used to read the content
1022                 XML::addElement($doc, $entry, "dfrn:env", Strings::base64UrlEncode($body, true));
1023
1024                 // The "content" field is not read by the receiver. We could remove it when the type is "text"
1025                 // We keep it at the moment, maybe there is some old version that doesn't read "dfrn:env"
1026                 XML::addElement($doc, $entry, "content", (($type == 'html') ? $htmlbody : $body), ["type" => $type]);
1027
1028                 // We save this value in "plink". Maybe we should read it from there as well?
1029                 XML::addElement(
1030                         $doc,
1031                         $entry,
1032                         "link",
1033                         "",
1034                         ["rel" => "alternate", "type" => "text/html",
1035                                  "href" => System::baseUrl() . "/display/" . $item["guid"]]
1036                 );
1037
1038                 // "comment-allow" is some old fashioned stuff for old Friendica versions.
1039                 // It is included in the rewritten code for completeness
1040                 if ($comment) {
1041                         XML::addElement($doc, $entry, "dfrn:comment-allow", 1);
1042                 }
1043
1044                 if ($item['location']) {
1045                         XML::addElement($doc, $entry, "dfrn:location", $item['location']);
1046                 }
1047
1048                 if ($item['coord']) {
1049                         XML::addElement($doc, $entry, "georss:point", $item['coord']);
1050                 }
1051
1052                 if ($item['private']) {
1053                         XML::addElement($doc, $entry, "dfrn:private", ($item['private'] ? $item['private'] : 1));
1054                 }
1055
1056                 if ($item['extid']) {
1057                         XML::addElement($doc, $entry, "dfrn:extid", $item['extid']);
1058                 }
1059
1060                 if ($item['post-type'] == Item::PT_PAGE) {
1061                         XML::addElement($doc, $entry, "dfrn:bookmark", "true");
1062                 }
1063
1064                 if ($item['app']) {
1065                         XML::addElement($doc, $entry, "statusnet:notice_info", "", ["local_id" => $item['id'], "source" => $item['app']]);
1066                 }
1067
1068                 XML::addElement($doc, $entry, "dfrn:diaspora_guid", $item["guid"]);
1069
1070                 // The signed text contains the content in Markdown, the sender handle and the signatur for the content
1071                 // It is needed for relayed comments to Diaspora.
1072                 if ($item['signed_text']) {
1073                         $sign = base64_encode(json_encode(['signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer']]));
1074                         XML::addElement($doc, $entry, "dfrn:diaspora_signature", $sign);
1075                 }
1076
1077                 XML::addElement($doc, $entry, "activity:verb", self::constructVerb($item));
1078
1079                 if ($item['object-type'] != "") {
1080                         XML::addElement($doc, $entry, "activity:object-type", $item['object-type']);
1081                 } elseif ($item['id'] == $item['parent']) {
1082                         XML::addElement($doc, $entry, "activity:object-type", Activity\ObjectType::NOTE);
1083                 } else {
1084                         XML::addElement($doc, $entry, "activity:object-type", Activity\ObjectType::COMMENT);
1085                 }
1086
1087                 $actobj = self::createActivity($doc, "activity:object", $item['object']);
1088                 if ($actobj) {
1089                         $entry->appendChild($actobj);
1090                 }
1091
1092                 $actarg = self::createActivity($doc, "activity:target", $item['target']);
1093                 if ($actarg) {
1094                         $entry->appendChild($actarg);
1095                 }
1096
1097                 $tags = Item::getFeedTags($item);
1098
1099                 /// @TODO Combine this with similar below if() block?
1100                 if (count($tags)) {
1101                         foreach ($tags as $t) {
1102                                 if (($type != 'html') || ($t[0] != "@")) {
1103                                         XML::addElement($doc, $entry, "category", "", ["scheme" => "X-DFRN:".$t[0].":".$t[1], "term" => $t[2]]);
1104                                 }
1105                         }
1106                 }
1107
1108                 if (count($tags)) {
1109                         foreach ($tags as $t) {
1110                                 if ($t[0] == "@") {
1111                                         $mentioned[$t[1]] = $t[1];
1112                                 }
1113                         }
1114                 }
1115
1116                 foreach ($mentioned as $mention) {
1117                         $condition = ['uid' => $owner["uid"], 'nurl' => Strings::normaliseLink($mention)];
1118                         $contact = DBA::selectFirst('contact', ['forum', 'prv'], $condition);
1119
1120                         if (DBA::isResult($contact) && ($contact["forum"] || $contact["prv"])) {
1121                                 XML::addElement(
1122                                         $doc,
1123                                         $entry,
1124                                         "link",
1125                                         "",
1126                                         ["rel" => "mentioned",
1127                                                         "ostatus:object-type" => Activity\ObjectType::GROUP,
1128                                                         "href" => $mention]
1129                                 );
1130                         } else {
1131                                 XML::addElement(
1132                                         $doc,
1133                                         $entry,
1134                                         "link",
1135                                         "",
1136                                         ["rel" => "mentioned",
1137                                                         "ostatus:object-type" => Activity\ObjectType::PERSON,
1138                                                         "href" => $mention]
1139                                 );
1140                         }
1141                 }
1142
1143                 self::getAttachment($doc, $entry, $item);
1144
1145                 return $entry;
1146         }
1147
1148         /**
1149          * @brief encrypts data via AES
1150          *
1151          * @param string $data The data that is to be encrypted
1152          * @param string $key  The AES key
1153          *
1154          * @return string encrypted data
1155          */
1156         private static function aesEncrypt($data, $key)
1157         {
1158                 return openssl_encrypt($data, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1159         }
1160
1161         /**
1162          * @brief decrypts data via AES
1163          *
1164          * @param string $encrypted The encrypted data
1165          * @param string $key       The AES key
1166          *
1167          * @return string decrypted data
1168          */
1169         public static function aesDecrypt($encrypted, $key)
1170         {
1171                 return openssl_decrypt($encrypted, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1172         }
1173
1174         /**
1175          * @brief Delivers the atom content to the contacts
1176          *
1177          * @param array  $owner    Owner record
1178          * @param array  $contact  Contact record of the receiver
1179          * @param string $atom     Content that will be transmitted
1180          * @param bool   $dissolve (to be documented)
1181          *
1182          * @return int Deliver status. Negative values mean an error.
1183          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1184          * @throws \ImagickException
1185          * @todo  Add array type-hint for $owner, $contact
1186          */
1187         public static function deliver($owner, $contact, $atom, $dissolve = false)
1188         {
1189                 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
1190
1191                 if ($contact['duplex'] && $contact['dfrn-id']) {
1192                         $idtosend = '0:' . $orig_id;
1193                 }
1194                 if ($contact['duplex'] && $contact['issued-id']) {
1195                         $idtosend = '1:' . $orig_id;
1196                 }
1197
1198                 $rino = Config::get('system', 'rino_encrypt');
1199                 $rino = intval($rino);
1200
1201                 Logger::log("Local rino version: ". $rino, Logger::DEBUG);
1202
1203                 $ssl_val = intval(Config::get('system', 'ssl_policy'));
1204
1205                 switch ($ssl_val) {
1206                         case BaseURL::SSL_POLICY_FULL:
1207                                 $ssl_policy = 'full';
1208                                 break;
1209                         case BaseURL::SSL_POLICY_SELFSIGN:
1210                                 $ssl_policy = 'self';
1211                                 break;
1212                         case BaseURL::SSL_POLICY_NONE:
1213                         default:
1214                                 $ssl_policy = 'none';
1215                                 break;
1216                 }
1217
1218                 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino='.$rino : '');
1219
1220                 Logger::log('dfrn_deliver: ' . $url);
1221
1222                 $curlResult = Network::curl($url);
1223
1224                 if ($curlResult->isTimeout()) {
1225                         return -2; // timed out
1226                 }
1227
1228                 $xml = $curlResult->getBody();
1229
1230                 $curl_stat = $curlResult->getReturnCode();
1231                 if (empty($curl_stat)) {
1232                         return -3; // timed out
1233                 }
1234
1235                 Logger::log('dfrn_deliver: ' . $xml, Logger::DATA);
1236
1237                 if (empty($xml)) {
1238                         return 3;
1239                 }
1240
1241                 if (strpos($xml, '<?xml') === false) {
1242                         Logger::log('dfrn_deliver: no valid XML returned');
1243                         Logger::log('dfrn_deliver: returned XML: ' . $xml, Logger::DATA);
1244                         return 3;
1245                 }
1246
1247                 $res = XML::parseString($xml);
1248
1249                 if (!is_object($res) || (intval($res->status) != 0) || !strlen($res->challenge) || !strlen($res->dfrn_id)) {
1250                         if (empty($res->status)) {
1251                                 $status = 3;
1252                         } else {
1253                                 $status = $res->status;
1254                         }
1255
1256                         return $status;
1257                 }
1258
1259                 $postvars     = [];
1260                 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
1261                 $challenge    = hex2bin((string) $res->challenge);
1262                 $perm         = (($res->perm) ? $res->perm : null);
1263                 $dfrn_version = floatval($res->dfrn_version ?: 2.0);
1264                 $rino_remote_version = intval($res->rino);
1265                 $page         = (($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? 1 : 0);
1266
1267                 Logger::log("Remote rino version: ".$rino_remote_version." for ".$contact["url"], Logger::DEBUG);
1268
1269                 if ($owner['page-flags'] == User::PAGE_FLAGS_PRVGROUP) {
1270                         $page = 2;
1271                 }
1272
1273                 $final_dfrn_id = '';
1274
1275                 if ($perm) {
1276                         if ((($perm == 'rw') && !intval($contact['writable']))
1277                                 || (($perm == 'r') && intval($contact['writable']))
1278                         ) {
1279                                 DBA::update('contact', ['writable' => ($perm == 'rw')], ['id' => $contact['id']]);
1280
1281                                 $contact['writable'] = (string) 1 - intval($contact['writable']);
1282                         }
1283                 }
1284
1285                 if (($contact['duplex'] && strlen($contact['pubkey']))
1286                         || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1287                         || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1288                 ) {
1289                         openssl_public_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['pubkey']);
1290                         openssl_public_decrypt($challenge, $postvars['challenge'], $contact['pubkey']);
1291                 } else {
1292                         openssl_private_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['prvkey']);
1293                         openssl_private_decrypt($challenge, $postvars['challenge'], $contact['prvkey']);
1294                 }
1295
1296                 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
1297
1298                 if (strpos($final_dfrn_id, ':') == 1) {
1299                         $final_dfrn_id = substr($final_dfrn_id, 2);
1300                 }
1301
1302                 if ($final_dfrn_id != $orig_id) {
1303                         Logger::log('dfrn_deliver: wrong dfrn_id.');
1304                         // did not decode properly - cannot trust this site
1305                         return 3;
1306                 }
1307
1308                 $postvars['dfrn_id']      = $idtosend;
1309                 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
1310                 if ($dissolve) {
1311                         $postvars['dissolve'] = '1';
1312                 }
1313
1314                 if ((($contact['rel']) && ($contact['rel'] != Contact::SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1315                         $postvars['data'] = $atom;
1316                         $postvars['perm'] = 'rw';
1317                 } else {
1318                         $postvars['data'] = str_replace('<dfrn:comment-allow>1', '<dfrn:comment-allow>0', $atom);
1319                         $postvars['perm'] = 'r';
1320                 }
1321
1322                 $postvars['ssl_policy'] = $ssl_policy;
1323
1324                 if ($page) {
1325                         $postvars['page'] = $page;
1326                 }
1327
1328
1329                 if ($rino > 0 && $rino_remote_version > 0 && (! $dissolve)) {
1330                         Logger::log('rino version: '. $rino_remote_version);
1331
1332                         switch ($rino_remote_version) {
1333                                 case 1:
1334                                         $key = openssl_random_pseudo_bytes(16);
1335                                         $data = self::aesEncrypt($postvars['data'], $key);
1336                                         break;
1337
1338                                 default:
1339                                         Logger::log("rino: invalid requested version '$rino_remote_version'");
1340                                         return -8;
1341                         }
1342
1343                         $postvars['rino'] = $rino_remote_version;
1344                         $postvars['data'] = bin2hex($data);
1345
1346                         if ($dfrn_version >= 2.1) {
1347                                 if (($contact['duplex'] && strlen($contact['pubkey']))
1348                                         || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1349                                         || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1350                                 ) {
1351                                         openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1352                                 } else {
1353                                         openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1354                                 }
1355                         } else {
1356                                 if (($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1357                                         openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1358                                 } else {
1359                                         openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1360                                 }
1361                         }
1362
1363                         Logger::log('md5 rawkey ' . md5($postvars['key']));
1364
1365                         $postvars['key'] = bin2hex($postvars['key']);
1366                 }
1367
1368
1369                 Logger::log('dfrn_deliver: ' . "SENDING: " . print_r($postvars, true), Logger::DATA);
1370
1371                 $postResult = Network::post($contact['notify'], $postvars);
1372
1373                 $xml = $postResult->getBody();
1374
1375                 Logger::log('dfrn_deliver: ' . "RECEIVED: " . $xml, Logger::DATA);
1376
1377                 $curl_stat = $postResult->getReturnCode();
1378                 if (empty($curl_stat) || empty($xml)) {
1379                         return -9; // timed out
1380                 }
1381
1382                 if (($curl_stat == 503) && stristr($postResult->getHeader(), 'retry-after')) {
1383                         return -10;
1384                 }
1385
1386                 if (strpos($xml, '<?xml') === false) {
1387                         Logger::log('dfrn_deliver: phase 2: no valid XML returned');
1388                         Logger::log('dfrn_deliver: phase 2: returned XML: ' . $xml, Logger::DATA);
1389                         return 3;
1390                 }
1391
1392                 $res = XML::parseString($xml);
1393
1394                 if (!isset($res->status)) {
1395                         return -11;
1396                 }
1397
1398                 // Possibly old servers had returned an empty value when everything was okay
1399                 if (empty($res->status)) {
1400                         $res->status = 200;
1401                 }
1402
1403                 if (!empty($res->message)) {
1404                         Logger::log('Delivery returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1405                 }
1406
1407                 return intval($res->status);
1408         }
1409
1410         /**
1411          * @brief Transmits atom content to the contacts via the Diaspora transport layer
1412          *
1413          * @param array  $owner   Owner record
1414          * @param array  $contact Contact record of the receiver
1415          * @param string $atom    Content that will be transmitted
1416          *
1417          * @param bool   $public_batch
1418          * @return int Deliver status. Negative values mean an error.
1419          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1420          * @throws \ImagickException
1421          */
1422         public static function transmit($owner, $contact, $atom, $public_batch = false)
1423         {
1424                 if (!$public_batch) {
1425                         if (empty($contact['addr'])) {
1426                                 Logger::log('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.');
1427                                 if (Contact::updateFromProbe($contact['id'])) {
1428                                         $new_contact = DBA::selectFirst('contact', ['addr'], ['id' => $contact['id']]);
1429                                         $contact['addr'] = $new_contact['addr'];
1430                                 }
1431
1432                                 if (empty($contact['addr'])) {
1433                                         Logger::log('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
1434                                         return -21;
1435                                 }
1436                         }
1437
1438                         $fcontact = Diaspora::personByHandle($contact['addr']);
1439                         if (empty($fcontact)) {
1440                                 Logger::log('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
1441                                 return -22;
1442                         }
1443                         $pubkey = $fcontact['pubkey'];
1444                 } else {
1445                         $pubkey = '';
1446                 }
1447
1448                 $envelope = Diaspora::buildMessage($atom, $owner, $contact, $owner['uprvkey'], $pubkey, $public_batch);
1449
1450                 // Create the endpoint for public posts. This is some WIP and should later be added to the probing
1451                 if ($public_batch && empty($contact["batch"])) {
1452                         $parts = parse_url($contact["notify"]);
1453                         $path_parts = explode('/', $parts['path']);
1454                         array_pop($path_parts);
1455                         $parts['path'] =  implode('/', $path_parts);
1456                         $contact["batch"] = Network::unparseURL($parts);
1457                 }
1458
1459                 $dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
1460
1461                 if (empty($dest_url)) {
1462                         Logger::info('Empty destination', ['public' => $public_batch, 'contact' => $contact]);
1463                         return -24;
1464                 }
1465
1466                 $content_type = ($public_batch ? "application/magic-envelope+xml" : "application/json");
1467
1468                 $postResult = Network::post($dest_url, $envelope, ["Content-Type: ".$content_type]);
1469                 $xml = $postResult->getBody();
1470
1471                 $curl_stat = $postResult->getReturnCode();
1472                 if (empty($curl_stat) || empty($xml)) {
1473                         Logger::log('Empty answer from ' . $contact['id'] . ' - ' . $dest_url);
1474                         return -9; // timed out
1475                 }
1476
1477                 if (($curl_stat == 503) && (stristr($postResult->getHeader(), 'retry-after'))) {
1478                         return -10;
1479                 }
1480
1481                 if (strpos($xml, '<?xml') === false) {
1482                         Logger::log('No valid XML returned from ' . $contact['id'] . ' - ' . $dest_url);
1483                         Logger::log('Returned XML: ' . $xml, Logger::DATA);
1484                         return 3;
1485                 }
1486
1487                 $res = XML::parseString($xml);
1488
1489                 if (empty($res->status)) {
1490                         return -23;
1491                 }
1492
1493                 if (!empty($res->message)) {
1494                         Logger::log('Transmit to ' . $dest_url . ' returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1495                 }
1496
1497                 return intval($res->status);
1498         }
1499
1500         /**
1501          * @brief Fetch the author data from head or entry items
1502          *
1503          * @param object $xpath     XPath object
1504          * @param object $context   In which context should the data be searched
1505          * @param array  $importer  Record of the importer user mixed with contact of the content
1506          * @param string $element   Element name from which the data is fetched
1507          * @param bool   $onlyfetch Should the data only be fetched or should it update the contact record as well
1508          * @param string $xml       optional, default empty
1509          *
1510          * @return array Relevant data of the author
1511          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1512          * @throws \ImagickException
1513          * @todo  Find good type-hints for all parameter
1514          */
1515         private static function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "")
1516         {
1517                 $author = [];
1518                 $author["name"] = XML::getFirstNodeValue($xpath, $element."/atom:name/text()", $context);
1519                 $author["link"] = XML::getFirstNodeValue($xpath, $element."/atom:uri/text()", $context);
1520
1521                 $fields = ['id', 'uid', 'url', 'network', 'avatar-date', 'avatar', 'name-date', 'uri-date', 'addr',
1522                         'name', 'nick', 'about', 'location', 'keywords', 'xmpp', 'bdyear', 'bd', 'hidden', 'contact-type'];
1523                 $condition = ["`uid` = ? AND `nurl` = ? AND `network` != ?",
1524                         $importer["importer_uid"], Strings::normaliseLink($author["link"]), Protocol::STATUSNET];
1525                 $contact_old = DBA::selectFirst('contact', $fields, $condition);
1526
1527                 if (DBA::isResult($contact_old)) {
1528                         $author["contact-id"] = $contact_old["id"];
1529                         $author["network"] = $contact_old["network"];
1530                 } else {
1531                         if (!$onlyfetch) {
1532                                 Logger::debug("Contact ".$author["link"]." wasn't found for user ".$importer["importer_uid"]." XML: ".$xml);
1533                         }
1534
1535                         $author["contact-unknown"] = true;
1536                         $author["contact-id"] = $importer["id"];
1537                         $author["network"] = $importer["network"];
1538                         $onlyfetch = true;
1539                 }
1540
1541                 // Until now we aren't serving different sizes - but maybe later
1542                 $avatarlist = [];
1543                 /// @todo check if "avatar" or "photo" would be the best field in the specification
1544                 $avatars = $xpath->query($element . "/atom:link[@rel='avatar']", $context);
1545                 foreach ($avatars as $avatar) {
1546                         $href = "";
1547                         $width = 0;
1548                         foreach ($avatar->attributes as $attributes) {
1549                                 /// @TODO Rewrite these similar if() to one switch
1550                                 if ($attributes->name == "href") {
1551                                         $href = $attributes->textContent;
1552                                 }
1553                                 if ($attributes->name == "width") {
1554                                         $width = $attributes->textContent;
1555                                 }
1556                                 if ($attributes->name == "updated") {
1557                                         $author["avatar-date"] = $attributes->textContent;
1558                                 }
1559                         }
1560                         if (($width > 0) && ($href != "")) {
1561                                 $avatarlist[$width] = $href;
1562                         }
1563                 }
1564
1565                 if (count($avatarlist) > 0) {
1566                         krsort($avatarlist);
1567                         $author["avatar"] = current($avatarlist);
1568                 }
1569
1570                 if (empty($author['avatar']) && !empty($author['link'])) {
1571                         $cid = Contact::getIdForURL($author['link'], 0);
1572                         if (!empty($cid)) {
1573                                 $contact = DBA::selectFirst('contact', ['avatar'], ['id' => $cid]);
1574                                 if (DBA::isResult($contact)) {
1575                                         $author['avatar'] = $contact['avatar'];
1576                                 }
1577                         }
1578                 }
1579
1580                 if (empty($author['avatar'])) {
1581                         Logger::log('Empty author: ' . $xml);
1582                         $author['avatar'] = '';
1583                 }
1584
1585                 if (DBA::isResult($contact_old) && !$onlyfetch) {
1586                         Logger::log("Check if contact details for contact " . $contact_old["id"] . " (" . $contact_old["nick"] . ") have to be updated.", Logger::DEBUG);
1587
1588                         $poco = ["url" => $contact_old["url"]];
1589
1590                         // When was the last change to name or uri?
1591                         $name_element = $xpath->query($element . "/atom:name", $context)->item(0);
1592                         foreach ($name_element->attributes as $attributes) {
1593                                 if ($attributes->name == "updated") {
1594                                         $poco["name-date"] = $attributes->textContent;
1595                                 }
1596                         }
1597
1598                         $link_element = $xpath->query($element . "/atom:link", $context)->item(0);
1599                         foreach ($link_element->attributes as $attributes) {
1600                                 if ($attributes->name == "updated") {
1601                                         $poco["uri-date"] = $attributes->textContent;
1602                                 }
1603                         }
1604
1605                         // Update contact data
1606                         $value = XML::getFirstNodeValue($xpath, $element . "/dfrn:handle/text()", $context);
1607                         if ($value != "") {
1608                                 $poco["addr"] = $value;
1609                         }
1610
1611                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:displayName/text()", $context);
1612                         if ($value != "") {
1613                                 $poco["name"] = $value;
1614                         }
1615
1616                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:preferredUsername/text()", $context);
1617                         if ($value != "") {
1618                                 $poco["nick"] = $value;
1619                         }
1620
1621                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:note/text()", $context);
1622                         if ($value != "") {
1623                                 $poco["about"] = $value;
1624                         }
1625
1626                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:address/poco:formatted/text()", $context);
1627                         if ($value != "") {
1628                                 $poco["location"] = $value;
1629                         }
1630
1631                         /// @todo Only search for elements with "poco:type" = "xmpp"
1632                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:ims/poco:value/text()", $context);
1633                         if ($value != "") {
1634                                 $poco["xmpp"] = $value;
1635                         }
1636
1637                         /// @todo Add support for the following fields that we don't support by now in the contact table:
1638                         /// - poco:utcOffset
1639                         /// - poco:urls
1640                         /// - poco:locality
1641                         /// - poco:region
1642                         /// - poco:country
1643
1644                         // If the "hide" element is present then the profile isn't searchable.
1645                         $hide = intval(XML::getFirstNodeValue($xpath, $element . "/dfrn:hide/text()", $context) == "true");
1646
1647                         Logger::log("Hidden status for contact " . $contact_old["url"] . ": " . $hide, Logger::DEBUG);
1648
1649                         // If the contact isn't searchable then set the contact to "hidden".
1650                         // Problem: This can be manually overridden by the user.
1651                         if ($hide) {
1652                                 $contact_old["hidden"] = true;
1653                         }
1654
1655                         // Save the keywords into the contact table
1656                         $tags = [];
1657                         $tagelements = $xpath->evaluate($element . "/poco:tags/text()", $context);
1658                         foreach ($tagelements as $tag) {
1659                                 $tags[$tag->nodeValue] = $tag->nodeValue;
1660                         }
1661
1662                         if (count($tags)) {
1663                                 $poco["keywords"] = implode(", ", $tags);
1664                         }
1665
1666                         // "dfrn:birthday" contains the birthday converted to UTC
1667                         $birthday = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1668
1669                         if (strtotime($birthday) > time()) {
1670                                 $bd_timestamp = strtotime($birthday);
1671
1672                                 $poco["bdyear"] = date("Y", $bd_timestamp);
1673                         }
1674
1675                         // "poco:birthday" is the birthday in the format "yyyy-mm-dd"
1676                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1677
1678                         if (!in_array($value, ["", "0000-00-00", DBA::NULL_DATE])) {
1679                                 $bdyear = date("Y");
1680                                 $value = str_replace(["0000", "0001"], $bdyear, $value);
1681
1682                                 if (strtotime($value) < time()) {
1683                                         $value = str_replace($bdyear, $bdyear + 1, $value);
1684                                 }
1685
1686                                 $poco["bd"] = $value;
1687                         }
1688
1689                         $contact = array_merge($contact_old, $poco);
1690
1691                         if ($contact_old["bdyear"] != $contact["bdyear"]) {
1692                                 Event::createBirthday($contact, $birthday);
1693                         }
1694
1695                         $fields = ['name' => $contact['name'], 'nick' => $contact['nick'], 'about' => $contact['about'],
1696                                 'location' => $contact['location'], 'addr' => $contact['addr'], 'keywords' => $contact['keywords'],
1697                                 'bdyear' => $contact['bdyear'], 'bd' => $contact['bd'], 'hidden' => $contact['hidden'],
1698                                 'xmpp' => $contact['xmpp'], 'name-date' => DateTimeFormat::utc($contact['name-date']),
1699                                 'unsearchable' => $contact['hidden'], 'uri-date' => DateTimeFormat::utc($contact['uri-date'])];
1700
1701                         DBA::update('contact', $fields, ['id' => $contact['id'], 'network' => $contact['network']], $contact_old);
1702
1703                         // Update the public contact. Don't set the "hidden" value, this is used differently for public contacts
1704                         unset($fields['hidden']);
1705                         $condition = ['uid' => 0, 'nurl' => Strings::normaliseLink($contact_old['url'])];
1706                         DBA::update('contact', $fields, $condition, true);
1707
1708                         Contact::updateAvatar($author['avatar'], $importer['importer_uid'], $contact['id']);
1709
1710                         $pcid = Contact::getIdForURL($contact_old['url']);
1711                         if (!empty($pcid)) {
1712                                 Contact::updateAvatar($author['avatar'], 0, $pcid);
1713                         }
1714
1715                         /*
1716                          * The generation is a sign for the reliability of the provided data.
1717                          * It is used in the socgraph.php to prevent that old contact data
1718                          * that was relayed over several servers can overwrite contact
1719                          * data that we received directly.
1720                          */
1721
1722                         $poco["generation"] = 2;
1723                         $poco["photo"] = $author["avatar"];
1724                         $poco["hide"] = $hide;
1725                         $poco["contact-type"] = $contact["contact-type"];
1726                         $gcid = GContact::update($poco);
1727
1728                         GContact::link($gcid, $importer["importer_uid"], $contact["id"]);
1729                 }
1730
1731                 return $author;
1732         }
1733
1734         /**
1735          * @brief Transforms activity objects into an XML string
1736          *
1737          * @param object $xpath    XPath object
1738          * @param object $activity Activity object
1739          * @param string $element  element name
1740          *
1741          * @return string XML string
1742          * @todo Find good type-hints for all parameter
1743          */
1744         private static function transformActivity($xpath, $activity, $element)
1745         {
1746                 if (!is_object($activity)) {
1747                         return "";
1748                 }
1749
1750                 $obj_doc = new DOMDocument("1.0", "utf-8");
1751                 $obj_doc->formatOutput = true;
1752
1753                 $obj_element = $obj_doc->createElementNS( ActivityNamespace::ATOM1, $element);
1754
1755                 $activity_type = $xpath->query("activity:object-type/text()", $activity)->item(0)->nodeValue;
1756                 XML::addElement($obj_doc, $obj_element, "type", $activity_type);
1757
1758                 $id = $xpath->query("atom:id", $activity)->item(0);
1759                 if (is_object($id)) {
1760                         $obj_element->appendChild($obj_doc->importNode($id, true));
1761                 }
1762
1763                 $title = $xpath->query("atom:title", $activity)->item(0);
1764                 if (is_object($title)) {
1765                         $obj_element->appendChild($obj_doc->importNode($title, true));
1766                 }
1767
1768                 $links = $xpath->query("atom:link", $activity);
1769                 if (is_object($links)) {
1770                         foreach ($links as $link) {
1771                                 $obj_element->appendChild($obj_doc->importNode($link, true));
1772                         }
1773                 }
1774
1775                 $content = $xpath->query("atom:content", $activity)->item(0);
1776                 if (is_object($content)) {
1777                         $obj_element->appendChild($obj_doc->importNode($content, true));
1778                 }
1779
1780                 $obj_doc->appendChild($obj_element);
1781
1782                 $objxml = $obj_doc->saveXML($obj_element);
1783
1784                 /// @todo This isn't totally clean. We should find a way to transform the namespaces
1785                 $objxml = str_replace("<".$element.' xmlns="http://www.w3.org/2005/Atom">', "<".$element.">", $objxml);
1786                 return($objxml);
1787         }
1788
1789         /**
1790          * @brief Processes the mail elements
1791          *
1792          * @param object $xpath    XPath object
1793          * @param object $mail     mail elements
1794          * @param array  $importer Record of the importer user mixed with contact of the content
1795          * @return void
1796          * @throws \Exception
1797          * @todo  Find good type-hints for all parameter
1798          */
1799         private static function processMail($xpath, $mail, $importer)
1800         {
1801                 Logger::log("Processing mails");
1802
1803                 $msg = [];
1804                 $msg["uid"] = $importer["importer_uid"];
1805                 $msg["from-name"] = $xpath->query("dfrn:sender/dfrn:name/text()", $mail)->item(0)->nodeValue;
1806                 $msg["from-url"] = $xpath->query("dfrn:sender/dfrn:uri/text()", $mail)->item(0)->nodeValue;
1807                 $msg["from-photo"] = $xpath->query("dfrn:sender/dfrn:avatar/text()", $mail)->item(0)->nodeValue;
1808                 $msg["contact-id"] = $importer["id"];
1809                 $msg["uri"] = $xpath->query("dfrn:id/text()", $mail)->item(0)->nodeValue;
1810                 $msg["parent-uri"] = $xpath->query("dfrn:in-reply-to/text()", $mail)->item(0)->nodeValue;
1811                 $msg["created"] = DateTimeFormat::utc($xpath->query("dfrn:sentdate/text()", $mail)->item(0)->nodeValue);
1812                 $msg["title"] = $xpath->query("dfrn:subject/text()", $mail)->item(0)->nodeValue;
1813                 $msg["body"] = $xpath->query("dfrn:content/text()", $mail)->item(0)->nodeValue;
1814
1815                 Mail::insert($msg);
1816         }
1817
1818         /**
1819          * @brief Processes the suggestion elements
1820          *
1821          * @param object $xpath      XPath object
1822          * @param object $suggestion suggestion elements
1823          * @param array  $importer   Record of the importer user mixed with contact of the content
1824          * @return boolean
1825          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1826          * @todo  Find good type-hints for all parameter
1827          */
1828         private static function processSuggestion($xpath, $suggestion, $importer)
1829         {
1830                 Logger::log('Processing suggestions');
1831
1832                 /// @TODO Rewrite this to one statement
1833                 $suggest = [];
1834                 $suggest['uid'] = $importer['importer_uid'];
1835                 $suggest['cid'] = $importer['id'];
1836                 $suggest['url'] = $xpath->query('dfrn:url/text()', $suggestion)->item(0)->nodeValue;
1837                 $suggest['name'] = $xpath->query('dfrn:name/text()', $suggestion)->item(0)->nodeValue;
1838                 $suggest['photo'] = $xpath->query('dfrn:photo/text()', $suggestion)->item(0)->nodeValue;
1839                 $suggest['request'] = $xpath->query('dfrn:request/text()', $suggestion)->item(0)->nodeValue;
1840                 $suggest['body'] = $xpath->query('dfrn:note/text()', $suggestion)->item(0)->nodeValue;
1841
1842                 // Does our member already have a friend matching this description?
1843
1844                 /*
1845                  * The valid result means the friend we're about to send a friend
1846                  * suggestion already has them in their contact, which means no further
1847                  * action is required.
1848                  *
1849                  * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1850                  */
1851                 $condition = ['nurl' => Strings::normaliseLink($suggest['url']), 'uid' => $suggest['uid']];
1852                 if (DBA::exists('contact', $condition)) {
1853                         return false;
1854                 }
1855                 // Do we already have an fcontact record for this person?
1856
1857                 $fid = 0;
1858                 $fcontact = DBA::selectFirst('fcontact', ['id'], ['url' => $suggest['url']]);
1859                 if (DBA::isResult($fcontact)) {
1860                         $fid = $fcontact['id'];
1861
1862                         // OK, we do. Do we already have an introduction for this person?
1863                         if (DBA::exists('intro', ['uid' => $suggest['uid'], 'fid' => $fid])) {
1864                                 /*
1865                                  * The valid result means the friend we're about to send a friend
1866                                  * suggestion already has them in their contact, which means no further
1867                                  * action is required.
1868                                  *
1869                                  * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1870                                  */
1871                                 return false;
1872                         }
1873                 }
1874
1875                 if (!$fid) {
1876                         $fields = ['name' => $suggest['name'], 'url' => $suggest['url'],
1877                                 'photo' => $suggest['photo'], 'request' => $suggest['request']];
1878                         DBA::insert('fcontact', $fields);
1879                         $fid = DBA::lastInsertId();
1880                 }
1881
1882                 /*
1883                  * If no record in fcontact is found, below INSERT statement will not
1884                  * link an introduction to it.
1885                  */
1886                 if (empty($fid)) {
1887                         // Database record did not get created. Quietly give up.
1888                         exit();
1889                 }
1890
1891                 $hash = Strings::getRandomHex();
1892
1893                 $fields = ['uid' => $suggest['uid'], 'fid' => $fid, 'contact-id' => $suggest['cid'],
1894                         'note' => $suggest['body'], 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow(), 'blocked' => false];
1895                 DBA::insert('intro', $fields);
1896
1897                 notification(
1898                         [
1899                                 'type'         => NOTIFY_SUGGEST,
1900                                 'notify_flags' => $importer['notify-flags'],
1901                                 'language'     => $importer['language'],
1902                                 'to_name'      => $importer['username'],
1903                                 'to_email'     => $importer['email'],
1904                                 'uid'          => $importer['importer_uid'],
1905                                 'item'         => $suggest,
1906                                 'link'         => System::baseUrl().'/notifications/intros',
1907                                 'source_name'  => $importer['name'],
1908                                 'source_link'  => $importer['url'],
1909                                 'source_photo' => $importer['photo'],
1910                                 'verb'         => Activity::REQ_FRIEND,
1911                                 'otype'        => 'intro']
1912                 );
1913
1914                 return true;
1915         }
1916
1917         /**
1918          * @brief Processes the relocation elements
1919          *
1920          * @param object $xpath      XPath object
1921          * @param object $relocation relocation elements
1922          * @param array  $importer   Record of the importer user mixed with contact of the content
1923          * @return boolean
1924          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1925          * @throws \ImagickException
1926          * @todo  Find good type-hints for all parameter
1927          */
1928         private static function processRelocation($xpath, $relocation, $importer)
1929         {
1930                 Logger::log("Processing relocations");
1931
1932                 /// @TODO Rewrite this to one statement
1933                 $relocate = [];
1934                 $relocate["uid"] = $importer["importer_uid"];
1935                 $relocate["cid"] = $importer["id"];
1936                 $relocate["url"] = $xpath->query("dfrn:url/text()", $relocation)->item(0)->nodeValue;
1937                 $relocate["addr"] = $xpath->query("dfrn:addr/text()", $relocation)->item(0)->nodeValue;
1938                 $relocate["name"] = $xpath->query("dfrn:name/text()", $relocation)->item(0)->nodeValue;
1939                 $relocate["avatar"] = $xpath->query("dfrn:avatar/text()", $relocation)->item(0)->nodeValue;
1940                 $relocate["photo"] = $xpath->query("dfrn:photo/text()", $relocation)->item(0)->nodeValue;
1941                 $relocate["thumb"] = $xpath->query("dfrn:thumb/text()", $relocation)->item(0)->nodeValue;
1942                 $relocate["micro"] = $xpath->query("dfrn:micro/text()", $relocation)->item(0)->nodeValue;
1943                 $relocate["request"] = $xpath->query("dfrn:request/text()", $relocation)->item(0)->nodeValue;
1944                 $relocate["confirm"] = $xpath->query("dfrn:confirm/text()", $relocation)->item(0)->nodeValue;
1945                 $relocate["notify"] = $xpath->query("dfrn:notify/text()", $relocation)->item(0)->nodeValue;
1946                 $relocate["poll"] = $xpath->query("dfrn:poll/text()", $relocation)->item(0)->nodeValue;
1947                 $relocate["sitepubkey"] = $xpath->query("dfrn:sitepubkey/text()", $relocation)->item(0)->nodeValue;
1948
1949                 if (($relocate["avatar"] == "") && ($relocate["photo"] != "")) {
1950                         $relocate["avatar"] = $relocate["photo"];
1951                 }
1952
1953                 if ($relocate["addr"] == "") {
1954                         $relocate["addr"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$3@$2", $relocate["url"]);
1955                 }
1956
1957                 // update contact
1958                 $r = q(
1959                         "SELECT `photo`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d",
1960                         intval($importer["id"]),
1961                         intval($importer["importer_uid"])
1962                 );
1963
1964                 if (!DBA::isResult($r)) {
1965                         Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
1966                         return false;
1967                 }
1968
1969                 $old = $r[0];
1970
1971                 // Update the gcontact entry
1972                 $relocate["server_url"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $relocate["url"]);
1973
1974                 $fields = ['name' => $relocate["name"], 'photo' => $relocate["avatar"],
1975                         'url' => $relocate["url"], 'nurl' => Strings::normaliseLink($relocate["url"]),
1976                         'addr' => $relocate["addr"], 'connect' => $relocate["addr"],
1977                         'notify' => $relocate["notify"], 'server_url' => $relocate["server_url"]];
1978                 DBA::update('gcontact', $fields, ['nurl' => Strings::normaliseLink($old["url"])]);
1979
1980                 // Update the contact table. We try to find every entry.
1981                 $fields = ['name' => $relocate["name"], 'avatar' => $relocate["avatar"],
1982                         'url' => $relocate["url"], 'nurl' => Strings::normaliseLink($relocate["url"]),
1983                         'addr' => $relocate["addr"], 'request' => $relocate["request"],
1984                         'confirm' => $relocate["confirm"], 'notify' => $relocate["notify"],
1985                         'poll' => $relocate["poll"], 'site-pubkey' => $relocate["sitepubkey"]];
1986                 $condition = ["(`id` = ?) OR (`nurl` = ?)", $importer["id"], Strings::normaliseLink($old["url"])];
1987
1988                 DBA::update('contact', $fields, $condition);
1989
1990                 Contact::updateAvatar($relocate["avatar"], $importer["importer_uid"], $importer["id"], true);
1991
1992                 Logger::log('Contacts are updated.');
1993
1994                 /// @TODO
1995                 /// merge with current record, current contents have priority
1996                 /// update record, set url-updated
1997                 /// update profile photos
1998                 /// schedule a scan?
1999                 return true;
2000         }
2001
2002         /**
2003          * @brief Updates an item
2004          *
2005          * @param array $current   the current item record
2006          * @param array $item      the new item record
2007          * @param array $importer  Record of the importer user mixed with contact of the content
2008          * @param int   $entrytype Is it a toplevel entry, a comment or a relayed comment?
2009          * @return mixed
2010          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2011          * @todo  set proper type-hints (array?)
2012          */
2013         private static function updateContent($current, $item, $importer, $entrytype)
2014         {
2015                 $changed = false;
2016
2017                 if (self::isEditedTimestampNewer($current, $item)) {
2018                         // do not accept (ignore) an earlier edit than one we currently have.
2019                         if (DateTimeFormat::utc($item["edited"]) < $current["edited"]) {
2020                                 return false;
2021                         }
2022
2023                         $fields = ['title' => $item['title'] ?? '', 'body' => $item['body'] ?? '',
2024                                         'tag' => $item['tag'] ?? '', 'changed' => DateTimeFormat::utcNow(),
2025                                         'edited' => DateTimeFormat::utc($item["edited"])];
2026
2027                         $condition = ["`uri` = ? AND `uid` IN (0, ?)", $item["uri"], $importer["importer_uid"]];
2028                         Item::update($fields, $condition);
2029
2030                         $changed = true;
2031                 }
2032                 return $changed;
2033         }
2034
2035         /**
2036          * @brief Detects the entry type of the item
2037          *
2038          * @param array $importer Record of the importer user mixed with contact of the content
2039          * @param array $item     the new item record
2040          *
2041          * @return int Is it a toplevel entry, a comment or a relayed comment?
2042          * @throws \Exception
2043          * @todo  set proper type-hints (array?)
2044          */
2045         private static function getEntryType($importer, $item)
2046         {
2047                 if ($item["parent-uri"] != $item["uri"]) {
2048                         $community = false;
2049
2050                         if ($importer["page-flags"] == User::PAGE_FLAGS_COMMUNITY || $importer["page-flags"] == User::PAGE_FLAGS_PRVGROUP) {
2051                                 $sql_extra = "";
2052                                 $community = true;
2053                                 Logger::log("possible community action");
2054                         } else {
2055                                 $sql_extra = " AND `contact`.`self` AND `item`.`wall` ";
2056                         }
2057
2058                         // was the top-level post for this action written by somebody on this site?
2059                         // Specifically, the recipient?
2060
2061                         $is_a_remote_action = false;
2062
2063                         $parent = Item::selectFirst(['parent-uri'], ['uri' => $item["parent-uri"]]);
2064                         if (DBA::isResult($parent)) {
2065                                 $r = q(
2066                                         "SELECT `item`.`forum_mode`, `item`.`wall` FROM `item`
2067                                         INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
2068                                         WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' OR `item`.`thr-parent` = '%s')
2069                                         AND `item`.`uid` = %d
2070                                         $sql_extra
2071                                         LIMIT 1",
2072                                         DBA::escape($parent["parent-uri"]),
2073                                         DBA::escape($parent["parent-uri"]),
2074                                         DBA::escape($parent["parent-uri"]),
2075                                         intval($importer["importer_uid"])
2076                                 );
2077                                 if (DBA::isResult($r)) {
2078                                         $is_a_remote_action = true;
2079                                 }
2080                         }
2081
2082                         /*
2083                          * Does this have the characteristics of a community or private group action?
2084                          * If it's an action to a wall post on a community/prvgroup page it's a
2085                          * valid community action. Also forum_mode makes it valid for sure.
2086                          * If neither, it's not.
2087                          */
2088                         if ($is_a_remote_action && $community && (!$r[0]["forum_mode"]) && (!$r[0]["wall"])) {
2089                                 $is_a_remote_action = false;
2090                                 Logger::log("not a community action");
2091                         }
2092
2093                         if ($is_a_remote_action) {
2094                                 return DFRN::REPLY_RC;
2095                         } else {
2096                                 return DFRN::REPLY;
2097                         }
2098                 } else {
2099                         return DFRN::TOP_LEVEL;
2100                 }
2101         }
2102
2103         /**
2104          * @brief Send a "poke"
2105          *
2106          * @param array $item      The new item record
2107          * @param array $importer  Record of the importer user mixed with contact of the content
2108          * @return void
2109          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2110          * @todo  set proper type-hints (array?)
2111          */
2112         private static function doPoke(array $item, array $importer)
2113         {
2114                 $verb = urldecode(substr($item["verb"], strpos($item["verb"], "#")+1));
2115                 if (!$verb) {
2116                         return;
2117                 }
2118                 $xo = XML::parseString($item["object"], false);
2119
2120                 if (($xo->type == Activity\ObjectType::PERSON) && ($xo->id)) {
2121                         // somebody was poked/prodded. Was it me?
2122                         $Blink = '';
2123                         foreach ($xo->link as $l) {
2124                                 $atts = $l->attributes();
2125                                 switch ($atts["rel"]) {
2126                                         case "alternate":
2127                                                 $Blink = $atts["href"];
2128                                                 break;
2129                                         default:
2130                                                 break;
2131                                 }
2132                         }
2133
2134                         if ($Blink && Strings::compareLink($Blink, System::baseUrl() . "/profile/" . $importer["nickname"])) {
2135                                 $author = DBA::selectFirst('contact', ['name', 'thumb', 'url'], ['id' => $item['author-id']]);
2136
2137                                 $parent = Item::selectFirst(['id'], ['uri' => $item['parent-uri'], 'uid' => $importer["importer_uid"]]);
2138                                 $item["parent"] = $parent['id'];
2139
2140                                 // send a notification
2141                                 notification(
2142                                         [
2143                                         "type"         => NOTIFY_POKE,
2144                                         "notify_flags" => $importer["notify-flags"],
2145                                         "language"     => $importer["language"],
2146                                         "to_name"      => $importer["username"],
2147                                         "to_email"     => $importer["email"],
2148                                         "uid"          => $importer["importer_uid"],
2149                                         "item"         => $item,
2150                                         "link"         => System::baseUrl()."/display/".urlencode($item['guid']),
2151                                         "source_name"  => $author["name"],
2152                                         "source_link"  => $author["url"],
2153                                         "source_photo" => $author["thumb"],
2154                                         "verb"         => $item["verb"],
2155                                         "otype"        => "person",
2156                                         "activity"     => $verb,
2157                                         "parent"       => $item["parent"]]
2158                                 );
2159                         }
2160                 }
2161         }
2162
2163         /**
2164          * @brief Processes several actions, depending on the verb
2165          *
2166          * @param int   $entrytype Is it a toplevel entry, a comment or a relayed comment?
2167          * @param array $importer  Record of the importer user mixed with contact of the content
2168          * @param array $item      the new item record
2169          * @param bool  $is_like   Is the verb a "like"?
2170          *
2171          * @return bool Should the processing of the entries be continued?
2172          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2173          * @todo  set proper type-hints (array?)
2174          */
2175         private static function processVerbs($entrytype, $importer, &$item, &$is_like)
2176         {
2177                 Logger::log("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, Logger::DEBUG);
2178
2179                 if (($entrytype == DFRN::TOP_LEVEL) && !empty($importer['id'])) {
2180                         // The filling of the the "contact" variable is done for legcy reasons
2181                         // The functions below are partly used by ostatus.php as well - where we have this variable
2182                         $contact = Contact::selectFirst([], ['id' => $importer['id']]);
2183
2184                         /** @var Activity $activity */
2185                         $activity = BaseObject::getClass(Activity::class);
2186
2187                         // Big question: Do we need these functions? They were part of the "consume_feed" function.
2188                         // This function once was responsible for DFRN and OStatus.
2189                         if ($activity->match($item["verb"], Activity::FOLLOW)) {
2190                                 Logger::log("New follower");
2191                                 Contact::addRelationship($importer, $contact, $item);
2192                                 return false;
2193                         }
2194                         if ($activity->match($item["verb"], Activity::UNFOLLOW)) {
2195                                 Logger::log("Lost follower");
2196                                 Contact::removeFollower($importer, $contact, $item);
2197                                 return false;
2198                         }
2199                         if ($activity->match($item["verb"], Activity::REQ_FRIEND)) {
2200                                 Logger::log("New friend request");
2201                                 Contact::addRelationship($importer, $contact, $item, true);
2202                                 return false;
2203                         }
2204                         if ($activity->match($item["verb"], Activity::UNFRIEND)) {
2205                                 Logger::log("Lost sharer");
2206                                 Contact::removeSharer($importer, $contact, $item);
2207                                 return false;
2208                         }
2209                 } else {
2210                         if (($item["verb"] == Activity::LIKE)
2211                                 || ($item["verb"] == Activity::DISLIKE)
2212                                 || ($item["verb"] == Activity::ATTEND)
2213                                 || ($item["verb"] == Activity::ATTENDNO)
2214                                 || ($item["verb"] == Activity::ATTENDMAYBE)
2215                         ) {
2216                                 $is_like = true;
2217                                 $item["gravity"] = GRAVITY_ACTIVITY;
2218                                 // only one like or dislike per person
2219                                 // splitted into two queries for performance issues
2220                                 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2221                                         'verb' => $item["verb"], 'parent-uri' => $item["parent-uri"]];
2222                                 if (Item::exists($condition)) {
2223                                         return false;
2224                                 }
2225
2226                                 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2227                                         'verb' => $item["verb"], 'thr-parent' => $item["parent-uri"]];
2228                                 if (Item::exists($condition)) {
2229                                         return false;
2230                                 }
2231
2232                                 // The owner of an activity must be the author
2233                                 $item["owner-name"] = $item["author-name"];
2234                                 $item["owner-link"] = $item["author-link"];
2235                                 $item["owner-avatar"] = $item["author-avatar"];
2236                                 $item["owner-id"] = $item["author-id"];
2237                         } else {
2238                                 $is_like = false;
2239                         }
2240
2241                         if (($item["verb"] == Activity::TAG) && ($item["object-type"] == Activity\ObjectType::TAGTERM)) {
2242                                 $xo = XML::parseString($item["object"], false);
2243                                 $xt = XML::parseString($item["target"], false);
2244
2245                                 if ($xt->type == Activity\ObjectType::NOTE) {
2246                                         $item_tag = Item::selectFirst(['id', 'tag'], ['uri' => $xt->id, 'uid' => $importer["importer_uid"]]);
2247
2248                                         if (!DBA::isResult($item_tag)) {
2249                                                 Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
2250                                                 return false;
2251                                         }
2252
2253                                         // extract tag, if not duplicate, add to parent item
2254                                         if ($xo->content) {
2255                                                 if (!stristr($item_tag["tag"], trim($xo->content))) {
2256                                                         $tag = $item_tag["tag"] . (strlen($item_tag["tag"]) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
2257                                                         Item::update(['tag' => $tag], ['id' => $item_tag["id"]]);
2258                                                 }
2259                                         }
2260                                 }
2261                         }
2262                 }
2263                 return true;
2264         }
2265
2266         /**
2267          * @brief Processes the link elements
2268          *
2269          * @param object $links link elements
2270          * @param array  $item  the item record
2271          * @return void
2272          * @todo set proper type-hints
2273          */
2274         private static function parseLinks($links, &$item)
2275         {
2276                 $rel = "";
2277                 $href = "";
2278                 $type = "";
2279                 $length = "0";
2280                 $title = "";
2281                 foreach ($links as $link) {
2282                         foreach ($link->attributes as $attributes) {
2283                                 switch ($attributes->name) {
2284                                         case "href"  : $href   = $attributes->textContent; break;
2285                                         case "rel"   : $rel    = $attributes->textContent; break;
2286                                         case "type"  : $type   = $attributes->textContent; break;
2287                                         case "length": $length = $attributes->textContent; break;
2288                                         case "title" : $title  = $attributes->textContent; break;
2289                                 }
2290                         }
2291                         if (($rel != "") && ($href != "")) {
2292                                 switch ($rel) {
2293                                         case "alternate":
2294                                                 $item["plink"] = $href;
2295                                                 break;
2296                                         case "enclosure":
2297                                                 if (!empty($item["attach"])) {
2298                                                         $item["attach"] .= ",";
2299                                                 } else {
2300                                                         $item["attach"] = "";
2301                                                 }
2302
2303                                                 $item["attach"] .= '[attach]href="' . $href . '" length="' . $length . '" type="' . $type . '" title="' . $title . '"[/attach]';
2304                                                 break;
2305                                 }
2306                         }
2307                 }
2308         }
2309
2310         /**
2311          * @brief Processes the entry elements which contain the items and comments
2312          *
2313          * @param array  $header   Array of the header elements that always stay the same
2314          * @param object $xpath    XPath object
2315          * @param object $entry    entry elements
2316          * @param array  $importer Record of the importer user mixed with contact of the content
2317          * @param string $xml      xml
2318          * @return void
2319          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2320          * @throws \ImagickException
2321          * @todo  Add type-hints
2322          */
2323         private static function processEntry($header, $xpath, $entry, $importer, $xml)
2324         {
2325                 Logger::log("Processing entries");
2326
2327                 $item = $header;
2328
2329                 $item["protocol"] = Conversation::PARCEL_DFRN;
2330
2331                 $item["source"] = $xml;
2332
2333                 // Get the uri
2334                 $item["uri"] = XML::getFirstNodeValue($xpath, "atom:id/text()", $entry);
2335
2336                 $item["edited"] = XML::getFirstNodeValue($xpath, "atom:updated/text()", $entry);
2337
2338                 $current = Item::selectFirst(['id', 'uid', 'edited', 'body'],
2339                         ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]]
2340                 );
2341                 // Is there an existing item?
2342                 if (DBA::isResult($current) && !self::isEditedTimestampNewer($current, $item)) {
2343                         Logger::log("Item ".$item["uri"]." (".$item['edited'].") already existed.", Logger::DEBUG);
2344                         return;
2345                 }
2346
2347                 // Fetch the owner
2348                 $owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true, $xml);
2349
2350                 $owner_unknown = (isset($owner["contact-unknown"]) && $owner["contact-unknown"]);
2351
2352                 $item["owner-name"] = $owner["name"];
2353                 $item["owner-link"] = $owner["link"];
2354                 $item["owner-avatar"] = $owner["avatar"];
2355                 $item["owner-id"] = Contact::getIdForURL($owner["link"], 0);
2356
2357                 // fetch the author
2358                 $author = self::fetchauthor($xpath, $entry, $importer, "atom:author", true, $xml);
2359
2360                 $item["author-name"] = $author["name"];
2361                 $item["author-link"] = $author["link"];
2362                 $item["author-avatar"] = $author["avatar"];
2363                 $item["author-id"] = Contact::getIdForURL($author["link"], 0);
2364
2365                 $item["title"] = XML::getFirstNodeValue($xpath, "atom:title/text()", $entry);
2366
2367                 $item["created"] = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2368
2369                 $item["body"] = XML::getFirstNodeValue($xpath, "dfrn:env/text()", $entry);
2370                 $item["body"] = str_replace([' ',"\t","\r","\n"], ['','','',''], $item["body"]);
2371                 // make sure nobody is trying to sneak some html tags by us
2372                 $item["body"] = Strings::escapeTags(Strings::base64UrlDecode($item["body"]));
2373
2374                 $item["body"] = BBCode::limitBodySize($item["body"]);
2375
2376                 /// @todo Do we really need this check for HTML elements? (It was copied from the old function)
2377                 if ((strpos($item['body'], '<') !== false) && (strpos($item['body'], '>') !== false)) {
2378                         $base_url = \get_app()->getBaseURL();
2379                         $item['body'] = HTML::relToAbs($item['body'], $base_url);
2380
2381                         $item['body'] = HTML::toBBCodeVideo($item['body']);
2382
2383                         $item['body'] = OEmbed::HTML2BBCode($item['body']);
2384
2385                         $config = HTMLPurifier_Config::createDefault();
2386                         $config->set('Cache.DefinitionImpl', null);
2387
2388                         // we shouldn't need a whitelist, because the bbcode converter
2389                         // will strip out any unsupported tags.
2390
2391                         $purifier = new HTMLPurifier($config);
2392                         $item['body'] = $purifier->purify($item['body']);
2393
2394                         $item['body'] = @HTML::toBBCode($item['body']);
2395                 }
2396
2397                 /// @todo We should check for a repeated post and if we know the repeated author.
2398
2399                 // We don't need the content element since "dfrn:env" is always present
2400                 //$item["body"] = $xpath->query("atom:content/text()", $entry)->item(0)->nodeValue;
2401
2402                 $item["location"] = XML::getFirstNodeValue($xpath, "dfrn:location/text()", $entry);
2403
2404                 $item["coord"] = XML::getFirstNodeValue($xpath, "georss:point", $entry);
2405
2406                 $item["private"] = XML::getFirstNodeValue($xpath, "dfrn:private/text()", $entry);
2407
2408                 $item["extid"] = XML::getFirstNodeValue($xpath, "dfrn:extid/text()", $entry);
2409
2410                 if (XML::getFirstNodeValue($xpath, "dfrn:bookmark/text()", $entry) == "true") {
2411                         $item["post-type"] = Item::PT_PAGE;
2412                 }
2413
2414                 $notice_info = $xpath->query("statusnet:notice_info", $entry);
2415                 if ($notice_info && ($notice_info->length > 0)) {
2416                         foreach ($notice_info->item(0)->attributes as $attributes) {
2417                                 if ($attributes->name == "source") {
2418                                         $item["app"] = strip_tags($attributes->textContent);
2419                                 }
2420                         }
2421                 }
2422
2423                 $item["guid"] = XML::getFirstNodeValue($xpath, "dfrn:diaspora_guid/text()", $entry);
2424
2425                 // We store the data from "dfrn:diaspora_signature" in a different table, this is done in "Item::insert"
2426                 $dsprsig = XML::unescape(XML::getFirstNodeValue($xpath, "dfrn:diaspora_signature/text()", $entry));
2427                 if ($dsprsig != "") {
2428                         $item["dsprsig"] = $dsprsig;
2429                 }
2430
2431                 $item["verb"] = XML::getFirstNodeValue($xpath, "activity:verb/text()", $entry);
2432
2433                 if (XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry) != "") {
2434                         $item["object-type"] = XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry);
2435                 }
2436
2437                 $object = $xpath->query("activity:object", $entry)->item(0);
2438                 $item["object"] = self::transformActivity($xpath, $object, "object");
2439
2440                 if (trim($item["object"]) != "") {
2441                         $r = XML::parseString($item["object"], false);
2442                         if (isset($r->type)) {
2443                                 $item["object-type"] = $r->type;
2444                         }
2445                 }
2446
2447                 $target = $xpath->query("activity:target", $entry)->item(0);
2448                 $item["target"] = self::transformActivity($xpath, $target, "target");
2449
2450                 $categories = $xpath->query("atom:category", $entry);
2451                 if ($categories) {
2452                         foreach ($categories as $category) {
2453                                 $term = "";
2454                                 $scheme = "";
2455                                 foreach ($category->attributes as $attributes) {
2456                                         if ($attributes->name == "term") {
2457                                                 $term = $attributes->textContent;
2458                                         }
2459
2460                                         if ($attributes->name == "scheme") {
2461                                                 $scheme = $attributes->textContent;
2462                                         }
2463                                 }
2464
2465                                 if (($term != "") && ($scheme != "")) {
2466                                         $parts = explode(":", $scheme);
2467                                         if ((count($parts) >= 4) && (array_shift($parts) == "X-DFRN")) {
2468                                                 $termhash = array_shift($parts);
2469                                                 $termurl = implode(":", $parts);
2470
2471                                                 if (!empty($item["tag"])) {
2472                                                         $item["tag"] .= ",";
2473                                                 } else {
2474                                                         $item["tag"] = "";
2475                                                 }
2476
2477                                                 $item["tag"] .= $termhash . "[url=" . $termurl . "]" . $term . "[/url]";
2478                                         }
2479                                 }
2480                         }
2481                 }
2482
2483                 $links = $xpath->query("atom:link", $entry);
2484                 if ($links) {
2485                         self::parseLinks($links, $item);
2486                 }
2487
2488                 $item['conversation-uri'] = XML::getFirstNodeValue($xpath, 'ostatus:conversation/text()', $entry);
2489
2490                 $conv = $xpath->query('ostatus:conversation', $entry);
2491                 if (is_object($conv->item(0))) {
2492                         foreach ($conv->item(0)->attributes as $attributes) {
2493                                 if ($attributes->name == "ref") {
2494                                         $item['conversation-uri'] = $attributes->textContent;
2495                                 }
2496                                 if ($attributes->name == "href") {
2497                                         $item['conversation-href'] = $attributes->textContent;
2498                                 }
2499                         }
2500                 }
2501
2502                 // Is it a reply or a top level posting?
2503                 $item["parent-uri"] = $item["uri"];
2504
2505                 $inreplyto = $xpath->query("thr:in-reply-to", $entry);
2506                 if (is_object($inreplyto->item(0))) {
2507                         foreach ($inreplyto->item(0)->attributes as $attributes) {
2508                                 if ($attributes->name == "ref") {
2509                                         $item["parent-uri"] = $attributes->textContent;
2510                                 }
2511                         }
2512                 }
2513
2514                 // Get the type of the item (Top level post, reply or remote reply)
2515                 $entrytype = self::getEntryType($importer, $item);
2516
2517                 // Now assign the rest of the values that depend on the type of the message
2518                 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2519                         if (!isset($item["object-type"])) {
2520                                 $item["object-type"] = Activity\ObjectType::COMMENT;
2521                         }
2522
2523                         if ($item["contact-id"] != $owner["contact-id"]) {
2524                                 $item["contact-id"] = $owner["contact-id"];
2525                         }
2526
2527                         if (($item["network"] != $owner["network"]) && ($owner["network"] != "")) {
2528                                 $item["network"] = $owner["network"];
2529                         }
2530
2531                         if ($item["contact-id"] != $author["contact-id"]) {
2532                                 $item["contact-id"] = $author["contact-id"];
2533                         }
2534
2535                         if (($item["network"] != $author["network"]) && ($author["network"] != "")) {
2536                                 $item["network"] = $author["network"];
2537                         }
2538                 }
2539
2540                 // Ensure to have the correct share data
2541                 $item = Item::addShareDataFromOriginal($item);
2542
2543                 if ($entrytype == DFRN::REPLY_RC) {
2544                         $item["wall"] = 1;
2545                 } elseif ($entrytype == DFRN::TOP_LEVEL) {
2546                         if (!isset($item["object-type"])) {
2547                                 $item["object-type"] = Activity\ObjectType::NOTE;
2548                         }
2549
2550                         // Is it an event?
2551                         if (($item["object-type"] == Activity\ObjectType::EVENT) && !$owner_unknown) {
2552                                 Logger::log("Item ".$item["uri"]." seems to contain an event.", Logger::DEBUG);
2553                                 $ev = Event::fromBBCode($item["body"]);
2554                                 if ((!empty($ev['desc']) || !empty($ev['summary'])) && !empty($ev['start'])) {
2555                                         Logger::log("Event in item ".$item["uri"]." was found.", Logger::DEBUG);
2556                                         $ev["cid"]     = $importer["id"];
2557                                         $ev["uid"]     = $importer["importer_uid"];
2558                                         $ev["uri"]     = $item["uri"];
2559                                         $ev["edited"]  = $item["edited"];
2560                                         $ev["private"] = $item["private"];
2561                                         $ev["guid"]    = $item["guid"];
2562                                         $ev["plink"]   = $item["plink"];
2563
2564                                         $condition = ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]];
2565                                         $event = DBA::selectFirst('event', ['id'], $condition);
2566                                         if (DBA::isResult($event)) {
2567                                                 $ev["id"] = $event["id"];
2568                                         }
2569
2570                                         $event_id = Event::store($ev);
2571                                         Logger::log("Event ".$event_id." was stored", Logger::DEBUG);
2572                                         return;
2573                                 }
2574                         }
2575                 }
2576
2577                 if (!self::processVerbs($entrytype, $importer, $item, $is_like)) {
2578                         Logger::log("Exiting because 'processVerbs' told us so", Logger::DEBUG);
2579                         return;
2580                 }
2581
2582                 // This check is done here to be able to receive connection requests in "processVerbs"
2583                 if (($entrytype == DFRN::TOP_LEVEL) && $owner_unknown) {
2584                         Logger::log("Item won't be stored because user " . $importer["importer_uid"] . " doesn't follow " . $item["owner-link"] . ".", Logger::DEBUG);
2585                         return;
2586                 }
2587
2588
2589                 // Update content if 'updated' changes
2590                 if (DBA::isResult($current)) {
2591                         if (self::updateContent($current, $item, $importer, $entrytype)) {
2592                                 Logger::log("Item ".$item["uri"]." was updated.", Logger::DEBUG);
2593                         } else {
2594                                 Logger::log("Item " . $item["uri"] . " already existed.", Logger::DEBUG);
2595                         }
2596                         return;
2597                 }
2598
2599                 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2600                         $posted_id = Item::insert($item);
2601                         if ($posted_id) {
2602                                 Logger::log("Reply from contact ".$item["contact-id"]." was stored with id ".$posted_id, Logger::DEBUG);
2603
2604                                 if ($item['uid'] == 0) {
2605                                         Item::distribute($posted_id);
2606                                 }
2607
2608                                 return true;
2609                         }
2610                 } else { // $entrytype == DFRN::TOP_LEVEL
2611                         if (($importer["uid"] == 0) && ($importer["importer_uid"] != 0)) {
2612                                 Logger::log("Contact ".$importer["id"]." isn't known to user ".$importer["importer_uid"].". The post will be ignored.", Logger::DEBUG);
2613                                 return;
2614                         }
2615                         if (!Strings::compareLink($item["owner-link"], $importer["url"])) {
2616                                 /*
2617                                  * The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2618                                  * but otherwise there's a possible data mixup on the sender's system.
2619                                  * the tgroup delivery code called from Item::insert will correct it if it's a forum,
2620                                  * but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2621                                  */
2622                                 Logger::log('Correcting item owner.', Logger::DEBUG);
2623                                 $item["owner-link"] = $importer["url"];
2624                                 $item["owner-id"] = Contact::getIdForURL($importer["url"], 0);
2625                         }
2626
2627                         if (($importer["rel"] == Contact::FOLLOWER) && (!self::tgroupCheck($importer["importer_uid"], $item))) {
2628                                 Logger::log("Contact ".$importer["id"]." is only follower and tgroup check was negative.", Logger::DEBUG);
2629                                 return;
2630                         }
2631
2632                         // This is my contact on another system, but it's really me.
2633                         // Turn this into a wall post.
2634                         $notify = Item::isRemoteSelf($importer, $item);
2635
2636                         $posted_id = Item::insert($item, false, $notify);
2637
2638                         if ($notify) {
2639                                 $posted_id = $notify;
2640                         }
2641
2642                         Logger::log("Item was stored with id ".$posted_id, Logger::DEBUG);
2643
2644                         if ($item['uid'] == 0) {
2645                                 Item::distribute($posted_id);
2646                         }
2647
2648                         if (stristr($item["verb"], Activity::POKE)) {
2649                                 $item['id'] = $posted_id;
2650                                 self::doPoke($item, $importer);
2651                         }
2652                 }
2653         }
2654
2655         /**
2656          * @brief Deletes items
2657          *
2658          * @param object $xpath    XPath object
2659          * @param object $deletion deletion elements
2660          * @param array  $importer Record of the importer user mixed with contact of the content
2661          * @return void
2662          * @throws \Exception
2663          * @todo  set proper type-hints
2664          */
2665         private static function processDeletion($xpath, $deletion, $importer)
2666         {
2667                 Logger::log("Processing deletions");
2668                 $uri = null;
2669
2670                 foreach ($deletion->attributes as $attributes) {
2671                         if ($attributes->name == "ref") {
2672                                 $uri = $attributes->textContent;
2673                         }
2674                 }
2675
2676                 if (!$uri || !$importer["id"]) {
2677                         return false;
2678                 }
2679
2680                 $condition = ['uri' => $uri, 'uid' => $importer["importer_uid"]];
2681                 $item = Item::selectFirst(['id', 'parent', 'contact-id', 'file', 'deleted'], $condition);
2682                 if (!DBA::isResult($item)) {
2683                         Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " wasn't found.", Logger::DEBUG);
2684                         return;
2685                 }
2686
2687                 if (strstr($item['file'], '[')) {
2688                         Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " is filed. So it won't be deleted.", Logger::DEBUG);
2689                         return;
2690                 }
2691
2692                 // When it is a starting post it has to belong to the person that wants to delete it
2693                 if (($item['id'] == $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2694                         Logger::log("Item with uri " . $uri . " don't belong to contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2695                         return;
2696                 }
2697
2698                 // Comments can be deleted by the thread owner or comment owner
2699                 if (($item['id'] != $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2700                         $condition = ['id' => $item['parent'], 'contact-id' => $importer["id"]];
2701                         if (!Item::exists($condition)) {
2702                                 Logger::log("Item with uri " . $uri . " wasn't found or mustn't be deleted by contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2703                                 return;
2704                         }
2705                 }
2706
2707                 if ($item["deleted"]) {
2708                         return;
2709                 }
2710
2711                 Logger::log('deleting item '.$item['id'].' uri='.$uri, Logger::DEBUG);
2712
2713                 Item::delete(['id' => $item['id']]);
2714         }
2715
2716         /**
2717          * @brief Imports a DFRN message
2718          *
2719          * @param string $xml          The DFRN message
2720          * @param array  $importer     Record of the importer user mixed with contact of the content
2721          * @param bool   $sort_by_date Is used when feeds are polled
2722          * @return integer Import status
2723          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2724          * @throws \ImagickException
2725          * @todo  set proper type-hints
2726          */
2727         public static function import($xml, $importer, $sort_by_date = false)
2728         {
2729                 if ($xml == "") {
2730                         return 400;
2731                 }
2732
2733                 $doc = new DOMDocument();
2734                 @$doc->loadXML($xml);
2735
2736                 $xpath = new DOMXPath($doc);
2737                 $xpath->registerNamespace("atom", ActivityNamespace::ATOM1);
2738                 $xpath->registerNamespace("thr", ActivityNamespace::THREAD);
2739                 $xpath->registerNamespace("at", ActivityNamespace::TOMB);
2740                 $xpath->registerNamespace("media", ActivityNamespace::MEDIA);
2741                 $xpath->registerNamespace("dfrn", ActivityNamespace::DFRN);
2742                 $xpath->registerNamespace("activity", ActivityNamespace::ACTIVITY);
2743                 $xpath->registerNamespace("georss", ActivityNamespace::GEORSS);
2744                 $xpath->registerNamespace("poco", ActivityNamespace::POCO);
2745                 $xpath->registerNamespace("ostatus", ActivityNamespace::OSTATUS);
2746                 $xpath->registerNamespace("statusnet", ActivityNamespace::STATUSNET);
2747
2748                 $header = [];
2749                 $header["uid"] = $importer["importer_uid"];
2750                 $header["network"] = Protocol::DFRN;
2751                 $header["wall"] = 0;
2752                 $header["origin"] = 0;
2753                 $header["contact-id"] = $importer["id"];
2754
2755                 // Update the contact table if the data has changed
2756
2757                 // The "atom:author" is only present in feeds
2758                 if ($xpath->query("/atom:feed/atom:author")->length > 0) {
2759                         self::fetchauthor($xpath, $doc->firstChild, $importer, "atom:author", false, $xml);
2760                 }
2761
2762                 // Only the "dfrn:owner" in the head section contains all data
2763                 if ($xpath->query("/atom:feed/dfrn:owner")->length > 0) {
2764                         self::fetchauthor($xpath, $doc->firstChild, $importer, "dfrn:owner", false, $xml);
2765                 }
2766
2767                 Logger::log("Import DFRN message for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2768
2769                 // is it a public forum? Private forums aren't exposed with this method
2770                 $forum = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:community/text()"));
2771
2772                 // The account type is new since 3.5.1
2773                 if ($xpath->query("/atom:feed/dfrn:account_type")->length > 0) {
2774                         // Hint: We are using separate update calls for uid=0 and uid!=0 since a combined call is bad for the database performance
2775
2776                         $accounttype = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:account_type/text()"));
2777
2778                         if ($accounttype != $importer["contact-type"]) {
2779                                 DBA::update('contact', ['contact-type' => $accounttype], ['id' => $importer['id']]);
2780
2781                                 // Updating the public contact as well
2782                                 DBA::update('contact', ['contact-type' => $accounttype], ['uid' => 0, 'nurl' => $importer['nurl']]);
2783                         }
2784                         // A forum contact can either have set "forum" or "prv" - but not both
2785                         if ($accounttype == User::ACCOUNT_TYPE_COMMUNITY) {
2786                                 // It's a forum, so either set the public or private forum flag
2787                                 $condition = ['(`forum` != ? OR `prv` != ?) AND `id` = ?', $forum, !$forum, $importer['id']];
2788                                 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2789
2790                                 // Updating the public contact as well
2791                                 $condition = ['(`forum` != ? OR `prv` != ?) AND `uid` = 0 AND `nurl` = ?', $forum, !$forum, $importer['nurl']];
2792                                 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2793                         } else {
2794                                 // It's not a forum, so remove the flags
2795                                 $condition = ['(`forum` OR `prv`) AND `id` = ?', $importer['id']];
2796                                 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2797
2798                                 // Updating the public contact as well
2799                                 $condition = ['(`forum` OR `prv`) AND `uid` = 0 AND `nurl` = ?', $importer['nurl']];
2800                                 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2801                         }
2802                 } elseif ($forum != $importer["forum"]) { // Deprecated since 3.5.1
2803                         $condition = ['`forum` != ? AND `id` = ?', $forum, $importer["id"]];
2804                         DBA::update('contact', ['forum' => $forum], $condition);
2805
2806                         // Updating the public contact as well
2807                         $condition = ['`forum` != ? AND `uid` = 0 AND `nurl` = ?', $forum, $importer['nurl']];
2808                         DBA::update('contact', ['forum' => $forum], $condition);
2809                 }
2810
2811
2812                 // We are processing relocations even if we are ignoring a contact
2813                 $relocations = $xpath->query("/atom:feed/dfrn:relocate");
2814                 foreach ($relocations as $relocation) {
2815                         self::processRelocation($xpath, $relocation, $importer);
2816                 }
2817
2818                 if (($importer["uid"] != 0) && !$importer["readonly"]) {
2819                         $mails = $xpath->query("/atom:feed/dfrn:mail");
2820                         foreach ($mails as $mail) {
2821                                 self::processMail($xpath, $mail, $importer);
2822                         }
2823
2824                         $suggestions = $xpath->query("/atom:feed/dfrn:suggest");
2825                         foreach ($suggestions as $suggestion) {
2826                                 self::processSuggestion($xpath, $suggestion, $importer);
2827                         }
2828                 }
2829
2830                 $deletions = $xpath->query("/atom:feed/at:deleted-entry");
2831                 foreach ($deletions as $deletion) {
2832                         self::processDeletion($xpath, $deletion, $importer);
2833                 }
2834
2835                 if (!$sort_by_date) {
2836                         $entries = $xpath->query("/atom:feed/atom:entry");
2837                         foreach ($entries as $entry) {
2838                                 self::processEntry($header, $xpath, $entry, $importer, $xml);
2839                         }
2840                 } else {
2841                         $newentries = [];
2842                         $entries = $xpath->query("/atom:feed/atom:entry");
2843                         foreach ($entries as $entry) {
2844                                 $created = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2845                                 $newentries[strtotime($created)] = $entry;
2846                         }
2847
2848                         // Now sort after the publishing date
2849                         ksort($newentries);
2850
2851                         foreach ($newentries as $entry) {
2852                                 self::processEntry($header, $xpath, $entry, $importer, $xml);
2853                         }
2854                 }
2855                 Logger::log("Import done for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2856                 return 200;
2857         }
2858
2859         /**
2860          * @brief Returns the activity verb
2861          *
2862          * @param array $item Item array
2863          *
2864          * @return string activity verb
2865          */
2866         private static function constructVerb(array $item)
2867         {
2868                 if ($item['verb']) {
2869                         return $item['verb'];
2870                 }
2871                 return Activity::POST;
2872         }
2873
2874         private static function tgroupCheck($uid, $item)
2875         {
2876                 $mention = false;
2877
2878                 // check that the message originated elsewhere and is a top-level post
2879
2880                 if ($item['wall'] || $item['origin'] || ($item['uri'] != $item['parent-uri'])) {
2881                         return false;
2882                 }
2883
2884                 $user = DBA::selectFirst('user', ['page-flags', 'nickname'], ['uid' => $uid]);
2885                 if (!DBA::isResult($user)) {
2886                         return false;
2887                 }
2888
2889                 $community_page = ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY);
2890                 $prvgroup = ($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP);
2891
2892                 $link = Strings::normaliseLink(System::baseUrl() . '/profile/' . $user['nickname']);
2893
2894                 /*
2895                  * Diaspora uses their own hardwired link URL in @-tags
2896                  * instead of the one we supply with webfinger
2897                  */
2898                 $dlink = Strings::normaliseLink(System::baseUrl() . '/u/' . $user['nickname']);
2899
2900                 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
2901                 if ($cnt) {
2902                         foreach ($matches as $mtch) {
2903                                 if (Strings::compareLink($link, $mtch[1]) || Strings::compareLink($dlink, $mtch[1])) {
2904                                         $mention = true;
2905                                         Logger::log('mention found: ' . $mtch[2]);
2906                                 }
2907                         }
2908                 }
2909
2910                 if (!$mention) {
2911                         return false;
2912                 }
2913
2914                 return $community_page || $prvgroup;
2915         }
2916
2917         /**
2918          * This function returns true if $update has an edited timestamp newer
2919          * than $existing, i.e. $update contains new data which should override
2920          * what's already there.  If there is no timestamp yet, the update is
2921          * assumed to be newer.  If the update has no timestamp, the existing
2922          * item is assumed to be up-to-date.  If the timestamps are equal it
2923          * assumes the update has been seen before and should be ignored.
2924          *
2925          * @param $existing
2926          * @param $update
2927          * @return bool
2928          * @throws \Exception
2929          */
2930         private static function isEditedTimestampNewer($existing, $update)
2931         {
2932                 if (empty($existing['edited'])) {
2933                         return true;
2934                 }
2935                 if (empty($update['edited'])) {
2936                         return false;
2937                 }
2938
2939                 $existing_edited = DateTimeFormat::utc($existing['edited']);
2940                 $update_edited = DateTimeFormat::utc($update['edited']);
2941
2942                 return (strcmp($existing_edited, $update_edited) < 0);
2943         }
2944
2945         /**
2946          * Checks if the given contact url does support DFRN
2947          *
2948          * @param string  $url    profile url
2949          * @param boolean $update Update the profile
2950          * @return boolean
2951          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2952          * @throws \ImagickException
2953          */
2954         public static function isSupportedByContactUrl($url, $update = false)
2955         {
2956                 $probe = Probe::uri($url, Protocol::DFRN, 0, !$update);
2957                 return $probe['network'] == Protocol::DFRN;
2958         }
2959 }