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