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