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