]> git.mxchange.org Git - friendica.git/blob - include/dfrn.php
added spaces + some curly braces
[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'] != '0000-00-00 00:00:00') {
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                 /// @TODO Really abort on valid result??? Maybe missed ! here?
1612                 if (dbm::is_result($r)) {
1613                         return false;
1614                 }
1615
1616                 // Do we already have an fcontact record for this person?
1617
1618                 $fid = 0;
1619                 $r = q("SELECT `id` FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1620                         dbesc($suggest["url"]),
1621                         dbesc($suggest["name"]),
1622                         dbesc($suggest["request"])
1623                 );
1624                 if (dbm::is_result($r)) {
1625                         $fid = $r[0]["id"];
1626
1627                         // OK, we do. Do we already have an introduction for this person ?
1628                         $r = q("SELECT `id` FROM `intro` WHERE `uid` = %d AND `fid` = %d LIMIT 1",
1629                                 intval($suggest["uid"]),
1630                                 intval($fid)
1631                         );
1632                         /// @TODO Really abort on valid result??? Maybe missed ! here?
1633                         if (dbm::is_result($r)) {
1634                                 return false;
1635                         }
1636                 }
1637                 if (!$fid)
1638                         $r = q("INSERT INTO `fcontact` (`name`,`url`,`photo`,`request`) VALUES ('%s', '%s', '%s', '%s')",
1639                         dbesc($suggest["name"]),
1640                         dbesc($suggest["url"]),
1641                         dbesc($suggest["photo"]),
1642                         dbesc($suggest["request"])
1643                 );
1644                 $r = q("SELECT `id` FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1645                         dbesc($suggest["url"]),
1646                         dbesc($suggest["name"]),
1647                         dbesc($suggest["request"])
1648                 );
1649                 if (dbm::is_result($r)) {
1650                         $fid = $r[0]["id"];
1651                 } else {
1652                         // database record did not get created. Quietly give up.
1653                         killme();
1654                 }
1655
1656
1657                 $hash = random_string();
1658
1659                 $r = q("INSERT INTO `intro` (`uid`, `fid`, `contact-id`, `note`, `hash`, `datetime`, `blocked`)
1660                         VALUES(%d, %d, %d, '%s', '%s', '%s', %d)",
1661                         intval($suggest["uid"]),
1662                         intval($fid),
1663                         intval($suggest["cid"]),
1664                         dbesc($suggest["body"]),
1665                         dbesc($hash),
1666                         dbesc(datetime_convert()),
1667                         intval(0)
1668                 );
1669
1670                 notification(array(
1671                         "type"         => NOTIFY_SUGGEST,
1672                         "notify_flags" => $importer["notify-flags"],
1673                         "language"     => $importer["language"],
1674                         "to_name"      => $importer["username"],
1675                         "to_email"     => $importer["email"],
1676                         "uid"          => $importer["importer_uid"],
1677                         "item"         => $suggest,
1678                         "link"         => App::get_baseurl()."/notifications/intros",
1679                         "source_name"  => $importer["name"],
1680                         "source_link"  => $importer["url"],
1681                         "source_photo" => $importer["photo"],
1682                         "verb"         => ACTIVITY_REQ_FRIEND,
1683                         "otype"        => "intro"
1684                 ));
1685
1686                 return true;
1687
1688         }
1689
1690         /**
1691          * @brief Processes the relocation elements
1692          *
1693          * @param object $xpath XPath object
1694          * @param object $relocation relocation elements
1695          * @param array $importer Record of the importer user mixed with contact of the content
1696          * @todo Find good type-hints for all parameter
1697          */
1698         private static function process_relocation($xpath, $relocation, $importer) {
1699
1700                 logger("Processing relocations");
1701
1702                 /// @TODO Rewrite this to one statement
1703                 $relocate = array();
1704                 $relocate["uid"] = $importer["importer_uid"];
1705                 $relocate["cid"] = $importer["id"];
1706                 $relocate["url"] = $xpath->query("dfrn:url/text()", $relocation)->item(0)->nodeValue;
1707                 $relocate["addr"] = $xpath->query("dfrn:addr/text()", $relocation)->item(0)->nodeValue;
1708                 $relocate["name"] = $xpath->query("dfrn:name/text()", $relocation)->item(0)->nodeValue;
1709                 $relocate["avatar"] = $xpath->query("dfrn:avatar/text()", $relocation)->item(0)->nodeValue;
1710                 $relocate["photo"] = $xpath->query("dfrn:photo/text()", $relocation)->item(0)->nodeValue;
1711                 $relocate["thumb"] = $xpath->query("dfrn:thumb/text()", $relocation)->item(0)->nodeValue;
1712                 $relocate["micro"] = $xpath->query("dfrn:micro/text()", $relocation)->item(0)->nodeValue;
1713                 $relocate["request"] = $xpath->query("dfrn:request/text()", $relocation)->item(0)->nodeValue;
1714                 $relocate["confirm"] = $xpath->query("dfrn:confirm/text()", $relocation)->item(0)->nodeValue;
1715                 $relocate["notify"] = $xpath->query("dfrn:notify/text()", $relocation)->item(0)->nodeValue;
1716                 $relocate["poll"] = $xpath->query("dfrn:poll/text()", $relocation)->item(0)->nodeValue;
1717                 $relocate["sitepubkey"] = $xpath->query("dfrn:sitepubkey/text()", $relocation)->item(0)->nodeValue;
1718
1719                 if (($relocate["avatar"] == "") AND ($relocate["photo"] != "")) {
1720                         $relocate["avatar"] = $relocate["photo"];
1721                 }
1722
1723                 if ($relocate["addr"] == "") {
1724                         $relocate["addr"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$3@$2", $relocate["url"]);
1725                 }
1726
1727                 // update contact
1728                 $r = q("SELECT `photo`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d;",
1729                         intval($importer["id"]),
1730                         intval($importer["importer_uid"]));
1731
1732                 if (!dbm::is_result($r)) {
1733                         killme();
1734                 }
1735
1736                 $old = $r[0];
1737
1738                 // Update the gcontact entry
1739                 $relocate["server_url"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $relocate["url"]);
1740
1741                 $x = q("UPDATE `gcontact` SET
1742                                         `name` = '%s',
1743                                         `photo` = '%s',
1744                                         `url` = '%s',
1745                                         `nurl` = '%s',
1746                                         `addr` = '%s',
1747                                         `connect` = '%s',
1748                                         `notify` = '%s',
1749                                         `server_url` = '%s'
1750                         WHERE `nurl` = '%s';",
1751                                         dbesc($relocate["name"]),
1752                                         dbesc($relocate["avatar"]),
1753                                         dbesc($relocate["url"]),
1754                                         dbesc(normalise_link($relocate["url"])),
1755                                         dbesc($relocate["addr"]),
1756                                         dbesc($relocate["addr"]),
1757                                         dbesc($relocate["notify"]),
1758                                         dbesc($relocate["server_url"]),
1759                                         dbesc(normalise_link($old["url"])));
1760
1761                 // Update the contact table. We try to find every entry.
1762                 $x = q("UPDATE `contact` SET
1763                                         `name` = '%s',
1764                                         `avatar` = '%s',
1765                                         `url` = '%s',
1766                                         `nurl` = '%s',
1767                                         `addr` = '%s',
1768                                         `request` = '%s',
1769                                         `confirm` = '%s',
1770                                         `notify` = '%s',
1771                                         `poll` = '%s',
1772                                         `site-pubkey` = '%s'
1773                         WHERE (`id` = %d AND `uid` = %d) OR (`nurl` = '%s');",
1774                                         dbesc($relocate["name"]),
1775                                         dbesc($relocate["avatar"]),
1776                                         dbesc($relocate["url"]),
1777                                         dbesc(normalise_link($relocate["url"])),
1778                                         dbesc($relocate["addr"]),
1779                                         dbesc($relocate["request"]),
1780                                         dbesc($relocate["confirm"]),
1781                                         dbesc($relocate["notify"]),
1782                                         dbesc($relocate["poll"]),
1783                                         dbesc($relocate["sitepubkey"]),
1784                                         intval($importer["id"]),
1785                                         intval($importer["importer_uid"]),
1786                                         dbesc(normalise_link($old["url"])));
1787
1788                 update_contact_avatar($relocate["avatar"], $importer["importer_uid"], $importer["id"], true);
1789
1790                 if ($x === false) {
1791                         return false;
1792                 }
1793
1794                 // update items
1795                 /// @todo This is an extreme performance killer
1796                 $fields = array(
1797                         'owner-link' => array($old["url"], $relocate["url"]),
1798                         'author-link' => array($old["url"], $relocate["url"]),
1799                         //'owner-avatar' => array($old["photo"], $relocate["photo"]),
1800                         //'author-avatar' => array($old["photo"], $relocate["photo"]),
1801                         );
1802                 foreach ($fields as $n=>$f) {
1803                         $r = q("SELECT `id` FROM `item` WHERE `%s` = '%s' AND `uid` = %d LIMIT 1",
1804                                         $n, dbesc($f[0]),
1805                                         intval($importer["importer_uid"]));
1806
1807                         if (dbm::is_result($r)) {
1808                                 $x = q("UPDATE `item` SET `%s` = '%s' WHERE `%s` = '%s' AND `uid` = %d",
1809                                                 $n, dbesc($f[1]),
1810                                                 $n, dbesc($f[0]),
1811                                                 intval($importer["importer_uid"]));
1812                                         if ($x === false)
1813                                                 return false;
1814                         }
1815                 }
1816
1817                 /// @TODO
1818                 /// merge with current record, current contents have priority
1819                 /// update record, set url-updated
1820                 /// update profile photos
1821                 /// schedule a scan?
1822                 return true;
1823         }
1824
1825         /**
1826          * @brief Updates an item
1827          *
1828          * @param array $current the current item record
1829          * @param array $item the new item record
1830          * @param array $importer Record of the importer user mixed with contact of the content
1831          * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
1832          */
1833         private static function update_content($current, $item, $importer, $entrytype) {
1834                 $changed = false;
1835
1836                 if (edited_timestamp_is_newer($current, $item)) {
1837
1838                         // do not accept (ignore) an earlier edit than one we currently have.
1839                         if (datetime_convert("UTC","UTC",$item["edited"]) < $current["edited"])
1840                                 return(false);
1841
1842                         $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s', `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d",
1843                                 dbesc($item["title"]),
1844                                 dbesc($item["body"]),
1845                                 dbesc($item["tag"]),
1846                                 dbesc(datetime_convert("UTC","UTC",$item["edited"])),
1847                                 dbesc(datetime_convert()),
1848                                 dbesc($item["uri"]),
1849                                 intval($importer["importer_uid"])
1850                         );
1851                         create_tags_from_itemuri($item["uri"], $importer["importer_uid"]);
1852                         update_thread_uri($item["uri"], $importer["importer_uid"]);
1853
1854                         $changed = true;
1855
1856                         if ($entrytype == DFRN_REPLY_RC) {
1857                                 proc_run(PRIORITY_HIGH, "include/notifier.php","comment-import", $current["id"]);
1858                         }
1859                 }
1860
1861                 // update last-child if it changes
1862                 if ($item["last-child"] AND ($item["last-child"] != $current["last-child"])) {
1863                         $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1864                                 dbesc(datetime_convert()),
1865                                 dbesc($item["parent-uri"]),
1866                                 intval($importer["importer_uid"])
1867                         );
1868                         $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d",
1869                                 intval($item["last-child"]),
1870                                 dbesc(datetime_convert()),
1871                                 dbesc($item["uri"]),
1872                                 intval($importer["importer_uid"])
1873                         );
1874                 }
1875                 return $changed;
1876         }
1877
1878         /**
1879          * @brief Detects the entry type of the item
1880          *
1881          * @param array $importer Record of the importer user mixed with contact of the content
1882          * @param array $item the new item record
1883          *
1884          * @return int Is it a toplevel entry, a comment or a relayed comment?
1885          */
1886         private static function get_entry_type($importer, $item) {
1887                 if ($item["parent-uri"] != $item["uri"]) {
1888                         $community = false;
1889
1890                         if ($importer["page-flags"] == PAGE_COMMUNITY || $importer["page-flags"] == PAGE_PRVGROUP) {
1891                                 $sql_extra = "";
1892                                 $community = true;
1893                                 logger("possible community action");
1894                         } else {
1895                                 $sql_extra = " AND `contact`.`self` AND `item`.`wall` ";
1896                         }
1897
1898                         // was the top-level post for this action written by somebody on this site?
1899                         // Specifically, the recipient?
1900
1901                         $is_a_remote_action = false;
1902
1903                         $r = q("SELECT `item`.`parent-uri` FROM `item`
1904                                 WHERE `item`.`uri` = '%s'
1905                                 LIMIT 1",
1906                                 dbesc($item["parent-uri"])
1907                         );
1908                         if (dbm::is_result($r)) {
1909                                 $r = q("SELECT `item`.`forum_mode`, `item`.`wall` FROM `item`
1910                                         INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
1911                                         WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' OR `item`.`thr-parent` = '%s')
1912                                         AND `item`.`uid` = %d
1913                                         $sql_extra
1914                                         LIMIT 1",
1915                                         dbesc($r[0]["parent-uri"]),
1916                                         dbesc($r[0]["parent-uri"]),
1917                                         dbesc($r[0]["parent-uri"]),
1918                                         intval($importer["importer_uid"])
1919                                 );
1920                                 if (dbm::is_result($r)) {
1921                                         $is_a_remote_action = true;
1922                                 }
1923                         }
1924
1925                         // Does this have the characteristics of a community or private group action?
1926                         // If it's an action to a wall post on a community/prvgroup page it's a
1927                         // valid community action. Also forum_mode makes it valid for sure.
1928                         // If neither, it's not.
1929
1930                         if ($is_a_remote_action && $community) {
1931                                 if ((!$r[0]["forum_mode"]) && (!$r[0]["wall"])) {
1932                                         $is_a_remote_action = false;
1933                                         logger("not a community action");
1934                                 }
1935                         }
1936
1937                         if ($is_a_remote_action) {
1938                                 return DFRN_REPLY_RC;
1939                         } else {
1940                                 return DFRN_REPLY;
1941                         }
1942
1943                 } else {
1944                         return DFRN_TOP_LEVEL;
1945                 }
1946
1947         }
1948
1949         /**
1950          * @brief Send a "poke"
1951          *
1952          * @param array $item the new item record
1953          * @param array $importer Record of the importer user mixed with contact of the content
1954          * @param int $posted_id The record number of item record that was just posted
1955          */
1956         private static function do_poke($item, $importer, $posted_id) {
1957                 $verb = urldecode(substr($item["verb"],strpos($item["verb"], "#")+1));
1958                 if (!$verb) {
1959                         return;
1960                 }
1961                 $xo = parse_xml_string($item["object"],false);
1962
1963                 if (($xo->type == ACTIVITY_OBJ_PERSON) && ($xo->id)) {
1964
1965                         // somebody was poked/prodded. Was it me?
1966                         foreach ($xo->link as $l) {
1967                                 $atts = $l->attributes();
1968                                 switch($atts["rel"]) {
1969                                         case "alternate":
1970                                                 $Blink = $atts["href"];
1971                                                 break;
1972                                         default:
1973                                                 break;
1974                                 }
1975                         }
1976
1977                         if ($Blink && link_compare($Blink,App::get_baseurl()."/profile/".$importer["nickname"])) {
1978
1979                                 // send a notification
1980                                 notification(array(
1981                                         "type"         => NOTIFY_POKE,
1982                                         "notify_flags" => $importer["notify-flags"],
1983                                         "language"     => $importer["language"],
1984                                         "to_name"      => $importer["username"],
1985                                         "to_email"     => $importer["email"],
1986                                         "uid"          => $importer["importer_uid"],
1987                                         "item"         => $item,
1988                                         "link"         => App::get_baseurl()."/display/".urlencode(get_item_guid($posted_id)),
1989                                         "source_name"  => stripslashes($item["author-name"]),
1990                                         "source_link"  => $item["author-link"],
1991                                         "source_photo" => ((link_compare($item["author-link"],$importer["url"]))
1992                                                 ? $importer["thumb"] : $item["author-avatar"]),
1993                                         "verb"         => $item["verb"],
1994                                         "otype"        => "person",
1995                                         "activity"     => $verb,
1996                                         "parent"       => $item["parent"]
1997                                 ));
1998                         }
1999                 }
2000         }
2001
2002         /**
2003          * @brief Processes several actions, depending on the verb
2004          *
2005          * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
2006          * @param array $importer Record of the importer user mixed with contact of the content
2007          * @param array $item the new item record
2008          * @param bool $is_like Is the verb a "like"?
2009          *
2010          * @return bool Should the processing of the entries be continued?
2011          */
2012         private static function process_verbs($entrytype, $importer, &$item, &$is_like) {
2013
2014                 logger("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, LOGGER_DEBUG);
2015
2016                 if (($entrytype == DFRN_TOP_LEVEL)) {
2017                         // The filling of the the "contact" variable is done for legcy reasons
2018                         // The functions below are partly used by ostatus.php as well - where we have this variable
2019                         $r = q("SELECT * FROM `contact` WHERE `id` = %d", intval($importer["id"]));
2020                         $contact = $r[0];
2021                         $nickname = $contact["nick"];
2022
2023                         // Big question: Do we need these functions? They were part of the "consume_feed" function.
2024                         // This function once was responsible for DFRN and OStatus.
2025                         if (activity_match($item["verb"],ACTIVITY_FOLLOW)) {
2026                                 logger("New follower");
2027                                 new_follower($importer, $contact, $item, $nickname);
2028                                 return false;
2029                         }
2030                         if (activity_match($item["verb"],ACTIVITY_UNFOLLOW))  {
2031                                 logger("Lost follower");
2032                                 lose_follower($importer, $contact, $item);
2033                                 return false;
2034                         }
2035                         if (activity_match($item["verb"],ACTIVITY_REQ_FRIEND)) {
2036                                 logger("New friend request");
2037                                 new_follower($importer, $contact, $item, $nickname, true);
2038                                 return false;
2039                         }
2040                         if (activity_match($item["verb"],ACTIVITY_UNFRIEND))  {
2041                                 logger("Lost sharer");
2042                                 lose_sharer($importer, $contact, $item);
2043                                 return false;
2044                         }
2045                 } else {
2046                         if (($item["verb"] == ACTIVITY_LIKE)
2047                                 || ($item["verb"] == ACTIVITY_DISLIKE)
2048                                 || ($item["verb"] == ACTIVITY_ATTEND)
2049                                 || ($item["verb"] == ACTIVITY_ATTENDNO)
2050                                 || ($item["verb"] == ACTIVITY_ATTENDMAYBE)) {
2051                                 $is_like = true;
2052                                 $item["type"] = "activity";
2053                                 $item["gravity"] = GRAVITY_LIKE;
2054                                 // only one like or dislike per person
2055                                 // splitted into two queries for performance issues
2056                                 $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",
2057                                         intval($item["uid"]),
2058                                         dbesc($item["author-link"]),
2059                                         dbesc($item["verb"]),
2060                                         dbesc($item["parent-uri"])
2061                                 );
2062                                 if (dbm::is_result($r)) {
2063                                         return false;
2064                                 }
2065
2066                                 $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",
2067                                         intval($item["uid"]),
2068                                         dbesc($item["author-link"]),
2069                                         dbesc($item["verb"]),
2070                                         dbesc($item["parent-uri"])
2071                                 );
2072                                 if (dbm::is_result($r)) {
2073                                         return false;
2074                                 }
2075                         } else {
2076                                 $is_like = false;
2077                         }
2078
2079                         if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) {
2080
2081                                 $xo = parse_xml_string($item["object"],false);
2082                                 $xt = parse_xml_string($item["target"],false);
2083
2084                                 if ($xt->type == ACTIVITY_OBJ_NOTE) {
2085                                         $r = q("SELECT `id`, `tag` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2086                                                 dbesc($xt->id),
2087                                                 intval($importer["importer_uid"])
2088                                         );
2089
2090                                         if (!dbm::is_result($r)) {
2091                                                 killme();
2092                                         }
2093
2094                                         // extract tag, if not duplicate, add to parent item
2095                                         if ($xo->content) {
2096                                                 if (!(stristr($r[0]["tag"],trim($xo->content)))) {
2097                                                         q("UPDATE `item` SET `tag` = '%s' WHERE `id` = %d",
2098                                                                 dbesc($r[0]["tag"] . (strlen($r[0]["tag"]) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'),
2099                                                                 intval($r[0]["id"])
2100                                                         );
2101                                                         create_tags_from_item($r[0]["id"]);
2102                                                 }
2103                                         }
2104                                 }
2105                         }
2106                 }
2107                 return true;
2108         }
2109
2110         /**
2111          * @brief Processes the link elements
2112          *
2113          * @param object $links link elements
2114          * @param array $item the item record
2115          * @todo Add type-hints
2116          */
2117         private static function parse_links($links, &$item) {
2118                 $rel = "";
2119                 $href = "";
2120                 $type = "";
2121                 $length = "0";
2122                 $title = "";
2123                 foreach ($links AS $link) {
2124                         foreach ($link->attributes AS $attributes) {
2125                                 /// @TODO Rewrite these repeated (same) if () statements to a switch()
2126                                 if ($attributes->name == "href") {
2127                                         $href = $attributes->textContent;
2128                                 }
2129                                 if ($attributes->name == "rel") {
2130                                         $rel = $attributes->textContent;
2131                                 }
2132                                 if ($attributes->name == "type") {
2133                                         $type = $attributes->textContent;
2134                                 }
2135                                 if ($attributes->name == "length") {
2136                                         $length = $attributes->textContent;
2137                                 }
2138                                 if ($attributes->name == "title") {
2139                                         $title = $attributes->textContent;
2140                                 }
2141                         }
2142                         if (($rel != "") AND ($href != ""))
2143                                 switch($rel) {
2144                                         case "alternate":
2145                                                 $item["plink"] = $href;
2146                                                 break;
2147                                         case "enclosure":
2148                                                 $enclosure = $href;
2149                                                 if (strlen($item["attach"])) {
2150                                                         $item["attach"] .= ",";
2151                                                 }
2152
2153                                                 $item["attach"] .= '[attach]href="'.$href.'" length="'.$length.'" type="'.$type.'" title="'.$title.'"[/attach]';
2154                                                 break;
2155                                 }
2156                 }
2157         }
2158
2159         /**
2160          * @brief Processes the entry elements which contain the items and comments
2161          *
2162          * @param array $header Array of the header elements that always stay the same
2163          * @param object $xpath XPath object
2164          * @param object $entry entry elements
2165          * @param array $importer Record of the importer user mixed with contact of the content
2166          * @todo Add type-hints
2167          */
2168         private static function process_entry($header, $xpath, $entry, $importer) {
2169
2170                 logger("Processing entries");
2171
2172                 $item = $header;
2173
2174                 // Get the uri
2175                 $item["uri"] = $xpath->query("atom:id/text()", $entry)->item(0)->nodeValue;
2176
2177                 $item["edited"] = $xpath->query("atom:updated/text()", $entry)->item(0)->nodeValue;
2178
2179                 $current = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2180                         dbesc($item["uri"]),
2181                         intval($importer["importer_uid"])
2182                 );
2183
2184                 // Is there an existing item?
2185                 if (dbm::is_result($current) AND edited_timestamp_is_newer($current[0], $item) AND
2186                         (datetime_convert("UTC","UTC",$item["edited"]) < $current[0]["edited"])) {
2187                         logger("Item ".$item["uri"]." already existed.", LOGGER_DEBUG);
2188                         return;
2189                 }
2190
2191                 // Fetch the owner
2192                 $owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true);
2193
2194                 $item["owner-name"] = $owner["name"];
2195                 $item["owner-link"] = $owner["link"];
2196                 $item["owner-avatar"] = $owner["avatar"];
2197
2198                 // fetch the author
2199                 $author = self::fetchauthor($xpath, $entry, $importer, "atom:author", true);
2200
2201                 $item["author-name"] = $author["name"];
2202                 $item["author-link"] = $author["link"];
2203                 $item["author-avatar"] = $author["avatar"];
2204
2205                 $item["title"] = $xpath->query("atom:title/text()", $entry)->item(0)->nodeValue;
2206
2207                 $item["created"] = $xpath->query("atom:published/text()", $entry)->item(0)->nodeValue;
2208
2209                 $item["body"] = $xpath->query("dfrn:env/text()", $entry)->item(0)->nodeValue;
2210                 $item["body"] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$item["body"]);
2211                 // make sure nobody is trying to sneak some html tags by us
2212                 $item["body"] = notags(base64url_decode($item["body"]));
2213
2214                 $item["body"] = limit_body_size($item["body"]);
2215
2216                 /// @todo Do we really need this check for HTML elements? (It was copied from the old function)
2217                 if ((strpos($item['body'],'<') !== false) && (strpos($item['body'],'>') !== false)) {
2218
2219                         $item['body'] = reltoabs($item['body'],$base_url);
2220
2221                         $item['body'] = html2bb_video($item['body']);
2222
2223                         $item['body'] = oembed_html2bbcode($item['body']);
2224
2225                         $config = HTMLPurifier_Config::createDefault();
2226                         $config->set('Cache.DefinitionImpl', null);
2227
2228                         // we shouldn't need a whitelist, because the bbcode converter
2229                         // will strip out any unsupported tags.
2230
2231                         $purifier = new HTMLPurifier($config);
2232                         $item['body'] = $purifier->purify($item['body']);
2233
2234                         $item['body'] = @html2bbcode($item['body']);
2235                 }
2236
2237                 /// @todo We should check for a repeated post and if we know the repeated author.
2238
2239                 // We don't need the content element since "dfrn:env" is always present
2240                 //$item["body"] = $xpath->query("atom:content/text()", $entry)->item(0)->nodeValue;
2241
2242                 $item["last-child"] = $xpath->query("dfrn:comment-allow/text()", $entry)->item(0)->nodeValue;
2243                 $item["location"] = $xpath->query("dfrn:location/text()", $entry)->item(0)->nodeValue;
2244
2245                 $georsspoint = $xpath->query("georss:point", $entry);
2246                 if ($georsspoint) {
2247                         $item["coord"] = $georsspoint->item(0)->nodeValue;
2248                 }
2249
2250                 $item["private"] = $xpath->query("dfrn:private/text()", $entry)->item(0)->nodeValue;
2251
2252                 $item["extid"] = $xpath->query("dfrn:extid/text()", $entry)->item(0)->nodeValue;
2253
2254                 if ($xpath->query("dfrn:bookmark/text()", $entry)->item(0)->nodeValue == "true") {
2255                         $item["bookmark"] = true;
2256                 }
2257
2258                 $notice_info = $xpath->query("statusnet:notice_info", $entry);
2259                 if ($notice_info AND ($notice_info->length > 0)) {
2260                         foreach ($notice_info->item(0)->attributes AS $attributes) {
2261                                 if ($attributes->name == "source") {
2262                                         $item["app"] = strip_tags($attributes->textContent);
2263                                 }
2264                         }
2265                 }
2266
2267                 $item["guid"] = $xpath->query("dfrn:diaspora_guid/text()", $entry)->item(0)->nodeValue;
2268
2269                 // We store the data from "dfrn:diaspora_signature" in a different table, this is done in "item_store"
2270                 $dsprsig = unxmlify($xpath->query("dfrn:diaspora_signature/text()", $entry)->item(0)->nodeValue);
2271                 if ($dsprsig != "") {
2272                         $item["dsprsig"] = $dsprsig;
2273                 }
2274
2275                 $item["verb"] = $xpath->query("activity:verb/text()", $entry)->item(0)->nodeValue;
2276
2277                 if ($xpath->query("activity:object-type/text()", $entry)->item(0)->nodeValue != "") {
2278                         $item["object-type"] = $xpath->query("activity:object-type/text()", $entry)->item(0)->nodeValue;
2279                 }
2280
2281                 $object = $xpath->query("activity:object", $entry)->item(0);
2282                 $item["object"] = self::transform_activity($xpath, $object, "object");
2283
2284                 if (trim($item["object"]) != "") {
2285                         $r = parse_xml_string($item["object"], false);
2286                         if (isset($r->type)) {
2287                                 $item["object-type"] = $r->type;
2288                         }
2289                 }
2290
2291                 $target = $xpath->query("activity:target", $entry)->item(0);
2292                 $item["target"] = self::transform_activity($xpath, $target, "target");
2293
2294                 $categories = $xpath->query("atom:category", $entry);
2295                 if ($categories) {
2296                         foreach ($categories AS $category) {
2297                                 $term = "";
2298                                 $scheme = "";
2299                                 foreach ($category->attributes AS $attributes) {
2300                                         if ($attributes->name == "term") {
2301                                                 $term = $attributes->textContent;
2302                                         }
2303
2304                                         if ($attributes->name == "scheme") {
2305                                                 $scheme = $attributes->textContent;
2306                                         }
2307                                 }
2308
2309                                 if (($term != "") AND ($scheme != "")) {
2310                                         $parts = explode(":", $scheme);
2311                                         if ((count($parts) >= 4) AND (array_shift($parts) == "X-DFRN")) {
2312                                                 $termhash = array_shift($parts);
2313                                                 $termurl = implode(":", $parts);
2314
2315                                                 if (strlen($item["tag"])) {
2316                                                         $item["tag"] .= ",";
2317                                                 }
2318
2319                                                 $item["tag"] .= $termhash."[url=".$termurl."]".$term."[/url]";
2320                                         }
2321                                 }
2322                         }
2323                 }
2324
2325                 $enclosure = "";
2326
2327                 $links = $xpath->query("atom:link", $entry);
2328                 if ($links) {
2329                         self::parse_links($links, $item);
2330                 }
2331
2332                 // Is it a reply or a top level posting?
2333                 $item["parent-uri"] = $item["uri"];
2334
2335                 $inreplyto = $xpath->query("thr:in-reply-to", $entry);
2336                 if (is_object($inreplyto->item(0))) {
2337                         foreach ($inreplyto->item(0)->attributes AS $attributes) {
2338                                 if ($attributes->name == "ref") {
2339                                         $item["parent-uri"] = $attributes->textContent;
2340                                 }
2341                         }
2342                 }
2343
2344                 // Get the type of the item (Top level post, reply or remote reply)
2345                 $entrytype = self::get_entry_type($importer, $item);
2346
2347                 // Now assign the rest of the values that depend on the type of the message
2348                 if (in_array($entrytype, array(DFRN_REPLY, DFRN_REPLY_RC))) {
2349                         if (!isset($item["object-type"])) {
2350                                 $item["object-type"] = ACTIVITY_OBJ_COMMENT;
2351                         }
2352
2353                         if ($item["contact-id"] != $owner["contact-id"]) {
2354                                 $item["contact-id"] = $owner["contact-id"];
2355                         }
2356
2357                         if (($item["network"] != $owner["network"]) AND ($owner["network"] != "")) {
2358                                 $item["network"] = $owner["network"];
2359                         }
2360
2361                         if ($item["contact-id"] != $author["contact-id"]) {
2362                                 $item["contact-id"] = $author["contact-id"];
2363                         }
2364
2365                         if (($item["network"] != $author["network"]) AND ($author["network"] != "")) {
2366                                 $item["network"] = $author["network"];
2367                         }
2368
2369                         // This code was taken from the old DFRN code
2370                         // When activated, forums don't work.
2371                         // And: Why should we disallow commenting by followers?
2372                         // the behaviour is now similar to the Diaspora part.
2373                         //if ($importer["rel"] == CONTACT_IS_FOLLOWER) {
2374                         //      logger("Contact ".$importer["id"]." is only follower. Quitting", LOGGER_DEBUG);
2375                         //      return;
2376                         //}
2377                 }
2378
2379                 if ($entrytype == DFRN_REPLY_RC) {
2380                         $item["type"] = "remote-comment";
2381                         $item["wall"] = 1;
2382                 } elseif ($entrytype == DFRN_TOP_LEVEL) {
2383                         if (!isset($item["object-type"])) {
2384                                 $item["object-type"] = ACTIVITY_OBJ_NOTE;
2385                         }
2386
2387                         // Is it an event?
2388                         if ($item["object-type"] == ACTIVITY_OBJ_EVENT) {
2389                                 logger("Item ".$item["uri"]." seems to contain an event.", LOGGER_DEBUG);
2390                                 $ev = bbtoevent($item["body"]);
2391                                 if ((x($ev, "desc") || x($ev, "summary")) && x($ev, "start")) {
2392                                         logger("Event in item ".$item["uri"]." was found.", LOGGER_DEBUG);
2393                                         $ev["cid"] = $importer["id"];
2394                                         $ev["uid"] = $importer["uid"];
2395                                         $ev["uri"] = $item["uri"];
2396                                         $ev["edited"] = $item["edited"];
2397                                         $ev['private'] = $item['private'];
2398                                         $ev["guid"] = $item["guid"];
2399
2400                                         $r = q("SELECT `id` FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2401                                                 dbesc($item["uri"]),
2402                                                 intval($importer["uid"])
2403                                         );
2404                                         if (dbm::is_result($r)) {
2405                                                 $ev["id"] = $r[0]["id"];
2406                                         }
2407
2408                                         $event_id = event_store($ev);
2409                                         logger("Event ".$event_id." was stored", LOGGER_DEBUG);
2410                                         return;
2411                                 }
2412                         }
2413                 }
2414
2415                 if (!self::process_verbs($entrytype, $importer, $item, $is_like)) {
2416                         logger("Exiting because 'process_verbs' told us so", LOGGER_DEBUG);
2417                         return;
2418                 }
2419
2420                 // Update content if 'updated' changes
2421                 if (dbm::is_result($current)) {
2422                         if (self::update_content($r[0], $item, $importer, $entrytype))
2423                                 logger("Item ".$item["uri"]." was updated.", LOGGER_DEBUG);
2424                         } else {
2425                                 logger("Item ".$item["uri"]." already existed.", LOGGER_DEBUG);
2426                         }
2427                         return;
2428                 }
2429
2430                 if (in_array($entrytype, array(DFRN_REPLY, DFRN_REPLY_RC))) {
2431                         $posted_id = item_store($item);
2432                         $parent = 0;
2433
2434                         if ($posted_id) {
2435
2436                                 logger("Reply from contact ".$item["contact-id"]." was stored with id ".$posted_id, LOGGER_DEBUG);
2437
2438                                 $item["id"] = $posted_id;
2439
2440                                 $r = q("SELECT `parent`, `parent-uri` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2441                                         intval($posted_id),
2442                                         intval($importer["importer_uid"])
2443                                 );
2444                                 if (dbm::is_result($r)) {
2445                                         $parent = $r[0]["parent"];
2446                                         $parent_uri = $r[0]["parent-uri"];
2447                                 }
2448
2449                                 if (!$is_like) {
2450                                         $r1 = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `uid` = %d AND `parent` = %d",
2451                                                 dbesc(datetime_convert()),
2452                                                 intval($importer["importer_uid"]),
2453                                                 intval($r[0]["parent"])
2454                                         );
2455
2456                                         $r2 = q("UPDATE `item` SET `last-child` = 1, `changed` = '%s' WHERE `uid` = %d AND `id` = %d",
2457                                                 dbesc(datetime_convert()),
2458                                                 intval($importer["importer_uid"]),
2459                                                 intval($posted_id)
2460                                         );
2461                                 }
2462
2463                                 if ($posted_id AND $parent AND ($entrytype == DFRN_REPLY_RC)) {
2464                                         logger("Notifying followers about comment ".$posted_id, LOGGER_DEBUG);
2465                                         proc_run(PRIORITY_HIGH, "include/notifier.php", "comment-import", $posted_id);
2466                                 }
2467
2468                                 return true;
2469                         }
2470                 } else { // $entrytype == DFRN_TOP_LEVEL
2471                         if (!link_compare($item["owner-link"],$importer["url"])) {
2472                                 // The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2473                                 // but otherwise there's a possible data mixup on the sender's system.
2474                                 // the tgroup delivery code called from item_store will correct it if it's a forum,
2475                                 // but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2476                                 logger('Correcting item owner.', LOGGER_DEBUG);
2477                                 $item["owner-name"]   = $importer["senderName"];
2478                                 $item["owner-link"]   = $importer["url"];
2479                                 $item["owner-avatar"] = $importer["thumb"];
2480                         }
2481
2482                         if (($importer["rel"] == CONTACT_IS_FOLLOWER) && (!tgroup_check($importer["importer_uid"], $item))) {
2483                                 logger("Contact ".$importer["id"]." is only follower and tgroup check was negative.", LOGGER_DEBUG);
2484                                 return;
2485                         }
2486
2487                         // This is my contact on another system, but it's really me.
2488                         // Turn this into a wall post.
2489                         $notify = item_is_remote_self($importer, $item);
2490
2491                         $posted_id = item_store($item, false, $notify);
2492
2493                         logger("Item was stored with id ".$posted_id, LOGGER_DEBUG);
2494
2495                         if (stristr($item["verb"],ACTIVITY_POKE))
2496                                 self::do_poke($item, $importer, $posted_id);
2497                 }
2498         }
2499
2500         /**
2501          * @brief Deletes items
2502          *
2503          * @param object $xpath XPath object
2504          * @param object $deletion deletion elements
2505          * @param array $importer Record of the importer user mixed with contact of the content
2506          */
2507         private static function process_deletion($xpath, $deletion, $importer) {
2508
2509                 logger("Processing deletions");
2510
2511                 foreach ($deletion->attributes AS $attributes) {
2512                         if ($attributes->name == "ref") {
2513                                 $uri = $attributes->textContent;
2514                         }
2515                         if ($attributes->name == "when") {
2516                                 $when = $attributes->textContent;
2517                         }
2518                 }
2519                 if ($when) {
2520                         $when = datetime_convert("UTC", "UTC", $when, "Y-m-d H:i:s");
2521                 } else {
2522                         $when = datetime_convert("UTC", "UTC", "now", "Y-m-d H:i:s");
2523                 }
2524
2525                 if (!$uri OR !$importer["id"]) {
2526                         return false;
2527                 }
2528
2529                 /// @todo Only select the used fields
2530                 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` INNER JOIN `contact` on `item`.`contact-id` = `contact`.`id`
2531                                 WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d AND NOT `item`.`file` LIKE '%%[%%' LIMIT 1",
2532                                 dbesc($uri),
2533                                 intval($importer["uid"]),
2534                                 intval($importer["id"])
2535                         );
2536                 if (!dbm::is_result($r)) {
2537                         logger("Item with uri ".$uri." from contact ".$importer["id"]." for user ".$importer["uid"]." wasn't found.", LOGGER_DEBUG);
2538                         return;
2539                 } else {
2540
2541                         $item = $r[0];
2542
2543                         $entrytype = self::get_entry_type($importer, $item);
2544
2545                         if (!$item["deleted"]) {
2546                                 logger('deleting item '.$item["id"].' uri='.$uri, LOGGER_DEBUG);
2547                         } else {
2548                                 return;
2549                         }
2550
2551                         if ($item["object-type"] == ACTIVITY_OBJ_EVENT) {
2552                                 logger("Deleting event ".$item["event-id"], LOGGER_DEBUG);
2553                                 event_delete($item["event-id"]);
2554                         }
2555
2556                         if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) {
2557
2558                                 $xo = parse_xml_string($item["object"],false);
2559                                 $xt = parse_xml_string($item["target"],false);
2560
2561                                 if ($xt->type == ACTIVITY_OBJ_NOTE) {
2562                                         $i = q("SELECT `id`, `contact-id`, `tag` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2563                                                 dbesc($xt->id),
2564                                                 intval($importer["importer_uid"])
2565                                         );
2566                                         if (dbm::is_result($i)) {
2567
2568                                                 // For tags, the owner cannot remove the tag on the author's copy of the post.
2569
2570                                                 $owner_remove = (($item["contact-id"] == $i[0]["contact-id"]) ? true: false);
2571                                                 $author_remove = (($item["origin"] && $item["self"]) ? true : false);
2572                                                 $author_copy = (($item["origin"]) ? true : false);
2573
2574                                                 if ($owner_remove && $author_copy) {
2575                                                         return;
2576                                                 }
2577                                                 if ($author_remove || $owner_remove) {
2578                                                         $tags = explode(',',$i[0]["tag"]);
2579                                                         $newtags = array();
2580                                                         if (count($tags)) {
2581                                                                 foreach ($tags as $tag) {
2582                                                                         if (trim($tag) !== trim($xo->body)) {
2583                                                                                 $newtags[] = trim($tag);
2584                                                                         }
2585                                                                 }
2586                                                         }
2587                                                         q("UPDATE `item` SET `tag` = '%s' WHERE `id` = %d",
2588                                                                 dbesc(implode(',',$newtags)),
2589                                                                 intval($i[0]["id"])
2590                                                         );
2591                                                         create_tags_from_item($i[0]["id"]);
2592                                                 }
2593                                         }
2594                                 }
2595                         }
2596
2597                         if ($entrytype == DFRN_TOP_LEVEL) {
2598                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
2599                                                 `body` = '', `title` = ''
2600                                         WHERE `parent-uri` = '%s' AND `uid` = %d",
2601                                                 dbesc($when),
2602                                                 dbesc(datetime_convert()),
2603                                                 dbesc($uri),
2604                                                 intval($importer["uid"])
2605                                         );
2606                                 create_tags_from_itemuri($uri, $importer["uid"]);
2607                                 create_files_from_itemuri($uri, $importer["uid"]);
2608                                 update_thread_uri($uri, $importer["uid"]);
2609                         } else {
2610                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
2611                                                 `body` = '', `title` = ''
2612                                         WHERE `uri` = '%s' AND `uid` = %d",
2613                                                 dbesc($when),
2614                                                 dbesc(datetime_convert()),
2615                                                 dbesc($uri),
2616                                                 intval($importer["uid"])
2617                                         );
2618                                 create_tags_from_itemuri($uri, $importer["uid"]);
2619                                 create_files_from_itemuri($uri, $importer["uid"]);
2620                                 update_thread_uri($uri, $importer["importer_uid"]);
2621                                 if ($item["last-child"]) {
2622                                         // ensure that last-child is set in case the comment that had it just got wiped.
2623                                         q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
2624                                                 dbesc(datetime_convert()),
2625                                                 dbesc($item["parent-uri"]),
2626                                                 intval($item["uid"])
2627                                         );
2628                                         // who is the last child now?
2629                                         $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `moderated` = 0 AND `uid` = %d
2630                                                 ORDER BY `created` DESC LIMIT 1",
2631                                                         dbesc($item["parent-uri"]),
2632                                                         intval($importer["uid"])
2633                                         );
2634                                         if (dbm::is_result($r)) {
2635                                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d",
2636                                                         intval($r[0]["id"])
2637                                                 );
2638                                         }
2639                                 }
2640                                 // if this is a relayed delete, propagate it to other recipients
2641
2642                                 if ($entrytype == DFRN_REPLY_RC) {
2643                                         logger("Notifying followers about deletion of post ".$item["id"], LOGGER_DEBUG);
2644                                         proc_run(PRIORITY_HIGH, "include/notifier.php","drop", $item["id"]);
2645                                 }
2646                         }
2647                 }
2648         }
2649
2650         /**
2651          * @brief Imports a DFRN message
2652          *
2653          * @param text $xml The DFRN message
2654          * @param array $importer Record of the importer user mixed with contact of the content
2655          * @param bool $sort_by_date Is used when feeds are polled
2656          */
2657         public static function import($xml,$importer, $sort_by_date = false) {
2658
2659                 if ($xml == "")
2660                         return;
2661
2662                 if ($importer["readonly"]) {
2663                         // We aren't receiving stuff from this person. But we will quietly ignore them
2664                         // rather than a blatant "go away" message.
2665                         logger('ignoring contact '.$importer["id"]);
2666                         return;
2667                 }
2668
2669                 $doc = new DOMDocument();
2670                 @$doc->loadXML($xml);
2671
2672                 $xpath = new DomXPath($doc);
2673                 $xpath->registerNamespace("atom", NAMESPACE_ATOM1);
2674                 $xpath->registerNamespace("thr", NAMESPACE_THREAD);
2675                 $xpath->registerNamespace("at", NAMESPACE_TOMB);
2676                 $xpath->registerNamespace("media", NAMESPACE_MEDIA);
2677                 $xpath->registerNamespace("dfrn", NAMESPACE_DFRN);
2678                 $xpath->registerNamespace("activity", NAMESPACE_ACTIVITY);
2679                 $xpath->registerNamespace("georss", NAMESPACE_GEORSS);
2680                 $xpath->registerNamespace("poco", NAMESPACE_POCO);
2681                 $xpath->registerNamespace("ostatus", NAMESPACE_OSTATUS);
2682                 $xpath->registerNamespace("statusnet", NAMESPACE_STATUSNET);
2683
2684                 $header = array();
2685                 $header["uid"] = $importer["uid"];
2686                 $header["network"] = NETWORK_DFRN;
2687                 $header["type"] = "remote";
2688                 $header["wall"] = 0;
2689                 $header["origin"] = 0;
2690                 $header["contact-id"] = $importer["id"];
2691
2692                 // Update the contact table if the data has changed
2693
2694                 // The "atom:author" is only present in feeds
2695                 if ($xpath->query("/atom:feed/atom:author")->length > 0)
2696                         self::fetchauthor($xpath, $doc->firstChild, $importer, "atom:author", false, $xml);
2697
2698                 // Only the "dfrn:owner" in the head section contains all data
2699                 if ($xpath->query("/atom:feed/dfrn:owner")->length > 0)
2700                         self::fetchauthor($xpath, $doc->firstChild, $importer, "dfrn:owner", false, $xml);
2701
2702                 logger("Import DFRN message for user ".$importer["uid"]." from contact ".$importer["id"], LOGGER_DEBUG);
2703
2704                 // The account type is new since 3.5.1
2705                 if ($xpath->query("/atom:feed/dfrn:account_type")->length > 0) {
2706                         $accounttype = intval($xpath->evaluate("/atom:feed/dfrn:account_type/text()", $context)->item(0)->nodeValue);
2707
2708                         if ($accounttype != $importer["contact-type"])
2709                                 q("UPDATE `contact` SET `contact-type` = %d WHERE `id` = %d",
2710                                         intval($accounttype),
2711                                         intval($importer["id"])
2712                                 );
2713                 }
2714
2715                 // is it a public forum? Private forums aren't supported with this method
2716                 // This is deprecated since 3.5.1
2717                 $forum = intval($xpath->evaluate("/atom:feed/dfrn:community/text()", $context)->item(0)->nodeValue);
2718
2719                 if ($forum != $importer["forum"])
2720                         q("UPDATE `contact` SET `forum` = %d WHERE `forum` != %d AND `id` = %d",
2721                                 intval($forum), intval($forum),
2722                                 intval($importer["id"])
2723                         );
2724
2725                 $mails = $xpath->query("/atom:feed/dfrn:mail");
2726                 foreach ($mails AS $mail) {
2727                         self::process_mail($xpath, $mail, $importer);
2728                 }
2729
2730                 $suggestions = $xpath->query("/atom:feed/dfrn:suggest");
2731                 foreach ($suggestions AS $suggestion) {
2732                         self::process_suggestion($xpath, $suggestion, $importer);
2733                 }
2734
2735                 $relocations = $xpath->query("/atom:feed/dfrn:relocate");
2736                 foreach ($relocations AS $relocation) {
2737                         self::process_relocation($xpath, $relocation, $importer);
2738                 }
2739
2740                 $deletions = $xpath->query("/atom:feed/at:deleted-entry");
2741                 foreach ($deletions AS $deletion) {
2742                         self::process_deletion($xpath, $deletion, $importer);
2743                 }
2744
2745                 if (!$sort_by_date) {
2746                         $entries = $xpath->query("/atom:feed/atom:entry");
2747                         foreach ($entries AS $entry) {
2748                                 self::process_entry($header, $xpath, $entry, $importer);
2749                         }
2750                 } else {
2751                         $newentries = array();
2752                         $entries = $xpath->query("/atom:feed/atom:entry");
2753                         foreach ($entries AS $entry) {
2754                                 $created = $xpath->query("atom:published/text()", $entry)->item(0)->nodeValue;
2755                                 $newentries[strtotime($created)] = $entry;
2756                         }
2757
2758                         // Now sort after the publishing date
2759                         ksort($newentries);
2760
2761                         foreach ($newentries AS $entry) {
2762                                 self::process_entry($header, $xpath, $entry, $importer);
2763                         }
2764                 }
2765                 logger("Import done for user ".$importer["uid"]." from contact ".$importer["id"], LOGGER_DEBUG);
2766         }
2767 }
2768 ?>