]> git.mxchange.org Git - friendica.git/blob - src/Protocol/DFRN.php
Move Contact::Page_* constants to User::PAGE_FLAGS_*
[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 object $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($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 object  $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 object XML author object
616          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
617          * @todo  Find proper type-hints
618          */
619         private static function addAuthor($doc, $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 object $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 object XML author object
761          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
762          * @todo  Find proper type-hints
763          */
764         private static function addEntryAuthor($doc, $element, $contact_url, $item)
765         {
766                 $contact = Contact::getDetailsByURL($contact_url, $item["uid"]);
767
768                 $author = $doc->createElement($element);
769                 XML::addElement($doc, $author, "name", $contact["name"]);
770                 XML::addElement($doc, $author, "uri", $contact["url"]);
771                 XML::addElement($doc, $author, "dfrn:handle", $contact["addr"]);
772
773                 /// @Todo
774                 /// - Check real image type and image size
775                 /// - Check which of these boths elements we should use
776                 $attributes = [
777                                 "rel" => "photo",
778                                 "type" => "image/jpeg",
779                                 "media:width" => 80,
780                                 "media:height" => 80,
781                                 "href" => $contact["photo"]];
782                 XML::addElement($doc, $author, "link", "", $attributes);
783
784                 $attributes = [
785                                 "rel" => "avatar",
786                                 "type" => "image/jpeg",
787                                 "media:width" => 80,
788                                 "media:height" => 80,
789                                 "href" => $contact["photo"]];
790                 XML::addElement($doc, $author, "link", "", $attributes);
791
792                 return $author;
793         }
794
795         /**
796          * @brief Adds the activity elements
797          *
798          * @param object $doc      XML document
799          * @param string $element  Element name for the activity
800          * @param string $activity activity value
801          *
802          * @return object XML activity object
803          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
804          * @todo  Find proper type-hints
805          */
806         private static function createActivity($doc, $element, $activity)
807         {
808                 if ($activity) {
809                         $entry = $doc->createElement($element);
810
811                         $r = XML::parseString($activity, false);
812                         if (!$r) {
813                                 return false;
814                         }
815
816                         if ($r->type) {
817                                 XML::addElement($doc, $entry, "activity:object-type", $r->type);
818                         }
819
820                         if ($r->id) {
821                                 XML::addElement($doc, $entry, "id", $r->id);
822                         }
823
824                         if ($r->title) {
825                                 XML::addElement($doc, $entry, "title", $r->title);
826                         }
827
828                         if ($r->link) {
829                                 if (substr($r->link, 0, 1) == '<') {
830                                         if (strstr($r->link, '&') && (! strstr($r->link, '&amp;'))) {
831                                                 $r->link = str_replace('&', '&amp;', $r->link);
832                                         }
833
834                                         $r->link = preg_replace('/\<link(.*?)\"\>/', '<link$1"/>', $r->link);
835
836                                         // XML does need a single element as root element so we add a dummy element here
837                                         $data = XML::parseString("<dummy>" . $r->link . "</dummy>", false);
838                                         if (is_object($data)) {
839                                                 foreach ($data->link as $link) {
840                                                         $attributes = [];
841                                                         foreach ($link->attributes() as $parameter => $value) {
842                                                                 $attributes[$parameter] = $value;
843                                                         }
844                                                         XML::addElement($doc, $entry, "link", "", $attributes);
845                                                 }
846                                         }
847                                 } else {
848                                         $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $r->link];
849                                         XML::addElement($doc, $entry, "link", "", $attributes);
850                                 }
851                         }
852                         if ($r->content) {
853                                 XML::addElement($doc, $entry, "content", BBCode::convert($r->content), ["type" => "html"]);
854                         }
855
856                         return $entry;
857                 }
858
859                 return false;
860         }
861
862         /**
863          * @brief Adds the elements for attachments
864          *
865          * @param object $doc  XML document
866          * @param object $root XML root
867          * @param array  $item Item element
868          *
869          * @return void XML attachment object
870          * @todo  Find proper type-hints
871          */
872         private static function getAttachment($doc, $root, $item)
873         {
874                 $arr = explode('[/attach],', $item['attach']);
875                 if (count($arr)) {
876                         foreach ($arr as $r) {
877                                 $matches = false;
878                                 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|', $r, $matches);
879                                 if ($cnt) {
880                                         $attributes = ["rel" => "enclosure",
881                                                         "href" => $matches[1],
882                                                         "type" => $matches[3]];
883
884                                         if (intval($matches[2])) {
885                                                 $attributes["length"] = intval($matches[2]);
886                                         }
887
888                                         if (trim($matches[4]) != "") {
889                                                 $attributes["title"] = trim($matches[4]);
890                                         }
891
892                                         XML::addElement($doc, $root, "link", "", $attributes);
893                                 }
894                         }
895                 }
896         }
897
898         /**
899          * @brief Adds the "entry" elements for the DFRN protocol
900          *
901          * @param object $doc     XML document
902          * @param string $type    "text" or "html"
903          * @param array  $item    Item element
904          * @param array  $owner   Owner record
905          * @param bool   $comment Trigger the sending of the "comment" element
906          * @param int    $cid     Contact ID of the recipient
907          * @param bool   $single  If set, the entry is created as an XML document with a single "entry" element
908          *
909          * @return object XML entry object
910          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
911          * @throws \ImagickException
912          * @todo  Find proper type-hints
913          */
914         private static function entry($doc, $type, array $item, array $owner, $comment = false, $cid = 0, $single = false)
915         {
916                 $mentioned = [];
917
918                 if (!$item['parent']) {
919                         return;
920                 }
921
922                 if ($item['deleted']) {
923                         $attributes = ["ref" => $item['uri'], "when" => DateTimeFormat::utc($item['edited'] . '+00:00', DateTimeFormat::ATOM)];
924                         return XML::createElement($doc, "at:deleted-entry", "", $attributes);
925                 }
926
927                 if (!$single) {
928                         $entry = $doc->createElement("entry");
929                 } else {
930                         $entry = $doc->createElementNS(NAMESPACE_ATOM1, 'entry');
931                         $doc->appendChild($entry);
932
933                         $entry->setAttribute("xmlns:thr", NAMESPACE_THREAD);
934                         $entry->setAttribute("xmlns:at", NAMESPACE_TOMB);
935                         $entry->setAttribute("xmlns:media", NAMESPACE_MEDIA);
936                         $entry->setAttribute("xmlns:dfrn", NAMESPACE_DFRN);
937                         $entry->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
938                         $entry->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
939                         $entry->setAttribute("xmlns:poco", NAMESPACE_POCO);
940                         $entry->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
941                         $entry->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
942                 }
943
944                 if ($item['private']) {
945                         $body = Item::fixPrivatePhotos($item['body'], $owner['uid'], $item, $cid);
946                 } else {
947                         $body = $item['body'];
948                 }
949
950                 // Remove the abstract element. It is only locally important.
951                 $body = BBCode::stripAbstract($body);
952
953                 $htmlbody = '';
954                 if ($type == 'html') {
955                         $htmlbody = $body;
956
957                         if ($item['title'] != "") {
958                                 $htmlbody = "[b]" . $item['title'] . "[/b]\n\n" . $htmlbody;
959                         }
960
961                         $htmlbody = BBCode::convert($htmlbody, false, 7);
962                 }
963
964                 $author = self::addEntryAuthor($doc, "author", $item["author-link"], $item);
965                 $entry->appendChild($author);
966
967                 $dfrnowner = self::addEntryAuthor($doc, "dfrn:owner", $item["owner-link"], $item);
968                 $entry->appendChild($dfrnowner);
969
970                 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
971                         $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
972                         $parent = Item::selectFirst(['guid', 'plink'], ['uri' => $parent_item, 'uid' => $item['uid']]);
973                         $attributes = ["ref" => $parent_item, "type" => "text/html",
974                                                 "href" => $parent['plink'],
975                                                 "dfrn:diaspora_guid" => $parent['guid']];
976                         XML::addElement($doc, $entry, "thr:in-reply-to", "", $attributes);
977                 }
978
979                 // Add conversation data. This is used for OStatus
980                 $conversation_href = System::baseUrl()."/display/".$owner["nick"]."/".$item["parent"];
981                 $conversation_uri = $conversation_href;
982
983                 if (isset($parent_item)) {
984                         $conversation = DBA::selectFirst('conversation', ['conversation-uri', 'conversation-href'], ['item-uri' => $item['parent-uri']]);
985                         if (DBA::isResult($conversation)) {
986                                 if ($conversation['conversation-uri'] != '') {
987                                         $conversation_uri = $conversation['conversation-uri'];
988                                 }
989                                 if ($conversation['conversation-href'] != '') {
990                                         $conversation_href = $conversation['conversation-href'];
991                                 }
992                         }
993                 }
994
995                 $attributes = [
996                                 "href" => $conversation_href,
997                                 "ref" => $conversation_uri];
998
999                 XML::addElement($doc, $entry, "ostatus:conversation", $conversation_uri, $attributes);
1000
1001                 XML::addElement($doc, $entry, "id", $item["uri"]);
1002                 XML::addElement($doc, $entry, "title", $item["title"]);
1003
1004                 XML::addElement($doc, $entry, "published", DateTimeFormat::utc($item["created"] . "+00:00", DateTimeFormat::ATOM));
1005                 XML::addElement($doc, $entry, "updated", DateTimeFormat::utc($item["edited"] . "+00:00", DateTimeFormat::ATOM));
1006
1007                 // "dfrn:env" is used to read the content
1008                 XML::addElement($doc, $entry, "dfrn:env", Strings::base64UrlEncode($body, true));
1009
1010                 // The "content" field is not read by the receiver. We could remove it when the type is "text"
1011                 // We keep it at the moment, maybe there is some old version that doesn't read "dfrn:env"
1012                 XML::addElement($doc, $entry, "content", (($type == 'html') ? $htmlbody : $body), ["type" => $type]);
1013
1014                 // We save this value in "plink". Maybe we should read it from there as well?
1015                 XML::addElement(
1016                         $doc,
1017                         $entry,
1018                         "link",
1019                         "",
1020                         ["rel" => "alternate", "type" => "text/html",
1021                                  "href" => System::baseUrl() . "/display/" . $item["guid"]]
1022                 );
1023
1024                 // "comment-allow" is some old fashioned stuff for old Friendica versions.
1025                 // It is included in the rewritten code for completeness
1026                 if ($comment) {
1027                         XML::addElement($doc, $entry, "dfrn:comment-allow", 1);
1028                 }
1029
1030                 if ($item['location']) {
1031                         XML::addElement($doc, $entry, "dfrn:location", $item['location']);
1032                 }
1033
1034                 if ($item['coord']) {
1035                         XML::addElement($doc, $entry, "georss:point", $item['coord']);
1036                 }
1037
1038                 if ($item['private']) {
1039                         XML::addElement($doc, $entry, "dfrn:private", ($item['private'] ? $item['private'] : 1));
1040                 }
1041
1042                 if ($item['extid']) {
1043                         XML::addElement($doc, $entry, "dfrn:extid", $item['extid']);
1044                 }
1045
1046                 if ($item['post-type'] == Item::PT_PAGE) {
1047                         XML::addElement($doc, $entry, "dfrn:bookmark", "true");
1048                 }
1049
1050                 if ($item['app']) {
1051                         XML::addElement($doc, $entry, "statusnet:notice_info", "", ["local_id" => $item['id'], "source" => $item['app']]);
1052                 }
1053
1054                 XML::addElement($doc, $entry, "dfrn:diaspora_guid", $item["guid"]);
1055
1056                 // The signed text contains the content in Markdown, the sender handle and the signatur for the content
1057                 // It is needed for relayed comments to Diaspora.
1058                 if ($item['signed_text']) {
1059                         $sign = base64_encode(json_encode(['signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer']]));
1060                         XML::addElement($doc, $entry, "dfrn:diaspora_signature", $sign);
1061                 }
1062
1063                 XML::addElement($doc, $entry, "activity:verb", self::constructVerb($item));
1064
1065                 if ($item['object-type'] != "") {
1066                         XML::addElement($doc, $entry, "activity:object-type", $item['object-type']);
1067                 } elseif ($item['id'] == $item['parent']) {
1068                         XML::addElement($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
1069                 } else {
1070                         XML::addElement($doc, $entry, "activity:object-type", ACTIVITY_OBJ_COMMENT);
1071                 }
1072
1073                 $actobj = self::createActivity($doc, "activity:object", $item['object']);
1074                 if ($actobj) {
1075                         $entry->appendChild($actobj);
1076                 }
1077
1078                 $actarg = self::createActivity($doc, "activity:target", $item['target']);
1079                 if ($actarg) {
1080                         $entry->appendChild($actarg);
1081                 }
1082
1083                 $tags = Item::getFeedTags($item);
1084
1085                 /// @TODO Combine this with similar below if() block?
1086                 if (count($tags)) {
1087                         foreach ($tags as $t) {
1088                                 if (($type != 'html') || ($t[0] != "@")) {
1089                                         XML::addElement($doc, $entry, "category", "", ["scheme" => "X-DFRN:".$t[0].":".$t[1], "term" => $t[2]]);
1090                                 }
1091                         }
1092                 }
1093
1094                 if (count($tags)) {
1095                         foreach ($tags as $t) {
1096                                 if ($t[0] == "@") {
1097                                         $mentioned[$t[1]] = $t[1];
1098                                 }
1099                         }
1100                 }
1101
1102                 foreach ($mentioned as $mention) {
1103                         $condition = ['uid' => $owner["uid"], 'nurl' => Strings::normaliseLink($mention)];
1104                         $contact = DBA::selectFirst('contact', ['forum', 'prv'], $condition);
1105
1106                         if (DBA::isResult($contact) && ($contact["forum"] || $contact["prv"])) {
1107                                 XML::addElement(
1108                                         $doc,
1109                                         $entry,
1110                                         "link",
1111                                         "",
1112                                         ["rel" => "mentioned",
1113                                                         "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
1114                                                         "href" => $mention]
1115                                 );
1116                         } else {
1117                                 XML::addElement(
1118                                         $doc,
1119                                         $entry,
1120                                         "link",
1121                                         "",
1122                                         ["rel" => "mentioned",
1123                                                         "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
1124                                                         "href" => $mention]
1125                                 );
1126                         }
1127                 }
1128
1129                 self::getAttachment($doc, $entry, $item);
1130
1131                 return $entry;
1132         }
1133
1134         /**
1135          * @brief encrypts data via AES
1136          *
1137          * @param string $data The data that is to be encrypted
1138          * @param string $key  The AES key
1139          *
1140          * @return string encrypted data
1141          */
1142         private static function aesEncrypt($data, $key)
1143         {
1144                 return openssl_encrypt($data, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1145         }
1146
1147         /**
1148          * @brief decrypts data via AES
1149          *
1150          * @param string $encrypted The encrypted data
1151          * @param string $key       The AES key
1152          *
1153          * @return string decrypted data
1154          */
1155         public static function aesDecrypt($encrypted, $key)
1156         {
1157                 return openssl_decrypt($encrypted, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1158         }
1159
1160         /**
1161          * @brief Delivers the atom content to the contacts
1162          *
1163          * @param array  $owner    Owner record
1164          * @param array  $contact  Contact record of the receiver
1165          * @param string $atom     Content that will be transmitted
1166          * @param bool   $dissolve (to be documented)
1167          *
1168          * @param bool   $legacy_transport
1169          * @return int Deliver status. Negative values mean an error.
1170          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1171          * @throws \ImagickException
1172          * @todo  Add array type-hint for $owner, $contact
1173          */
1174         public static function deliver($owner, $contact, $atom, $dissolve = false, $legacy_transport = false)
1175         {
1176                 // At first try the Diaspora transport layer
1177                 if (!$dissolve && !$legacy_transport) {
1178                         $curlResult = self::transmit($owner, $contact, $atom);
1179                         if ($curlResult >= 200) {
1180                                 Logger::log('Delivery via Diaspora transport layer was successful with status ' . $curlResult);
1181                                 return $curlResult;
1182                         }
1183                 }
1184
1185                 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
1186
1187                 if ($contact['duplex'] && $contact['dfrn-id']) {
1188                         $idtosend = '0:' . $orig_id;
1189                 }
1190                 if ($contact['duplex'] && $contact['issued-id']) {
1191                         $idtosend = '1:' . $orig_id;
1192                 }
1193
1194                 $rino = Config::get('system', 'rino_encrypt');
1195                 $rino = intval($rino);
1196
1197                 Logger::log("Local rino version: ". $rino, Logger::DEBUG);
1198
1199                 $ssl_val = intval(Config::get('system', 'ssl_policy'));
1200
1201                 switch ($ssl_val) {
1202                         case SSL_POLICY_FULL:
1203                                 $ssl_policy = 'full';
1204                                 break;
1205                         case SSL_POLICY_SELFSIGN:
1206                                 $ssl_policy = 'self';
1207                                 break;
1208                         case SSL_POLICY_NONE:
1209                         default:
1210                                 $ssl_policy = 'none';
1211                                 break;
1212                 }
1213
1214                 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino='.$rino : '');
1215
1216                 Logger::log('dfrn_deliver: ' . $url);
1217
1218                 $curlResult = Network::curl($url);
1219
1220                 if ($curlResult->isTimeout()) {
1221                         Contact::markForArchival($contact);
1222                         return -2; // timed out
1223                 }
1224
1225                 $xml = $curlResult->getBody();
1226
1227                 $curl_stat = $curlResult->getReturnCode();
1228                 if (empty($curl_stat)) {
1229                         Contact::markForArchival($contact);
1230                         return -3; // timed out
1231                 }
1232
1233                 Logger::log('dfrn_deliver: ' . $xml, Logger::DATA);
1234
1235                 if (empty($xml)) {
1236                         Contact::markForArchival($contact);
1237                         return 3;
1238                 }
1239
1240                 if (strpos($xml, '<?xml') === false) {
1241                         Logger::log('dfrn_deliver: no valid XML returned');
1242                         Logger::log('dfrn_deliver: returned XML: ' . $xml, Logger::DATA);
1243                         Contact::markForArchival($contact);
1244                         return 3;
1245                 }
1246
1247                 $res = XML::parseString($xml);
1248
1249                 if (!is_object($res) || (intval($res->status) != 0) || !strlen($res->challenge) || !strlen($res->dfrn_id)) {
1250                         Contact::markForArchival($contact);
1251
1252                         if (empty($res->status)) {
1253                                 $status = 3;
1254                         } else {
1255                                 $status = $res->status;
1256                         }
1257
1258                         return $status;
1259                 }
1260
1261                 $postvars     = [];
1262                 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
1263                 $challenge    = hex2bin((string) $res->challenge);
1264                 $perm         = (($res->perm) ? $res->perm : null);
1265                 $dfrn_version = (float) (($res->dfrn_version) ? $res->dfrn_version : 2.0);
1266                 $rino_remote_version = intval($res->rino);
1267                 $page         = (($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? 1 : 0);
1268
1269                 Logger::log("Remote rino version: ".$rino_remote_version." for ".$contact["url"], Logger::DEBUG);
1270
1271                 if ($owner['page-flags'] == User::PAGE_FLAGS_PRVGROUP) {
1272                         $page = 2;
1273                 }
1274
1275                 $final_dfrn_id = '';
1276
1277                 if ($perm) {
1278                         if ((($perm == 'rw') && !intval($contact['writable']))
1279                                 || (($perm == 'r') && intval($contact['writable']))
1280                         ) {
1281                                 DBA::update('contact', ['writable' => ($perm == 'rw')], ['id' => $contact['id']]);
1282
1283                                 $contact['writable'] = (string) 1 - intval($contact['writable']);
1284                         }
1285                 }
1286
1287                 if (($contact['duplex'] && strlen($contact['pubkey']))
1288                         || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1289                         || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1290                 ) {
1291                         openssl_public_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['pubkey']);
1292                         openssl_public_decrypt($challenge, $postvars['challenge'], $contact['pubkey']);
1293                 } else {
1294                         openssl_private_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['prvkey']);
1295                         openssl_private_decrypt($challenge, $postvars['challenge'], $contact['prvkey']);
1296                 }
1297
1298                 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
1299
1300                 if (strpos($final_dfrn_id, ':') == 1) {
1301                         $final_dfrn_id = substr($final_dfrn_id, 2);
1302                 }
1303
1304                 if ($final_dfrn_id != $orig_id) {
1305                         Logger::log('dfrn_deliver: wrong dfrn_id.');
1306                         // did not decode properly - cannot trust this site
1307                         Contact::markForArchival($contact);
1308                         return 3;
1309                 }
1310
1311                 $postvars['dfrn_id']      = $idtosend;
1312                 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
1313                 if ($dissolve) {
1314                         $postvars['dissolve'] = '1';
1315                 }
1316
1317                 if ((($contact['rel']) && ($contact['rel'] != Contact::SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1318                         $postvars['data'] = $atom;
1319                         $postvars['perm'] = 'rw';
1320                 } else {
1321                         $postvars['data'] = str_replace('<dfrn:comment-allow>1', '<dfrn:comment-allow>0', $atom);
1322                         $postvars['perm'] = 'r';
1323                 }
1324
1325                 $postvars['ssl_policy'] = $ssl_policy;
1326
1327                 if ($page) {
1328                         $postvars['page'] = $page;
1329                 }
1330
1331
1332                 if ($rino > 0 && $rino_remote_version > 0 && (! $dissolve)) {
1333                         Logger::log('rino version: '. $rino_remote_version);
1334
1335                         switch ($rino_remote_version) {
1336                                 case 1:
1337                                         $key = openssl_random_pseudo_bytes(16);
1338                                         $data = self::aesEncrypt($postvars['data'], $key);
1339                                         break;
1340
1341                                 default:
1342                                         Logger::log("rino: invalid requested version '$rino_remote_version'");
1343                                         Contact::markForArchival($contact);
1344                                         return -8;
1345                         }
1346
1347                         $postvars['rino'] = $rino_remote_version;
1348                         $postvars['data'] = bin2hex($data);
1349
1350                         if ($dfrn_version >= 2.1) {
1351                                 if (($contact['duplex'] && strlen($contact['pubkey']))
1352                                         || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1353                                         || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1354                                 ) {
1355                                         openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1356                                 } else {
1357                                         openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1358                                 }
1359                         } else {
1360                                 if (($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1361                                         openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1362                                 } else {
1363                                         openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1364                                 }
1365                         }
1366
1367                         Logger::log('md5 rawkey ' . md5($postvars['key']));
1368
1369                         $postvars['key'] = bin2hex($postvars['key']);
1370                 }
1371
1372
1373                 Logger::log('dfrn_deliver: ' . "SENDING: " . print_r($postvars, true), Logger::DATA);
1374
1375                 $postResult = Network::post($contact['notify'], $postvars);
1376
1377                 $xml = $postResult->getBody();
1378
1379                 Logger::log('dfrn_deliver: ' . "RECEIVED: " . $xml, Logger::DATA);
1380
1381                 $curl_stat = $postResult->getReturnCode();
1382                 if (empty($curl_stat) || empty($xml)) {
1383                         Contact::markForArchival($contact);
1384                         return -9; // timed out
1385                 }
1386
1387                 if (($curl_stat == 503) && stristr($postResult->getHeader(), 'retry-after')) {
1388                         Contact::markForArchival($contact);
1389                         return -10;
1390                 }
1391
1392                 if (strpos($xml, '<?xml') === false) {
1393                         Logger::log('dfrn_deliver: phase 2: no valid XML returned');
1394                         Logger::log('dfrn_deliver: phase 2: returned XML: ' . $xml, Logger::DATA);
1395                         Contact::markForArchival($contact);
1396                         return 3;
1397                 }
1398
1399                 $res = XML::parseString($xml);
1400
1401                 if (!isset($res->status)) {
1402                         Contact::markForArchival($contact);
1403                         return -11;
1404                 }
1405
1406                 // Possibly old servers had returned an empty value when everything was okay
1407                 if (empty($res->status)) {
1408                         $res->status = 200;
1409                 }
1410
1411                 if (!empty($res->message)) {
1412                         Logger::log('Delivery returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1413                 }
1414
1415                 if (($res->status >= 200) && ($res->status <= 299)) {
1416                         Contact::unmarkForArchival($contact);
1417                 }
1418
1419                 return intval($res->status);
1420         }
1421
1422         /**
1423          * @brief Transmits atom content to the contacts via the Diaspora transport layer
1424          *
1425          * @param array  $owner   Owner record
1426          * @param array  $contact Contact record of the receiver
1427          * @param string $atom    Content that will be transmitted
1428          *
1429          * @param bool   $public_batch
1430          * @return int Deliver status. Negative values mean an error.
1431          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1432          * @throws \ImagickException
1433          */
1434         public static function transmit($owner, $contact, $atom, $public_batch = false)
1435         {
1436                 if (!$public_batch) {
1437                         if (empty($contact['addr'])) {
1438                                 Logger::log('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.');
1439                                 if (Contact::updateFromProbe($contact['id'])) {
1440                                         $new_contact = DBA::selectFirst('contact', ['addr'], ['id' => $contact['id']]);
1441                                         $contact['addr'] = $new_contact['addr'];
1442                                 }
1443
1444                                 if (empty($contact['addr'])) {
1445                                         Logger::log('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
1446                                         Contact::markForArchival($contact);
1447                                         return -21;
1448                                 }
1449                         }
1450
1451                         $fcontact = Diaspora::personByHandle($contact['addr']);
1452                         if (empty($fcontact)) {
1453                                 Logger::log('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
1454                                 Contact::markForArchival($contact);
1455                                 return -22;
1456                         }
1457                         $pubkey = $fcontact['pubkey'];
1458                 } else {
1459                         $pubkey = '';
1460                 }
1461
1462                 $envelope = Diaspora::buildMessage($atom, $owner, $contact, $owner['uprvkey'], $pubkey, $public_batch);
1463
1464                 // Create the endpoint for public posts. This is some WIP and should later be added to the probing
1465                 if ($public_batch && empty($contact["batch"])) {
1466                         $parts = parse_url($contact["notify"]);
1467                         $path_parts = explode('/', $parts['path']);
1468                         array_pop($path_parts);
1469                         $parts['path'] =  implode('/', $path_parts);
1470                         $contact["batch"] = Network::unparseURL($parts);
1471                 }
1472
1473                 $dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
1474
1475                 $content_type = ($public_batch ? "application/magic-envelope+xml" : "application/json");
1476
1477                 $postResult = Network::post($dest_url, $envelope, ["Content-Type: ".$content_type]);
1478                 $xml = $postResult->getBody();
1479
1480                 $curl_stat = $postResult->getReturnCode();
1481                 if (empty($curl_stat) || empty($xml)) {
1482                         Logger::log('Empty answer from ' . $contact['id'] . ' - ' . $dest_url);
1483                         Contact::markForArchival($contact);
1484                         return -9; // timed out
1485                 }
1486
1487                 if (($curl_stat == 503) && (stristr($postResult->getHeader(), 'retry-after'))) {
1488                         Contact::markForArchival($contact);
1489                         return -10;
1490                 }
1491
1492                 if (strpos($xml, '<?xml') === false) {
1493                         Logger::log('No valid XML returned from ' . $contact['id'] . ' - ' . $dest_url);
1494                         Logger::log('Returned XML: ' . $xml, Logger::DATA);
1495                         Contact::markForArchival($contact);
1496                         return 3;
1497                 }
1498
1499                 $res = XML::parseString($xml);
1500
1501                 if (empty($res->status)) {
1502                         Contact::markForArchival($contact);
1503                         return -23;
1504                 }
1505
1506                 if (!empty($res->message)) {
1507                         Logger::log('Transmit to ' . $dest_url . ' returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1508                 }
1509
1510                 if (($res->status >= 200) && ($res->status <= 299)) {
1511                         Contact::unmarkForArchival($contact);
1512                 }
1513
1514                 return intval($res->status);
1515         }
1516
1517         /**
1518          * @brief Fetch the author data from head or entry items
1519          *
1520          * @param object $xpath     XPath object
1521          * @param object $context   In which context should the data be searched
1522          * @param array  $importer  Record of the importer user mixed with contact of the content
1523          * @param string $element   Element name from which the data is fetched
1524          * @param bool   $onlyfetch Should the data only be fetched or should it update the contact record as well
1525          * @param string $xml       optional, default empty
1526          *
1527          * @return array Relevant data of the author
1528          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1529          * @throws \ImagickException
1530          * @todo  Find good type-hints for all parameter
1531          */
1532         private static function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "")
1533         {
1534                 $author = [];
1535                 $author["name"] = XML::getFirstNodeValue($xpath, $element."/atom:name/text()", $context);
1536                 $author["link"] = XML::getFirstNodeValue($xpath, $element."/atom:uri/text()", $context);
1537
1538                 $fields = ['id', 'uid', 'url', 'network', 'avatar-date', 'avatar', 'name-date', 'uri-date', 'addr',
1539                         'name', 'nick', 'about', 'location', 'keywords', 'xmpp', 'bdyear', 'bd', 'hidden', 'contact-type'];
1540                 $condition = ["`uid` = ? AND `nurl` = ? AND `network` != ?",
1541                         $importer["importer_uid"], Strings::normaliseLink($author["link"]), Protocol::STATUSNET];
1542                 $contact_old = DBA::selectFirst('contact', $fields, $condition);
1543
1544                 if (DBA::isResult($contact_old)) {
1545                         $author["contact-id"] = $contact_old["id"];
1546                         $author["network"] = $contact_old["network"];
1547                 } else {
1548                         if (!$onlyfetch) {
1549                                 Logger::log("Contact ".$author["link"]." wasn't found for user ".$importer["importer_uid"]." XML: ".$xml, Logger::DEBUG);
1550                         }
1551
1552                         $author["contact-unknown"] = true;
1553                         $author["contact-id"] = $importer["id"];
1554                         $author["network"] = $importer["network"];
1555                         $onlyfetch = true;
1556                 }
1557
1558                 // Until now we aren't serving different sizes - but maybe later
1559                 $avatarlist = [];
1560                 /// @todo check if "avatar" or "photo" would be the best field in the specification
1561                 $avatars = $xpath->query($element . "/atom:link[@rel='avatar']", $context);
1562                 foreach ($avatars as $avatar) {
1563                         $href = "";
1564                         $width = 0;
1565                         foreach ($avatar->attributes as $attributes) {
1566                                 /// @TODO Rewrite these similar if() to one switch
1567                                 if ($attributes->name == "href") {
1568                                         $href = $attributes->textContent;
1569                                 }
1570                                 if ($attributes->name == "width") {
1571                                         $width = $attributes->textContent;
1572                                 }
1573                                 if ($attributes->name == "updated") {
1574                                         $author["avatar-date"] = $attributes->textContent;
1575                                 }
1576                         }
1577                         if (($width > 0) && ($href != "")) {
1578                                 $avatarlist[$width] = $href;
1579                         }
1580                 }
1581
1582                 if (count($avatarlist) > 0) {
1583                         krsort($avatarlist);
1584                         $author["avatar"] = current($avatarlist);
1585                 }
1586
1587                 if (empty($author['avatar']) && !empty($author['link'])) {
1588                         $cid = Contact::getIdForURL($author['link'], 0);
1589                         if (!empty($cid)) {
1590                                 $contact = DBA::selectFirst('contact', ['avatar'], ['id' => $cid]);
1591                                 if (DBA::isResult($contact)) {
1592                                         $author['avatar'] = $contact['avatar'];
1593                                 }
1594                         }
1595                 }
1596
1597                 if (empty($author['avatar'])) {
1598                         Logger::log('Empty author: ' . $xml);
1599                 }
1600
1601                 if (DBA::isResult($contact_old) && !$onlyfetch) {
1602                         Logger::log("Check if contact details for contact " . $contact_old["id"] . " (" . $contact_old["nick"] . ") have to be updated.", Logger::DEBUG);
1603
1604                         $poco = ["url" => $contact_old["url"]];
1605
1606                         // When was the last change to name or uri?
1607                         $name_element = $xpath->query($element . "/atom:name", $context)->item(0);
1608                         foreach ($name_element->attributes as $attributes) {
1609                                 if ($attributes->name == "updated") {
1610                                         $poco["name-date"] = $attributes->textContent;
1611                                 }
1612                         }
1613
1614                         $link_element = $xpath->query($element . "/atom:link", $context)->item(0);
1615                         foreach ($link_element->attributes as $attributes) {
1616                                 if ($attributes->name == "updated") {
1617                                         $poco["uri-date"] = $attributes->textContent;
1618                                 }
1619                         }
1620
1621                         // Update contact data
1622                         $value = XML::getFirstNodeValue($xpath, $element . "/dfrn:handle/text()", $context);
1623                         if ($value != "") {
1624                                 $poco["addr"] = $value;
1625                         }
1626
1627                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:displayName/text()", $context);
1628                         if ($value != "") {
1629                                 $poco["name"] = $value;
1630                         }
1631
1632                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:preferredUsername/text()", $context);
1633                         if ($value != "") {
1634                                 $poco["nick"] = $value;
1635                         }
1636
1637                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:note/text()", $context);
1638                         if ($value != "") {
1639                                 $poco["about"] = $value;
1640                         }
1641
1642                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:address/poco:formatted/text()", $context);
1643                         if ($value != "") {
1644                                 $poco["location"] = $value;
1645                         }
1646
1647                         /// @todo Only search for elements with "poco:type" = "xmpp"
1648                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:ims/poco:value/text()", $context);
1649                         if ($value != "") {
1650                                 $poco["xmpp"] = $value;
1651                         }
1652
1653                         /// @todo Add support for the following fields that we don't support by now in the contact table:
1654                         /// - poco:utcOffset
1655                         /// - poco:urls
1656                         /// - poco:locality
1657                         /// - poco:region
1658                         /// - poco:country
1659
1660                         // If the "hide" element is present then the profile isn't searchable.
1661                         $hide = intval(XML::getFirstNodeValue($xpath, $element . "/dfrn:hide/text()", $context) == "true");
1662
1663                         Logger::log("Hidden status for contact " . $contact_old["url"] . ": " . $hide, Logger::DEBUG);
1664
1665                         // If the contact isn't searchable then set the contact to "hidden".
1666                         // Problem: This can be manually overridden by the user.
1667                         if ($hide) {
1668                                 $contact_old["hidden"] = true;
1669                         }
1670
1671                         // Save the keywords into the contact table
1672                         $tags = [];
1673                         $tagelements = $xpath->evaluate($element . "/poco:tags/text()", $context);
1674                         foreach ($tagelements as $tag) {
1675                                 $tags[$tag->nodeValue] = $tag->nodeValue;
1676                         }
1677
1678                         if (count($tags)) {
1679                                 $poco["keywords"] = implode(", ", $tags);
1680                         }
1681
1682                         // "dfrn:birthday" contains the birthday converted to UTC
1683                         $birthday = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1684
1685                         if (strtotime($birthday) > time()) {
1686                                 $bd_timestamp = strtotime($birthday);
1687
1688                                 $poco["bdyear"] = date("Y", $bd_timestamp);
1689                         }
1690
1691                         // "poco:birthday" is the birthday in the format "yyyy-mm-dd"
1692                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1693
1694                         if (!in_array($value, ["", "0000-00-00", DBA::NULL_DATE])) {
1695                                 $bdyear = date("Y");
1696                                 $value = str_replace(["0000", "0001"], $bdyear, $value);
1697
1698                                 if (strtotime($value) < time()) {
1699                                         $value = str_replace($bdyear, $bdyear + 1, $value);
1700                                 }
1701
1702                                 $poco["bd"] = $value;
1703                         }
1704
1705                         $contact = array_merge($contact_old, $poco);
1706
1707                         if ($contact_old["bdyear"] != $contact["bdyear"]) {
1708                                 Event::createBirthday($contact, $birthday);
1709                         }
1710
1711                         // Get all field names
1712                         $fields = [];
1713                         foreach ($contact_old as $field => $data) {
1714                                 $fields[$field] = $data;
1715                         }
1716
1717                         unset($fields["id"]);
1718                         unset($fields["uid"]);
1719                         unset($fields["url"]);
1720                         unset($fields["avatar-date"]);
1721                         unset($fields["avatar"]);
1722                         unset($fields["name-date"]);
1723                         unset($fields["uri-date"]);
1724
1725                         $update = false;
1726                         // Update check for this field has to be done differently
1727                         $datefields = ["name-date", "uri-date"];
1728                         foreach ($datefields as $field) {
1729                                 // The date fields arrives as '2018-07-17T10:44:45Z' - the database return '2018-07-17 10:44:45'
1730                                 // The fields have to be in the same format to be comparable, since strtotime does add timezones.
1731                                 $contact[$field] = DateTimeFormat::utc($contact[$field]);
1732
1733                                 if (strtotime($contact[$field]) > strtotime($contact_old[$field])) {
1734                                         Logger::log("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $contact_old[$field] . "'", Logger::DEBUG);
1735                                         $update = true;
1736                                 }
1737                         }
1738
1739                         foreach ($fields as $field => $data) {
1740                                 if ($contact[$field] != $contact_old[$field]) {
1741                                         Logger::log("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $contact_old[$field] . "'", Logger::DEBUG);
1742                                         $update = true;
1743                                 }
1744                         }
1745
1746                         if ($update) {
1747                                 Logger::log("Update contact data for contact " . $contact["id"] . " (" . $contact["nick"] . ")", Logger::DEBUG);
1748
1749                                 q(
1750                                         "UPDATE `contact` SET `name` = '%s', `nick` = '%s', `about` = '%s', `location` = '%s',
1751                                         `addr` = '%s', `keywords` = '%s', `bdyear` = '%s', `bd` = '%s', `hidden` = %d,
1752                                         `xmpp` = '%s', `name-date`  = '%s', `uri-date` = '%s'
1753                                         WHERE `id` = %d AND `network` = '%s'",
1754                                         DBA::escape($contact["name"]), DBA::escape($contact["nick"]), DBA::escape($contact["about"]),   DBA::escape($contact["location"]),
1755                                         DBA::escape($contact["addr"]), DBA::escape($contact["keywords"]), DBA::escape($contact["bdyear"]),
1756                                         DBA::escape($contact["bd"]), intval($contact["hidden"]), DBA::escape($contact["xmpp"]),
1757                                         DBA::escape(DateTimeFormat::utc($contact["name-date"])), DBA::escape(DateTimeFormat::utc($contact["uri-date"])),
1758                                         intval($contact["id"]), DBA::escape($contact["network"])
1759                                 );
1760                         }
1761
1762                         Contact::updateAvatar(
1763                                 $author['avatar'],
1764                                 $importer['importer_uid'],
1765                                 $contact['id'],
1766                                 (strtotime($contact['avatar-date']) > strtotime($contact_old['avatar-date']) || ($author['avatar'] != $contact_old['avatar']))
1767                         );
1768
1769                         /*
1770                          * The generation is a sign for the reliability of the provided data.
1771                          * It is used in the socgraph.php to prevent that old contact data
1772                          * that was relayed over several servers can overwrite contact
1773                          * data that we received directly.
1774                          */
1775
1776                         $poco["generation"] = 2;
1777                         $poco["photo"] = $author["avatar"];
1778                         $poco["hide"] = $hide;
1779                         $poco["contact-type"] = $contact["contact-type"];
1780                         $gcid = GContact::update($poco);
1781
1782                         GContact::link($gcid, $importer["importer_uid"], $contact["id"]);
1783                 }
1784
1785                 return $author;
1786         }
1787
1788         /**
1789          * @brief Transforms activity objects into an XML string
1790          *
1791          * @param object $xpath    XPath object
1792          * @param object $activity Activity object
1793          * @param string $element  element name
1794          *
1795          * @return string XML string
1796          * @todo Find good type-hints for all parameter
1797          */
1798         private static function transformActivity($xpath, $activity, $element)
1799         {
1800                 if (!is_object($activity)) {
1801                         return "";
1802                 }
1803
1804                 $obj_doc = new DOMDocument("1.0", "utf-8");
1805                 $obj_doc->formatOutput = true;
1806
1807                 $obj_element = $obj_doc->createElementNS(NAMESPACE_ATOM1, $element);
1808
1809                 $activity_type = $xpath->query("activity:object-type/text()", $activity)->item(0)->nodeValue;
1810                 XML::addElement($obj_doc, $obj_element, "type", $activity_type);
1811
1812                 $id = $xpath->query("atom:id", $activity)->item(0);
1813                 if (is_object($id)) {
1814                         $obj_element->appendChild($obj_doc->importNode($id, true));
1815                 }
1816
1817                 $title = $xpath->query("atom:title", $activity)->item(0);
1818                 if (is_object($title)) {
1819                         $obj_element->appendChild($obj_doc->importNode($title, true));
1820                 }
1821
1822                 $links = $xpath->query("atom:link", $activity);
1823                 if (is_object($links)) {
1824                         foreach ($links as $link) {
1825                                 $obj_element->appendChild($obj_doc->importNode($link, true));
1826                         }
1827                 }
1828
1829                 $content = $xpath->query("atom:content", $activity)->item(0);
1830                 if (is_object($content)) {
1831                         $obj_element->appendChild($obj_doc->importNode($content, true));
1832                 }
1833
1834                 $obj_doc->appendChild($obj_element);
1835
1836                 $objxml = $obj_doc->saveXML($obj_element);
1837
1838                 /// @todo This isn't totally clean. We should find a way to transform the namespaces
1839                 $objxml = str_replace("<".$element.' xmlns="http://www.w3.org/2005/Atom">', "<".$element.">", $objxml);
1840                 return($objxml);
1841         }
1842
1843         /**
1844          * @brief Processes the mail elements
1845          *
1846          * @param object $xpath    XPath object
1847          * @param object $mail     mail elements
1848          * @param array  $importer Record of the importer user mixed with contact of the content
1849          * @return void
1850          * @throws \Exception
1851          * @todo  Find good type-hints for all parameter
1852          */
1853         private static function processMail($xpath, $mail, $importer)
1854         {
1855                 Logger::log("Processing mails");
1856
1857                 /// @TODO Rewrite this to one statement
1858                 $msg = [];
1859                 $msg["uid"] = $importer["importer_uid"];
1860                 $msg["from-name"] = $xpath->query("dfrn:sender/dfrn:name/text()", $mail)->item(0)->nodeValue;
1861                 $msg["from-url"] = $xpath->query("dfrn:sender/dfrn:uri/text()", $mail)->item(0)->nodeValue;
1862                 $msg["from-photo"] = $xpath->query("dfrn:sender/dfrn:avatar/text()", $mail)->item(0)->nodeValue;
1863                 $msg["contact-id"] = $importer["id"];
1864                 $msg["uri"] = $xpath->query("dfrn:id/text()", $mail)->item(0)->nodeValue;
1865                 $msg["parent-uri"] = $xpath->query("dfrn:in-reply-to/text()", $mail)->item(0)->nodeValue;
1866                 $msg["created"] = DateTimeFormat::utc($xpath->query("dfrn:sentdate/text()", $mail)->item(0)->nodeValue);
1867                 $msg["title"] = $xpath->query("dfrn:subject/text()", $mail)->item(0)->nodeValue;
1868                 $msg["body"] = $xpath->query("dfrn:content/text()", $mail)->item(0)->nodeValue;
1869                 $msg["seen"] = 0;
1870                 $msg["replied"] = 0;
1871
1872                 DBA::insert('mail', $msg);
1873
1874                 $msg["id"] = DBA::lastInsertId();
1875
1876                 // send notifications.
1877                 /// @TODO Arange this mess
1878                 $notif_params = [
1879                         "type" => NOTIFY_MAIL,
1880                         "notify_flags" => $importer["notify-flags"],
1881                         "language" => $importer["language"],
1882                         "to_name" => $importer["username"],
1883                         "to_email" => $importer["email"],
1884                         "uid" => $importer["importer_uid"],
1885                         "item" => $msg,
1886                         "parent" => $msg["parent-uri"],
1887                         "source_name" => $msg["from-name"],
1888                         "source_link" => $importer["url"],
1889                         "source_photo" => $importer["thumb"],
1890                         "verb" => ACTIVITY_POST,
1891                         "otype" => "mail"
1892                 ];
1893
1894                 notification($notif_params);
1895
1896                 Logger::log("Mail is processed, notification was sent.");
1897         }
1898
1899         /**
1900          * @brief Processes the suggestion elements
1901          *
1902          * @param object $xpath      XPath object
1903          * @param object $suggestion suggestion elements
1904          * @param array  $importer   Record of the importer user mixed with contact of the content
1905          * @return boolean
1906          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1907          * @todo  Find good type-hints for all parameter
1908          */
1909         private static function processSuggestion($xpath, $suggestion, $importer)
1910         {
1911                 Logger::log("Processing suggestions");
1912
1913                 /// @TODO Rewrite this to one statement
1914                 $suggest = [];
1915                 $suggest["uid"] = $importer["importer_uid"];
1916                 $suggest["cid"] = $importer["id"];
1917                 $suggest["url"] = $xpath->query("dfrn:url/text()", $suggestion)->item(0)->nodeValue;
1918                 $suggest["name"] = $xpath->query("dfrn:name/text()", $suggestion)->item(0)->nodeValue;
1919                 $suggest["photo"] = $xpath->query("dfrn:photo/text()", $suggestion)->item(0)->nodeValue;
1920                 $suggest["request"] = $xpath->query("dfrn:request/text()", $suggestion)->item(0)->nodeValue;
1921                 $suggest["body"] = $xpath->query("dfrn:note/text()", $suggestion)->item(0)->nodeValue;
1922
1923                 // Does our member already have a friend matching this description?
1924
1925                 /*
1926                  * The valid result means the friend we're about to send a friend
1927                  * suggestion already has them in their contact, which means no further
1928                  * action is required.
1929                  *
1930                  * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1931                  */
1932                 $condition = ['name' => $suggest["name"], 'nurl' => Strings::normaliseLink($suggest["url"]),
1933                         'uid' => $suggest["uid"]];
1934                 if (DBA::exists('contact', $condition)) {
1935                         return false;
1936                 }
1937
1938                 // Do we already have an fcontact record for this person?
1939
1940                 $fid = 0;
1941                 $condition = ['url' => $suggest["url"], 'name' => $suggest["name"], 'request' => $suggest["request"]];
1942                 $fcontact = DBA::selectFirst('fcontact', ['id'], $condition);
1943                 if (DBA::isResult($fcontact)) {
1944                         $fid = $fcontact["id"];
1945
1946                         // OK, we do. Do we already have an introduction for this person?
1947                         if (DBA::exists('intro', ['uid' => $suggest["uid"], 'fid' => $fid])) {
1948                                 /*
1949                                  * The valid result means the friend we're about to send a friend
1950                                  * suggestion already has them in their contact, which means no further
1951                                  * action is required.
1952                                  *
1953                                  * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1954                                  */
1955                                 return false;
1956                         }
1957                 }
1958                 if (!$fid) {
1959                         $r = q(
1960                                 "INSERT INTO `fcontact` (`name`,`url`,`photo`,`request`) VALUES ('%s', '%s', '%s', '%s')",
1961                                 DBA::escape($suggest["name"]),
1962                                 DBA::escape($suggest["url"]),
1963                                 DBA::escape($suggest["photo"]),
1964                                 DBA::escape($suggest["request"])
1965                         );
1966                 }
1967
1968                 $condition = ['url' => $suggest["url"], 'name' => $suggest["name"], 'request' => $suggest["request"]];
1969                 $fcontact = DBA::selectFirst('fcontact', ['id'], $condition);
1970
1971                 /*
1972                  * If no record in fcontact is found, below INSERT statement will not
1973                  * link an introduction to it.
1974                  */
1975                 if (!DBA::isResult($fcontact)) {
1976                         // Database record did not get created. Quietly give up.
1977                         exit();
1978                 }
1979
1980                 $fid = $r[0]["id"];
1981
1982                 $hash = Strings::getRandomHex();
1983
1984                 q(
1985                         "INSERT INTO `intro` (`uid`, `fid`, `contact-id`, `note`, `hash`, `datetime`, `blocked`)
1986                         VALUES(%d, %d, %d, '%s', '%s', '%s', %d)",
1987                         intval($suggest["uid"]),
1988                         intval($fid),
1989                         intval($suggest["cid"]),
1990                         DBA::escape($suggest["body"]),
1991                         DBA::escape($hash),
1992                         DBA::escape(DateTimeFormat::utcNow()),
1993                         intval(0)
1994                 );
1995
1996                 notification(
1997                         [
1998                                 "type"         => NOTIFY_SUGGEST,
1999                                 "notify_flags" => $importer["notify-flags"],
2000                                 "language"     => $importer["language"],
2001                                 "to_name"      => $importer["username"],
2002                                 "to_email"     => $importer["email"],
2003                                 "uid"          => $importer["importer_uid"],
2004                                 "item"         => $suggest,
2005                                 "link"         => System::baseUrl()."/notifications/intros",
2006                                 "source_name"  => $importer["name"],
2007                                 "source_link"  => $importer["url"],
2008                                 "source_photo" => $importer["photo"],
2009                                 "verb"         => ACTIVITY_REQ_FRIEND,
2010                                 "otype"        => "intro"]
2011                 );
2012
2013                 return true;
2014         }
2015
2016         /**
2017          * @brief Processes the relocation elements
2018          *
2019          * @param object $xpath      XPath object
2020          * @param object $relocation relocation elements
2021          * @param array  $importer   Record of the importer user mixed with contact of the content
2022          * @return boolean
2023          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2024          * @throws \ImagickException
2025          * @todo  Find good type-hints for all parameter
2026          */
2027         private static function processRelocation($xpath, $relocation, $importer)
2028         {
2029                 Logger::log("Processing relocations");
2030
2031                 /// @TODO Rewrite this to one statement
2032                 $relocate = [];
2033                 $relocate["uid"] = $importer["importer_uid"];
2034                 $relocate["cid"] = $importer["id"];
2035                 $relocate["url"] = $xpath->query("dfrn:url/text()", $relocation)->item(0)->nodeValue;
2036                 $relocate["addr"] = $xpath->query("dfrn:addr/text()", $relocation)->item(0)->nodeValue;
2037                 $relocate["name"] = $xpath->query("dfrn:name/text()", $relocation)->item(0)->nodeValue;
2038                 $relocate["avatar"] = $xpath->query("dfrn:avatar/text()", $relocation)->item(0)->nodeValue;
2039                 $relocate["photo"] = $xpath->query("dfrn:photo/text()", $relocation)->item(0)->nodeValue;
2040                 $relocate["thumb"] = $xpath->query("dfrn:thumb/text()", $relocation)->item(0)->nodeValue;
2041                 $relocate["micro"] = $xpath->query("dfrn:micro/text()", $relocation)->item(0)->nodeValue;
2042                 $relocate["request"] = $xpath->query("dfrn:request/text()", $relocation)->item(0)->nodeValue;
2043                 $relocate["confirm"] = $xpath->query("dfrn:confirm/text()", $relocation)->item(0)->nodeValue;
2044                 $relocate["notify"] = $xpath->query("dfrn:notify/text()", $relocation)->item(0)->nodeValue;
2045                 $relocate["poll"] = $xpath->query("dfrn:poll/text()", $relocation)->item(0)->nodeValue;
2046                 $relocate["sitepubkey"] = $xpath->query("dfrn:sitepubkey/text()", $relocation)->item(0)->nodeValue;
2047
2048                 if (($relocate["avatar"] == "") && ($relocate["photo"] != "")) {
2049                         $relocate["avatar"] = $relocate["photo"];
2050                 }
2051
2052                 if ($relocate["addr"] == "") {
2053                         $relocate["addr"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$3@$2", $relocate["url"]);
2054                 }
2055
2056                 // update contact
2057                 $r = q(
2058                         "SELECT `photo`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d",
2059                         intval($importer["id"]),
2060                         intval($importer["importer_uid"])
2061                 );
2062
2063                 if (!DBA::isResult($r)) {
2064                         Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
2065                         return false;
2066                 }
2067
2068                 $old = $r[0];
2069
2070                 // Update the gcontact entry
2071                 $relocate["server_url"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $relocate["url"]);
2072
2073                 $fields = ['name' => $relocate["name"], 'photo' => $relocate["avatar"],
2074                         'url' => $relocate["url"], 'nurl' => Strings::normaliseLink($relocate["url"]),
2075                         'addr' => $relocate["addr"], 'connect' => $relocate["addr"],
2076                         'notify' => $relocate["notify"], 'server_url' => $relocate["server_url"]];
2077                 DBA::update('gcontact', $fields, ['nurl' => Strings::normaliseLink($old["url"])]);
2078
2079                 // Update the contact table. We try to find every entry.
2080                 $fields = ['name' => $relocate["name"], 'avatar' => $relocate["avatar"],
2081                         'url' => $relocate["url"], 'nurl' => Strings::normaliseLink($relocate["url"]),
2082                         'addr' => $relocate["addr"], 'request' => $relocate["request"],
2083                         'confirm' => $relocate["confirm"], 'notify' => $relocate["notify"],
2084                         'poll' => $relocate["poll"], 'site-pubkey' => $relocate["sitepubkey"]];
2085                 $condition = ["(`id` = ?) OR (`nurl` = ?)", $importer["id"], Strings::normaliseLink($old["url"])];
2086
2087                 DBA::update('contact', $fields, $condition);
2088
2089                 Contact::updateAvatar($relocate["avatar"], $importer["importer_uid"], $importer["id"], true);
2090
2091                 Logger::log('Contacts are updated.');
2092
2093                 /// @TODO
2094                 /// merge with current record, current contents have priority
2095                 /// update record, set url-updated
2096                 /// update profile photos
2097                 /// schedule a scan?
2098                 return true;
2099         }
2100
2101         /**
2102          * @brief Updates an item
2103          *
2104          * @param array $current   the current item record
2105          * @param array $item      the new item record
2106          * @param array $importer  Record of the importer user mixed with contact of the content
2107          * @param int   $entrytype Is it a toplevel entry, a comment or a relayed comment?
2108          * @return mixed
2109          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2110          * @todo  set proper type-hints (array?)
2111          */
2112         private static function updateContent($current, $item, $importer, $entrytype)
2113         {
2114                 $changed = false;
2115
2116                 if (self::isEditedTimestampNewer($current, $item)) {
2117                         // do not accept (ignore) an earlier edit than one we currently have.
2118                         if (DateTimeFormat::utc($item["edited"]) < $current["edited"]) {
2119                                 return false;
2120                         }
2121
2122                         $fields = ['title' => defaults($item, 'title', ''), 'body' => defaults($item, 'body', ''),
2123                                         'tag' => defaults($item, 'tag', ''), 'changed' => DateTimeFormat::utcNow(),
2124                                         'edited' => DateTimeFormat::utc($item["edited"])];
2125
2126                         $condition = ["`uri` = ? AND `uid` IN (0, ?)", $item["uri"], $importer["importer_uid"]];
2127                         Item::update($fields, $condition);
2128
2129                         $changed = true;
2130                 }
2131                 return $changed;
2132         }
2133
2134         /**
2135          * @brief Detects the entry type of the item
2136          *
2137          * @param array $importer Record of the importer user mixed with contact of the content
2138          * @param array $item     the new item record
2139          *
2140          * @return int Is it a toplevel entry, a comment or a relayed comment?
2141          * @throws \Exception
2142          * @todo  set proper type-hints (array?)
2143          */
2144         private static function getEntryType($importer, $item)
2145         {
2146                 if ($item["parent-uri"] != $item["uri"]) {
2147                         $community = false;
2148
2149                         if ($importer["page-flags"] == User::PAGE_FLAGS_COMMUNITY || $importer["page-flags"] == User::PAGE_FLAGS_PRVGROUP) {
2150                                 $sql_extra = "";
2151                                 $community = true;
2152                                 Logger::log("possible community action");
2153                         } else {
2154                                 $sql_extra = " AND `contact`.`self` AND `item`.`wall` ";
2155                         }
2156
2157                         // was the top-level post for this action written by somebody on this site?
2158                         // Specifically, the recipient?
2159
2160                         $is_a_remote_action = false;
2161
2162                         $parent = Item::selectFirst(['parent-uri'], ['uri' => $item["parent-uri"]]);
2163                         if (DBA::isResult($parent)) {
2164                                 $r = q(
2165                                         "SELECT `item`.`forum_mode`, `item`.`wall` FROM `item`
2166                                         INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
2167                                         WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' OR `item`.`thr-parent` = '%s')
2168                                         AND `item`.`uid` = %d
2169                                         $sql_extra
2170                                         LIMIT 1",
2171                                         DBA::escape($parent["parent-uri"]),
2172                                         DBA::escape($parent["parent-uri"]),
2173                                         DBA::escape($parent["parent-uri"]),
2174                                         intval($importer["importer_uid"])
2175                                 );
2176                                 if (DBA::isResult($r)) {
2177                                         $is_a_remote_action = true;
2178                                 }
2179                         }
2180
2181                         /*
2182                          * Does this have the characteristics of a community or private group action?
2183                          * If it's an action to a wall post on a community/prvgroup page it's a
2184                          * valid community action. Also forum_mode makes it valid for sure.
2185                          * If neither, it's not.
2186                          */
2187                         if ($is_a_remote_action && $community && (!$r[0]["forum_mode"]) && (!$r[0]["wall"])) {
2188                                 $is_a_remote_action = false;
2189                                 Logger::log("not a community action");
2190                         }
2191
2192                         if ($is_a_remote_action) {
2193                                 return DFRN::REPLY_RC;
2194                         } else {
2195                                 return DFRN::REPLY;
2196                         }
2197                 } else {
2198                         return DFRN::TOP_LEVEL;
2199                 }
2200         }
2201
2202         /**
2203          * @brief Send a "poke"
2204          *
2205          * @param array $item      the new item record
2206          * @param array $importer  Record of the importer user mixed with contact of the content
2207          * @param int   $posted_id The record number of item record that was just posted
2208          * @return void
2209          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2210          * @todo  set proper type-hints (array?)
2211          */
2212         private static function doPoke($item, $importer, $posted_id)
2213         {
2214                 $verb = urldecode(substr($item["verb"], strpos($item["verb"], "#")+1));
2215                 if (!$verb) {
2216                         return;
2217                 }
2218                 $xo = XML::parseString($item["object"], false);
2219
2220                 if (($xo->type == ACTIVITY_OBJ_PERSON) && ($xo->id)) {
2221                         // somebody was poked/prodded. Was it me?
2222                         foreach ($xo->link as $l) {
2223                                 $atts = $l->attributes();
2224                                 switch ($atts["rel"]) {
2225                                         case "alternate":
2226                                                 $Blink = $atts["href"];
2227                                                 break;
2228                                         default:
2229                                                 break;
2230                                 }
2231                         }
2232
2233                         if ($Blink && Strings::compareLink($Blink, System::baseUrl() . "/profile/" . $importer["nickname"])) {
2234                                 $author = DBA::selectFirst('contact', ['name', 'thumb', 'url'], ['id' => $item['author-id']]);
2235
2236                                 $item['id'] = $posted_id;
2237
2238                                 $parent = Item::selectFirst(['id'], ['uri' => $item['parent-uri'], 'uid' => $importer["importer_uid"]]);
2239                                 $item["parent"] = $parent['id'];
2240
2241                                 // send a notification
2242                                 notification(
2243                                         [
2244                                         "type"         => NOTIFY_POKE,
2245                                         "notify_flags" => $importer["notify-flags"],
2246                                         "language"     => $importer["language"],
2247                                         "to_name"      => $importer["username"],
2248                                         "to_email"     => $importer["email"],
2249                                         "uid"          => $importer["importer_uid"],
2250                                         "item"         => $item,
2251                                         "link"         => System::baseUrl()."/display/".urlencode(Item::getGuidById($posted_id)),
2252                                         "source_name"  => $author["name"],
2253                                         "source_link"  => $author["url"],
2254                                         "source_photo" => $author["thumb"],
2255                                         "verb"         => $item["verb"],
2256                                         "otype"        => "person",
2257                                         "activity"     => $verb,
2258                                         "parent"       => $item["parent"]]
2259                                 );
2260                         }
2261                 }
2262         }
2263
2264         /**
2265          * @brief Processes several actions, depending on the verb
2266          *
2267          * @param int   $entrytype Is it a toplevel entry, a comment or a relayed comment?
2268          * @param array $importer  Record of the importer user mixed with contact of the content
2269          * @param array $item      the new item record
2270          * @param bool  $is_like   Is the verb a "like"?
2271          *
2272          * @return bool Should the processing of the entries be continued?
2273          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2274          * @todo  set proper type-hints (array?)
2275          */
2276         private static function processVerbs($entrytype, $importer, &$item, &$is_like)
2277         {
2278                 Logger::log("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, Logger::DEBUG);
2279
2280                 if (($entrytype == DFRN::TOP_LEVEL)) {
2281                         // The filling of the the "contact" variable is done for legcy reasons
2282                         // The functions below are partly used by ostatus.php as well - where we have this variable
2283                         $r = q("SELECT * FROM `contact` WHERE `id` = %d", intval($importer["id"]));
2284                         $contact = $r[0];
2285                         $nickname = $contact["nick"];
2286
2287                         // Big question: Do we need these functions? They were part of the "consume_feed" function.
2288                         // This function once was responsible for DFRN and OStatus.
2289                         if (activity_match($item["verb"], ACTIVITY_FOLLOW)) {
2290                                 Logger::log("New follower");
2291                                 Contact::addRelationship($importer, $contact, $item, $nickname);
2292                                 return false;
2293                         }
2294                         if (activity_match($item["verb"], ACTIVITY_UNFOLLOW)) {
2295                                 Logger::log("Lost follower");
2296                                 Contact::removeFollower($importer, $contact, $item);
2297                                 return false;
2298                         }
2299                         if (activity_match($item["verb"], ACTIVITY_REQ_FRIEND)) {
2300                                 Logger::log("New friend request");
2301                                 Contact::addRelationship($importer, $contact, $item, $nickname, true);
2302                                 return false;
2303                         }
2304                         if (activity_match($item["verb"], ACTIVITY_UNFRIEND)) {
2305                                 Logger::log("Lost sharer");
2306                                 Contact::removeSharer($importer, $contact, $item);
2307                                 return false;
2308                         }
2309                 } else {
2310                         if (($item["verb"] == ACTIVITY_LIKE)
2311                                 || ($item["verb"] == ACTIVITY_DISLIKE)
2312                                 || ($item["verb"] == ACTIVITY_ATTEND)
2313                                 || ($item["verb"] == ACTIVITY_ATTENDNO)
2314                                 || ($item["verb"] == ACTIVITY_ATTENDMAYBE)
2315                         ) {
2316                                 $is_like = true;
2317                                 $item["gravity"] = GRAVITY_ACTIVITY;
2318                                 // only one like or dislike per person
2319                                 // splitted into two queries for performance issues
2320                                 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2321                                         'verb' => $item["verb"], 'parent-uri' => $item["parent-uri"]];
2322                                 if (Item::exists($condition)) {
2323                                         return false;
2324                                 }
2325
2326                                 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2327                                         'verb' => $item["verb"], 'thr-parent' => $item["parent-uri"]];
2328                                 if (Item::exists($condition)) {
2329                                         return false;
2330                                 }
2331
2332                                 // The owner of an activity must be the author
2333                                 $item["owner-name"] = $item["author-name"];
2334                                 $item["owner-link"] = $item["author-link"];
2335                                 $item["owner-avatar"] = $item["author-avatar"];
2336                                 $item["owner-id"] = $item["author-id"];
2337                         } else {
2338                                 $is_like = false;
2339                         }
2340
2341                         if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) {
2342                                 $xo = XML::parseString($item["object"], false);
2343                                 $xt = XML::parseString($item["target"], false);
2344
2345                                 if ($xt->type == ACTIVITY_OBJ_NOTE) {
2346                                         $item_tag = Item::selectFirst(['id', 'tag'], ['uri' => $xt->id, 'uid' => $importer["importer_uid"]]);
2347
2348                                         if (!DBA::isResult($item_tag)) {
2349                                                 Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
2350                                                 return false;
2351                                         }
2352
2353                                         // extract tag, if not duplicate, add to parent item
2354                                         if ($xo->content) {
2355                                                 if (!stristr($item_tag["tag"], trim($xo->content))) {
2356                                                         $tag = $item_tag["tag"] . (strlen($item_tag["tag"]) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
2357                                                         Item::update(['tag' => $tag], ['id' => $item_tag["id"]]);
2358                                                 }
2359                                         }
2360                                 }
2361                         }
2362                 }
2363                 return true;
2364         }
2365
2366         /**
2367          * @brief Processes the link elements
2368          *
2369          * @param object $links link elements
2370          * @param array  $item  the item record
2371          * @return void
2372          * @todo set proper type-hints
2373          */
2374         private static function parseLinks($links, &$item)
2375         {
2376                 $rel = "";
2377                 $href = "";
2378                 $type = "";
2379                 $length = "0";
2380                 $title = "";
2381                 foreach ($links as $link) {
2382                         foreach ($link->attributes as $attributes) {
2383                                 switch ($attributes->name) {
2384                                         case "href"  : $href   = $attributes->textContent; break;
2385                                         case "rel"   : $rel    = $attributes->textContent; break;
2386                                         case "type"  : $type   = $attributes->textContent; break;
2387                                         case "length": $length = $attributes->textContent; break;
2388                                         case "title" : $title  = $attributes->textContent; break;
2389                                 }
2390                         }
2391                         if (($rel != "") && ($href != "")) {
2392                                 switch ($rel) {
2393                                         case "alternate":
2394                                                 $item["plink"] = $href;
2395                                                 break;
2396                                         case "enclosure":
2397                                                 if (!empty($item["attach"])) {
2398                                                         $item["attach"] .= ",";
2399                                                 } else {
2400                                                         $item["attach"] = "";
2401                                                 }
2402
2403                                                 $item["attach"] .= '[attach]href="' . $href . '" length="' . $length . '" type="' . $type . '" title="' . $title . '"[/attach]';
2404                                                 break;
2405                                 }
2406                         }
2407                 }
2408         }
2409
2410         /**
2411          * @brief Processes the entry elements which contain the items and comments
2412          *
2413          * @param array  $header   Array of the header elements that always stay the same
2414          * @param object $xpath    XPath object
2415          * @param object $entry    entry elements
2416          * @param array  $importer Record of the importer user mixed with contact of the content
2417          * @param object $xml      xml
2418          * @return void
2419          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2420          * @throws \ImagickException
2421          * @todo  Add type-hints
2422          */
2423         private static function processEntry($header, $xpath, $entry, $importer, $xml)
2424         {
2425                 Logger::log("Processing entries");
2426
2427                 $item = $header;
2428
2429                 $item["protocol"] = Conversation::PARCEL_DFRN;
2430
2431                 $item["source"] = $xml;
2432
2433                 // Get the uri
2434                 $item["uri"] = XML::getFirstNodeValue($xpath, "atom:id/text()", $entry);
2435
2436                 $item["edited"] = XML::getFirstNodeValue($xpath, "atom:updated/text()", $entry);
2437
2438                 $current = Item::selectFirst(['id', 'uid', 'edited', 'body'],
2439                         ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]]
2440                 );
2441                 // Is there an existing item?
2442                 if (DBA::isResult($current) && !self::isEditedTimestampNewer($current, $item)) {
2443                         Logger::log("Item ".$item["uri"]." (".$item['edited'].") already existed.", Logger::DEBUG);
2444                         return;
2445                 }
2446
2447                 // Fetch the owner
2448                 $owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true, $xml);
2449
2450                 $owner_unknown = (isset($owner["contact-unknown"]) && $owner["contact-unknown"]);
2451
2452                 $item["owner-name"] = $owner["name"];
2453                 $item["owner-link"] = $owner["link"];
2454                 $item["owner-avatar"] = $owner["avatar"];
2455                 $item["owner-id"] = Contact::getIdForURL($owner["link"], 0);
2456
2457                 // fetch the author
2458                 $author = self::fetchauthor($xpath, $entry, $importer, "atom:author", true, $xml);
2459
2460                 $item["author-name"] = $author["name"];
2461                 $item["author-link"] = $author["link"];
2462                 $item["author-avatar"] = $author["avatar"];
2463                 $item["author-id"] = Contact::getIdForURL($author["link"], 0);
2464
2465                 $item["title"] = XML::getFirstNodeValue($xpath, "atom:title/text()", $entry);
2466
2467                 $item["created"] = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2468
2469                 $item["body"] = XML::getFirstNodeValue($xpath, "dfrn:env/text()", $entry);
2470                 $item["body"] = str_replace([' ',"\t","\r","\n"], ['','','',''], $item["body"]);
2471                 // make sure nobody is trying to sneak some html tags by us
2472                 $item["body"] = Strings::escapeTags(Strings::base64UrlDecode($item["body"]));
2473
2474                 $item["body"] = BBCode::limitBodySize($item["body"]);
2475
2476                 /// @todo Do we really need this check for HTML elements? (It was copied from the old function)
2477                 if ((strpos($item['body'], '<') !== false) && (strpos($item['body'], '>') !== false)) {
2478                         $base_url = \get_app()->getBaseURL();
2479                         $item['body'] = HTML::relToAbs($item['body'], $base_url);
2480
2481                         $item['body'] = HTML::toBBCodeVideo($item['body']);
2482
2483                         $item['body'] = OEmbed::HTML2BBCode($item['body']);
2484
2485                         $config = HTMLPurifier_Config::createDefault();
2486                         $config->set('Cache.DefinitionImpl', null);
2487
2488                         // we shouldn't need a whitelist, because the bbcode converter
2489                         // will strip out any unsupported tags.
2490
2491                         $purifier = new HTMLPurifier($config);
2492                         $item['body'] = $purifier->purify($item['body']);
2493
2494                         $item['body'] = @HTML::toBBCode($item['body']);
2495                 }
2496
2497                 /// @todo We should check for a repeated post and if we know the repeated author.
2498
2499                 // We don't need the content element since "dfrn:env" is always present
2500                 //$item["body"] = $xpath->query("atom:content/text()", $entry)->item(0)->nodeValue;
2501
2502                 $item["location"] = XML::getFirstNodeValue($xpath, "dfrn:location/text()", $entry);
2503
2504                 $item["coord"] = XML::getFirstNodeValue($xpath, "georss:point", $entry);
2505
2506                 $item["private"] = XML::getFirstNodeValue($xpath, "dfrn:private/text()", $entry);
2507
2508                 $item["extid"] = XML::getFirstNodeValue($xpath, "dfrn:extid/text()", $entry);
2509
2510                 if (XML::getFirstNodeValue($xpath, "dfrn:bookmark/text()", $entry) == "true") {
2511                         $item["post-type"] = Item::PT_PAGE;
2512                 }
2513
2514                 $notice_info = $xpath->query("statusnet:notice_info", $entry);
2515                 if ($notice_info && ($notice_info->length > 0)) {
2516                         foreach ($notice_info->item(0)->attributes as $attributes) {
2517                                 if ($attributes->name == "source") {
2518                                         $item["app"] = strip_tags($attributes->textContent);
2519                                 }
2520                         }
2521                 }
2522
2523                 $item["guid"] = XML::getFirstNodeValue($xpath, "dfrn:diaspora_guid/text()", $entry);
2524
2525                 // We store the data from "dfrn:diaspora_signature" in a different table, this is done in "Item::insert"
2526                 $dsprsig = XML::unescape(XML::getFirstNodeValue($xpath, "dfrn:diaspora_signature/text()", $entry));
2527                 if ($dsprsig != "") {
2528                         $item["dsprsig"] = $dsprsig;
2529                 }
2530
2531                 $item["verb"] = XML::getFirstNodeValue($xpath, "activity:verb/text()", $entry);
2532
2533                 if (XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry) != "") {
2534                         $item["object-type"] = XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry);
2535                 }
2536
2537                 $object = $xpath->query("activity:object", $entry)->item(0);
2538                 $item["object"] = self::transformActivity($xpath, $object, "object");
2539
2540                 if (trim($item["object"]) != "") {
2541                         $r = XML::parseString($item["object"], false);
2542                         if (isset($r->type)) {
2543                                 $item["object-type"] = $r->type;
2544                         }
2545                 }
2546
2547                 $target = $xpath->query("activity:target", $entry)->item(0);
2548                 $item["target"] = self::transformActivity($xpath, $target, "target");
2549
2550                 $categories = $xpath->query("atom:category", $entry);
2551                 if ($categories) {
2552                         foreach ($categories as $category) {
2553                                 $term = "";
2554                                 $scheme = "";
2555                                 foreach ($category->attributes as $attributes) {
2556                                         if ($attributes->name == "term") {
2557                                                 $term = $attributes->textContent;
2558                                         }
2559
2560                                         if ($attributes->name == "scheme") {
2561                                                 $scheme = $attributes->textContent;
2562                                         }
2563                                 }
2564
2565                                 if (($term != "") && ($scheme != "")) {
2566                                         $parts = explode(":", $scheme);
2567                                         if ((count($parts) >= 4) && (array_shift($parts) == "X-DFRN")) {
2568                                                 $termhash = array_shift($parts);
2569                                                 $termurl = implode(":", $parts);
2570
2571                                                 if (!empty($item["tag"])) {
2572                                                         $item["tag"] .= ",";
2573                                                 } else {
2574                                                         $item["tag"] = "";
2575                                                 }
2576
2577                                                 $item["tag"] .= $termhash . "[url=" . $termurl . "]" . $term . "[/url]";
2578                                         }
2579                                 }
2580                         }
2581                 }
2582
2583                 $links = $xpath->query("atom:link", $entry);
2584                 if ($links) {
2585                         self::parseLinks($links, $item);
2586                 }
2587
2588                 $item['conversation-uri'] = XML::getFirstNodeValue($xpath, 'ostatus:conversation/text()', $entry);
2589
2590                 $conv = $xpath->query('ostatus:conversation', $entry);
2591                 if (is_object($conv->item(0))) {
2592                         foreach ($conv->item(0)->attributes as $attributes) {
2593                                 if ($attributes->name == "ref") {
2594                                         $item['conversation-uri'] = $attributes->textContent;
2595                                 }
2596                                 if ($attributes->name == "href") {
2597                                         $item['conversation-href'] = $attributes->textContent;
2598                                 }
2599                         }
2600                 }
2601
2602                 // Is it a reply or a top level posting?
2603                 $item["parent-uri"] = $item["uri"];
2604
2605                 $inreplyto = $xpath->query("thr:in-reply-to", $entry);
2606                 if (is_object($inreplyto->item(0))) {
2607                         foreach ($inreplyto->item(0)->attributes as $attributes) {
2608                                 if ($attributes->name == "ref") {
2609                                         $item["parent-uri"] = $attributes->textContent;
2610                                 }
2611                         }
2612                 }
2613
2614                 // Get the type of the item (Top level post, reply or remote reply)
2615                 $entrytype = self::getEntryType($importer, $item);
2616
2617                 // Now assign the rest of the values that depend on the type of the message
2618                 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2619                         if (!isset($item["object-type"])) {
2620                                 $item["object-type"] = ACTIVITY_OBJ_COMMENT;
2621                         }
2622
2623                         if ($item["contact-id"] != $owner["contact-id"]) {
2624                                 $item["contact-id"] = $owner["contact-id"];
2625                         }
2626
2627                         if (($item["network"] != $owner["network"]) && ($owner["network"] != "")) {
2628                                 $item["network"] = $owner["network"];
2629                         }
2630
2631                         if ($item["contact-id"] != $author["contact-id"]) {
2632                                 $item["contact-id"] = $author["contact-id"];
2633                         }
2634
2635                         if (($item["network"] != $author["network"]) && ($author["network"] != "")) {
2636                                 $item["network"] = $author["network"];
2637                         }
2638                 }
2639
2640                 if ($entrytype == DFRN::REPLY_RC) {
2641                         $item["wall"] = 1;
2642                 } elseif ($entrytype == DFRN::TOP_LEVEL) {
2643                         if (!isset($item["object-type"])) {
2644                                 $item["object-type"] = ACTIVITY_OBJ_NOTE;
2645                         }
2646
2647                         // Is it an event?
2648                         if (($item["object-type"] == ACTIVITY_OBJ_EVENT) && !$owner_unknown) {
2649                                 Logger::log("Item ".$item["uri"]." seems to contain an event.", Logger::DEBUG);
2650                                 $ev = Event::fromBBCode($item["body"]);
2651                                 if ((!empty($ev['desc']) || !empty($ev['summary'])) && !empty($ev['start'])) {
2652                                         Logger::log("Event in item ".$item["uri"]." was found.", Logger::DEBUG);
2653                                         $ev["cid"]     = $importer["id"];
2654                                         $ev["uid"]     = $importer["importer_uid"];
2655                                         $ev["uri"]     = $item["uri"];
2656                                         $ev["edited"]  = $item["edited"];
2657                                         $ev["private"] = $item["private"];
2658                                         $ev["guid"]    = $item["guid"];
2659                                         $ev["plink"]   = $item["plink"];
2660
2661                                         $condition = ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]];
2662                                         $event = DBA::selectFirst('event', ['id'], $condition);
2663                                         if (DBA::isResult($event)) {
2664                                                 $ev["id"] = $event["id"];
2665                                         }
2666
2667                                         $event_id = Event::store($ev);
2668                                         Logger::log("Event ".$event_id." was stored", Logger::DEBUG);
2669                                         return;
2670                                 }
2671                         }
2672                 }
2673
2674                 if (!self::processVerbs($entrytype, $importer, $item, $is_like)) {
2675                         Logger::log("Exiting because 'processVerbs' told us so", Logger::DEBUG);
2676                         return;
2677                 }
2678
2679                 // This check is done here to be able to receive connection requests in "processVerbs"
2680                 if (($entrytype == DFRN::TOP_LEVEL) && $owner_unknown) {
2681                         Logger::log("Item won't be stored because user " . $importer["importer_uid"] . " doesn't follow " . $item["owner-link"] . ".", Logger::DEBUG);
2682                         return;
2683                 }
2684
2685
2686                 // Update content if 'updated' changes
2687                 if (DBA::isResult($current)) {
2688                         if (self::updateContent($current, $item, $importer, $entrytype)) {
2689                                 Logger::log("Item ".$item["uri"]." was updated.", Logger::DEBUG);
2690                         } else {
2691                                 Logger::log("Item " . $item["uri"] . " already existed.", Logger::DEBUG);
2692                         }
2693                         return;
2694                 }
2695
2696                 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2697                         $posted_id = Item::insert($item);
2698                         if ($posted_id) {
2699                                 Logger::log("Reply from contact ".$item["contact-id"]." was stored with id ".$posted_id, Logger::DEBUG);
2700
2701                                 if ($item['uid'] == 0) {
2702                                         Item::distribute($posted_id);
2703                                 }
2704
2705                                 return true;
2706                         }
2707                 } else { // $entrytype == DFRN::TOP_LEVEL
2708                         if (($importer["uid"] == 0) && ($importer["importer_uid"] != 0)) {
2709                                 Logger::log("Contact ".$importer["id"]." isn't known to user ".$importer["importer_uid"].". The post will be ignored.", Logger::DEBUG);
2710                                 return;
2711                         }
2712                         if (!Strings::compareLink($item["owner-link"], $importer["url"])) {
2713                                 /*
2714                                  * The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2715                                  * but otherwise there's a possible data mixup on the sender's system.
2716                                  * the tgroup delivery code called from Item::insert will correct it if it's a forum,
2717                                  * but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2718                                  */
2719                                 Logger::log('Correcting item owner.', Logger::DEBUG);
2720                                 $item["owner-link"] = $importer["url"];
2721                                 $item["owner-id"] = Contact::getIdForURL($importer["url"], 0);
2722                         }
2723
2724                         if (($importer["rel"] == Contact::FOLLOWER) && (!self::tgroupCheck($importer["importer_uid"], $item))) {
2725                                 Logger::log("Contact ".$importer["id"]." is only follower and tgroup check was negative.", Logger::DEBUG);
2726                                 return;
2727                         }
2728
2729                         // This is my contact on another system, but it's really me.
2730                         // Turn this into a wall post.
2731                         $notify = Item::isRemoteSelf($importer, $item);
2732
2733                         $posted_id = Item::insert($item, false, $notify);
2734
2735                         if ($notify) {
2736                                 $posted_id = $notify;
2737                         }
2738
2739                         Logger::log("Item was stored with id ".$posted_id, Logger::DEBUG);
2740
2741                         if ($item['uid'] == 0) {
2742                                 Item::distribute($posted_id);
2743                         }
2744
2745                         if (stristr($item["verb"], ACTIVITY_POKE)) {
2746                                 self::doPoke($item, $importer, $posted_id);
2747                         }
2748                 }
2749         }
2750
2751         /**
2752          * @brief Deletes items
2753          *
2754          * @param object $xpath    XPath object
2755          * @param object $deletion deletion elements
2756          * @param array  $importer Record of the importer user mixed with contact of the content
2757          * @return void
2758          * @throws \Exception
2759          * @todo  set proper type-hints
2760          */
2761         private static function processDeletion($xpath, $deletion, $importer)
2762         {
2763                 Logger::log("Processing deletions");
2764                 $uri = null;
2765
2766                 foreach ($deletion->attributes as $attributes) {
2767                         if ($attributes->name == "ref") {
2768                                 $uri = $attributes->textContent;
2769                         }
2770                 }
2771
2772                 if (!$uri || !$importer["id"]) {
2773                         return false;
2774                 }
2775
2776                 $condition = ['uri' => $uri, 'uid' => $importer["importer_uid"]];
2777                 $item = Item::selectFirst(['id', 'parent', 'contact-id', 'file', 'deleted'], $condition);
2778                 if (!DBA::isResult($item)) {
2779                         Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " wasn't found.", Logger::DEBUG);
2780                         return;
2781                 }
2782
2783                 if (strstr($item['file'], '[')) {
2784                         Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " is filed. So it won't be deleted.", Logger::DEBUG);
2785                         return;
2786                 }
2787
2788                 // When it is a starting post it has to belong to the person that wants to delete it
2789                 if (($item['id'] == $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2790                         Logger::log("Item with uri " . $uri . " don't belong to contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2791                         return;
2792                 }
2793
2794                 // Comments can be deleted by the thread owner or comment owner
2795                 if (($item['id'] != $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2796                         $condition = ['id' => $item['parent'], 'contact-id' => $importer["id"]];
2797                         if (!Item::exists($condition)) {
2798                                 Logger::log("Item with uri " . $uri . " wasn't found or mustn't be deleted by contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2799                                 return;
2800                         }
2801                 }
2802
2803                 if ($item["deleted"]) {
2804                         return;
2805                 }
2806
2807                 Logger::log('deleting item '.$item['id'].' uri='.$uri, Logger::DEBUG);
2808
2809                 Item::delete(['id' => $item['id']]);
2810         }
2811
2812         /**
2813          * @brief Imports a DFRN message
2814          *
2815          * @param string $xml          The DFRN message
2816          * @param array  $importer     Record of the importer user mixed with contact of the content
2817          * @param bool   $sort_by_date Is used when feeds are polled
2818          * @return integer Import status
2819          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2820          * @throws \ImagickException
2821          * @todo  set proper type-hints
2822          */
2823         public static function import($xml, $importer, $sort_by_date = false)
2824         {
2825                 if ($xml == "") {
2826                         return 400;
2827                 }
2828
2829                 $doc = new DOMDocument();
2830                 @$doc->loadXML($xml);
2831
2832                 $xpath = new DOMXPath($doc);
2833                 $xpath->registerNamespace("atom", NAMESPACE_ATOM1);
2834                 $xpath->registerNamespace("thr", NAMESPACE_THREAD);
2835                 $xpath->registerNamespace("at", NAMESPACE_TOMB);
2836                 $xpath->registerNamespace("media", NAMESPACE_MEDIA);
2837                 $xpath->registerNamespace("dfrn", NAMESPACE_DFRN);
2838                 $xpath->registerNamespace("activity", NAMESPACE_ACTIVITY);
2839                 $xpath->registerNamespace("georss", NAMESPACE_GEORSS);
2840                 $xpath->registerNamespace("poco", NAMESPACE_POCO);
2841                 $xpath->registerNamespace("ostatus", NAMESPACE_OSTATUS);
2842                 $xpath->registerNamespace("statusnet", NAMESPACE_STATUSNET);
2843
2844                 $header = [];
2845                 $header["uid"] = $importer["importer_uid"];
2846                 $header["network"] = Protocol::DFRN;
2847                 $header["wall"] = 0;
2848                 $header["origin"] = 0;
2849                 $header["contact-id"] = $importer["id"];
2850
2851                 // Update the contact table if the data has changed
2852
2853                 // The "atom:author" is only present in feeds
2854                 if ($xpath->query("/atom:feed/atom:author")->length > 0) {
2855                         self::fetchauthor($xpath, $doc->firstChild, $importer, "atom:author", false, $xml);
2856                 }
2857
2858                 // Only the "dfrn:owner" in the head section contains all data
2859                 if ($xpath->query("/atom:feed/dfrn:owner")->length > 0) {
2860                         self::fetchauthor($xpath, $doc->firstChild, $importer, "dfrn:owner", false, $xml);
2861                 }
2862
2863                 Logger::log("Import DFRN message for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2864
2865                 // is it a public forum? Private forums aren't exposed with this method
2866                 $forum = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:community/text()"));
2867
2868                 // The account type is new since 3.5.1
2869                 if ($xpath->query("/atom:feed/dfrn:account_type")->length > 0) {
2870                         // Hint: We are using separate update calls for uid=0 and uid!=0 since a combined call is bad for the database performance
2871
2872                         $accounttype = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:account_type/text()"));
2873
2874                         if ($accounttype != $importer["contact-type"]) {
2875                                 DBA::update('contact', ['contact-type' => $accounttype], ['id' => $importer['id']]);
2876
2877                                 // Updating the public contact as well
2878                                 DBA::update('contact', ['contact-type' => $accounttype], ['uid' => 0, 'nurl' => $importer['nurl']]);
2879                         }
2880                         // A forum contact can either have set "forum" or "prv" - but not both
2881                         if ($accounttype == Contact::ACCOUNT_TYPE_COMMUNITY) {
2882                                 // It's a forum, so either set the public or private forum flag
2883                                 $condition = ['(`forum` != ? OR `prv` != ?) AND `id` = ?', $forum, !$forum, $importer['id']];
2884                                 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2885
2886                                 // Updating the public contact as well
2887                                 $condition = ['(`forum` != ? OR `prv` != ?) AND `uid` = 0 AND `nurl` = ?', $forum, !$forum, $importer['nurl']];
2888                                 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2889                         } else {
2890                                 // It's not a forum, so remove the flags
2891                                 $condition = ['(`forum` OR `prv`) AND `id` = ?', $importer['id']];
2892                                 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2893
2894                                 // Updating the public contact as well
2895                                 $condition = ['(`forum` OR `prv`) AND `uid` = 0 AND `nurl` = ?', $importer['nurl']];
2896                                 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2897                         }
2898                 } elseif ($forum != $importer["forum"]) { // Deprecated since 3.5.1
2899                         $condition = ['`forum` != ? AND `id` = ?', $forum, $importer["id"]];
2900                         DBA::update('contact', ['forum' => $forum], $condition);
2901
2902                         // Updating the public contact as well
2903                         $condition = ['`forum` != ? AND `uid` = 0 AND `nurl` = ?', $forum, $importer['nurl']];
2904                         DBA::update('contact', ['forum' => $forum], $condition);
2905                 }
2906
2907
2908                 // We are processing relocations even if we are ignoring a contact
2909                 $relocations = $xpath->query("/atom:feed/dfrn:relocate");
2910                 foreach ($relocations as $relocation) {
2911                         self::processRelocation($xpath, $relocation, $importer);
2912                 }
2913
2914                 if (($importer["uid"] != 0) && !$importer["readonly"]) {
2915                         $mails = $xpath->query("/atom:feed/dfrn:mail");
2916                         foreach ($mails as $mail) {
2917                                 self::processMail($xpath, $mail, $importer);
2918                         }
2919
2920                         $suggestions = $xpath->query("/atom:feed/dfrn:suggest");
2921                         foreach ($suggestions as $suggestion) {
2922                                 self::processSuggestion($xpath, $suggestion, $importer);
2923                         }
2924                 }
2925
2926                 $deletions = $xpath->query("/atom:feed/at:deleted-entry");
2927                 foreach ($deletions as $deletion) {
2928                         self::processDeletion($xpath, $deletion, $importer);
2929                 }
2930
2931                 if (!$sort_by_date) {
2932                         $entries = $xpath->query("/atom:feed/atom:entry");
2933                         foreach ($entries as $entry) {
2934                                 self::processEntry($header, $xpath, $entry, $importer, $xml);
2935                         }
2936                 } else {
2937                         $newentries = [];
2938                         $entries = $xpath->query("/atom:feed/atom:entry");
2939                         foreach ($entries as $entry) {
2940                                 $created = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2941                                 $newentries[strtotime($created)] = $entry;
2942                         }
2943
2944                         // Now sort after the publishing date
2945                         ksort($newentries);
2946
2947                         foreach ($newentries as $entry) {
2948                                 self::processEntry($header, $xpath, $entry, $importer, $xml);
2949                         }
2950                 }
2951                 Logger::log("Import done for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2952                 return 200;
2953         }
2954
2955         /**
2956          * @param App    $a            App
2957          * @param string $contact_nick contact nickname
2958          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2959          */
2960         public static function autoRedir(App $a, $contact_nick)
2961         {
2962                 // prevent looping
2963                 if (!empty($_REQUEST['redir'])) {
2964                         return;
2965                 }
2966
2967                 if ((! $contact_nick) || ($contact_nick === $a->user['nickname'])) {
2968                         return;
2969                 }
2970
2971                 if (local_user()) {
2972                         // We need to find out if $contact_nick is a user on this hub, and if so, if I
2973                         // am a contact of that user. However, that user may have other contacts with the
2974                         // same nickname as me on other hubs or other networks. Exclude these by requiring
2975                         // that the contact have a local URL. I will be the only person with my nickname at
2976                         // this URL, so if a result is found, then I am a contact of the $contact_nick user.
2977                         //
2978                         // We also have to make sure that I'm a legitimate contact--I'm not blocked or pending.
2979
2980                         $baseurl = System::baseUrl();
2981                         $domain_st = strpos($baseurl, "://");
2982                         if ($domain_st === false) {
2983                                 return;
2984                         }
2985                         $baseurl = substr($baseurl, $domain_st + 3);
2986                         $nurl = Strings::normaliseLink($baseurl);
2987
2988                         /// @todo Why is there a query for "url" *and* "nurl"? Especially this normalising is strange.
2989                         $r = q("SELECT `id` FROM `contact` WHERE `uid` = (SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1)
2990                                         AND `nick` = '%s' AND NOT `self` AND (`url` LIKE '%%%s%%' OR `nurl` LIKE '%%%s%%') AND NOT `blocked` AND NOT `pending` LIMIT 1",
2991                                 DBA::escape($contact_nick),
2992                                 DBA::escape($a->user['nickname']),
2993                                 DBA::escape($baseurl),
2994                                 DBA::escape($nurl)
2995                         );
2996                         if ((! DBA::isResult($r)) || $r[0]['id'] == remote_user()) {
2997                                 return;
2998                         }
2999
3000                         $r = q("SELECT * FROM contact WHERE nick = '%s'
3001                                         AND network = '%s' AND uid = %d  AND url LIKE '%%%s%%' LIMIT 1",
3002                                 DBA::escape($contact_nick),
3003                                 DBA::escape(Protocol::DFRN),
3004                                 intval(local_user()),
3005                                 DBA::escape($baseurl)
3006                         );
3007                         if (! DBA::isResult($r)) {
3008                                 return;
3009                         }
3010
3011                         $cid = $r[0]['id'];
3012
3013                         $dfrn_id = (($r[0]['issued-id']) ? $r[0]['issued-id'] : $r[0]['dfrn-id']);
3014
3015                         if ($r[0]['duplex'] && $r[0]['issued-id']) {
3016                                 $orig_id = $r[0]['issued-id'];
3017                                 $dfrn_id = '1:' . $orig_id;
3018                         }
3019                         if ($r[0]['duplex'] && $r[0]['dfrn-id']) {
3020                                 $orig_id = $r[0]['dfrn-id'];
3021                                 $dfrn_id = '0:' . $orig_id;
3022                         }
3023
3024                         // ensure that we've got a valid ID. There may be some edge cases with forums and non-duplex mode
3025                         // that may have triggered some of the "went to {profile/intro} and got an RSS feed" issues
3026
3027                         if (strlen($dfrn_id) < 3) {
3028                                 return;
3029                         }
3030
3031                         $sec = Strings::getRandomHex();
3032
3033                         DBA::insert('profile_check', ['uid' => local_user(), 'cid' => $cid, 'dfrn_id' => $dfrn_id, 'sec' => $sec, 'expire' => time() + 45]);
3034
3035                         $url = curPageURL();
3036
3037                         Logger::log('auto_redir: ' . $r[0]['name'] . ' ' . $sec, Logger::DEBUG);
3038                         $dest = (($url) ? '&destination_url=' . $url : '');
3039                         System::externalRedirect($r[0]['poll'] . '?dfrn_id=' . $dfrn_id
3040                                 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest);
3041                 }
3042
3043                 return;
3044         }
3045
3046         /**
3047          * @brief Returns the activity verb
3048          *
3049          * @param array $item Item array
3050          *
3051          * @return string activity verb
3052          */
3053         private static function constructVerb(array $item)
3054         {
3055                 if ($item['verb']) {
3056                         return $item['verb'];
3057                 }
3058                 return ACTIVITY_POST;
3059         }
3060
3061         private static function tgroupCheck($uid, $item)
3062         {
3063                 $mention = false;
3064
3065                 // check that the message originated elsewhere and is a top-level post
3066
3067                 if ($item['wall'] || $item['origin'] || ($item['uri'] != $item['parent-uri'])) {
3068                         return false;
3069                 }
3070
3071                 $user = DBA::selectFirst('user', ['page-flags', 'nickname'], ['uid' => $uid]);
3072                 if (!DBA::isResult($user)) {
3073                         return false;
3074                 }
3075
3076                 $community_page = ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY);
3077                 $prvgroup = ($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP);
3078
3079                 $link = Strings::normaliseLink(System::baseUrl() . '/profile/' . $user['nickname']);
3080
3081                 /*
3082                  * Diaspora uses their own hardwired link URL in @-tags
3083                  * instead of the one we supply with webfinger
3084                  */
3085                 $dlink = Strings::normaliseLink(System::baseUrl() . '/u/' . $user['nickname']);
3086
3087                 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
3088                 if ($cnt) {
3089                         foreach ($matches as $mtch) {
3090                                 if (Strings::compareLink($link, $mtch[1]) || Strings::compareLink($dlink, $mtch[1])) {
3091                                         $mention = true;
3092                                         Logger::log('mention found: ' . $mtch[2]);
3093                                 }
3094                         }
3095                 }
3096
3097                 if (!$mention) {
3098                         return false;
3099                 }
3100
3101                 return $community_page || $prvgroup;
3102         }
3103
3104         /**
3105          * This function returns true if $update has an edited timestamp newer
3106          * than $existing, i.e. $update contains new data which should override
3107          * what's already there.  If there is no timestamp yet, the update is
3108          * assumed to be newer.  If the update has no timestamp, the existing
3109          * item is assumed to be up-to-date.  If the timestamps are equal it
3110          * assumes the update has been seen before and should be ignored.
3111          *
3112          * @param $existing
3113          * @param $update
3114          * @return bool
3115          * @throws \Exception
3116          */
3117         private static function isEditedTimestampNewer($existing, $update)
3118         {
3119                 if (empty($existing['edited'])) {
3120                         return true;
3121                 }
3122                 if (empty($update['edited'])) {
3123                         return false;
3124                 }
3125
3126                 $existing_edited = DateTimeFormat::utc($existing['edited']);
3127                 $update_edited = DateTimeFormat::utc($update['edited']);
3128
3129                 return (strcmp($existing_edited, $update_edited) < 0);
3130         }
3131 }