3 * @file include/dfrn.php
4 * @brief The implementation of the dfrn protocol
6 * @see https://github.com/friendica/friendica/wiki/Protocol and
7 * https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
12 require_once("include/Contact.php");
13 require_once("include/ostatus.php");
14 require_once("include/enotify.php");
15 require_once("include/threads.php");
16 require_once("include/socgraph.php");
17 require_once("include/items.php");
18 require_once("include/tags.php");
19 require_once("include/files.php");
20 require_once("include/event.php");
21 require_once("include/text.php");
22 require_once("include/oembed.php");
23 require_once("include/html2bbcode.php");
24 require_once("include/bbcode.php");
25 require_once("include/xml.php");
28 * @brief This class contain functions to create and send DFRN XML files
33 const DFRN_TOP_LEVEL = 0; // Top level posting
34 const DFRN_REPLY = 1; // Regular reply that is stored locally
35 const DFRN_REPLY_RC = 2; // Reply that will be relayed
38 * @brief Generates the atom entries for delivery.php
40 * This function is used whenever content is transmitted via DFRN.
42 * @param array $items Item elements
43 * @param array $owner Owner record
45 * @return string DFRN entries
46 * @todo Add type-hints
48 public static function entries($items,$owner) {
50 $doc = new DOMDocument('1.0', 'utf-8');
51 $doc->formatOutput = true;
53 $root = self::add_header($doc, $owner, "dfrn:owner", "", false);
55 if (! count($items)) {
56 return trim($doc->saveXML());
59 foreach ($items as $item) {
60 $entry = self::entry($doc, "text", $item, $owner, $item["entry:comment-allow"], $item["entry:cid"]);
61 $root->appendChild($entry);
64 return(trim($doc->saveXML()));
68 * @brief Generate an atom feed for the given user
70 * This function is called when another server is pulling data from the user feed.
72 * @param string $dfrn_id DFRN ID from the requesting party
73 * @param string $owner_nick Owner nick name
74 * @param string $last_update Date of the last update
75 * @param int $direction Can be -1, 0 or 1.
76 * @param boolean $onlyheader Output only the header without content? (Default is "no")
78 * @return string DFRN feed entries
80 public static function feed($dfrn_id, $owner_nick, $last_update, $direction = 0, $onlyheader = false) {
84 $sitefeed = ((strlen($owner_nick)) ? false : true); // not yet implemented, need to rewrite huge chunks of following logic
85 $public_feed = (($dfrn_id) ? false : true);
86 $starred = false; // not yet implemented, possible security issues
89 if ($public_feed && $a->argc > 2) {
90 for ($x = 2; $x < $a->argc; $x++) {
91 if ($a->argv[$x] == 'converse') {
94 if ($a->argv[$x] == 'starred') {
97 if ($a->argv[$x] == 'category' && $a->argc > ($x + 1) && strlen($a->argv[$x+1])) {
98 $category = $a->argv[$x+1];
105 // default permissions - anonymous user
107 $sql_extra = " AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' ";
109 $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`, `user`.`account-type`
110 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
111 WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
115 if (! dbm::is_result($r)) {
120 $owner_id = $owner['uid'];
121 $owner_nick = $owner['nickname'];
123 $sql_post_table = "";
125 if (! $public_feed) {
130 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
134 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
135 $my_id = '1:' . $dfrn_id;
138 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
139 $my_id = '0:' . $dfrn_id;
146 $r = q("SELECT * FROM `contact` WHERE NOT `blocked` AND `contact`.`uid` = %d $sql_extra LIMIT 1",
150 if (! dbm::is_result($r)) {
155 require_once('include/security.php');
156 $groups = init_groups_visitor($contact['id']);
158 if (count($groups)) {
159 for ($x = 0; $x < count($groups); $x ++)
160 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
161 $gs = implode('|', $groups);
163 $gs = '<<>>' ; // Impossible to match
166 $sql_extra = sprintf("
167 AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' )
168 AND ( `deny_cid` = '' OR NOT `deny_cid` REGEXP '<%d>' )
169 AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
170 AND ( `deny_gid` = '' OR NOT `deny_gid` REGEXP '%s')
172 intval($contact['id']),
173 intval($contact['id']),
185 if (! strlen($last_update)) {
186 $last_update = 'now -30 days';
189 if (isset($category)) {
190 $sql_post_table = sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
191 dbesc(protect_sprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($owner_id));
192 //$sql_extra .= file_tag_file_query('item',$category,'category');
197 $sql_extra .= " AND `contact`.`self` = 1 ";
201 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
203 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
204 `contact`.`name`, `contact`.`network`, `contact`.`photo`, `contact`.`url`,
205 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
206 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
207 `sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
208 FROM `item` USE INDEX (`uid_wall_changed`) $sql_post_table
209 STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
210 AND (NOT `contact`.`blocked` OR `contact`.`pending`)
211 LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
212 WHERE `item`.`uid` = %d AND `item`.`visible` AND NOT `item`.`moderated` AND `item`.`parent` != 0
213 AND `item`.`wall` AND `item`.`changed` > '%s'
215 ORDER BY `item`.`parent` ".$sort.", `item`.`created` ASC LIMIT 0, 300",
222 * Will check further below if this actually returned results.
223 * We will provide an empty feed if that is the case.
228 $doc = new DOMDocument('1.0', 'utf-8');
229 $doc->formatOutput = true;
231 $alternatelink = $owner['url'];
233 if (isset($category)) {
234 $alternatelink .= "/category/".$category;
238 $author = "dfrn:owner";
243 $root = self::add_header($doc, $owner, $author, $alternatelink, true);
245 /// @TODO This hook can't work anymore
246 // call_hooks('atom_feed', $atom);
248 if (!dbm::is_result($items) OR $onlyheader) {
249 $atom = trim($doc->saveXML());
251 call_hooks('atom_feed_end', $atom);
256 foreach ($items as $item) {
258 // prevent private email from leaking.
259 if ($item['network'] == NETWORK_MAIL) {
263 // public feeds get html, our own nodes use bbcode
267 // catch any email that's in a public conversation and make sure it doesn't leak
268 if ($item['private']) {
275 $entry = self::entry($doc, $type, $item, $owner, true);
276 $root->appendChild($entry);
280 $atom = trim($doc->saveXML());
282 call_hooks('atom_feed_end', $atom);
288 * @brief Create XML text for DFRN mails
290 * @param array $item message elements
291 * @param array $owner Owner record
293 * @return string DFRN mail
294 * @todo Add type-hints
296 public static function mail($item, $owner) {
297 $doc = new DOMDocument('1.0', 'utf-8');
298 $doc->formatOutput = true;
300 $root = self::add_header($doc, $owner, "dfrn:owner", "", false);
302 $mail = $doc->createElement("dfrn:mail");
303 $sender = $doc->createElement("dfrn:sender");
305 xml::add_element($doc, $sender, "dfrn:name", $owner['name']);
306 xml::add_element($doc, $sender, "dfrn:uri", $owner['url']);
307 xml::add_element($doc, $sender, "dfrn:avatar", $owner['thumb']);
309 $mail->appendChild($sender);
311 xml::add_element($doc, $mail, "dfrn:id", $item['uri']);
312 xml::add_element($doc, $mail, "dfrn:in-reply-to", $item['parent-uri']);
313 xml::add_element($doc, $mail, "dfrn:sentdate", datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME));
314 xml::add_element($doc, $mail, "dfrn:subject", $item['title']);
315 xml::add_element($doc, $mail, "dfrn:content", $item['body']);
317 $root->appendChild($mail);
319 return(trim($doc->saveXML()));
323 * @brief Create XML text for DFRN friend suggestions
325 * @param array $item suggestion elements
326 * @param array $owner Owner record
328 * @return string DFRN suggestions
329 * @todo Add type-hints
331 public static function fsuggest($item, $owner) {
332 $doc = new DOMDocument('1.0', 'utf-8');
333 $doc->formatOutput = true;
335 $root = self::add_header($doc, $owner, "dfrn:owner", "", false);
337 $suggest = $doc->createElement("dfrn:suggest");
339 xml::add_element($doc, $suggest, "dfrn:url", $item['url']);
340 xml::add_element($doc, $suggest, "dfrn:name", $item['name']);
341 xml::add_element($doc, $suggest, "dfrn:photo", $item['photo']);
342 xml::add_element($doc, $suggest, "dfrn:request", $item['request']);
343 xml::add_element($doc, $suggest, "dfrn:note", $item['note']);
345 $root->appendChild($suggest);
347 return(trim($doc->saveXML()));
351 * @brief Create XML text for DFRN relocations
353 * @param array $owner Owner record
354 * @param int $uid User ID
356 * @return string DFRN relocations
357 * @todo Add type-hints
359 public static function relocate($owner, $uid) {
361 /* get site pubkey. this could be a new installation with no site keys*/
362 $pubkey = get_config('system','site_pubkey');
364 $res = new_keypair(1024);
365 set_config('system','site_prvkey', $res['prvkey']);
366 set_config('system','site_pubkey', $res['pubkey']);
369 $rp = q("SELECT `resource-id` , `scale`, type FROM `photo`
370 WHERE `profile` = 1 AND `uid` = %d ORDER BY scale;", $uid);
372 $ext = Photo::supportedTypes();
374 foreach ($rp as $p) {
375 $photos[$p['scale']] = App::get_baseurl().'/photo/'.$p['resource-id'].'-'.$p['scale'].'.'.$ext[$p['type']];
380 $doc = new DOMDocument('1.0', 'utf-8');
381 $doc->formatOutput = true;
383 $root = self::add_header($doc, $owner, "dfrn:owner", "", false);
385 $relocate = $doc->createElement("dfrn:relocate");
387 xml::add_element($doc, $relocate, "dfrn:url", $owner['url']);
388 xml::add_element($doc, $relocate, "dfrn:name", $owner['name']);
389 xml::add_element($doc, $relocate, "dfrn:addr", $owner['addr']);
390 xml::add_element($doc, $relocate, "dfrn:avatar", $owner['avatar']);
391 xml::add_element($doc, $relocate, "dfrn:photo", $photos[4]);
392 xml::add_element($doc, $relocate, "dfrn:thumb", $photos[5]);
393 xml::add_element($doc, $relocate, "dfrn:micro", $photos[6]);
394 xml::add_element($doc, $relocate, "dfrn:request", $owner['request']);
395 xml::add_element($doc, $relocate, "dfrn:confirm", $owner['confirm']);
396 xml::add_element($doc, $relocate, "dfrn:notify", $owner['notify']);
397 xml::add_element($doc, $relocate, "dfrn:poll", $owner['poll']);
398 xml::add_element($doc, $relocate, "dfrn:sitepubkey", get_config('system','site_pubkey'));
400 $root->appendChild($relocate);
402 return(trim($doc->saveXML()));
406 * @brief Adds the header elements for the DFRN protocol
408 * @param object $doc XML document
409 * @param array $owner Owner record
410 * @param string $authorelement Element name for the author
411 * @param string $alternatelink link to profile or category
412 * @param bool $public Is it a header for public posts?
414 * @return object XML root object
415 * @todo Add type-hints
417 private static function add_header($doc, $owner, $authorelement, $alternatelink = "", $public = false) {
419 if ($alternatelink == "") {
420 $alternatelink = $owner['url'];
423 $root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
424 $doc->appendChild($root);
426 $root->setAttribute("xmlns:thr", NAMESPACE_THREAD);
427 $root->setAttribute("xmlns:at", NAMESPACE_TOMB);
428 $root->setAttribute("xmlns:media", NAMESPACE_MEDIA);
429 $root->setAttribute("xmlns:dfrn", NAMESPACE_DFRN);
430 $root->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
431 $root->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
432 $root->setAttribute("xmlns:poco", NAMESPACE_POCO);
433 $root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
434 $root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
436 xml::add_element($doc, $root, "id", App::get_baseurl()."/profile/".$owner["nick"]);
437 xml::add_element($doc, $root, "title", $owner["name"]);
439 $attributes = array("uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION);
440 xml::add_element($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
442 $attributes = array("rel" => "license", "href" => "http://creativecommons.org/licenses/by/3.0/");
443 xml::add_element($doc, $root, "link", "", $attributes);
445 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $alternatelink);
446 xml::add_element($doc, $root, "link", "", $attributes);
450 // DFRN itself doesn't uses this. But maybe someone else wants to subscribe to the public feed.
451 ostatus::hublinks($doc, $root);
453 $attributes = array("rel" => "salmon", "href" => App::get_baseurl()."/salmon/".$owner["nick"]);
454 xml::add_element($doc, $root, "link", "", $attributes);
456 $attributes = array("rel" => "http://salmon-protocol.org/ns/salmon-replies", "href" => App::get_baseurl()."/salmon/".$owner["nick"]);
457 xml::add_element($doc, $root, "link", "", $attributes);
459 $attributes = array("rel" => "http://salmon-protocol.org/ns/salmon-mention", "href" => App::get_baseurl()."/salmon/".$owner["nick"]);
460 xml::add_element($doc, $root, "link", "", $attributes);
463 // For backward compatibility we keep this element
464 if ($owner['page-flags'] == PAGE_COMMUNITY) {
465 xml::add_element($doc, $root, "dfrn:community", 1);
468 // The former element is replaced by this one
469 xml::add_element($doc, $root, "dfrn:account_type", $owner["account-type"]);
471 /// @todo We need a way to transmit the different page flags like "PAGE_PRVGROUP"
473 xml::add_element($doc, $root, "updated", datetime_convert("UTC", "UTC", "now", ATOM_TIME));
475 $author = self::add_author($doc, $owner, $authorelement, $public);
476 $root->appendChild($author);
482 * @brief Adds the author element in the header for the DFRN protocol
484 * @param object $doc XML document
485 * @param array $owner Owner record
486 * @param string $authorelement Element name for the author
488 * @return object XML author object
489 * @todo Add type-hints
491 private static function add_author($doc, $owner, $authorelement, $public) {
493 // Is the profile hidden or shouldn't be published in the net? Then add the "hide" element
494 $r = q("SELECT `id` FROM `profile` INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
495 WHERE (`hidewall` OR NOT `net-publish`) AND `user`.`uid` = %d",
496 intval($owner['uid']));
497 if (dbm::is_result($r)) {
503 $author = $doc->createElement($authorelement);
505 $namdate = datetime_convert('UTC', 'UTC', $owner['name-date'].'+00:00', ATOM_TIME);
506 $uridate = datetime_convert('UTC', 'UTC', $owner['uri-date'].'+00:00', ATOM_TIME);
507 $picdate = datetime_convert('UTC', 'UTC', $owner['avatar-date'].'+00:00', ATOM_TIME);
509 $attributes = array();
511 if (!$public OR !$hidewall) {
512 $attributes = array("dfrn:updated" => $namdate);
515 xml::add_element($doc, $author, "name", $owner["name"], $attributes);
516 xml::add_element($doc, $author, "uri", App::get_baseurl().'/profile/'.$owner["nickname"], $attributes);
517 xml::add_element($doc, $author, "dfrn:handle", $owner["addr"], $attributes);
519 $attributes = array("rel" => "photo", "type" => "image/jpeg",
520 "media:width" => 175, "media:height" => 175, "href" => $owner['photo']);
522 if (!$public OR !$hidewall) {
523 $attributes["dfrn:updated"] = $picdate;
526 xml::add_element($doc, $author, "link", "", $attributes);
528 $attributes["rel"] = "avatar";
529 xml::add_element($doc, $author, "link", "", $attributes);
532 xml::add_element($doc, $author, "dfrn:hide", "true");
535 // The following fields will only be generated if the data isn't meant for a public feed
540 $birthday = feed_birthday($owner['uid'], $owner['timezone']);
543 xml::add_element($doc, $author, "dfrn:birthday", $birthday);
545 // Only show contact details when we are allowed to
546 $r = q("SELECT `profile`.`about`, `profile`.`name`, `profile`.`homepage`, `user`.`nickname`,
547 `user`.`timezone`, `profile`.`locality`, `profile`.`region`, `profile`.`country-name`,
548 `profile`.`pub_keywords`, `profile`.`xmpp`, `profile`.`dob`
550 INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
551 WHERE `profile`.`is-default` AND NOT `user`.`hidewall` AND `user`.`uid` = %d",
552 intval($owner['uid']));
553 if (dbm::is_result($r)) {
556 xml::add_element($doc, $author, "poco:displayName", $profile["name"]);
557 xml::add_element($doc, $author, "poco:updated", $namdate);
559 if (trim($profile["dob"]) > '0001-01-01') {
560 xml::add_element($doc, $author, "poco:birthday", "0000-".date("m-d", strtotime($profile["dob"])));
563 xml::add_element($doc, $author, "poco:note", $profile["about"]);
564 xml::add_element($doc, $author, "poco:preferredUsername", $profile["nickname"]);
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);
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);
579 if (trim($profile["pub_keywords"]) != "") {
580 $keywords = explode(",", $profile["pub_keywords"]);
582 foreach ($keywords AS $keyword) {
583 xml::add_element($doc, $author, "poco:tags", trim($keyword));
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);
596 if (trim($profile["locality"].$profile["region"].$profile["country-name"]) != "") {
597 $element = $doc->createElement("poco:address");
599 xml::add_element($doc, $element, "poco:formatted", formatted_location($profile));
601 if (trim($profile["locality"]) != "") {
602 xml::add_element($doc, $element, "poco:locality", $profile["locality"]);
605 if (trim($profile["region"]) != "") {
606 xml::add_element($doc, $element, "poco:region", $profile["region"]);
609 if (trim($profile["country-name"]) != "") {
610 xml::add_element($doc, $element, "poco:country", $profile["country-name"]);
613 $author->appendChild($element);
621 * @brief Adds the author elements in the "entry" elements of the DFRN protocol
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
628 * @return object XML author object
629 * @todo Add type-hints
631 private static function add_entry_author($doc, $element, $contact_url, $item) {
633 $contact = get_contact_details_by_url($contact_url, $item["uid"]);
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"]);
641 /// - Check real image type and image size
642 /// - Check which of these boths elements we should use
645 "type" => "image/jpeg",
647 "media:height" => 80,
648 "href" => $contact["photo"]);
649 xml::add_element($doc, $author, "link", "", $attributes);
653 "type" => "image/jpeg",
655 "media:height" => 80,
656 "href" => $contact["photo"]);
657 xml::add_element($doc, $author, "link", "", $attributes);
663 * @brief Adds the activity elements
665 * @param object $doc XML document
666 * @param string $element Element name for the activity
667 * @param string $activity activity value
669 * @return object XML activity object
670 * @todo Add type-hints
672 private static function create_activity($doc, $element, $activity) {
675 $entry = $doc->createElement($element);
677 $r = parse_xml_string($activity, false);
682 xml::add_element($doc, $entry, "activity:object-type", $r->type);
685 xml::add_element($doc, $entry, "id", $r->id);
688 xml::add_element($doc, $entry, "title", $r->title);
692 if (substr($r->link, 0, 1) == '<') {
693 if (strstr($r->link, '&') && (! strstr($r->link, '&'))) {
694 $r->link = str_replace('&', '&', $r->link);
697 $r->link = preg_replace('/\<link(.*?)\"\>/', '<link$1"/>', $r->link);
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;
707 xml::add_element($doc, $entry, "link", "", $attributes);
711 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $r->link);
712 xml::add_element($doc, $entry, "link", "", $attributes);
716 xml::add_element($doc, $entry, "content", bbcode($r->content), array("type" => "html"));
726 * @brief Adds the elements for attachments
728 * @param object $doc XML document
729 * @param object $root XML root
730 * @param array $item Item element
732 * @return object XML attachment object
733 * @todo Add type-hints
735 private static function get_attachment($doc, $root, $item) {
736 $arr = explode('[/attach],',$item['attach']);
738 foreach ($arr as $r) {
740 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
742 $attributes = array("rel" => "enclosure",
743 "href" => $matches[1],
744 "type" => $matches[3]);
746 if (intval($matches[2])) {
747 $attributes["length"] = intval($matches[2]);
750 if (trim($matches[4]) != "") {
751 $attributes["title"] = trim($matches[4]);
754 xml::add_element($doc, $root, "link", "", $attributes);
761 * @brief Adds the "entry" elements for the DFRN protocol
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
770 * @return object XML entry object
771 * @todo Add type-hints
773 private static function entry($doc, $type, $item, $owner, $comment = false, $cid = 0) {
775 $mentioned = array();
777 if (!$item['parent']) {
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);
786 $entry = $doc->createElement("entry");
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);
791 $body = $item['body'];
794 // Remove the abstract element. It is only locally important.
795 $body = remove_abstract($body);
797 if ($type == 'html') {
800 if ($item['title'] != "") {
801 $htmlbody = "[b]".$item['title']."[/b]\n\n".$htmlbody;
804 $htmlbody = bbcode($htmlbody, false, false, 7);
807 $author = self::add_entry_author($doc, "author", $item["author-link"], $item);
808 $entry->appendChild($author);
810 $dfrnowner = self::add_entry_author($doc, "dfrn:owner", $item["owner-link"], $item);
811 $entry->appendChild($dfrnowner);
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);
822 // Add conversation data. This is used for OStatus
823 $conversation_href = App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"];
824 $conversation_uri = $conversation_href;
826 if (isset($parent_item)) {
827 $r = dba::fetch_first("SELECT `conversation-uri`, `conversation-href` FROM `conversation` WHERE `item-uri` = ?", $item['parent-uri']);
828 if (dbm::is_result($r)) {
829 if ($r['conversation-uri'] != '') {
830 $conversation_uri = $r['conversation-uri'];
832 if ($r['conversation-href'] != '') {
833 $conversation_href = $r['conversation-href'];
839 "href" => $conversation_href,
840 "ref" => $conversation_uri);
842 xml::add_element($doc, $entry, "ostatus:conversation", $conversation_uri, $attributes);
844 xml::add_element($doc, $entry, "id", $item["uri"]);
845 xml::add_element($doc, $entry, "title", $item["title"]);
847 xml::add_element($doc, $entry, "published", datetime_convert("UTC","UTC",$item["created"]."+00:00",ATOM_TIME));
848 xml::add_element($doc, $entry, "updated", datetime_convert("UTC","UTC",$item["edited"]."+00:00",ATOM_TIME));
850 // "dfrn:env" is used to read the content
851 xml::add_element($doc, $entry, "dfrn:env", base64url_encode($body, true));
853 // The "content" field is not read by the receiver. We could remove it when the type is "text"
854 // We keep it at the moment, maybe there is some old version that doesn't read "dfrn:env"
855 xml::add_element($doc, $entry, "content", (($type == 'html') ? $htmlbody : $body), array("type" => $type));
857 // We save this value in "plink". Maybe we should read it from there as well?
858 xml::add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
859 "href" => App::get_baseurl()."/display/".$item["guid"]));
861 // "comment-allow" is some old fashioned stuff for old Friendica versions.
862 // It is included in the rewritten code for completeness
864 xml::add_element($doc, $entry, "dfrn:comment-allow", intval($item['last-child']));
867 if ($item['location']) {
868 xml::add_element($doc, $entry, "dfrn:location", $item['location']);
871 if ($item['coord']) {
872 xml::add_element($doc, $entry, "georss:point", $item['coord']);
875 if (($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid'])) {
876 xml::add_element($doc, $entry, "dfrn:private", (($item['private']) ? $item['private'] : 1));
879 if ($item['extid']) {
880 xml::add_element($doc, $entry, "dfrn:extid", $item['extid']);
883 if ($item['bookmark']) {
884 xml::add_element($doc, $entry, "dfrn:bookmark", "true");
888 xml::add_element($doc, $entry, "statusnet:notice_info", "", array("local_id" => $item['id'], "source" => $item['app']));
891 xml::add_element($doc, $entry, "dfrn:diaspora_guid", $item["guid"]);
893 // The signed text contains the content in Markdown, the sender handle and the signatur for the content
894 // It is needed for relayed comments to Diaspora.
895 if ($item['signed_text']) {
896 $sign = base64_encode(json_encode(array('signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer'])));
897 xml::add_element($doc, $entry, "dfrn:diaspora_signature", $sign);
900 xml::add_element($doc, $entry, "activity:verb", construct_verb($item));
902 if ($item['object-type'] != "") {
903 xml::add_element($doc, $entry, "activity:object-type", $item['object-type']);
904 } elseif ($item['id'] == $item['parent']) {
905 xml::add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
907 xml::add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_COMMENT);
910 $actobj = self::create_activity($doc, "activity:object", $item['object']);
912 $entry->appendChild($actobj);
915 $actarg = self::create_activity($doc, "activity:target", $item['target']);
917 $entry->appendChild($actarg);
920 $tags = item_getfeedtags($item);
923 foreach ($tags as $t) {
924 if (($type != 'html') OR ($t[0] != "@")) {
925 xml::add_element($doc, $entry, "category", "", array("scheme" => "X-DFRN:".$t[0].":".$t[1], "term" => $t[2]));
931 foreach ($tags as $t) {
933 $mentioned[$t[1]] = $t[1];
938 foreach ($mentioned AS $mention) {
939 $r = q("SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
940 intval($owner["uid"]),
941 dbesc(normalise_link($mention)));
943 if (dbm::is_result($r) AND ($r[0]["forum"] OR $r[0]["prv"])) {
944 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
945 "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
946 "href" => $mention));
948 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
949 "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
950 "href" => $mention));
954 self::get_attachment($doc, $entry, $item);
960 * @brief encrypts data via AES
962 * @param string $data The data that is to be encrypted
963 * @param string $key The AES key
965 * @return string encrypted data
967 private static function aes_encrypt($data, $key) {
968 return openssl_encrypt($data, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
972 * @brief decrypts data via AES
974 * @param string $encrypted The encrypted data
975 * @param string $key The AES key
977 * @return string decrypted data
979 public static function aes_decrypt($encrypted, $key) {
980 return openssl_decrypt($encrypted, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
984 * @brief Delivers the atom content to the contacts
986 * @param array $owner Owner record
987 * @param array $contactr Contact record of the receiver
988 * @param string $atom Content that will be transmitted
989 * @param bool $dissolve (to be documented)
991 * @return int Deliver status. -1 means an error.
992 * @todo Add array type-hint for $owner, $contact
994 public static function deliver($owner,$contact,$atom, $dissolve = false) {
998 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
1000 if ($contact['duplex'] && $contact['dfrn-id']) {
1001 $idtosend = '0:' . $orig_id;
1003 if ($contact['duplex'] && $contact['issued-id']) {
1004 $idtosend = '1:' . $orig_id;
1007 $rino = get_config('system', 'rino_encrypt');
1008 $rino = intval($rino);
1010 logger("Local rino version: ". $rino, LOGGER_DEBUG);
1012 $ssl_val = intval(get_config('system','ssl_policy'));
1016 case SSL_POLICY_FULL:
1017 $ssl_policy = 'full';
1019 case SSL_POLICY_SELFSIGN:
1020 $ssl_policy = 'self';
1022 case SSL_POLICY_NONE:
1024 $ssl_policy = 'none';
1028 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino='.$rino : '');
1030 logger('dfrn_deliver: ' . $url);
1032 $ret = z_fetch_url($url);
1034 if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
1035 return -2; // timed out
1038 $xml = $ret['body'];
1040 $curl_stat = $a->get_curl_code();
1042 return -3; // timed out
1045 logger('dfrn_deliver: ' . $xml, LOGGER_DATA);
1051 if (strpos($xml,'<?xml') === false) {
1052 logger('dfrn_deliver: no valid XML returned');
1053 logger('dfrn_deliver: returned XML: ' . $xml, LOGGER_DATA);
1057 $res = parse_xml_string($xml);
1059 if ((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id))) {
1060 return (($res->status) ? $res->status : 3);
1063 $postvars = array();
1064 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
1065 $challenge = hex2bin((string) $res->challenge);
1066 $perm = (($res->perm) ? $res->perm : null);
1067 $dfrn_version = (float) (($res->dfrn_version) ? $res->dfrn_version : 2.0);
1068 $rino_remote_version = intval($res->rino);
1069 $page = (($owner['page-flags'] == PAGE_COMMUNITY) ? 1 : 0);
1071 logger("Remote rino version: ".$rino_remote_version." for ".$contact["url"], LOGGER_DEBUG);
1073 if ($owner['page-flags'] == PAGE_PRVGROUP) {
1077 $final_dfrn_id = '';
1080 if ((($perm == 'rw') && (! intval($contact['writable'])))
1081 || (($perm == 'r') && (intval($contact['writable'])))) {
1082 q("update contact set writable = %d where id = %d",
1083 intval(($perm == 'rw') ? 1 : 0),
1084 intval($contact['id'])
1086 $contact['writable'] = (string) 1 - intval($contact['writable']);
1090 if (($contact['duplex'] && strlen($contact['pubkey']))
1091 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
1092 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) {
1093 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
1094 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
1096 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
1097 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
1100 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
1102 if (strpos($final_dfrn_id,':') == 1) {
1103 $final_dfrn_id = substr($final_dfrn_id,2);
1106 if ($final_dfrn_id != $orig_id) {
1107 logger('dfrn_deliver: wrong dfrn_id.');
1108 // did not decode properly - cannot trust this site
1112 $postvars['dfrn_id'] = $idtosend;
1113 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
1115 $postvars['dissolve'] = '1';
1119 if ((($contact['rel']) && ($contact['rel'] != CONTACT_IS_SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1120 $postvars['data'] = $atom;
1121 $postvars['perm'] = 'rw';
1123 $postvars['data'] = str_replace('<dfrn:comment-allow>1','<dfrn:comment-allow>0',$atom);
1124 $postvars['perm'] = 'r';
1127 $postvars['ssl_policy'] = $ssl_policy;
1130 $postvars['page'] = $page;
1134 if ($rino > 0 && $rino_remote_version > 0 && (! $dissolve)) {
1135 logger('rino version: '. $rino_remote_version);
1137 switch ($rino_remote_version) {
1139 // Deprecated rino version!
1140 $key = openssl_random_pseudo_bytes(16);
1141 $data = self::aes_encrypt($postvars['data'], $key);
1144 // RINO 2 based on php-encryption
1146 $key = Crypto::createNewRandomKey();
1147 } catch (CryptoTestFailed $ex) {
1148 logger('Cannot safely create a key');
1150 } catch (CannotPerformOperation $ex) {
1151 logger('Cannot safely create a key');
1155 $data = Crypto::encrypt($postvars['data'], $key);
1156 } catch (CryptoTestFailed $ex) {
1157 logger('Cannot safely perform encryption');
1159 } catch (CannotPerformOperation $ex) {
1160 logger('Cannot safely perform encryption');
1165 logger("rino: invalid requested verision '$rino_remote_version'");
1169 $postvars['rino'] = $rino_remote_version;
1170 $postvars['data'] = bin2hex($data);
1172 //logger('rino: sent key = ' . $key, LOGGER_DEBUG);
1175 if ($dfrn_version >= 2.1) {
1176 if (($contact['duplex'] && strlen($contact['pubkey']))
1177 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
1178 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))) {
1179 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1181 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1185 if (($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1186 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
1188 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
1193 logger('md5 rawkey ' . md5($postvars['key']));
1195 $postvars['key'] = bin2hex($postvars['key']);
1199 logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
1201 $xml = post_url($contact['notify'], $postvars);
1203 logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
1205 $curl_stat = $a->get_curl_code();
1206 if ((!$curl_stat) || (!strlen($xml))) {
1207 return -9; // timed out
1210 if (($curl_stat == 503) && (stristr($a->get_curl_headers(),'retry-after'))) {
1214 if (strpos($xml,'<?xml') === false) {
1215 logger('dfrn_deliver: phase 2: no valid XML returned');
1216 logger('dfrn_deliver: phase 2: returned XML: ' . $xml, LOGGER_DATA);
1220 if ($contact['term-date'] > NULL_DATE) {
1221 logger("dfrn_deliver: $url back from the dead - removing mark for death");
1222 require_once('include/Contact.php');
1223 unmark_for_death($contact);
1226 $res = parse_xml_string($xml);
1228 return $res->status;
1232 * @brief Add new birthday event for this person
1234 * @param array $contact Contact record
1235 * @param string $birthday Birthday of the contact
1236 * @todo Add array type-hint for $contact
1238 private static function birthday_event($contact, $birthday) {
1240 // Check for duplicates
1241 $r = q("SELECT `id` FROM `event` WHERE `uid` = %d AND `cid` = %d AND `start` = '%s' AND `type` = '%s' LIMIT 1",
1242 intval($contact["uid"]),
1243 intval($contact["id"]),
1244 dbesc(datetime_convert("UTC","UTC", $birthday)),
1247 if (dbm::is_result($r)) {
1251 logger("updating birthday: ".$birthday." for contact ".$contact["id"]);
1253 $bdtext = sprintf(t("%s\'s birthday"), $contact["name"]);
1254 $bdtext2 = sprintf(t("Happy Birthday %s"), " [url=".$contact["url"]."]".$contact["name"]."[/url]") ;
1256 $r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`summary`,`desc`,`type`)
1257 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s') ",
1258 intval($contact["uid"]),
1259 intval($contact["id"]),
1260 dbesc(datetime_convert()),
1261 dbesc(datetime_convert()),
1262 dbesc(datetime_convert("UTC","UTC", $birthday)),
1263 dbesc(datetime_convert("UTC","UTC", $birthday." + 1 day ")),
1271 * @brief Fetch the author data from head or entry items
1273 * @param object $xpath XPath object
1274 * @param object $context In which context should the data be searched
1275 * @param array $importer Record of the importer user mixed with contact of the content
1276 * @param string $element Element name from which the data is fetched
1277 * @param bool $onlyfetch Should the data only be fetched or should it update the contact record as well
1279 * @return Returns an array with relevant data of the author
1280 * @todo Find good type-hints for all parameter
1282 private static function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "") {
1285 $author["name"] = $xpath->evaluate($element."/atom:name/text()", $context)->item(0)->nodeValue;
1286 $author["link"] = $xpath->evaluate($element."/atom:uri/text()", $context)->item(0)->nodeValue;
1288 $r = q("SELECT `id`, `uid`, `url`, `network`, `avatar-date`, `name-date`, `uri-date`, `addr`,
1289 `name`, `nick`, `about`, `location`, `keywords`, `xmpp`, `bdyear`, `bd`, `hidden`, `contact-type`
1290 FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` != '%s'",
1291 intval($importer["uid"]), dbesc(normalise_link($author["link"])), dbesc(NETWORK_STATUSNET));
1293 if (dbm::is_result($r)) {
1295 $author["contact-id"] = $r[0]["id"];
1296 $author["network"] = $r[0]["network"];
1299 logger("Contact ".$author["link"]." wasn't found for user ".$importer["uid"]." XML: ".$xml, LOGGER_DEBUG);
1302 $author["contact-id"] = $importer["id"];
1303 $author["network"] = $importer["network"];
1307 // Until now we aren't serving different sizes - but maybe later
1308 $avatarlist = array();
1309 /// @todo check if "avatar" or "photo" would be the best field in the specification
1310 $avatars = $xpath->query($element."/atom:link[@rel='avatar']", $context);
1311 foreach ($avatars AS $avatar) {
1314 foreach ($avatar->attributes AS $attributes) {
1315 /// @TODO Rewrite these similar if () to one switch
1316 if ($attributes->name == "href") {
1317 $href = $attributes->textContent;
1319 if ($attributes->name == "width") {
1320 $width = $attributes->textContent;
1322 if ($attributes->name == "updated") {
1323 $contact["avatar-date"] = $attributes->textContent;
1326 if (($width > 0) AND ($href != "")) {
1327 $avatarlist[$width] = $href;
1330 if (count($avatarlist) > 0) {
1331 krsort($avatarlist);
1332 $author["avatar"] = current($avatarlist);
1335 if (dbm::is_result($r) AND !$onlyfetch) {
1336 logger("Check if contact details for contact " . $r[0]["id"] . " (" . $r[0]["nick"] . ") have to be updated.", LOGGER_DEBUG);
1338 $poco = array("url" => $contact["url"]);
1340 // When was the last change to name or uri?
1341 $name_element = $xpath->query($element . "/atom:name", $context)->item(0);
1342 foreach ($name_element->attributes AS $attributes) {
1343 if ($attributes->name == "updated") {
1344 $poco["name-date"] = $attributes->textContent;
1348 $link_element = $xpath->query($element . "/atom:link", $context)->item(0);
1349 foreach ($link_element->attributes AS $attributes) {
1350 if ($attributes->name == "updated") {
1351 $poco["uri-date"] = $attributes->textContent;
1355 // Update contact data
1356 $value = $xpath->evaluate($element . "/dfrn:handle/text()", $context)->item(0)->nodeValue;
1358 $poco["addr"] = $value;
1361 $value = $xpath->evaluate($element . "/poco:displayName/text()", $context)->item(0)->nodeValue;
1363 $poco["name"] = $value;
1366 $value = $xpath->evaluate($element . "/poco:preferredUsername/text()", $context)->item(0)->nodeValue;
1368 $poco["nick"] = $value;
1371 $value = $xpath->evaluate($element . "/poco:note/text()", $context)->item(0)->nodeValue;
1373 $poco["about"] = $value;
1376 $value = $xpath->evaluate($element . "/poco:address/poco:formatted/text()", $context)->item(0)->nodeValue;
1378 $poco["location"] = $value;
1381 /// @todo Only search for elements with "poco:type" = "xmpp"
1382 $value = $xpath->evaluate($element . "/poco:ims/poco:value/text()", $context)->item(0)->nodeValue;
1384 $poco["xmpp"] = $value;
1387 /// @todo Add support for the following fields that we don't support by now in the contact table:
1388 /// - poco:utcOffset
1394 // If the "hide" element is present then the profile isn't searchable.
1395 $hide = intval($xpath->evaluate($element . "/dfrn:hide/text()", $context)->item(0)->nodeValue == "true");
1397 logger("Hidden status for contact " . $contact["url"] . ": " . $hide, LOGGER_DEBUG);
1399 // If the contact isn't searchable then set the contact to "hidden".
1400 // Problem: This can be manually overridden by the user.
1402 $contact["hidden"] = true;
1405 // Save the keywords into the contact table
1407 $tagelements = $xpath->evaluate($element . "/poco:tags/text()", $context);
1408 foreach ($tagelements AS $tag) {
1409 $tags[$tag->nodeValue] = $tag->nodeValue;
1413 $poco["keywords"] = implode(", ", $tags);
1416 // "dfrn:birthday" contains the birthday converted to UTC
1417 $old_bdyear = $contact["bdyear"];
1419 $birthday = $xpath->evaluate($element . "/dfrn:birthday/text()", $context)->item(0)->nodeValue;
1421 if (strtotime($birthday) > time()) {
1422 $bd_timestamp = strtotime($birthday);
1424 $poco["bdyear"] = date("Y", $bd_timestamp);
1427 // "poco:birthday" is the birthday in the format "yyyy-mm-dd"
1428 $value = $xpath->evaluate($element . "/poco:birthday/text()", $context)->item(0)->nodeValue;
1430 if (!in_array($value, array("", "0000-00-00", "0001-01-01"))) {
1431 $bdyear = date("Y");
1432 $value = str_replace("0000", $bdyear, $value);
1434 if (strtotime($value) < time()) {
1435 $value = str_replace($bdyear, $bdyear + 1, $value);
1436 $bdyear = $bdyear + 1;
1439 $poco["bd"] = $value;
1442 $contact = array_merge($contact, $poco);
1444 if ($old_bdyear != $contact["bdyear"]) {
1445 self::birthday_event($contact, $birthday);
1448 // Get all field names
1450 foreach ($r[0] AS $field => $data) {
1451 $fields[$field] = $data;
1454 unset($fields["id"]);
1455 unset($fields["uid"]);
1456 unset($fields["url"]);
1457 unset($fields["avatar-date"]);
1458 unset($fields["name-date"]);
1459 unset($fields["uri-date"]);
1461 // Update check for this field has to be done differently
1462 $datefields = array("name-date", "uri-date");
1463 foreach ($datefields AS $field) {
1464 if (strtotime($contact[$field]) > strtotime($r[0][$field])) {
1465 logger("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $r[0][$field] . "'", LOGGER_DEBUG);
1470 foreach ($fields AS $field => $data) {
1471 if ($contact[$field] != $r[0][$field]) {
1472 logger("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $r[0][$field] . "'", LOGGER_DEBUG);
1478 logger("Update contact data for contact " . $contact["id"] . " (" . $contact["nick"] . ")", LOGGER_DEBUG);
1480 q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `about` = '%s', `location` = '%s',
1481 `addr` = '%s', `keywords` = '%s', `bdyear` = '%s', `bd` = '%s', `hidden` = %d,
1482 `xmpp` = '%s', `name-date` = '%s', `uri-date` = '%s'
1483 WHERE `id` = %d AND `network` = '%s'",
1484 dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["about"]), dbesc($contact["location"]),
1485 dbesc($contact["addr"]), dbesc($contact["keywords"]), dbesc($contact["bdyear"]),
1486 dbesc($contact["bd"]), intval($contact["hidden"]), dbesc($contact["xmpp"]),
1487 dbesc(dbm::date($contact["name-date"])), dbesc(dbm::date($contact["uri-date"])),
1488 intval($contact["id"]), dbesc($contact["network"]));
1491 update_contact_avatar($author["avatar"], $importer["uid"], $contact["id"],
1492 (strtotime($contact["avatar-date"]) > strtotime($r[0]["avatar-date"])));
1495 * The generation is a sign for the reliability of the provided data.
1496 * It is used in the socgraph.php to prevent that old contact data
1497 * that was relayed over several servers can overwrite contact
1498 * data that we received directly.
1501 $poco["generation"] = 2;
1502 $poco["photo"] = $author["avatar"];
1503 $poco["hide"] = $hide;
1504 $poco["contact-type"] = $contact["contact-type"];
1505 $gcid = update_gcontact($poco);
1507 link_gcontact($gcid, $importer["uid"], $contact["id"]);
1514 * @brief Transforms activity objects into an XML string
1516 * @param object $xpath XPath object
1517 * @param object $activity Activity object
1518 * @param text $element element name
1520 * @return string XML string
1521 * @todo Find good type-hints for all parameter
1523 private static function transform_activity($xpath, $activity, $element) {
1524 if (!is_object($activity)) {
1528 $obj_doc = new DOMDocument("1.0", "utf-8");
1529 $obj_doc->formatOutput = true;
1531 $obj_element = $obj_doc->createElementNS(NAMESPACE_ATOM1, $element);
1533 $activity_type = $xpath->query("activity:object-type/text()", $activity)->item(0)->nodeValue;
1534 xml::add_element($obj_doc, $obj_element, "type", $activity_type);
1536 $id = $xpath->query("atom:id", $activity)->item(0);
1537 if (is_object($id)) {
1538 $obj_element->appendChild($obj_doc->importNode($id, true));
1541 $title = $xpath->query("atom:title", $activity)->item(0);
1542 if (is_object($title)) {
1543 $obj_element->appendChild($obj_doc->importNode($title, true));
1546 $links = $xpath->query("atom:link", $activity);
1547 if (is_object($links)) {
1548 foreach ($links AS $link) {
1549 $obj_element->appendChild($obj_doc->importNode($link, true));
1553 $content = $xpath->query("atom:content", $activity)->item(0);
1554 if (is_object($content)) {
1555 $obj_element->appendChild($obj_doc->importNode($content, true));
1558 $obj_doc->appendChild($obj_element);
1560 $objxml = $obj_doc->saveXML($obj_element);
1562 /// @todo This isn't totally clean. We should find a way to transform the namespaces
1563 $objxml = str_replace("<".$element.' xmlns="http://www.w3.org/2005/Atom">', "<".$element.">", $objxml);
1568 * @brief Processes the mail elements
1570 * @param object $xpath XPath object
1571 * @param object $mail mail elements
1572 * @param array $importer Record of the importer user mixed with contact of the content
1573 * @todo Find good type-hints for all parameter
1575 private static function process_mail($xpath, $mail, $importer) {
1577 logger("Processing mails");
1579 /// @TODO Rewrite this to one statement
1581 $msg["uid"] = $importer["importer_uid"];
1582 $msg["from-name"] = $xpath->query("dfrn:sender/dfrn:name/text()", $mail)->item(0)->nodeValue;
1583 $msg["from-url"] = $xpath->query("dfrn:sender/dfrn:uri/text()", $mail)->item(0)->nodeValue;
1584 $msg["from-photo"] = $xpath->query("dfrn:sender/dfrn:avatar/text()", $mail)->item(0)->nodeValue;
1585 $msg["contact-id"] = $importer["id"];
1586 $msg["uri"] = $xpath->query("dfrn:id/text()", $mail)->item(0)->nodeValue;
1587 $msg["parent-uri"] = $xpath->query("dfrn:in-reply-to/text()", $mail)->item(0)->nodeValue;
1588 $msg["created"] = $xpath->query("dfrn:sentdate/text()", $mail)->item(0)->nodeValue;
1589 $msg["title"] = $xpath->query("dfrn:subject/text()", $mail)->item(0)->nodeValue;
1590 $msg["body"] = $xpath->query("dfrn:content/text()", $mail)->item(0)->nodeValue;
1592 $msg["replied"] = 0;
1594 dbm::esc_array($msg, true);
1596 $r = dbq("INSERT INTO `mail` (`".implode("`, `", array_keys($msg))."`) VALUES (".implode(", ", array_values($msg)).")");
1598 // send notifications.
1599 /// @TODO Arange this mess
1600 $notif_params = array(
1601 "type" => NOTIFY_MAIL,
1602 "notify_flags" => $importer["notify-flags"],
1603 "language" => $importer["language"],
1604 "to_name" => $importer["username"],
1605 "to_email" => $importer["email"],
1606 "uid" => $importer["importer_uid"],
1608 "source_name" => $msg["from-name"],
1609 "source_link" => $importer["url"],
1610 "source_photo" => $importer["thumb"],
1611 "verb" => ACTIVITY_POST,
1615 notification($notif_params);
1617 logger("Mail is processed, notification was sent.");
1621 * @brief Processes the suggestion elements
1623 * @param object $xpath XPath object
1624 * @param object $suggestion suggestion elements
1625 * @param array $importer Record of the importer user mixed with contact of the content
1626 * @todo Find good type-hints for all parameter
1628 private static function process_suggestion($xpath, $suggestion, $importer) {
1631 logger("Processing suggestions");
1633 /// @TODO Rewrite this to one statement
1635 $suggest["uid"] = $importer["importer_uid"];
1636 $suggest["cid"] = $importer["id"];
1637 $suggest["url"] = $xpath->query("dfrn:url/text()", $suggestion)->item(0)->nodeValue;
1638 $suggest["name"] = $xpath->query("dfrn:name/text()", $suggestion)->item(0)->nodeValue;
1639 $suggest["photo"] = $xpath->query("dfrn:photo/text()", $suggestion)->item(0)->nodeValue;
1640 $suggest["request"] = $xpath->query("dfrn:request/text()", $suggestion)->item(0)->nodeValue;
1641 $suggest["body"] = $xpath->query("dfrn:note/text()", $suggestion)->item(0)->nodeValue;
1643 // Does our member already have a friend matching this description?
1645 $r = q("SELECT `id` FROM `contact` WHERE `name` = '%s' AND `nurl` = '%s' AND `uid` = %d LIMIT 1",
1646 dbesc($suggest["name"]),
1647 dbesc(normalise_link($suggest["url"])),
1648 intval($suggest["uid"])
1652 * The valid result means the friend we're about to send a friend
1653 * suggestion already has them in their contact, which means no further
1654 * action is required.
1656 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1658 if (dbm::is_result($r)) {
1662 // Do we already have an fcontact record for this person?
1665 $r = q("SELECT `id` FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1666 dbesc($suggest["url"]),
1667 dbesc($suggest["name"]),
1668 dbesc($suggest["request"])
1670 if (dbm::is_result($r)) {
1673 // OK, we do. Do we already have an introduction for this person ?
1674 $r = q("SELECT `id` FROM `intro` WHERE `uid` = %d AND `fid` = %d LIMIT 1",
1675 intval($suggest["uid"]),
1680 * The valid result means the friend we're about to send a friend
1681 * suggestion already has them in their contact, which means no further
1682 * action is required.
1684 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1686 if (dbm::is_result($r)) {
1691 $r = q("INSERT INTO `fcontact` (`name`,`url`,`photo`,`request`) VALUES ('%s', '%s', '%s', '%s')",
1692 dbesc($suggest["name"]),
1693 dbesc($suggest["url"]),
1694 dbesc($suggest["photo"]),
1695 dbesc($suggest["request"])
1698 $r = q("SELECT `id` FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1699 dbesc($suggest["url"]),
1700 dbesc($suggest["name"]),
1701 dbesc($suggest["request"])
1705 * If no record in fcontact is found, below INSERT statement will not
1706 * link an introduction to it.
1708 if (!dbm::is_result($r)) {
1709 // database record did not get created. Quietly give up.
1715 $hash = random_string();
1717 $r = q("INSERT INTO `intro` (`uid`, `fid`, `contact-id`, `note`, `hash`, `datetime`, `blocked`)
1718 VALUES(%d, %d, %d, '%s', '%s', '%s', %d)",
1719 intval($suggest["uid"]),
1721 intval($suggest["cid"]),
1722 dbesc($suggest["body"]),
1724 dbesc(datetime_convert()),
1729 "type" => NOTIFY_SUGGEST,
1730 "notify_flags" => $importer["notify-flags"],
1731 "language" => $importer["language"],
1732 "to_name" => $importer["username"],
1733 "to_email" => $importer["email"],
1734 "uid" => $importer["importer_uid"],
1736 "link" => App::get_baseurl()."/notifications/intros",
1737 "source_name" => $importer["name"],
1738 "source_link" => $importer["url"],
1739 "source_photo" => $importer["photo"],
1740 "verb" => ACTIVITY_REQ_FRIEND,
1749 * @brief Processes the relocation elements
1751 * @param object $xpath XPath object
1752 * @param object $relocation relocation elements
1753 * @param array $importer Record of the importer user mixed with contact of the content
1754 * @todo Find good type-hints for all parameter
1756 private static function process_relocation($xpath, $relocation, $importer) {
1758 logger("Processing relocations");
1760 /// @TODO Rewrite this to one statement
1761 $relocate = array();
1762 $relocate["uid"] = $importer["importer_uid"];
1763 $relocate["cid"] = $importer["id"];
1764 $relocate["url"] = $xpath->query("dfrn:url/text()", $relocation)->item(0)->nodeValue;
1765 $relocate["addr"] = $xpath->query("dfrn:addr/text()", $relocation)->item(0)->nodeValue;
1766 $relocate["name"] = $xpath->query("dfrn:name/text()", $relocation)->item(0)->nodeValue;
1767 $relocate["avatar"] = $xpath->query("dfrn:avatar/text()", $relocation)->item(0)->nodeValue;
1768 $relocate["photo"] = $xpath->query("dfrn:photo/text()", $relocation)->item(0)->nodeValue;
1769 $relocate["thumb"] = $xpath->query("dfrn:thumb/text()", $relocation)->item(0)->nodeValue;
1770 $relocate["micro"] = $xpath->query("dfrn:micro/text()", $relocation)->item(0)->nodeValue;
1771 $relocate["request"] = $xpath->query("dfrn:request/text()", $relocation)->item(0)->nodeValue;
1772 $relocate["confirm"] = $xpath->query("dfrn:confirm/text()", $relocation)->item(0)->nodeValue;
1773 $relocate["notify"] = $xpath->query("dfrn:notify/text()", $relocation)->item(0)->nodeValue;
1774 $relocate["poll"] = $xpath->query("dfrn:poll/text()", $relocation)->item(0)->nodeValue;
1775 $relocate["sitepubkey"] = $xpath->query("dfrn:sitepubkey/text()", $relocation)->item(0)->nodeValue;
1777 if (($relocate["avatar"] == "") AND ($relocate["photo"] != "")) {
1778 $relocate["avatar"] = $relocate["photo"];
1781 if ($relocate["addr"] == "") {
1782 $relocate["addr"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$3@$2", $relocate["url"]);
1786 $r = q("SELECT `photo`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d;",
1787 intval($importer["id"]),
1788 intval($importer["importer_uid"]));
1790 if (!dbm::is_result($r)) {
1791 logger("Query failed to execute, no result returned in " . __FUNCTION__);
1797 // Update the gcontact entry
1798 $relocate["server_url"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $relocate["url"]);
1800 $x = q("UPDATE `gcontact` SET
1809 WHERE `nurl` = '%s';",
1810 dbesc($relocate["name"]),
1811 dbesc($relocate["avatar"]),
1812 dbesc($relocate["url"]),
1813 dbesc(normalise_link($relocate["url"])),
1814 dbesc($relocate["addr"]),
1815 dbesc($relocate["addr"]),
1816 dbesc($relocate["notify"]),
1817 dbesc($relocate["server_url"]),
1818 dbesc(normalise_link($old["url"])));
1820 // Update the contact table. We try to find every entry.
1821 $x = q("UPDATE `contact` SET
1831 `site-pubkey` = '%s'
1832 WHERE (`id` = %d AND `uid` = %d) OR (`nurl` = '%s');",
1833 dbesc($relocate["name"]),
1834 dbesc($relocate["avatar"]),
1835 dbesc($relocate["url"]),
1836 dbesc(normalise_link($relocate["url"])),
1837 dbesc($relocate["addr"]),
1838 dbesc($relocate["request"]),
1839 dbesc($relocate["confirm"]),
1840 dbesc($relocate["notify"]),
1841 dbesc($relocate["poll"]),
1842 dbesc($relocate["sitepubkey"]),
1843 intval($importer["id"]),
1844 intval($importer["importer_uid"]),
1845 dbesc(normalise_link($old["url"])));
1847 update_contact_avatar($relocate["avatar"], $importer["importer_uid"], $importer["id"], true);
1854 /// @todo This is an extreme performance killer
1856 'owner-link' => array($old["url"], $relocate["url"]),
1857 'author-link' => array($old["url"], $relocate["url"]),
1858 //'owner-avatar' => array($old["photo"], $relocate["photo"]),
1859 //'author-avatar' => array($old["photo"], $relocate["photo"]),
1861 foreach ($fields as $n=>$f) {
1862 $r = q("SELECT `id` FROM `item` WHERE `%s` = '%s' AND `uid` = %d LIMIT 1",
1864 intval($importer["importer_uid"]));
1866 if (dbm::is_result($r)) {
1867 $x = q("UPDATE `item` SET `%s` = '%s' WHERE `%s` = '%s' AND `uid` = %d",
1870 intval($importer["importer_uid"]));
1879 /// merge with current record, current contents have priority
1880 /// update record, set url-updated
1881 /// update profile photos
1882 /// schedule a scan?
1887 * @brief Updates an item
1889 * @param array $current the current item record
1890 * @param array $item the new item record
1891 * @param array $importer Record of the importer user mixed with contact of the content
1892 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
1893 * @todo set proper type-hints (array?)
1895 private static function update_content($current, $item, $importer, $entrytype) {
1898 if (edited_timestamp_is_newer($current, $item)) {
1900 // do not accept (ignore) an earlier edit than one we currently have.
1901 if (datetime_convert("UTC","UTC",$item["edited"]) < $current["edited"]) {
1905 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s', `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d",
1906 dbesc($item["title"]),
1907 dbesc($item["body"]),
1908 dbesc($item["tag"]),
1909 dbesc(datetime_convert("UTC","UTC",$item["edited"])),
1910 dbesc(datetime_convert()),
1911 dbesc($item["uri"]),
1912 intval($importer["importer_uid"])
1914 create_tags_from_itemuri($item["uri"], $importer["importer_uid"]);
1915 update_thread_uri($item["uri"], $importer["importer_uid"]);
1919 if ($entrytype == DFRN_REPLY_RC) {
1920 proc_run(PRIORITY_HIGH, "include/notifier.php","comment-import", $current["id"]);
1924 // update last-child if it changes
1925 if ($item["last-child"] AND ($item["last-child"] != $current["last-child"])) {
1926 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1927 dbesc(datetime_convert()),
1928 dbesc($item["parent-uri"]),
1929 intval($importer["importer_uid"])
1931 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d",
1932 intval($item["last-child"]),
1933 dbesc(datetime_convert()),
1934 dbesc($item["uri"]),
1935 intval($importer["importer_uid"])
1942 * @brief Detects the entry type of the item
1944 * @param array $importer Record of the importer user mixed with contact of the content
1945 * @param array $item the new item record
1947 * @return int Is it a toplevel entry, a comment or a relayed comment?
1948 * @todo set proper type-hints (array?)
1950 private static function get_entry_type($importer, $item) {
1951 if ($item["parent-uri"] != $item["uri"]) {
1954 if ($importer["page-flags"] == PAGE_COMMUNITY || $importer["page-flags"] == PAGE_PRVGROUP) {
1957 logger("possible community action");
1959 $sql_extra = " AND `contact`.`self` AND `item`.`wall` ";
1962 // was the top-level post for this action written by somebody on this site?
1963 // Specifically, the recipient?
1965 $is_a_remote_action = false;
1967 $r = q("SELECT `item`.`parent-uri` FROM `item`
1968 WHERE `item`.`uri` = '%s'
1970 dbesc($item["parent-uri"])
1972 if (dbm::is_result($r)) {
1973 $r = q("SELECT `item`.`forum_mode`, `item`.`wall` FROM `item`
1974 INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
1975 WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' OR `item`.`thr-parent` = '%s')
1976 AND `item`.`uid` = %d
1979 dbesc($r[0]["parent-uri"]),
1980 dbesc($r[0]["parent-uri"]),
1981 dbesc($r[0]["parent-uri"]),
1982 intval($importer["importer_uid"])
1984 if (dbm::is_result($r)) {
1985 $is_a_remote_action = true;
1990 * Does this have the characteristics of a community or private group action?
1991 * If it's an action to a wall post on a community/prvgroup page it's a
1992 * valid community action. Also forum_mode makes it valid for sure.
1993 * If neither, it's not.
1996 /// @TODO Maybe merge these if() blocks into one?
1997 if ($is_a_remote_action && $community && (!$r[0]["forum_mode"]) && (!$r[0]["wall"])) {
1998 $is_a_remote_action = false;
1999 logger("not a community action");
2002 if ($is_a_remote_action) {
2003 return DFRN_REPLY_RC;
2008 return DFRN_TOP_LEVEL;
2014 * @brief Send a "poke"
2016 * @param array $item the new item record
2017 * @param array $importer Record of the importer user mixed with contact of the content
2018 * @param int $posted_id The record number of item record that was just posted
2019 * @todo set proper type-hints (array?)
2021 private static function do_poke($item, $importer, $posted_id) {
2022 $verb = urldecode(substr($item["verb"],strpos($item["verb"], "#")+1));
2026 $xo = parse_xml_string($item["object"],false);
2028 if (($xo->type == ACTIVITY_OBJ_PERSON) && ($xo->id)) {
2030 // somebody was poked/prodded. Was it me?
2031 foreach ($xo->link as $l) {
2032 $atts = $l->attributes();
2033 switch ($atts["rel"]) {
2035 $Blink = $atts["href"];
2042 if ($Blink && link_compare($Blink, App::get_baseurl() . "/profile/" . $importer["nickname"])) {
2044 // send a notification
2046 "type" => NOTIFY_POKE,
2047 "notify_flags" => $importer["notify-flags"],
2048 "language" => $importer["language"],
2049 "to_name" => $importer["username"],
2050 "to_email" => $importer["email"],
2051 "uid" => $importer["importer_uid"],
2053 "link" => App::get_baseurl()."/display/".urlencode(get_item_guid($posted_id)),
2054 "source_name" => stripslashes($item["author-name"]),
2055 "source_link" => $item["author-link"],
2056 "source_photo" => ((link_compare($item["author-link"],$importer["url"]))
2057 ? $importer["thumb"] : $item["author-avatar"]),
2058 "verb" => $item["verb"],
2059 "otype" => "person",
2060 "activity" => $verb,
2061 "parent" => $item["parent"]
2068 * @brief Processes several actions, depending on the verb
2070 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
2071 * @param array $importer Record of the importer user mixed with contact of the content
2072 * @param array $item the new item record
2073 * @param bool $is_like Is the verb a "like"?
2075 * @return bool Should the processing of the entries be continued?
2076 * @todo set proper type-hints (array?)
2078 private static function process_verbs($entrytype, $importer, &$item, &$is_like) {
2080 logger("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, LOGGER_DEBUG);
2082 if (($entrytype == DFRN_TOP_LEVEL)) {
2083 // The filling of the the "contact" variable is done for legcy reasons
2084 // The functions below are partly used by ostatus.php as well - where we have this variable
2085 $r = q("SELECT * FROM `contact` WHERE `id` = %d", intval($importer["id"]));
2087 $nickname = $contact["nick"];
2089 // Big question: Do we need these functions? They were part of the "consume_feed" function.
2090 // This function once was responsible for DFRN and OStatus.
2091 if (activity_match($item["verb"], ACTIVITY_FOLLOW)) {
2092 logger("New follower");
2093 new_follower($importer, $contact, $item, $nickname);
2096 if (activity_match($item["verb"], ACTIVITY_UNFOLLOW)) {
2097 logger("Lost follower");
2098 lose_follower($importer, $contact, $item);
2101 if (activity_match($item["verb"], ACTIVITY_REQ_FRIEND)) {
2102 logger("New friend request");
2103 new_follower($importer, $contact, $item, $nickname, true);
2106 if (activity_match($item["verb"], ACTIVITY_UNFRIEND)) {
2107 logger("Lost sharer");
2108 lose_sharer($importer, $contact, $item);
2112 if (($item["verb"] == ACTIVITY_LIKE)
2113 || ($item["verb"] == ACTIVITY_DISLIKE)
2114 || ($item["verb"] == ACTIVITY_ATTEND)
2115 || ($item["verb"] == ACTIVITY_ATTENDNO)
2116 || ($item["verb"] == ACTIVITY_ATTENDMAYBE)) {
2118 $item["type"] = "activity";
2119 $item["gravity"] = GRAVITY_LIKE;
2120 // only one like or dislike per person
2121 // splitted into two queries for performance issues
2122 $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",
2123 intval($item["uid"]),
2124 dbesc($item["author-link"]),
2125 dbesc($item["verb"]),
2126 dbesc($item["parent-uri"])
2128 if (dbm::is_result($r)) {
2132 $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",
2133 intval($item["uid"]),
2134 dbesc($item["author-link"]),
2135 dbesc($item["verb"]),
2136 dbesc($item["parent-uri"])
2138 if (dbm::is_result($r)) {
2145 if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) {
2147 $xo = parse_xml_string($item["object"],false);
2148 $xt = parse_xml_string($item["target"],false);
2150 if ($xt->type == ACTIVITY_OBJ_NOTE) {
2151 $r = q("SELECT `id`, `tag` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2153 intval($importer["importer_uid"])
2156 if (!dbm::is_result($r)) {
2157 logger("Query failed to execute, no result returned in " . __FUNCTION__);
2161 // extract tag, if not duplicate, add to parent item
2163 if (!(stristr($r[0]["tag"],trim($xo->content)))) {
2164 q("UPDATE `item` SET `tag` = '%s' WHERE `id` = %d",
2165 dbesc($r[0]["tag"] . (strlen($r[0]["tag"]) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'),
2168 create_tags_from_item($r[0]["id"]);
2178 * @brief Processes the link elements
2180 * @param object $links link elements
2181 * @param array $item the item record
2182 * @todo set proper type-hints
2184 private static function parse_links($links, &$item) {
2190 foreach ($links AS $link) {
2191 foreach ($link->attributes AS $attributes) {
2192 /// @TODO Rewrite these repeated (same) if () statements to a switch()
2193 if ($attributes->name == "href") {
2194 $href = $attributes->textContent;
2196 if ($attributes->name == "rel") {
2197 $rel = $attributes->textContent;
2199 if ($attributes->name == "type") {
2200 $type = $attributes->textContent;
2202 if ($attributes->name == "length") {
2203 $length = $attributes->textContent;
2205 if ($attributes->name == "title") {
2206 $title = $attributes->textContent;
2209 if (($rel != "") AND ($href != "")) {
2212 $item["plink"] = $href;
2216 if (strlen($item["attach"])) {
2217 $item["attach"] .= ",";
2220 $item["attach"] .= '[attach]href="' . $href . '" length="' . $length . '" type="' . $type . '" title="' . $title . '"[/attach]';
2228 * @brief Processes the entry elements which contain the items and comments
2230 * @param array $header Array of the header elements that always stay the same
2231 * @param object $xpath XPath object
2232 * @param object $entry entry elements
2233 * @param array $importer Record of the importer user mixed with contact of the content
2234 * @todo Add type-hints
2236 private static function process_entry($header, $xpath, $entry, $importer, $xml) {
2238 logger("Processing entries");
2242 $item["protocol"] = PROTOCOL_DFRN;
2244 $item["source"] = $xml;
2247 $item["uri"] = $xpath->query("atom:id/text()", $entry)->item(0)->nodeValue;
2249 $item["edited"] = $xpath->query("atom:updated/text()", $entry)->item(0)->nodeValue;
2251 $current = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2252 dbesc($item["uri"]),
2253 intval($importer["importer_uid"])
2256 // Is there an existing item?
2257 if (dbm::is_result($current) AND edited_timestamp_is_newer($current[0], $item) AND
2258 (datetime_convert("UTC","UTC",$item["edited"]) < $current[0]["edited"])) {
2259 logger("Item ".$item["uri"]." already existed.", LOGGER_DEBUG);
2264 $owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true);
2266 $item["owner-name"] = $owner["name"];
2267 $item["owner-link"] = $owner["link"];
2268 $item["owner-avatar"] = $owner["avatar"];
2271 $author = self::fetchauthor($xpath, $entry, $importer, "atom:author", true);
2273 $item["author-name"] = $author["name"];
2274 $item["author-link"] = $author["link"];
2275 $item["author-avatar"] = $author["avatar"];
2277 $item["title"] = $xpath->query("atom:title/text()", $entry)->item(0)->nodeValue;
2279 $item["created"] = $xpath->query("atom:published/text()", $entry)->item(0)->nodeValue;
2281 $item["body"] = $xpath->query("dfrn:env/text()", $entry)->item(0)->nodeValue;
2282 $item["body"] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$item["body"]);
2283 // make sure nobody is trying to sneak some html tags by us
2284 $item["body"] = notags(base64url_decode($item["body"]));
2286 $item["body"] = limit_body_size($item["body"]);
2288 /// @todo Do we really need this check for HTML elements? (It was copied from the old function)
2289 if ((strpos($item['body'],'<') !== false) && (strpos($item['body'],'>') !== false)) {
2291 $item['body'] = reltoabs($item['body'],$base_url);
2293 $item['body'] = html2bb_video($item['body']);
2295 $item['body'] = oembed_html2bbcode($item['body']);
2297 $config = HTMLPurifier_Config::createDefault();
2298 $config->set('Cache.DefinitionImpl', null);
2300 // we shouldn't need a whitelist, because the bbcode converter
2301 // will strip out any unsupported tags.
2303 $purifier = new HTMLPurifier($config);
2304 $item['body'] = $purifier->purify($item['body']);
2306 $item['body'] = @html2bbcode($item['body']);
2309 /// @todo We should check for a repeated post and if we know the repeated author.
2311 // We don't need the content element since "dfrn:env" is always present
2312 //$item["body"] = $xpath->query("atom:content/text()", $entry)->item(0)->nodeValue;
2314 $item["last-child"] = $xpath->query("dfrn:comment-allow/text()", $entry)->item(0)->nodeValue;
2315 $item["location"] = $xpath->query("dfrn:location/text()", $entry)->item(0)->nodeValue;
2317 $georsspoint = $xpath->query("georss:point", $entry);
2319 $item["coord"] = $georsspoint->item(0)->nodeValue;
2322 $item["private"] = $xpath->query("dfrn:private/text()", $entry)->item(0)->nodeValue;
2324 $item["extid"] = $xpath->query("dfrn:extid/text()", $entry)->item(0)->nodeValue;
2326 if ($xpath->query("dfrn:bookmark/text()", $entry)->item(0)->nodeValue == "true") {
2327 $item["bookmark"] = true;
2330 $notice_info = $xpath->query("statusnet:notice_info", $entry);
2331 if ($notice_info AND ($notice_info->length > 0)) {
2332 foreach ($notice_info->item(0)->attributes AS $attributes) {
2333 if ($attributes->name == "source") {
2334 $item["app"] = strip_tags($attributes->textContent);
2339 $item["guid"] = $xpath->query("dfrn:diaspora_guid/text()", $entry)->item(0)->nodeValue;
2341 // We store the data from "dfrn:diaspora_signature" in a different table, this is done in "item_store"
2342 $dsprsig = unxmlify($xpath->query("dfrn:diaspora_signature/text()", $entry)->item(0)->nodeValue);
2343 if ($dsprsig != "") {
2344 $item["dsprsig"] = $dsprsig;
2347 $item["verb"] = $xpath->query("activity:verb/text()", $entry)->item(0)->nodeValue;
2349 if ($xpath->query("activity:object-type/text()", $entry)->item(0)->nodeValue != "") {
2350 $item["object-type"] = $xpath->query("activity:object-type/text()", $entry)->item(0)->nodeValue;
2353 $object = $xpath->query("activity:object", $entry)->item(0);
2354 $item["object"] = self::transform_activity($xpath, $object, "object");
2356 if (trim($item["object"]) != "") {
2357 $r = parse_xml_string($item["object"], false);
2358 if (isset($r->type)) {
2359 $item["object-type"] = $r->type;
2363 $target = $xpath->query("activity:target", $entry)->item(0);
2364 $item["target"] = self::transform_activity($xpath, $target, "target");
2366 $categories = $xpath->query("atom:category", $entry);
2368 foreach ($categories AS $category) {
2371 foreach ($category->attributes AS $attributes) {
2372 if ($attributes->name == "term") {
2373 $term = $attributes->textContent;
2376 if ($attributes->name == "scheme") {
2377 $scheme = $attributes->textContent;
2381 if (($term != "") AND ($scheme != "")) {
2382 $parts = explode(":", $scheme);
2383 if ((count($parts) >= 4) AND (array_shift($parts) == "X-DFRN")) {
2384 $termhash = array_shift($parts);
2385 $termurl = implode(":", $parts);
2387 if (strlen($item["tag"])) {
2388 $item["tag"] .= ",";
2391 $item["tag"] .= $termhash . "[url=" . $termurl . "]" . $term . "[/url]";
2399 $links = $xpath->query("atom:link", $entry);
2401 self::parse_links($links, $item);
2404 $item['conversation-uri'] = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue;
2406 $conv = $xpath->query('ostatus:conversation', $entry);
2407 if (is_object($conv->item(0))) {
2408 foreach ($conv->item(0)->attributes AS $attributes) {
2409 if ($attributes->name == "ref") {
2410 $item['conversation-uri'] = $attributes->textContent;
2412 if ($attributes->name == "href") {
2413 $item['conversation-href'] = $attributes->textContent;
2418 // Is it a reply or a top level posting?
2419 $item["parent-uri"] = $item["uri"];
2421 $inreplyto = $xpath->query("thr:in-reply-to", $entry);
2422 if (is_object($inreplyto->item(0))) {
2423 foreach ($inreplyto->item(0)->attributes AS $attributes) {
2424 if ($attributes->name == "ref") {
2425 $item["parent-uri"] = $attributes->textContent;
2430 // Get the type of the item (Top level post, reply or remote reply)
2431 $entrytype = self::get_entry_type($importer, $item);
2433 // Now assign the rest of the values that depend on the type of the message
2434 if (in_array($entrytype, array(DFRN_REPLY, DFRN_REPLY_RC))) {
2435 if (!isset($item["object-type"])) {
2436 $item["object-type"] = ACTIVITY_OBJ_COMMENT;
2439 if ($item["contact-id"] != $owner["contact-id"]) {
2440 $item["contact-id"] = $owner["contact-id"];
2443 if (($item["network"] != $owner["network"]) AND ($owner["network"] != "")) {
2444 $item["network"] = $owner["network"];
2447 if ($item["contact-id"] != $author["contact-id"]) {
2448 $item["contact-id"] = $author["contact-id"];
2451 if (($item["network"] != $author["network"]) AND ($author["network"] != "")) {
2452 $item["network"] = $author["network"];
2455 /// @TODO maybe remove this old-lost code then?
2456 // This code was taken from the old DFRN code
2457 // When activated, forums don't work.
2458 // And: Why should we disallow commenting by followers?
2459 // the behaviour is now similar to the Diaspora part.
2460 //if ($importer["rel"] == CONTACT_IS_FOLLOWER) {
2461 // logger("Contact ".$importer["id"]." is only follower. Quitting", LOGGER_DEBUG);
2466 if ($entrytype == DFRN_REPLY_RC) {
2467 $item["type"] = "remote-comment";
2469 } elseif ($entrytype == DFRN_TOP_LEVEL) {
2470 if (!isset($item["object-type"])) {
2471 $item["object-type"] = ACTIVITY_OBJ_NOTE;
2475 if ($item["object-type"] == ACTIVITY_OBJ_EVENT) {
2476 logger("Item ".$item["uri"]." seems to contain an event.", LOGGER_DEBUG);
2477 $ev = bbtoevent($item["body"]);
2478 if ((x($ev, "desc") || x($ev, "summary")) && x($ev, "start")) {
2479 logger("Event in item ".$item["uri"]." was found.", LOGGER_DEBUG);
2480 /// @TODO Mixure of "/' ahead ...
2481 $ev["cid"] = $importer["id"];
2482 $ev["uid"] = $importer["uid"];
2483 $ev["uri"] = $item["uri"];
2484 $ev["edited"] = $item["edited"];
2485 $ev['private'] = $item['private'];
2486 $ev["guid"] = $item["guid"];
2488 $r = q("SELECT `id` FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2489 dbesc($item["uri"]),
2490 intval($importer["uid"])
2492 if (dbm::is_result($r)) {
2493 $ev["id"] = $r[0]["id"];
2496 $event_id = event_store($ev);
2497 logger("Event ".$event_id." was stored", LOGGER_DEBUG);
2503 if (!self::process_verbs($entrytype, $importer, $item, $is_like)) {
2504 logger("Exiting because 'process_verbs' told us so", LOGGER_DEBUG);
2508 // Update content if 'updated' changes
2509 if (dbm::is_result($current)) {
2510 if (self::update_content($r[0], $item, $importer, $entrytype)) {
2511 logger("Item ".$item["uri"]." was updated.", LOGGER_DEBUG);
2513 logger("Item ".$item["uri"]." already existed.", LOGGER_DEBUG);
2518 if (in_array($entrytype, array(DFRN_REPLY, DFRN_REPLY_RC))) {
2519 $posted_id = item_store($item);
2524 logger("Reply from contact ".$item["contact-id"]." was stored with id ".$posted_id, LOGGER_DEBUG);
2526 $item["id"] = $posted_id;
2528 $r = q("SELECT `parent`, `parent-uri` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2530 intval($importer["importer_uid"])
2532 if (dbm::is_result($r)) {
2533 $parent = $r[0]["parent"];
2534 $parent_uri = $r[0]["parent-uri"];
2538 $r1 = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `uid` = %d AND `parent` = %d",
2539 dbesc(datetime_convert()),
2540 intval($importer["importer_uid"]),
2541 intval($r[0]["parent"])
2544 $r2 = q("UPDATE `item` SET `last-child` = 1, `changed` = '%s' WHERE `uid` = %d AND `id` = %d",
2545 dbesc(datetime_convert()),
2546 intval($importer["importer_uid"]),
2551 if ($posted_id AND $parent AND ($entrytype == DFRN_REPLY_RC)) {
2552 logger("Notifying followers about comment ".$posted_id, LOGGER_DEBUG);
2553 proc_run(PRIORITY_HIGH, "include/notifier.php", "comment-import", $posted_id);
2558 } else { // $entrytype == DFRN_TOP_LEVEL
2559 if (!link_compare($item["owner-link"],$importer["url"])) {
2561 * The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2562 * but otherwise there's a possible data mixup on the sender's system.
2563 * the tgroup delivery code called from item_store will correct it if it's a forum,
2564 * but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2566 logger('Correcting item owner.', LOGGER_DEBUG);
2567 $item["owner-name"] = $importer["senderName"];
2568 $item["owner-link"] = $importer["url"];
2569 $item["owner-avatar"] = $importer["thumb"];
2572 if (($importer["rel"] == CONTACT_IS_FOLLOWER) && (!tgroup_check($importer["importer_uid"], $item))) {
2573 logger("Contact ".$importer["id"]." is only follower and tgroup check was negative.", LOGGER_DEBUG);
2577 // This is my contact on another system, but it's really me.
2578 // Turn this into a wall post.
2579 $notify = item_is_remote_self($importer, $item);
2581 $posted_id = item_store($item, false, $notify);
2583 logger("Item was stored with id ".$posted_id, LOGGER_DEBUG);
2585 if (stristr($item["verb"],ACTIVITY_POKE))
2586 self::do_poke($item, $importer, $posted_id);
2591 * @brief Deletes items
2593 * @param object $xpath XPath object
2594 * @param object $deletion deletion elements
2595 * @param array $importer Record of the importer user mixed with contact of the content
2596 * @todo set proper type-hints
2598 private static function process_deletion($xpath, $deletion, $importer) {
2600 logger("Processing deletions");
2602 foreach ($deletion->attributes AS $attributes) {
2603 if ($attributes->name == "ref") {
2604 $uri = $attributes->textContent;
2606 if ($attributes->name == "when") {
2607 $when = $attributes->textContent;
2611 $when = datetime_convert("UTC", "UTC", $when, "Y-m-d H:i:s");
2613 $when = datetime_convert("UTC", "UTC", "now", "Y-m-d H:i:s");
2616 if (!$uri OR !$importer["id"]) {
2620 /// @todo Only select the used fields
2621 $r = q("SELECT `item`.*, `contact`.`self` FROM `item` INNER JOIN `contact` on `item`.`contact-id` = `contact`.`id`
2622 WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d AND NOT `item`.`file` LIKE '%%[%%' LIMIT 1",
2624 intval($importer["uid"]),
2625 intval($importer["id"])
2627 if (!dbm::is_result($r)) {
2628 logger("Item with uri " . $uri . " from contact " . $importer["id"] . " for user " . $importer["uid"] . " wasn't found.", LOGGER_DEBUG);
2634 $entrytype = self::get_entry_type($importer, $item);
2636 if (!$item["deleted"]) {
2637 logger('deleting item '.$item["id"].' uri='.$uri, LOGGER_DEBUG);
2642 if ($item["object-type"] == ACTIVITY_OBJ_EVENT) {
2643 logger("Deleting event ".$item["event-id"], LOGGER_DEBUG);
2644 event_delete($item["event-id"]);
2647 if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) {
2649 $xo = parse_xml_string($item["object"],false);
2650 $xt = parse_xml_string($item["target"],false);
2652 if ($xt->type == ACTIVITY_OBJ_NOTE) {
2653 $i = q("SELECT `id`, `contact-id`, `tag` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2655 intval($importer["importer_uid"])
2657 if (dbm::is_result($i)) {
2659 // For tags, the owner cannot remove the tag on the author's copy of the post.
2661 $owner_remove = (($item["contact-id"] == $i[0]["contact-id"]) ? true: false);
2662 $author_remove = (($item["origin"] && $item["self"]) ? true : false);
2663 $author_copy = (($item["origin"]) ? true : false);
2665 if ($owner_remove && $author_copy) {
2668 if ($author_remove || $owner_remove) {
2669 $tags = explode(',',$i[0]["tag"]);
2672 foreach ($tags as $tag) {
2673 if (trim($tag) !== trim($xo->body)) {
2674 $newtags[] = trim($tag);
2678 q("UPDATE `item` SET `tag` = '%s' WHERE `id` = %d",
2679 dbesc(implode(',', $newtags)),
2682 create_tags_from_item($i[0]["id"]);
2688 if ($entrytype == DFRN_TOP_LEVEL) {
2689 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
2690 `body` = '', `title` = ''
2691 WHERE `parent-uri` = '%s' AND `uid` = %d",
2693 dbesc(datetime_convert()),
2695 intval($importer["uid"])
2697 create_tags_from_itemuri($uri, $importer["uid"]);
2698 create_files_from_itemuri($uri, $importer["uid"]);
2699 update_thread_uri($uri, $importer["uid"]);
2701 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
2702 `body` = '', `title` = ''
2703 WHERE `uri` = '%s' AND `uid` = %d",
2705 dbesc(datetime_convert()),
2707 intval($importer["uid"])
2709 create_tags_from_itemuri($uri, $importer["uid"]);
2710 create_files_from_itemuri($uri, $importer["uid"]);
2711 update_thread_uri($uri, $importer["importer_uid"]);
2712 if ($item["last-child"]) {
2713 // ensure that last-child is set in case the comment that had it just got wiped.
2714 q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
2715 dbesc(datetime_convert()),
2716 dbesc($item["parent-uri"]),
2717 intval($item["uid"])
2719 // who is the last child now?
2720 $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `moderated` = 0 AND `uid` = %d
2721 ORDER BY `created` DESC LIMIT 1",
2722 dbesc($item["parent-uri"]),
2723 intval($importer["uid"])
2725 if (dbm::is_result($r)) {
2726 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d",
2731 // if this is a relayed delete, propagate it to other recipients
2733 if ($entrytype == DFRN_REPLY_RC) {
2734 logger("Notifying followers about deletion of post " . $item["id"], LOGGER_DEBUG);
2735 proc_run(PRIORITY_HIGH, "include/notifier.php","drop", $item["id"]);
2742 * @brief Imports a DFRN message
2744 * @param text $xml The DFRN message
2745 * @param array $importer Record of the importer user mixed with contact of the content
2746 * @param bool $sort_by_date Is used when feeds are polled
2747 * @todo set proper type-hints
2749 public static function import($xml,$importer, $sort_by_date = false) {
2755 if ($importer["readonly"]) {
2756 // We aren't receiving stuff from this person. But we will quietly ignore them
2757 // rather than a blatant "go away" message.
2758 logger('ignoring contact '.$importer["id"]);
2762 $doc = new DOMDocument();
2763 @$doc->loadXML($xml);
2765 $xpath = new DomXPath($doc);
2766 $xpath->registerNamespace("atom", NAMESPACE_ATOM1);
2767 $xpath->registerNamespace("thr", NAMESPACE_THREAD);
2768 $xpath->registerNamespace("at", NAMESPACE_TOMB);
2769 $xpath->registerNamespace("media", NAMESPACE_MEDIA);
2770 $xpath->registerNamespace("dfrn", NAMESPACE_DFRN);
2771 $xpath->registerNamespace("activity", NAMESPACE_ACTIVITY);
2772 $xpath->registerNamespace("georss", NAMESPACE_GEORSS);
2773 $xpath->registerNamespace("poco", NAMESPACE_POCO);
2774 $xpath->registerNamespace("ostatus", NAMESPACE_OSTATUS);
2775 $xpath->registerNamespace("statusnet", NAMESPACE_STATUSNET);
2778 $header["uid"] = $importer["uid"];
2779 $header["network"] = NETWORK_DFRN;
2780 $header["type"] = "remote";
2781 $header["wall"] = 0;
2782 $header["origin"] = 0;
2783 $header["contact-id"] = $importer["id"];
2785 // Update the contact table if the data has changed
2787 // The "atom:author" is only present in feeds
2788 if ($xpath->query("/atom:feed/atom:author")->length > 0) {
2789 self::fetchauthor($xpath, $doc->firstChild, $importer, "atom:author", false, $xml);
2792 // Only the "dfrn:owner" in the head section contains all data
2793 if ($xpath->query("/atom:feed/dfrn:owner")->length > 0) {
2794 self::fetchauthor($xpath, $doc->firstChild, $importer, "dfrn:owner", false, $xml);
2797 logger("Import DFRN message for user " . $importer["uid"] . " from contact " . $importer["id"], LOGGER_DEBUG);
2799 // The account type is new since 3.5.1
2800 if ($xpath->query("/atom:feed/dfrn:account_type")->length > 0) {
2801 $accounttype = intval($xpath->evaluate("/atom:feed/dfrn:account_type/text()", $context)->item(0)->nodeValue);
2803 if ($accounttype != $importer["contact-type"]) {
2804 /// @TODO this way is the norm or putting ); at the end of the line?
2805 q("UPDATE `contact` SET `contact-type` = %d WHERE `id` = %d",
2806 intval($accounttype),
2807 intval($importer["id"])
2812 // is it a public forum? Private forums aren't supported with this method
2813 // This is deprecated since 3.5.1
2814 $forum = intval($xpath->evaluate("/atom:feed/dfrn:community/text()", $context)->item(0)->nodeValue);
2816 if ($forum != $importer["forum"]) {
2817 q("UPDATE `contact` SET `forum` = %d WHERE `forum` != %d AND `id` = %d",
2818 intval($forum), intval($forum),
2819 intval($importer["id"])
2823 $mails = $xpath->query("/atom:feed/dfrn:mail");
2824 foreach ($mails AS $mail) {
2825 self::process_mail($xpath, $mail, $importer);
2828 $suggestions = $xpath->query("/atom:feed/dfrn:suggest");
2829 foreach ($suggestions AS $suggestion) {
2830 self::process_suggestion($xpath, $suggestion, $importer);
2833 $relocations = $xpath->query("/atom:feed/dfrn:relocate");
2834 foreach ($relocations AS $relocation) {
2835 self::process_relocation($xpath, $relocation, $importer);
2838 $deletions = $xpath->query("/atom:feed/at:deleted-entry");
2839 foreach ($deletions AS $deletion) {
2840 self::process_deletion($xpath, $deletion, $importer);
2843 if (!$sort_by_date) {
2844 $entries = $xpath->query("/atom:feed/atom:entry");
2845 foreach ($entries AS $entry) {
2846 self::process_entry($header, $xpath, $entry, $importer, $xml);
2849 $newentries = array();
2850 $entries = $xpath->query("/atom:feed/atom:entry");
2851 foreach ($entries AS $entry) {
2852 $created = $xpath->query("atom:published/text()", $entry)->item(0)->nodeValue;
2853 $newentries[strtotime($created)] = $entry;
2856 // Now sort after the publishing date
2859 foreach ($newentries AS $entry) {
2860 self::process_entry($header, $xpath, $entry, $importer, $xml);
2863 logger("Import done for user " . $importer["uid"] . " from contact " . $importer["id"], LOGGER_DEBUG);