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