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