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