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