]> git.mxchange.org Git - friendica.git/blob - src/Protocol/DFRN.php
We now use a central function to fetch the importer (#5636)
[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                                 default:
1334                                         logger("rino: invalid requested version '$rino_remote_version'");
1335                                         Contact::markForArchival($contact);
1336                                         return -8;
1337                         }
1338
1339                         $postvars['rino'] = $rino_remote_version;
1340                         $postvars['data'] = bin2hex($data);
1341
1342                         if ($dfrn_version >= 2.1) {
1343                                 if (($contact['duplex'] && strlen($contact['pubkey']))
1344                                         || ($owner['page-flags'] == Contact::PAGE_COMMUNITY && strlen($contact['pubkey']))
1345                                         || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1346                                 ) {
1347                                         openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1348                                 } else {
1349                                         openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1350                                 }
1351                         } else {
1352                                 if (($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == Contact::PAGE_COMMUNITY)) {
1353                                         openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1354                                 } else {
1355                                         openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1356                                 }
1357                         }
1358
1359                         logger('md5 rawkey ' . md5($postvars['key']));
1360
1361                         $postvars['key'] = bin2hex($postvars['key']);
1362                 }
1363
1364
1365                 logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars, true), LOGGER_DATA);
1366
1367                 $xml = Network::post($contact['notify'], $postvars);
1368
1369                 logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
1370
1371                 $curl_stat = $a->get_curl_code();
1372                 if (empty($curl_stat) || empty($xml)) {
1373                         Contact::markForArchival($contact);
1374                         return -9; // timed out
1375                 }
1376
1377                 if (($curl_stat == 503) && stristr($a->get_curl_headers(), 'retry-after')) {
1378                         Contact::markForArchival($contact);
1379                         return -10;
1380                 }
1381
1382                 if (strpos($xml, '<?xml') === false) {
1383                         logger('dfrn_deliver: phase 2: no valid XML returned');
1384                         logger('dfrn_deliver: phase 2: returned XML: ' . $xml, LOGGER_DATA);
1385                         Contact::markForArchival($contact);
1386                         return 3;
1387                 }
1388
1389                 $res = XML::parseString($xml);
1390
1391                 if (!isset($res->status)) {
1392                         Contact::markForArchival($contact);
1393                         return -11;
1394                 }
1395
1396                 // Possibly old servers had returned an empty value when everything was okay
1397                 if (empty($res->status)) {
1398                         $res->status = 200;
1399                 }
1400
1401                 if (!empty($res->message)) {
1402                         logger('Delivery returned status '.$res->status.' - '.$res->message, LOGGER_DEBUG);
1403                 }
1404
1405                 if (($res->status >= 200) && ($res->status <= 299)) {
1406                         Contact::unmarkForArchival($contact);
1407                 }
1408
1409                 return intval($res->status);
1410         }
1411
1412         /**
1413          * @brief Transmits atom content to the contacts via the Diaspora transport layer
1414          *
1415          * @param array  $owner    Owner record
1416          * @param array  $contact  Contact record of the receiver
1417          * @param string $atom     Content that will be transmitted
1418          *
1419          * @return int Deliver status. Negative values mean an error.
1420          */
1421         public static function transmit($owner, $contact, $atom, $public_batch = false)
1422         {
1423                 $a = get_app();
1424
1425                 if (!$public_batch) {
1426                         if (empty($contact['addr'])) {
1427                                 logger('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.');
1428                                 if (Contact::updateFromProbe($contact['id'])) {
1429                                         $new_contact = DBA::selectFirst('contact', ['addr'], ['id' => $contact['id']]);
1430                                         $contact['addr'] = $new_contact['addr'];
1431                                 }
1432
1433                                 if (empty($contact['addr'])) {
1434                                         logger('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
1435                                         Contact::markForArchival($contact);
1436                                         return -21;
1437                                 }
1438                         }
1439
1440                         $fcontact = Diaspora::personByHandle($contact['addr']);
1441                         if (empty($fcontact)) {
1442                                 logger('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
1443                                 Contact::markForArchival($contact);
1444                                 return -22;
1445                         }
1446                         $pubkey = $fcontact['pubkey'];
1447                 } else {
1448                         $pubkey = '';
1449                 }
1450
1451                 $envelope = Diaspora::buildMessage($atom, $owner, $contact, $owner['uprvkey'], $pubkey, $public_batch);
1452
1453                 // Create the endpoint for public posts. This is some WIP and should later be added to the probing
1454                 if ($public_batch && empty($contact["batch"])) {
1455                         $parts = parse_url($contact["notify"]);
1456                         $path_parts = explode('/', $parts['path']);
1457                         array_pop($path_parts);
1458                         $parts['path'] =  implode('/', $path_parts);
1459                         $contact["batch"] = Network::unparseURL($parts);
1460                 }
1461
1462                 $dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
1463
1464                 $content_type = ($public_batch ? "application/magic-envelope+xml" : "application/json");
1465
1466                 $xml = Network::post($dest_url, $envelope, ["Content-Type: ".$content_type]);
1467
1468                 $curl_stat = $a->get_curl_code();
1469                 if (empty($curl_stat) || empty($xml)) {
1470                         logger('Empty answer from ' . $contact['id'] . ' - ' . $dest_url);
1471                         Contact::markForArchival($contact);
1472                         return -9; // timed out
1473                 }
1474
1475                 if (($curl_stat == 503) && (stristr($a->get_curl_headers(), 'retry-after'))) {
1476                         Contact::markForArchival($contact);
1477                         return -10;
1478                 }
1479
1480                 if (strpos($xml, '<?xml') === false) {
1481                         logger('No valid XML returned from ' . $contact['id'] . ' - ' . $dest_url);
1482                         logger('Returned XML: ' . $xml, LOGGER_DATA);
1483                         Contact::markForArchival($contact);
1484                         return 3;
1485                 }
1486
1487                 $res = XML::parseString($xml);
1488
1489                 if (empty($res->status)) {
1490                         Contact::markForArchival($contact);
1491                         return -23;
1492                 }
1493
1494                 if (!empty($res->message)) {
1495                         logger('Transmit to ' . $dest_url . ' returned status '.$res->status.' - '.$res->message, LOGGER_DEBUG);
1496                 }
1497
1498                 if (($res->status >= 200) && ($res->status <= 299)) {
1499                         Contact::unmarkForArchival($contact);
1500                 }
1501
1502                 return intval($res->status);
1503         }
1504
1505         /**
1506          * @brief Add new birthday event for this person
1507          *
1508          * @param array  $contact  Contact record
1509          * @param string $birthday Birthday of the contact
1510          * @return void
1511          * @todo Add array type-hint for $contact
1512          */
1513         private static function birthdayEvent($contact, $birthday)
1514         {
1515                 // Check for duplicates
1516                 $condition = ['uid' => $contact['uid'], 'cid' => $contact['id'],
1517                         'start' => DateTimeFormat::utc($birthday), 'type' => 'birthday'];
1518                 if (DBA::exists('event', $condition)) {
1519                         return;
1520                 }
1521
1522                 logger('updating birthday: ' . $birthday . ' for contact ' . $contact['id']);
1523
1524                 $bdtext = L10n::t('%s\'s birthday', $contact['name']);
1525                 $bdtext2 = L10n::t('Happy Birthday %s', ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]');
1526
1527                 $r = q(
1528                         "INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`summary`,`desc`,`type`)
1529                         VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s') ",
1530                         intval($contact['uid']),
1531                         intval($contact['id']),
1532                         DBA::escape(DateTimeFormat::utcNow()),
1533                         DBA::escape(DateTimeFormat::utcNow()),
1534                         DBA::escape(DateTimeFormat::utc($birthday)),
1535                         DBA::escape(DateTimeFormat::utc($birthday . ' + 1 day ')),
1536                         DBA::escape($bdtext),
1537                         DBA::escape($bdtext2),
1538                         DBA::escape('birthday')
1539                 );
1540         }
1541
1542         /**
1543          * @brief Fetch the author data from head or entry items
1544          *
1545          * @param object $xpath     XPath object
1546          * @param object $context   In which context should the data be searched
1547          * @param array  $importer  Record of the importer user mixed with contact of the content
1548          * @param string $element   Element name from which the data is fetched
1549          * @param bool   $onlyfetch Should the data only be fetched or should it update the contact record as well
1550          * @param string $xml       optional, default empty
1551          *
1552          * @return array Relevant data of the author
1553          * @todo Find good type-hints for all parameter
1554          */
1555         private static function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "")
1556         {
1557                 $author = [];
1558                 $author["name"] = XML::getFirstNodeValue($xpath, $element."/atom:name/text()", $context);
1559                 $author["link"] = XML::getFirstNodeValue($xpath, $element."/atom:uri/text()", $context);
1560
1561                 $fields = ['id', 'uid', 'url', 'network', 'avatar-date', 'avatar', 'name-date', 'uri-date', 'addr',
1562                         'name', 'nick', 'about', 'location', 'keywords', 'xmpp', 'bdyear', 'bd', 'hidden', 'contact-type'];
1563                 $condition = ["`uid` = ? AND `nurl` = ? AND `network` != ?",
1564                         $importer["importer_uid"], normalise_link($author["link"]), Protocol::STATUSNET];
1565                 $contact_old = DBA::selectFirst('contact', $fields, $condition);
1566
1567                 if (DBA::isResult($contact_old)) {
1568                         $author["contact-id"] = $contact_old["id"];
1569                         $author["network"] = $contact_old["network"];
1570                 } else {
1571                         if (!$onlyfetch) {
1572                                 logger("Contact ".$author["link"]." wasn't found for user ".$importer["importer_uid"]." XML: ".$xml, LOGGER_DEBUG);
1573                         }
1574
1575                         $author["contact-unknown"] = true;
1576                         $author["contact-id"] = $importer["id"];
1577                         $author["network"] = $importer["network"];
1578                         $onlyfetch = true;
1579                 }
1580
1581                 // Until now we aren't serving different sizes - but maybe later
1582                 $avatarlist = [];
1583                 /// @todo check if "avatar" or "photo" would be the best field in the specification
1584                 $avatars = $xpath->query($element . "/atom:link[@rel='avatar']", $context);
1585                 foreach ($avatars as $avatar) {
1586                         $href = "";
1587                         $width = 0;
1588                         foreach ($avatar->attributes as $attributes) {
1589                                 /// @TODO Rewrite these similar if() to one switch
1590                                 if ($attributes->name == "href") {
1591                                         $href = $attributes->textContent;
1592                                 }
1593                                 if ($attributes->name == "width") {
1594                                         $width = $attributes->textContent;
1595                                 }
1596                                 if ($attributes->name == "updated") {
1597                                         $author["avatar-date"] = $attributes->textContent;
1598                                 }
1599                         }
1600                         if (($width > 0) && ($href != "")) {
1601                                 $avatarlist[$width] = $href;
1602                         }
1603                 }
1604
1605                 if (count($avatarlist) > 0) {
1606                         krsort($avatarlist);
1607                         $author["avatar"] = current($avatarlist);
1608                 }
1609
1610                 if (empty($author['avatar']) && !empty($author['link'])) {
1611                         $cid = Contact::getIdForURL($author['link'], 0);
1612                         if (!empty($cid)) {
1613                                 $contact = DBA::selectFirst('contact', ['avatar'], ['id' => $cid]);
1614                                 if (DBA::isResult($contact)) {
1615                                         $author['avatar'] = $contact['avatar'];
1616                                 }
1617                         }
1618                 }
1619
1620                 if (DBA::isResult($contact_old) && !$onlyfetch) {
1621                         logger("Check if contact details for contact " . $contact_old["id"] . " (" . $contact_old["nick"] . ") have to be updated.", LOGGER_DEBUG);
1622
1623                         $poco = ["url" => $contact_old["url"]];
1624
1625                         // When was the last change to name or uri?
1626                         $name_element = $xpath->query($element . "/atom:name", $context)->item(0);
1627                         foreach ($name_element->attributes as $attributes) {
1628                                 if ($attributes->name == "updated") {
1629                                         $poco["name-date"] = $attributes->textContent;
1630                                 }
1631                         }
1632
1633                         $link_element = $xpath->query($element . "/atom:link", $context)->item(0);
1634                         foreach ($link_element->attributes as $attributes) {
1635                                 if ($attributes->name == "updated") {
1636                                         $poco["uri-date"] = $attributes->textContent;
1637                                 }
1638                         }
1639
1640                         // Update contact data
1641                         $value = XML::getFirstNodeValue($xpath, $element . "/dfrn:handle/text()", $context);
1642                         if ($value != "") {
1643                                 $poco["addr"] = $value;
1644                         }
1645
1646                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:displayName/text()", $context);
1647                         if ($value != "") {
1648                                 $poco["name"] = $value;
1649                         }
1650
1651                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:preferredUsername/text()", $context);
1652                         if ($value != "") {
1653                                 $poco["nick"] = $value;
1654                         }
1655
1656                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:note/text()", $context);
1657                         if ($value != "") {
1658                                 $poco["about"] = $value;
1659                         }
1660
1661                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:address/poco:formatted/text()", $context);
1662                         if ($value != "") {
1663                                 $poco["location"] = $value;
1664                         }
1665
1666                         /// @todo Only search for elements with "poco:type" = "xmpp"
1667                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:ims/poco:value/text()", $context);
1668                         if ($value != "") {
1669                                 $poco["xmpp"] = $value;
1670                         }
1671
1672                         /// @todo Add support for the following fields that we don't support by now in the contact table:
1673                         /// - poco:utcOffset
1674                         /// - poco:urls
1675                         /// - poco:locality
1676                         /// - poco:region
1677                         /// - poco:country
1678
1679                         // If the "hide" element is present then the profile isn't searchable.
1680                         $hide = intval(XML::getFirstNodeValue($xpath, $element . "/dfrn:hide/text()", $context) == "true");
1681
1682                         logger("Hidden status for contact " . $contact_old["url"] . ": " . $hide, LOGGER_DEBUG);
1683
1684                         // If the contact isn't searchable then set the contact to "hidden".
1685                         // Problem: This can be manually overridden by the user.
1686                         if ($hide) {
1687                                 $contact_old["hidden"] = true;
1688                         }
1689
1690                         // Save the keywords into the contact table
1691                         $tags = [];
1692                         $tagelements = $xpath->evaluate($element . "/poco:tags/text()", $context);
1693                         foreach ($tagelements as $tag) {
1694                                 $tags[$tag->nodeValue] = $tag->nodeValue;
1695                         }
1696
1697                         if (count($tags)) {
1698                                 $poco["keywords"] = implode(", ", $tags);
1699                         }
1700
1701                         // "dfrn:birthday" contains the birthday converted to UTC
1702                         $birthday = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1703
1704                         if (strtotime($birthday) > time()) {
1705                                 $bd_timestamp = strtotime($birthday);
1706
1707                                 $poco["bdyear"] = date("Y", $bd_timestamp);
1708                         }
1709
1710                         // "poco:birthday" is the birthday in the format "yyyy-mm-dd"
1711                         $value = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1712
1713                         if (!in_array($value, ["", "0000-00-00", "0001-01-01"])) {
1714                                 $bdyear = date("Y");
1715                                 $value = str_replace("0000", $bdyear, $value);
1716
1717                                 if (strtotime($value) < time()) {
1718                                         $value = str_replace($bdyear, $bdyear + 1, $value);
1719                                         $bdyear = $bdyear + 1;
1720                                 }
1721
1722                                 $poco["bd"] = $value;
1723                         }
1724
1725                         $contact = array_merge($contact_old, $poco);
1726
1727                         if ($contact_old["bdyear"] != $contact["bdyear"]) {
1728                                 self::birthdayEvent($contact, $birthday);
1729                         }
1730
1731                         // Get all field names
1732                         $fields = [];
1733                         foreach ($contact_old as $field => $data) {
1734                                 $fields[$field] = $data;
1735                         }
1736
1737                         unset($fields["id"]);
1738                         unset($fields["uid"]);
1739                         unset($fields["url"]);
1740                         unset($fields["avatar-date"]);
1741                         unset($fields["avatar"]);
1742                         unset($fields["name-date"]);
1743                         unset($fields["uri-date"]);
1744
1745                         $update = false;
1746                         // Update check for this field has to be done differently
1747                         $datefields = ["name-date", "uri-date"];
1748                         foreach ($datefields as $field) {
1749                                 if (strtotime($contact[$field]) > strtotime($contact_old[$field])) {
1750                                         logger("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $contact_old[$field] . "'", LOGGER_DEBUG);
1751                                         $update = true;
1752                                 }
1753                         }
1754
1755                         foreach ($fields as $field => $data) {
1756                                 if ($contact[$field] != $contact_old[$field]) {
1757                                         logger("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $contact_old[$field] . "'", LOGGER_DEBUG);
1758                                         $update = true;
1759                                 }
1760                         }
1761
1762                         if ($update) {
1763                                 logger("Update contact data for contact " . $contact["id"] . " (" . $contact["nick"] . ")", LOGGER_DEBUG);
1764
1765                                 q(
1766                                         "UPDATE `contact` SET `name` = '%s', `nick` = '%s', `about` = '%s', `location` = '%s',
1767                                         `addr` = '%s', `keywords` = '%s', `bdyear` = '%s', `bd` = '%s', `hidden` = %d,
1768                                         `xmpp` = '%s', `name-date`  = '%s', `uri-date` = '%s'
1769                                         WHERE `id` = %d AND `network` = '%s'",
1770                                         DBA::escape($contact["name"]), DBA::escape($contact["nick"]), DBA::escape($contact["about"]),   DBA::escape($contact["location"]),
1771                                         DBA::escape($contact["addr"]), DBA::escape($contact["keywords"]), DBA::escape($contact["bdyear"]),
1772                                         DBA::escape($contact["bd"]), intval($contact["hidden"]), DBA::escape($contact["xmpp"]),
1773                                         DBA::escape(DateTimeFormat::utc($contact["name-date"])), DBA::escape(DateTimeFormat::utc($contact["uri-date"])),
1774                                         intval($contact["id"]), DBA::escape($contact["network"])
1775                                 );
1776                         }
1777
1778                         Contact::updateAvatar(
1779                                 $author['avatar'],
1780                                 $importer['importer_uid'],
1781                                 $contact['id'],
1782                                 (strtotime($contact['avatar-date']) > strtotime($contact_old['avatar-date']) || ($author['avatar'] != $contact_old['avatar']))
1783                         );
1784
1785                         /*
1786                          * The generation is a sign for the reliability of the provided data.
1787                          * It is used in the socgraph.php to prevent that old contact data
1788                          * that was relayed over several servers can overwrite contact
1789                          * data that we received directly.
1790                          */
1791
1792                         $poco["generation"] = 2;
1793                         $poco["photo"] = $author["avatar"];
1794                         $poco["hide"] = $hide;
1795                         $poco["contact-type"] = $contact["contact-type"];
1796                         $gcid = GContact::update($poco);
1797
1798                         GContact::link($gcid, $importer["importer_uid"], $contact["id"]);
1799                 }
1800
1801                 return $author;
1802         }
1803
1804         /**
1805          * @brief Transforms activity objects into an XML string
1806          *
1807          * @param object $xpath    XPath object
1808          * @param object $activity Activity object
1809          * @param string $element  element name
1810          *
1811          * @return string XML string
1812          * @todo Find good type-hints for all parameter
1813          */
1814         private static function transformActivity($xpath, $activity, $element)
1815         {
1816                 if (!is_object($activity)) {
1817                         return "";
1818                 }
1819
1820                 $obj_doc = new DOMDocument("1.0", "utf-8");
1821                 $obj_doc->formatOutput = true;
1822
1823                 $obj_element = $obj_doc->createElementNS(NAMESPACE_ATOM1, $element);
1824
1825                 $activity_type = $xpath->query("activity:object-type/text()", $activity)->item(0)->nodeValue;
1826                 XML::addElement($obj_doc, $obj_element, "type", $activity_type);
1827
1828                 $id = $xpath->query("atom:id", $activity)->item(0);
1829                 if (is_object($id)) {
1830                         $obj_element->appendChild($obj_doc->importNode($id, true));
1831                 }
1832
1833                 $title = $xpath->query("atom:title", $activity)->item(0);
1834                 if (is_object($title)) {
1835                         $obj_element->appendChild($obj_doc->importNode($title, true));
1836                 }
1837
1838                 $links = $xpath->query("atom:link", $activity);
1839                 if (is_object($links)) {
1840                         foreach ($links as $link) {
1841                                 $obj_element->appendChild($obj_doc->importNode($link, true));
1842                         }
1843                 }
1844
1845                 $content = $xpath->query("atom:content", $activity)->item(0);
1846                 if (is_object($content)) {
1847                         $obj_element->appendChild($obj_doc->importNode($content, true));
1848                 }
1849
1850                 $obj_doc->appendChild($obj_element);
1851
1852                 $objxml = $obj_doc->saveXML($obj_element);
1853
1854                 /// @todo This isn't totally clean. We should find a way to transform the namespaces
1855                 $objxml = str_replace("<".$element.' xmlns="http://www.w3.org/2005/Atom">', "<".$element.">", $objxml);
1856                 return($objxml);
1857         }
1858
1859         /**
1860          * @brief Processes the mail elements
1861          *
1862          * @param object $xpath    XPath object
1863          * @param object $mail     mail elements
1864          * @param array  $importer Record of the importer user mixed with contact of the content
1865          * @return void
1866          * @todo Find good type-hints for all parameter
1867          */
1868         private static function processMail($xpath, $mail, $importer)
1869         {
1870                 logger("Processing mails");
1871
1872                 /// @TODO Rewrite this to one statement
1873                 $msg = [];
1874                 $msg["uid"] = $importer["importer_uid"];
1875                 $msg["from-name"] = $xpath->query("dfrn:sender/dfrn:name/text()", $mail)->item(0)->nodeValue;
1876                 $msg["from-url"] = $xpath->query("dfrn:sender/dfrn:uri/text()", $mail)->item(0)->nodeValue;
1877                 $msg["from-photo"] = $xpath->query("dfrn:sender/dfrn:avatar/text()", $mail)->item(0)->nodeValue;
1878                 $msg["contact-id"] = $importer["id"];
1879                 $msg["uri"] = $xpath->query("dfrn:id/text()", $mail)->item(0)->nodeValue;
1880                 $msg["parent-uri"] = $xpath->query("dfrn:in-reply-to/text()", $mail)->item(0)->nodeValue;
1881                 $msg["created"] = DateTimeFormat::utc($xpath->query("dfrn:sentdate/text()", $mail)->item(0)->nodeValue);
1882                 $msg["title"] = $xpath->query("dfrn:subject/text()", $mail)->item(0)->nodeValue;
1883                 $msg["body"] = $xpath->query("dfrn:content/text()", $mail)->item(0)->nodeValue;
1884                 $msg["seen"] = 0;
1885                 $msg["replied"] = 0;
1886
1887                 DBA::insert('mail', $msg);
1888
1889                 $msg["id"] = DBA::lastInsertId();
1890
1891                 // send notifications.
1892                 /// @TODO Arange this mess
1893                 $notif_params = [
1894                         "type" => NOTIFY_MAIL,
1895                         "notify_flags" => $importer["notify-flags"],
1896                         "language" => $importer["language"],
1897                         "to_name" => $importer["username"],
1898                         "to_email" => $importer["email"],
1899                         "uid" => $importer["importer_uid"],
1900                         "item" => $msg,
1901                         "source_name" => $msg["from-name"],
1902                         "source_link" => $importer["url"],
1903                         "source_photo" => $importer["thumb"],
1904                         "verb" => ACTIVITY_POST,
1905                         "otype" => "mail"
1906                 ];
1907
1908                 notification($notif_params);
1909
1910                 logger("Mail is processed, notification was sent.");
1911         }
1912
1913         /**
1914          * @brief Processes the suggestion elements
1915          *
1916          * @param object $xpath      XPath object
1917          * @param object $suggestion suggestion elements
1918          * @param array  $importer   Record of the importer user mixed with contact of the content
1919          * @return boolean
1920          * @todo Find good type-hints for all parameter
1921          */
1922         private static function processSuggestion($xpath, $suggestion, $importer)
1923         {
1924                 $a = get_app();
1925
1926                 logger("Processing suggestions");
1927
1928                 /// @TODO Rewrite this to one statement
1929                 $suggest = [];
1930                 $suggest["uid"] = $importer["importer_uid"];
1931                 $suggest["cid"] = $importer["id"];
1932                 $suggest["url"] = $xpath->query("dfrn:url/text()", $suggestion)->item(0)->nodeValue;
1933                 $suggest["name"] = $xpath->query("dfrn:name/text()", $suggestion)->item(0)->nodeValue;
1934                 $suggest["photo"] = $xpath->query("dfrn:photo/text()", $suggestion)->item(0)->nodeValue;
1935                 $suggest["request"] = $xpath->query("dfrn:request/text()", $suggestion)->item(0)->nodeValue;
1936                 $suggest["body"] = $xpath->query("dfrn:note/text()", $suggestion)->item(0)->nodeValue;
1937
1938                 // Does our member already have a friend matching this description?
1939
1940                 /*
1941                  * The valid result means the friend we're about to send a friend
1942                  * suggestion already has them in their contact, which means no further
1943                  * action is required.
1944                  *
1945                  * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1946                  */
1947                 $condition = ['name' => $suggest["name"], 'nurl' => normalise_link($suggest["url"]),
1948                         'uid' => $suggest["uid"]];
1949                 if (DBA::exists('contact', $condition)) {
1950                         return false;
1951                 }
1952
1953                 // Do we already have an fcontact record for this person?
1954
1955                 $fid = 0;
1956                 $condition = ['url' => $suggest["url"], 'name' => $suggest["name"], 'request' => $suggest["request"]];
1957                 $fcontact = DBA::selectFirst('fcontact', ['id'], $condition);
1958                 if (DBA::isResult($fcontact)) {
1959                         $fid = $fcontact["id"];
1960
1961                         // OK, we do. Do we already have an introduction for this person?
1962                         if (DBA::exists('intro', ['uid' => $suggest["uid"], 'fid' => $fid])) {
1963                                 /*
1964                                  * The valid result means the friend we're about to send a friend
1965                                  * suggestion already has them in their contact, which means no further
1966                                  * action is required.
1967                                  *
1968                                  * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1969                                  */
1970                                 return false;
1971                         }
1972                 }
1973                 if (!$fid) {
1974                         $r = q(
1975                                 "INSERT INTO `fcontact` (`name`,`url`,`photo`,`request`) VALUES ('%s', '%s', '%s', '%s')",
1976                                 DBA::escape($suggest["name"]),
1977                                 DBA::escape($suggest["url"]),
1978                                 DBA::escape($suggest["photo"]),
1979                                 DBA::escape($suggest["request"])
1980                         );
1981                 }
1982
1983                 $condition = ['url' => $suggest["url"], 'name' => $suggest["name"], 'request' => $suggest["request"]];
1984                 $fcontact = DBA::selectFirst('fcontact', ['id'], $condition);
1985
1986                 /*
1987                  * If no record in fcontact is found, below INSERT statement will not
1988                  * link an introduction to it.
1989                  */
1990                 if (!DBA::isResult($fcontact)) {
1991                         // Database record did not get created. Quietly give up.
1992                         killme();
1993                 }
1994
1995                 $fid = $r[0]["id"];
1996
1997                 $hash = random_string();
1998
1999                 $r = q(
2000                         "INSERT INTO `intro` (`uid`, `fid`, `contact-id`, `note`, `hash`, `datetime`, `blocked`)
2001                         VALUES(%d, %d, %d, '%s', '%s', '%s', %d)",
2002                         intval($suggest["uid"]),
2003                         intval($fid),
2004                         intval($suggest["cid"]),
2005                         DBA::escape($suggest["body"]),
2006                         DBA::escape($hash),
2007                         DBA::escape(DateTimeFormat::utcNow()),
2008                         intval(0)
2009                 );
2010
2011                 notification(
2012                         [
2013                                 "type"         => NOTIFY_SUGGEST,
2014                                 "notify_flags" => $importer["notify-flags"],
2015                                 "language"     => $importer["language"],
2016                                 "to_name"      => $importer["username"],
2017                                 "to_email"     => $importer["email"],
2018                                 "uid"          => $importer["importer_uid"],
2019                                 "item"         => $suggest,
2020                                 "link"         => System::baseUrl()."/notifications/intros",
2021                                 "source_name"  => $importer["name"],
2022                                 "source_link"  => $importer["url"],
2023                                 "source_photo" => $importer["photo"],
2024                                 "verb"         => ACTIVITY_REQ_FRIEND,
2025                                 "otype"        => "intro"]
2026                 );
2027
2028                 return true;
2029         }
2030
2031         /**
2032          * @brief Processes the relocation elements
2033          *
2034          * @param object $xpath      XPath object
2035          * @param object $relocation relocation elements
2036          * @param array  $importer   Record of the importer user mixed with contact of the content
2037          * @return boolean
2038          * @todo Find good type-hints for all parameter
2039          */
2040         private static function processRelocation($xpath, $relocation, $importer)
2041         {
2042                 logger("Processing relocations");
2043
2044                 /// @TODO Rewrite this to one statement
2045                 $relocate = [];
2046                 $relocate["uid"] = $importer["importer_uid"];
2047                 $relocate["cid"] = $importer["id"];
2048                 $relocate["url"] = $xpath->query("dfrn:url/text()", $relocation)->item(0)->nodeValue;
2049                 $relocate["addr"] = $xpath->query("dfrn:addr/text()", $relocation)->item(0)->nodeValue;
2050                 $relocate["name"] = $xpath->query("dfrn:name/text()", $relocation)->item(0)->nodeValue;
2051                 $relocate["avatar"] = $xpath->query("dfrn:avatar/text()", $relocation)->item(0)->nodeValue;
2052                 $relocate["photo"] = $xpath->query("dfrn:photo/text()", $relocation)->item(0)->nodeValue;
2053                 $relocate["thumb"] = $xpath->query("dfrn:thumb/text()", $relocation)->item(0)->nodeValue;
2054                 $relocate["micro"] = $xpath->query("dfrn:micro/text()", $relocation)->item(0)->nodeValue;
2055                 $relocate["request"] = $xpath->query("dfrn:request/text()", $relocation)->item(0)->nodeValue;
2056                 $relocate["confirm"] = $xpath->query("dfrn:confirm/text()", $relocation)->item(0)->nodeValue;
2057                 $relocate["notify"] = $xpath->query("dfrn:notify/text()", $relocation)->item(0)->nodeValue;
2058                 $relocate["poll"] = $xpath->query("dfrn:poll/text()", $relocation)->item(0)->nodeValue;
2059                 $relocate["sitepubkey"] = $xpath->query("dfrn:sitepubkey/text()", $relocation)->item(0)->nodeValue;
2060
2061                 if (($relocate["avatar"] == "") && ($relocate["photo"] != "")) {
2062                         $relocate["avatar"] = $relocate["photo"];
2063                 }
2064
2065                 if ($relocate["addr"] == "") {
2066                         $relocate["addr"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$3@$2", $relocate["url"]);
2067                 }
2068
2069                 // update contact
2070                 $r = q(
2071                         "SELECT `photo`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d",
2072                         intval($importer["id"]),
2073                         intval($importer["importer_uid"])
2074                 );
2075
2076                 if (!DBA::isResult($r)) {
2077                         logger("Query failed to execute, no result returned in " . __FUNCTION__);
2078                         return false;
2079                 }
2080
2081                 $old = $r[0];
2082
2083                 // Update the gcontact entry
2084                 $relocate["server_url"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $relocate["url"]);
2085
2086                 $fields = ['name' => $relocate["name"], 'photo' => $relocate["avatar"],
2087                         'url' => $relocate["url"], 'nurl' => normalise_link($relocate["url"]),
2088                         'addr' => $relocate["addr"], 'connect' => $relocate["addr"],
2089                         'notify' => $relocate["notify"], 'server_url' => $relocate["server_url"]];
2090                 DBA::update('gcontact', $fields, ['nurl' => normalise_link($old["url"])]);
2091
2092                 // Update the contact table. We try to find every entry.
2093                 $fields = ['name' => $relocate["name"], 'avatar' => $relocate["avatar"],
2094                         'url' => $relocate["url"], 'nurl' => normalise_link($relocate["url"]),
2095                         'addr' => $relocate["addr"], 'request' => $relocate["request"],
2096                         'confirm' => $relocate["confirm"], 'notify' => $relocate["notify"],
2097                         'poll' => $relocate["poll"], 'site-pubkey' => $relocate["sitepubkey"]];
2098                 $condition = ["(`id` = ?) OR (`nurl` = ?)", $importer["id"], normalise_link($old["url"])];
2099
2100                 DBA::update('contact', $fields, $condition);
2101
2102                 Contact::updateAvatar($relocate["avatar"], $importer["importer_uid"], $importer["id"], true);
2103
2104                 logger('Contacts are updated.');
2105
2106                 /// @TODO
2107                 /// merge with current record, current contents have priority
2108                 /// update record, set url-updated
2109                 /// update profile photos
2110                 /// schedule a scan?
2111                 return true;
2112         }
2113
2114         /**
2115          * @brief Updates an item
2116          *
2117          * @param array $current   the current item record
2118          * @param array $item      the new item record
2119          * @param array $importer  Record of the importer user mixed with contact of the content
2120          * @param int   $entrytype Is it a toplevel entry, a comment or a relayed comment?
2121          * @return mixed
2122          * @todo set proper type-hints (array?)
2123          */
2124         private static function updateContent($current, $item, $importer, $entrytype)
2125         {
2126                 $changed = false;
2127
2128                 if (self::isEditedTimestampNewer($current, $item)) {
2129                         // do not accept (ignore) an earlier edit than one we currently have.
2130                         if (DateTimeFormat::utc($item["edited"]) < $current["edited"]) {
2131                                 return false;
2132                         }
2133
2134                         $fields = ['title' => defaults($item, 'title', ''), 'body' => defaults($item, 'body', ''),
2135                                         'tag' => defaults($item, 'tag', ''), 'changed' => DateTimeFormat::utcNow(),
2136                                         'edited' => DateTimeFormat::utc($item["edited"])];
2137
2138                         $condition = ["`uri` = ? AND `uid` IN (0, ?)", $item["uri"], $importer["importer_uid"]];
2139                         Item::update($fields, $condition);
2140
2141                         $changed = true;
2142                 }
2143                 return $changed;
2144         }
2145
2146         /**
2147          * @brief Detects the entry type of the item
2148          *
2149          * @param array $importer Record of the importer user mixed with contact of the content
2150          * @param array $item     the new item record
2151          *
2152          * @return int Is it a toplevel entry, a comment or a relayed comment?
2153          * @todo set proper type-hints (array?)
2154          */
2155         private static function getEntryType($importer, $item)
2156         {
2157                 if ($item["parent-uri"] != $item["uri"]) {
2158                         $community = false;
2159
2160                         if ($importer["page-flags"] == Contact::PAGE_COMMUNITY || $importer["page-flags"] == Contact::PAGE_PRVGROUP) {
2161                                 $sql_extra = "";
2162                                 $community = true;
2163                                 logger("possible community action");
2164                         } else {
2165                                 $sql_extra = " AND `contact`.`self` AND `item`.`wall` ";
2166                         }
2167
2168                         // was the top-level post for this action written by somebody on this site?
2169                         // Specifically, the recipient?
2170
2171                         $is_a_remote_action = false;
2172
2173                         $parent = Item::selectFirst(['parent-uri'], ['uri' => $item["parent-uri"]]);
2174                         if (DBA::isResult($parent)) {
2175                                 $r = q(
2176                                         "SELECT `item`.`forum_mode`, `item`.`wall` FROM `item`
2177                                         INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
2178                                         WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' OR `item`.`thr-parent` = '%s')
2179                                         AND `item`.`uid` = %d
2180                                         $sql_extra
2181                                         LIMIT 1",
2182                                         DBA::escape($parent["parent-uri"]),
2183                                         DBA::escape($parent["parent-uri"]),
2184                                         DBA::escape($parent["parent-uri"]),
2185                                         intval($importer["importer_uid"])
2186                                 );
2187                                 if (DBA::isResult($r)) {
2188                                         $is_a_remote_action = true;
2189                                 }
2190                         }
2191
2192                         /*
2193                          * Does this have the characteristics of a community or private group action?
2194                          * If it's an action to a wall post on a community/prvgroup page it's a
2195                          * valid community action. Also forum_mode makes it valid for sure.
2196                          * If neither, it's not.
2197                          */
2198                         if ($is_a_remote_action && $community && (!$r[0]["forum_mode"]) && (!$r[0]["wall"])) {
2199                                 $is_a_remote_action = false;
2200                                 logger("not a community action");
2201                         }
2202
2203                         if ($is_a_remote_action) {
2204                                 return DFRN::REPLY_RC;
2205                         } else {
2206                                 return DFRN::REPLY;
2207                         }
2208                 } else {
2209                         return DFRN::TOP_LEVEL;
2210                 }
2211         }
2212
2213         /**
2214          * @brief Send a "poke"
2215          *
2216          * @param array $item      the new item record
2217          * @param array $importer  Record of the importer user mixed with contact of the content
2218          * @param int   $posted_id The record number of item record that was just posted
2219          * @return void
2220          * @todo set proper type-hints (array?)
2221          */
2222         private static function doPoke($item, $importer, $posted_id)
2223         {
2224                 $verb = urldecode(substr($item["verb"], strpos($item["verb"], "#")+1));
2225                 if (!$verb) {
2226                         return;
2227                 }
2228                 $xo = XML::parseString($item["object"], false);
2229
2230                 if (($xo->type == ACTIVITY_OBJ_PERSON) && ($xo->id)) {
2231                         // somebody was poked/prodded. Was it me?
2232                         foreach ($xo->link as $l) {
2233                                 $atts = $l->attributes();
2234                                 switch ($atts["rel"]) {
2235                                         case "alternate":
2236                                                 $Blink = $atts["href"];
2237                                                 break;
2238                                         default:
2239                                                 break;
2240                                 }
2241                         }
2242
2243                         if ($Blink && link_compare($Blink, System::baseUrl() . "/profile/" . $importer["nickname"])) {
2244                                 $author = DBA::selectFirst('contact', ['name', 'thumb', 'url'], ['id' => $item['author-id']]);
2245
2246                                 // send a notification
2247                                 notification(
2248                                         [
2249                                         "type"         => NOTIFY_POKE,
2250                                         "notify_flags" => $importer["notify-flags"],
2251                                         "language"     => $importer["language"],
2252                                         "to_name"      => $importer["username"],
2253                                         "to_email"     => $importer["email"],
2254                                         "uid"          => $importer["importer_uid"],
2255                                         "item"         => $item,
2256                                         "link"         => System::baseUrl()."/display/".urlencode(Item::getGuidById($posted_id)),
2257                                         "source_name"  => $author["name"],
2258                                         "source_link"  => $author["url"],
2259                                         "source_photo" => $author["thumb"],
2260                                         "verb"         => $item["verb"],
2261                                         "otype"        => "person",
2262                                         "activity"     => $verb,
2263                                         "parent"       => $item["parent"]]
2264                                 );
2265                         }
2266                 }
2267         }
2268
2269         /**
2270          * @brief Processes several actions, depending on the verb
2271          *
2272          * @param int   $entrytype Is it a toplevel entry, a comment or a relayed comment?
2273          * @param array $importer  Record of the importer user mixed with contact of the content
2274          * @param array $item      the new item record
2275          * @param bool  $is_like   Is the verb a "like"?
2276          *
2277          * @return bool Should the processing of the entries be continued?
2278          * @todo set proper type-hints (array?)
2279          */
2280         private static function processVerbs($entrytype, $importer, &$item, &$is_like)
2281         {
2282                 logger("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, LOGGER_DEBUG);
2283
2284                 if (($entrytype == DFRN::TOP_LEVEL)) {
2285                         // The filling of the the "contact" variable is done for legcy reasons
2286                         // The functions below are partly used by ostatus.php as well - where we have this variable
2287                         $r = q("SELECT * FROM `contact` WHERE `id` = %d", intval($importer["id"]));
2288                         $contact = $r[0];
2289                         $nickname = $contact["nick"];
2290
2291                         // Big question: Do we need these functions? They were part of the "consume_feed" function.
2292                         // This function once was responsible for DFRN and OStatus.
2293                         if (activity_match($item["verb"], ACTIVITY_FOLLOW)) {
2294                                 logger("New follower");
2295                                 Contact::addRelationship($importer, $contact, $item, $nickname);
2296                                 return false;
2297                         }
2298                         if (activity_match($item["verb"], ACTIVITY_UNFOLLOW)) {
2299                                 logger("Lost follower");
2300                                 Contact::removeFollower($importer, $contact, $item);
2301                                 return false;
2302                         }
2303                         if (activity_match($item["verb"], ACTIVITY_REQ_FRIEND)) {
2304                                 logger("New friend request");
2305                                 Contact::addRelationship($importer, $contact, $item, $nickname, true);
2306                                 return false;
2307                         }
2308                         if (activity_match($item["verb"], ACTIVITY_UNFRIEND)) {
2309                                 logger("Lost sharer");
2310                                 Contact::removeSharer($importer, $contact, $item);
2311                                 return false;
2312                         }
2313                 } else {
2314                         if (($item["verb"] == ACTIVITY_LIKE)
2315                                 || ($item["verb"] == ACTIVITY_DISLIKE)
2316                                 || ($item["verb"] == ACTIVITY_ATTEND)
2317                                 || ($item["verb"] == ACTIVITY_ATTENDNO)
2318                                 || ($item["verb"] == ACTIVITY_ATTENDMAYBE)
2319                         ) {
2320                                 $is_like = true;
2321                                 $item["gravity"] = GRAVITY_ACTIVITY;
2322                                 // only one like or dislike per person
2323                                 // splitted into two queries for performance issues
2324                                 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2325                                         'verb' => $item["verb"], 'parent-uri' => $item["parent-uri"]];
2326                                 if (Item::exists($condition)) {
2327                                         return false;
2328                                 }
2329
2330                                 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2331                                         'verb' => $item["verb"], 'thr-parent' => $item["parent-uri"]];
2332                                 if (Item::exists($condition)) {
2333                                         return false;
2334                                 }
2335                         } else {
2336                                 $is_like = false;
2337                         }
2338
2339                         if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) {
2340                                 $xo = XML::parseString($item["object"], false);
2341                                 $xt = XML::parseString($item["target"], false);
2342
2343                                 if ($xt->type == ACTIVITY_OBJ_NOTE) {
2344                                         $item_tag = Item::selectFirst(['id', 'tag'], ['uri' => $xt->id, 'uid' => $importer["importer_uid"]]);
2345
2346                                         if (!DBA::isResult($item_tag)) {
2347                                                 logger("Query failed to execute, no result returned in " . __FUNCTION__);
2348                                                 return false;
2349                                         }
2350
2351                                         // extract tag, if not duplicate, add to parent item
2352                                         if ($xo->content) {
2353                                                 if (!stristr($item_tag["tag"], trim($xo->content))) {
2354                                                         $tag = $item_tag["tag"] . (strlen($item_tag["tag"]) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
2355                                                         Item::update(['tag' => $tag], ['id' => $item_tag["id"]]);
2356                                                 }
2357                                         }
2358                                 }
2359                         }
2360                 }
2361                 return true;
2362         }
2363
2364         /**
2365          * @brief Processes the link elements
2366          *
2367          * @param object $links link elements
2368          * @param array  $item  the item record
2369          * @return void
2370          * @todo set proper type-hints
2371          */
2372         private static function parseLinks($links, &$item)
2373         {
2374                 $rel = "";
2375                 $href = "";
2376                 $type = "";
2377                 $length = "0";
2378                 $title = "";
2379                 foreach ($links as $link) {
2380                         foreach ($link->attributes as $attributes) {
2381                                 switch ($attributes->name) {
2382                                         case "href"  : $href   = $attributes->textContent; break;
2383                                         case "rel"   : $rel    = $attributes->textContent; break;
2384                                         case "type"  : $type   = $attributes->textContent; break;
2385                                         case "length": $length = $attributes->textContent; break;
2386                                         case "title" : $title  = $attributes->textContent; break;
2387                                 }
2388                         }
2389                         if (($rel != "") && ($href != "")) {
2390                                 switch ($rel) {
2391                                         case "alternate":
2392                                                 $item["plink"] = $href;
2393                                                 break;
2394                                         case "enclosure":
2395                                                 $enclosure = $href;
2396                                                 if (strlen($item["attach"])) {
2397                                                         $item["attach"] .= ",";
2398                                                 }
2399
2400                                                 $item["attach"] .= '[attach]href="' . $href . '" length="' . $length . '" type="' . $type . '" title="' . $title . '"[/attach]';
2401                                                 break;
2402                                 }
2403                         }
2404                 }
2405         }
2406
2407         /**
2408          * @brief Processes the entry elements which contain the items and comments
2409          *
2410          * @param array  $header   Array of the header elements that always stay the same
2411          * @param object $xpath    XPath object
2412          * @param object $entry    entry elements
2413          * @param array  $importer Record of the importer user mixed with contact of the content
2414          * @param object $xml      xml
2415          * @return void
2416          * @todo Add type-hints
2417          */
2418         private static function processEntry($header, $xpath, $entry, $importer, $xml)
2419         {
2420                 logger("Processing entries");
2421
2422                 $item = $header;
2423
2424                 $item["protocol"] = Conversation::PARCEL_DFRN;
2425
2426                 $item["source"] = $xml;
2427
2428                 // Get the uri
2429                 $item["uri"] = XML::getFirstNodeValue($xpath, "atom:id/text()", $entry);
2430
2431                 $item["edited"] = XML::getFirstNodeValue($xpath, "atom:updated/text()", $entry);
2432
2433                 $current = Item::selectFirst(['id', 'uid', 'edited', 'body'],
2434                         ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]]
2435                 );
2436                 // Is there an existing item?
2437                 if (DBA::isResult($current) && !self::isEditedTimestampNewer($current, $item)) {
2438                         logger("Item ".$item["uri"]." (".$item['edited'].") already existed.", LOGGER_DEBUG);
2439                         return;
2440                 }
2441
2442                 // Fetch the owner
2443                 $owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true);
2444
2445                 $owner_unknown = (isset($owner["contact-unknown"]) && $owner["contact-unknown"]);
2446
2447                 $item["owner-name"] = $owner["name"];
2448                 $item["owner-link"] = $owner["link"];
2449                 $item["owner-avatar"] = $owner["avatar"];
2450                 $item["owner-id"] = Contact::getIdForURL($owner["link"], 0);
2451
2452                 // fetch the author
2453                 $author = self::fetchauthor($xpath, $entry, $importer, "atom:author", true);
2454
2455                 $item["author-name"] = $author["name"];
2456                 $item["author-link"] = $author["link"];
2457                 $item["author-avatar"] = $author["avatar"];
2458                 $item["author-id"] = Contact::getIdForURL($author["link"], 0);
2459
2460                 $item["title"] = XML::getFirstNodeValue($xpath, "atom:title/text()", $entry);
2461
2462                 $item["created"] = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2463
2464                 $item["body"] = XML::getFirstNodeValue($xpath, "dfrn:env/text()", $entry);
2465                 $item["body"] = str_replace([' ',"\t","\r","\n"], ['','','',''], $item["body"]);
2466                 // make sure nobody is trying to sneak some html tags by us
2467                 $item["body"] = notags(base64url_decode($item["body"]));
2468
2469                 $item["body"] = BBCode::limitBodySize($item["body"]);
2470
2471                 /// @todo Do we really need this check for HTML elements? (It was copied from the old function)
2472                 if ((strpos($item['body'], '<') !== false) && (strpos($item['body'], '>') !== false)) {
2473                         $base_url = get_app()->get_baseurl();
2474                         $item['body'] = reltoabs($item['body'], $base_url);
2475
2476                         $item['body'] = html2bb_video($item['body']);
2477
2478                         $item['body'] = OEmbed::HTML2BBCode($item['body']);
2479
2480                         $config = HTMLPurifier_Config::createDefault();
2481                         $config->set('Cache.DefinitionImpl', null);
2482
2483                         // we shouldn't need a whitelist, because the bbcode converter
2484                         // will strip out any unsupported tags.
2485
2486                         $purifier = new HTMLPurifier($config);
2487                         $item['body'] = $purifier->purify($item['body']);
2488
2489                         $item['body'] = @HTML::toBBCode($item['body']);
2490                 }
2491
2492                 /// @todo We should check for a repeated post and if we know the repeated author.
2493
2494                 // We don't need the content element since "dfrn:env" is always present
2495                 //$item["body"] = $xpath->query("atom:content/text()", $entry)->item(0)->nodeValue;
2496
2497                 $item["location"] = XML::getFirstNodeValue($xpath, "dfrn:location/text()", $entry);
2498
2499                 $item["coord"] = XML::getFirstNodeValue($xpath, "georss:point", $entry);
2500
2501                 $item["private"] = XML::getFirstNodeValue($xpath, "dfrn:private/text()", $entry);
2502
2503                 $item["extid"] = XML::getFirstNodeValue($xpath, "dfrn:extid/text()", $entry);
2504
2505                 if (XML::getFirstNodeValue($xpath, "dfrn:bookmark/text()", $entry) == "true") {
2506                         $item["post-type"] = Item::PT_PAGE;
2507                 }
2508
2509                 $notice_info = $xpath->query("statusnet:notice_info", $entry);
2510                 if ($notice_info && ($notice_info->length > 0)) {
2511                         foreach ($notice_info->item(0)->attributes as $attributes) {
2512                                 if ($attributes->name == "source") {
2513                                         $item["app"] = strip_tags($attributes->textContent);
2514                                 }
2515                         }
2516                 }
2517
2518                 $item["guid"] = XML::getFirstNodeValue($xpath, "dfrn:diaspora_guid/text()", $entry);
2519
2520                 // We store the data from "dfrn:diaspora_signature" in a different table, this is done in "Item::insert"
2521                 $dsprsig = unxmlify(XML::getFirstNodeValue($xpath, "dfrn:diaspora_signature/text()", $entry));
2522                 if ($dsprsig != "") {
2523                         $item["dsprsig"] = $dsprsig;
2524                 }
2525
2526                 $item["verb"] = XML::getFirstNodeValue($xpath, "activity:verb/text()", $entry);
2527
2528                 if (XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry) != "") {
2529                         $item["object-type"] = XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry);
2530                 }
2531
2532                 $object = $xpath->query("activity:object", $entry)->item(0);
2533                 $item["object"] = self::transformActivity($xpath, $object, "object");
2534
2535                 if (trim($item["object"]) != "") {
2536                         $r = XML::parseString($item["object"], false);
2537                         if (isset($r->type)) {
2538                                 $item["object-type"] = $r->type;
2539                         }
2540                 }
2541
2542                 $target = $xpath->query("activity:target", $entry)->item(0);
2543                 $item["target"] = self::transformActivity($xpath, $target, "target");
2544
2545                 $categories = $xpath->query("atom:category", $entry);
2546                 if ($categories) {
2547                         foreach ($categories as $category) {
2548                                 $term = "";
2549                                 $scheme = "";
2550                                 foreach ($category->attributes as $attributes) {
2551                                         if ($attributes->name == "term") {
2552                                                 $term = $attributes->textContent;
2553                                         }
2554
2555                                         if ($attributes->name == "scheme") {
2556                                                 $scheme = $attributes->textContent;
2557                                         }
2558                                 }
2559
2560                                 if (($term != "") && ($scheme != "")) {
2561                                         $parts = explode(":", $scheme);
2562                                         if ((count($parts) >= 4) && (array_shift($parts) == "X-DFRN")) {
2563                                                 $termhash = array_shift($parts);
2564                                                 $termurl = implode(":", $parts);
2565
2566                                                 if (!empty($item["tag"])) {
2567                                                         $item["tag"] .= ",";
2568                                                 } else {
2569                                                         $item["tag"] = "";
2570                                                 }
2571
2572                                                 $item["tag"] .= $termhash . "[url=" . $termurl . "]" . $term . "[/url]";
2573                                         }
2574                                 }
2575                         }
2576                 }
2577
2578                 $enclosure = "";
2579
2580                 $links = $xpath->query("atom:link", $entry);
2581                 if ($links) {
2582                         self::parseLinks($links, $item);
2583                 }
2584
2585                 $item['conversation-uri'] = XML::getFirstNodeValue($xpath, 'ostatus:conversation/text()', $entry);
2586
2587                 $conv = $xpath->query('ostatus:conversation', $entry);
2588                 if (is_object($conv->item(0))) {
2589                         foreach ($conv->item(0)->attributes as $attributes) {
2590                                 if ($attributes->name == "ref") {
2591                                         $item['conversation-uri'] = $attributes->textContent;
2592                                 }
2593                                 if ($attributes->name == "href") {
2594                                         $item['conversation-href'] = $attributes->textContent;
2595                                 }
2596                         }
2597                 }
2598
2599                 // Is it a reply or a top level posting?
2600                 $item["parent-uri"] = $item["uri"];
2601
2602                 $inreplyto = $xpath->query("thr:in-reply-to", $entry);
2603                 if (is_object($inreplyto->item(0))) {
2604                         foreach ($inreplyto->item(0)->attributes as $attributes) {
2605                                 if ($attributes->name == "ref") {
2606                                         $item["parent-uri"] = $attributes->textContent;
2607                                 }
2608                         }
2609                 }
2610
2611                 // Get the type of the item (Top level post, reply or remote reply)
2612                 $entrytype = self::getEntryType($importer, $item);
2613
2614                 // Now assign the rest of the values that depend on the type of the message
2615                 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2616                         if (!isset($item["object-type"])) {
2617                                 $item["object-type"] = ACTIVITY_OBJ_COMMENT;
2618                         }
2619
2620                         if ($item["contact-id"] != $owner["contact-id"]) {
2621                                 $item["contact-id"] = $owner["contact-id"];
2622                         }
2623
2624                         if (($item["network"] != $owner["network"]) && ($owner["network"] != "")) {
2625                                 $item["network"] = $owner["network"];
2626                         }
2627
2628                         if ($item["contact-id"] != $author["contact-id"]) {
2629                                 $item["contact-id"] = $author["contact-id"];
2630                         }
2631
2632                         if (($item["network"] != $author["network"]) && ($author["network"] != "")) {
2633                                 $item["network"] = $author["network"];
2634                         }
2635                 }
2636
2637                 if ($entrytype == DFRN::REPLY_RC) {
2638                         $item["wall"] = 1;
2639                 } elseif ($entrytype == DFRN::TOP_LEVEL) {
2640                         if (!isset($item["object-type"])) {
2641                                 $item["object-type"] = ACTIVITY_OBJ_NOTE;
2642                         }
2643
2644                         // Is it an event?
2645                         if (($item["object-type"] == ACTIVITY_OBJ_EVENT) && !$owner_unknown) {
2646                                 logger("Item ".$item["uri"]." seems to contain an event.", LOGGER_DEBUG);
2647                                 $ev = Event::fromBBCode($item["body"]);
2648                                 if ((x($ev, "desc") || x($ev, "summary")) && x($ev, "start")) {
2649                                         logger("Event in item ".$item["uri"]." was found.", LOGGER_DEBUG);
2650                                         $ev["cid"]     = $importer["id"];
2651                                         $ev["uid"]     = $importer["importer_uid"];
2652                                         $ev["uri"]     = $item["uri"];
2653                                         $ev["edited"]  = $item["edited"];
2654                                         $ev["private"] = $item["private"];
2655                                         $ev["guid"]    = $item["guid"];
2656                                         $ev["plink"]   = $item["plink"];
2657
2658                                         $condition = ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]];
2659                                         $event = DBA::selectFirst('event', ['id'], $condition);
2660                                         if (DBA::isResult($event)) {
2661                                                 $ev["id"] = $event["id"];
2662                                         }
2663
2664                                         $event_id = Event::store($ev);
2665                                         logger("Event ".$event_id." was stored", LOGGER_DEBUG);
2666                                         return;
2667                                 }
2668                         }
2669                 }
2670
2671                 if (!self::processVerbs($entrytype, $importer, $item, $is_like)) {
2672                         logger("Exiting because 'processVerbs' told us so", LOGGER_DEBUG);
2673                         return;
2674                 }
2675
2676                 // This check is done here to be able to receive connection requests in "processVerbs"
2677                 if (($entrytype == DFRN::TOP_LEVEL) && $owner_unknown) {
2678                         logger("Item won't be stored because user " . $importer["importer_uid"] . " doesn't follow " . $item["owner-link"] . ".", LOGGER_DEBUG);
2679                         return;
2680                 }
2681
2682
2683                 // Update content if 'updated' changes
2684                 if (DBA::isResult($current)) {
2685                         if (self::updateContent($current, $item, $importer, $entrytype)) {
2686                                 logger("Item ".$item["uri"]." was updated.", LOGGER_DEBUG);
2687                         } else {
2688                                 logger("Item " . $item["uri"] . " already existed.", LOGGER_DEBUG);
2689                         }
2690                         return;
2691                 }
2692
2693                 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2694                         $posted_id = Item::insert($item);
2695                         $parent = 0;
2696
2697                         if ($posted_id) {
2698                                 logger("Reply from contact ".$item["contact-id"]." was stored with id ".$posted_id, LOGGER_DEBUG);
2699
2700                                 if ($item['uid'] == 0) {
2701                                         Item::distribute($posted_id);
2702                                 }
2703
2704                                 return true;
2705                         }
2706                 } else { // $entrytype == DFRN::TOP_LEVEL
2707                         if (($importer["uid"] == 0) && ($importer["importer_uid"] != 0)) {
2708                                 logger("Contact ".$importer["id"]." isn't known to user ".$importer["importer_uid"].". The post will be ignored.", LOGGER_DEBUG);
2709                                 return;
2710                         }
2711                         if (!link_compare($item["owner-link"], $importer["url"])) {
2712                                 /*
2713                                  * The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2714                                  * but otherwise there's a possible data mixup on the sender's system.
2715                                  * the tgroup delivery code called from Item::insert will correct it if it's a forum,
2716                                  * but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2717                                  */
2718                                 logger('Correcting item owner.', LOGGER_DEBUG);
2719                                 $item["owner-link"] = $importer["url"];
2720                                 $item["owner-id"] = Contact::getIdForURL($importer["url"], 0);
2721                         }
2722
2723                         if (($importer["rel"] == Contact::FOLLOWER) && (!self::tgroupCheck($importer["importer_uid"], $item))) {
2724                                 logger("Contact ".$importer["id"]." is only follower and tgroup check was negative.", LOGGER_DEBUG);
2725                                 return;
2726                         }
2727
2728                         // This is my contact on another system, but it's really me.
2729                         // Turn this into a wall post.
2730                         $notify = Item::isRemoteSelf($importer, $item);
2731
2732                         $posted_id = Item::insert($item, false, $notify);
2733
2734                         if ($notify) {
2735                                 $posted_id = $notify;
2736                         }
2737
2738                         logger("Item was stored with id ".$posted_id, LOGGER_DEBUG);
2739
2740                         if ($item['uid'] == 0) {
2741                                 Item::distribute($posted_id);
2742                         }
2743
2744                         if (stristr($item["verb"], ACTIVITY_POKE)) {
2745                                 self::doPoke($item, $importer, $posted_id);
2746                         }
2747                 }
2748         }
2749
2750         /**
2751          * @brief Deletes items
2752          *
2753          * @param object $xpath    XPath object
2754          * @param object $deletion deletion elements
2755          * @param array  $importer Record of the importer user mixed with contact of the content
2756          * @return void
2757          * @todo set proper type-hints
2758          */
2759         private static function processDeletion($xpath, $deletion, $importer)
2760         {
2761                 logger("Processing deletions");
2762                 $uri = null;
2763
2764                 foreach ($deletion->attributes as $attributes) {
2765                         if ($attributes->name == "ref") {
2766                                 $uri = $attributes->textContent;
2767                         }
2768                 }
2769
2770                 if (!$uri || !$importer["id"]) {
2771                         return false;
2772                 }
2773
2774                 $condition = ['uri' => $uri, 'uid' => $importer["importer_uid"]];
2775                 $item = Item::selectFirst(['id', 'parent', 'contact-id', 'file', 'deleted'], $condition);
2776                 if (!DBA::isResult($item)) {
2777                         logger("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " wasn't found.", LOGGER_DEBUG);
2778                         return;
2779                 }
2780
2781                 if (strstr($item['file'], '[')) {
2782                         logger("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " is filed. So it won't be deleted.", LOGGER_DEBUG);
2783                         return;
2784                 }
2785
2786                 // When it is a starting post it has to belong to the person that wants to delete it
2787                 if (($item['id'] == $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2788                         logger("Item with uri " . $uri . " don't belong to contact " . $importer["id"] . " - ignoring deletion.", LOGGER_DEBUG);
2789                         return;
2790                 }
2791
2792                 // Comments can be deleted by the thread owner or comment owner
2793                 if (($item['id'] != $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2794                         $condition = ['id' => $item['parent'], 'contact-id' => $importer["id"]];
2795                         if (!Item::exists($condition)) {
2796                                 logger("Item with uri " . $uri . " wasn't found or mustn't be deleted by contact " . $importer["id"] . " - ignoring deletion.", LOGGER_DEBUG);
2797                                 return;
2798                         }
2799                 }
2800
2801                 if ($item["deleted"]) {
2802                         return;
2803                 }
2804
2805                 logger('deleting item '.$item['id'].' uri='.$uri, LOGGER_DEBUG);
2806
2807                 Item::delete(['id' => $item['id']]);
2808         }
2809
2810         /**
2811          * @brief Imports a DFRN message
2812          *
2813          * @param string $xml          The DFRN message
2814          * @param array  $importer     Record of the importer user mixed with contact of the content
2815          * @param bool   $sort_by_date Is used when feeds are polled
2816          * @return integer Import status
2817          * @todo set proper type-hints
2818          */
2819         public static function import($xml, $importer, $sort_by_date = false)
2820         {
2821                 if ($xml == "") {
2822                         return 400;
2823                 }
2824
2825                 $doc = new DOMDocument();
2826                 @$doc->loadXML($xml);
2827
2828                 $xpath = new DOMXPath($doc);
2829                 $xpath->registerNamespace("atom", NAMESPACE_ATOM1);
2830                 $xpath->registerNamespace("thr", NAMESPACE_THREAD);
2831                 $xpath->registerNamespace("at", NAMESPACE_TOMB);
2832                 $xpath->registerNamespace("media", NAMESPACE_MEDIA);
2833                 $xpath->registerNamespace("dfrn", NAMESPACE_DFRN);
2834                 $xpath->registerNamespace("activity", NAMESPACE_ACTIVITY);
2835                 $xpath->registerNamespace("georss", NAMESPACE_GEORSS);
2836                 $xpath->registerNamespace("poco", NAMESPACE_POCO);
2837                 $xpath->registerNamespace("ostatus", NAMESPACE_OSTATUS);
2838                 $xpath->registerNamespace("statusnet", NAMESPACE_STATUSNET);
2839
2840                 $header = [];
2841                 $header["uid"] = $importer["importer_uid"];
2842                 $header["network"] = Protocol::DFRN;
2843                 $header["wall"] = 0;
2844                 $header["origin"] = 0;
2845                 $header["contact-id"] = $importer["id"];
2846
2847                 // Update the contact table if the data has changed
2848
2849                 // The "atom:author" is only present in feeds
2850                 if ($xpath->query("/atom:feed/atom:author")->length > 0) {
2851                         self::fetchauthor($xpath, $doc->firstChild, $importer, "atom:author", false, $xml);
2852                 }
2853
2854                 // Only the "dfrn:owner" in the head section contains all data
2855                 if ($xpath->query("/atom:feed/dfrn:owner")->length > 0) {
2856                         self::fetchauthor($xpath, $doc->firstChild, $importer, "dfrn:owner", false, $xml);
2857                 }
2858
2859                 logger("Import DFRN message for user " . $importer["importer_uid"] . " from contact " . $importer["id"], LOGGER_DEBUG);
2860
2861                 // is it a public forum? Private forums aren't exposed with this method
2862                 $forum = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:community/text()"));
2863
2864                 // The account type is new since 3.5.1
2865                 if ($xpath->query("/atom:feed/dfrn:account_type")->length > 0) {
2866                         $accounttype = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:account_type/text()"));
2867
2868                         if ($accounttype != $importer["contact-type"]) {
2869                                 DBA::update('contact', ['contact-type' => $accounttype], ['id' => $importer["id"]]);
2870                         }
2871                         // A forum contact can either have set "forum" or "prv" - but not both
2872                         if (($accounttype == Contact::ACCOUNT_TYPE_COMMUNITY) && (($forum != $importer["forum"]) || ($forum == $importer["prv"]))) {
2873                                 $condition = ['(`forum` != ? OR `prv` != ?) AND `id` = ?', $forum, !$forum, $importer["id"]];
2874                                 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2875                         }
2876                 } elseif ($forum != $importer["forum"]) { // Deprecated since 3.5.1
2877                         $condition = ['`forum` != ? AND `id` = ?', $forum, $importer["id"]];
2878                         DBA::update('contact', ['forum' => $forum], $condition);
2879                 }
2880
2881
2882                 // We are processing relocations even if we are ignoring a contact
2883                 $relocations = $xpath->query("/atom:feed/dfrn:relocate");
2884                 foreach ($relocations as $relocation) {
2885                         self::processRelocation($xpath, $relocation, $importer);
2886                 }
2887
2888                 if (($importer["uid"] != 0) && !$importer["readonly"]) {
2889                         $mails = $xpath->query("/atom:feed/dfrn:mail");
2890                         foreach ($mails as $mail) {
2891                                 self::processMail($xpath, $mail, $importer);
2892                         }
2893
2894                         $suggestions = $xpath->query("/atom:feed/dfrn:suggest");
2895                         foreach ($suggestions as $suggestion) {
2896                                 self::processSuggestion($xpath, $suggestion, $importer);
2897                         }
2898                 }
2899
2900                 $deletions = $xpath->query("/atom:feed/at:deleted-entry");
2901                 foreach ($deletions as $deletion) {
2902                         self::processDeletion($xpath, $deletion, $importer);
2903                 }
2904
2905                 if (!$sort_by_date) {
2906                         $entries = $xpath->query("/atom:feed/atom:entry");
2907                         foreach ($entries as $entry) {
2908                                 self::processEntry($header, $xpath, $entry, $importer, $xml);
2909                         }
2910                 } else {
2911                         $newentries = [];
2912                         $entries = $xpath->query("/atom:feed/atom:entry");
2913                         foreach ($entries as $entry) {
2914                                 $created = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2915                                 $newentries[strtotime($created)] = $entry;
2916                         }
2917
2918                         // Now sort after the publishing date
2919                         ksort($newentries);
2920
2921                         foreach ($newentries as $entry) {
2922                                 self::processEntry($header, $xpath, $entry, $importer, $xml);
2923                         }
2924                 }
2925                 logger("Import done for user " . $importer["importer_uid"] . " from contact " . $importer["id"], LOGGER_DEBUG);
2926                 return 200;
2927         }
2928
2929         /**
2930          * @param App    $a            App
2931          * @param string $contact_nick contact nickname
2932          */
2933         public static function autoRedir(App $a, $contact_nick)
2934         {
2935                 // prevent looping
2936                 if (x($_REQUEST, 'redir') && intval($_REQUEST['redir'])) {
2937                         return;
2938                 }
2939
2940                 if ((! $contact_nick) || ($contact_nick === $a->user['nickname'])) {
2941                         return;
2942                 }
2943
2944                 if (local_user()) {
2945                         // We need to find out if $contact_nick is a user on this hub, and if so, if I
2946                         // am a contact of that user. However, that user may have other contacts with the
2947                         // same nickname as me on other hubs or other networks. Exclude these by requiring
2948                         // that the contact have a local URL. I will be the only person with my nickname at
2949                         // this URL, so if a result is found, then I am a contact of the $contact_nick user.
2950                         //
2951                         // We also have to make sure that I'm a legitimate contact--I'm not blocked or pending.
2952
2953                         $baseurl = System::baseUrl();
2954                         $domain_st = strpos($baseurl, "://");
2955                         if ($domain_st === false) {
2956                                 return;
2957                         }
2958                         $baseurl = substr($baseurl, $domain_st + 3);
2959                         $nurl = normalise_link($baseurl);
2960
2961                         /// @todo Why is there a query for "url" *and* "nurl"? Especially this normalising is strange.
2962                         $r = q("SELECT `id` FROM `contact` WHERE `uid` = (SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1)
2963                                         AND `nick` = '%s' AND NOT `self` AND (`url` LIKE '%%%s%%' OR `nurl` LIKE '%%%s%%') AND NOT `blocked` AND NOT `pending` LIMIT 1",
2964                                 DBA::escape($contact_nick),
2965                                 DBA::escape($a->user['nickname']),
2966                                 DBA::escape($baseurl),
2967                                 DBA::escape($nurl)
2968                         );
2969                         if ((! DBA::isResult($r)) || $r[0]['id'] == remote_user()) {
2970                                 return;
2971                         }
2972
2973                         $r = q("SELECT * FROM contact WHERE nick = '%s'
2974                                         AND network = '%s' AND uid = %d  AND url LIKE '%%%s%%' LIMIT 1",
2975                                 DBA::escape($contact_nick),
2976                                 DBA::escape(Protocol::DFRN),
2977                                 intval(local_user()),
2978                                 DBA::escape($baseurl)
2979                         );
2980                         if (! DBA::isResult($r)) {
2981                                 return;
2982                         }
2983
2984                         $cid = $r[0]['id'];
2985
2986                         $dfrn_id = (($r[0]['issued-id']) ? $r[0]['issued-id'] : $r[0]['dfrn-id']);
2987
2988                         if ($r[0]['duplex'] && $r[0]['issued-id']) {
2989                                 $orig_id = $r[0]['issued-id'];
2990                                 $dfrn_id = '1:' . $orig_id;
2991                         }
2992                         if ($r[0]['duplex'] && $r[0]['dfrn-id']) {
2993                                 $orig_id = $r[0]['dfrn-id'];
2994                                 $dfrn_id = '0:' . $orig_id;
2995                         }
2996
2997                         // ensure that we've got a valid ID. There may be some edge cases with forums and non-duplex mode
2998                         // that may have triggered some of the "went to {profile/intro} and got an RSS feed" issues
2999
3000                         if (strlen($dfrn_id) < 3) {
3001                                 return;
3002                         }
3003
3004                         $sec = random_string();
3005
3006                         DBA::insert('profile_check', ['uid' => local_user(), 'cid' => $cid, 'dfrn_id' => $dfrn_id, 'sec' => $sec, 'expire' => time() + 45]);
3007
3008                         $url = curPageURL();
3009
3010                         logger('auto_redir: ' . $r[0]['name'] . ' ' . $sec, LOGGER_DEBUG);
3011                         $dest = (($url) ? '&destination_url=' . $url : '');
3012                         goaway($r[0]['poll'] . '?dfrn_id=' . $dfrn_id
3013                                 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest);
3014                 }
3015
3016                 return;
3017         }
3018
3019         /**
3020          * @brief Returns the activity verb
3021          *
3022          * @param array $item Item array
3023          *
3024          * @return string activity verb
3025          */
3026         private static function constructVerb(array $item)
3027         {
3028                 if ($item['verb']) {
3029                         return $item['verb'];
3030                 }
3031                 return ACTIVITY_POST;
3032         }
3033
3034         private static function tgroupCheck($uid, $item)
3035         {
3036                 $mention = false;
3037
3038                 // check that the message originated elsewhere and is a top-level post
3039
3040                 if ($item['wall'] || $item['origin'] || ($item['uri'] != $item['parent-uri'])) {
3041                         return false;
3042                 }
3043
3044                 $user = DBA::selectFirst('user', ['page-flags', 'nickname'], ['uid' => $uid]);
3045                 if (!DBA::isResult($user)) {
3046                         return false;
3047                 }
3048
3049                 $community_page = ($user['page-flags'] == Contact::PAGE_COMMUNITY);
3050                 $prvgroup = ($user['page-flags'] == Contact::PAGE_PRVGROUP);
3051
3052                 $link = normalise_link(System::baseUrl() . '/profile/' . $user['nickname']);
3053
3054                 /*
3055                  * Diaspora uses their own hardwired link URL in @-tags
3056                  * instead of the one we supply with webfinger
3057                  */
3058                 $dlink = normalise_link(System::baseUrl() . '/u/' . $user['nickname']);
3059
3060                 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
3061                 if ($cnt) {
3062                         foreach ($matches as $mtch) {
3063                                 if (link_compare($link, $mtch[1]) || link_compare($dlink, $mtch[1])) {
3064                                         $mention = true;
3065                                         logger('mention found: ' . $mtch[2]);
3066                                 }
3067                         }
3068                 }
3069
3070                 if (!$mention) {
3071                         return false;
3072                 }
3073
3074                 return $community_page || $prvgroup;
3075         }
3076
3077         /**
3078          * This function returns true if $update has an edited timestamp newer
3079          * than $existing, i.e. $update contains new data which should override
3080          * what's already there.  If there is no timestamp yet, the update is
3081          * assumed to be newer.  If the update has no timestamp, the existing
3082          * item is assumed to be up-to-date.  If the timestamps are equal it
3083          * assumes the update has been seen before and should be ignored.
3084          *
3085          */
3086         private static function isEditedTimestampNewer($existing, $update)
3087         {
3088                 if (!x($existing, 'edited') || !$existing['edited']) {
3089                         return true;
3090                 }
3091                 if (!x($update, 'edited') || !$update['edited']) {
3092                         return false;
3093                 }
3094
3095                 $existing_edited = DateTimeFormat::utc($existing['edited']);
3096                 $update_edited = DateTimeFormat::utc($update['edited']);
3097
3098                 return (strcmp($existing_edited, $update_edited) < 0);
3099         }
3100 }