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
9 namespace Friendica\Protocol;
12 use Friendica\Content\OEmbed;
13 use Friendica\Content\Text\BBCode;
14 use Friendica\Content\Text\HTML;
15 use Friendica\Core\Addon;
16 use Friendica\Core\Config;
17 use Friendica\Core\L10n;
18 use Friendica\Core\System;
19 use Friendica\Core\Worker;
20 use Friendica\Database\DBM;
21 use Friendica\Model\Contact;
22 use Friendica\Model\Event;
23 use Friendica\Model\GContact;
24 use Friendica\Model\Group;
25 use Friendica\Model\Item;
26 use Friendica\Model\Profile;
27 use Friendica\Model\User;
28 use Friendica\Object\Image;
29 use Friendica\Protocol\OStatus;
30 use Friendica\Util\Crypto;
31 use Friendica\Util\DateTimeFormat;
32 use Friendica\Util\Network;
33 use Friendica\Util\XML;
34 use Friendica\Protocol\Diaspora;
39 use HTMLPurifier_Config;
41 require_once 'boot.php';
42 require_once 'include/dba.php';
43 require_once "include/enotify.php";
44 require_once "include/items.php";
45 require_once "include/text.php";
48 * @brief This class contain functions to create and send DFRN XML files
53 const DFRN_TOP_LEVEL = 0; // Top level posting
54 const DFRN_REPLY = 1; // Regular reply that is stored locally
55 const DFRN_REPLY_RC = 2; // Reply that will be relayed
58 * @brief Generates the atom entries for delivery.php
60 * This function is used whenever content is transmitted via DFRN.
62 * @param array $items Item elements
63 * @param array $owner Owner record
65 * @return string DFRN entries
66 * @todo Add type-hints
68 public static function entries($items, $owner)
70 $doc = new DOMDocument('1.0', 'utf-8');
71 $doc->formatOutput = true;
73 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
75 if (! count($items)) {
76 return trim($doc->saveXML());
79 foreach ($items as $item) {
80 $entry = self::entry($doc, "text", $item, $owner, $item["entry:comment-allow"], $item["entry:cid"]);
81 $root->appendChild($entry);
84 return(trim($doc->saveXML()));
88 * @brief Generate an atom feed for the given user
90 * This function is called when another server is pulling data from the user feed.
92 * @param string $dfrn_id DFRN ID from the requesting party
93 * @param string $owner_nick Owner nick name
94 * @param string $last_update Date of the last update
95 * @param int $direction Can be -1, 0 or 1.
96 * @param boolean $onlyheader Output only the header without content? (Default is "no")
98 * @return string DFRN feed entries
100 public static function feed($dfrn_id, $owner_nick, $last_update, $direction = 0, $onlyheader = false)
104 $sitefeed = ((strlen($owner_nick)) ? false : true); // not yet implemented, need to rewrite huge chunks of following logic
105 $public_feed = (($dfrn_id) ? false : true);
106 $starred = false; // not yet implemented, possible security issues
109 if ($public_feed && $a->argc > 2) {
110 for ($x = 2; $x < $a->argc; $x++) {
111 if ($a->argv[$x] == 'converse') {
114 if ($a->argv[$x] == 'starred') {
117 if ($a->argv[$x] == 'category' && $a->argc > ($x + 1) && strlen($a->argv[$x+1])) {
118 $category = $a->argv[$x+1];
125 // default permissions - anonymous user
127 $sql_extra = " AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' ";
130 "SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`, `user`.`account-type`
131 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
132 WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
136 if (! DBM::is_result($r)) {
141 $owner_id = $owner['uid'];
142 $owner_nick = $owner['nickname'];
144 $sql_post_table = "";
146 if (! $public_feed) {
148 switch ($direction) {
150 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
154 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
155 $my_id = '1:' . $dfrn_id;
158 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
159 $my_id = '0:' . $dfrn_id;
167 "SELECT * FROM `contact` WHERE NOT `blocked` AND `contact`.`uid` = %d $sql_extra LIMIT 1",
171 if (! DBM::is_result($r)) {
176 include_once 'include/security.php';
177 $groups = Group::getIdsByContactId($contact['id']);
179 if (count($groups)) {
180 for ($x = 0; $x < count($groups); $x ++)
181 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
182 $gs = implode('|', $groups);
184 $gs = '<<>>' ; // Impossible to match
187 $sql_extra = sprintf(
189 AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' )
190 AND ( `deny_cid` = '' OR NOT `deny_cid` REGEXP '<%d>' )
191 AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
192 AND ( `deny_gid` = '' OR NOT `deny_gid` REGEXP '%s')
194 intval($contact['id']),
195 intval($contact['id']),
207 if (! strlen($last_update)) {
208 $last_update = 'now -30 days';
211 if (isset($category)) {
212 $sql_post_table = sprintf(
213 "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` ",
214 dbesc(protect_sprintf($category)),
215 intval(TERM_OBJ_POST),
216 intval(TERM_CATEGORY),
219 //$sql_extra .= file_tag_file_query('item',$category,'category');
224 $sql_extra .= " AND `contact`.`self` = 1 ";
228 $check_date = DateTimeFormat::utc($last_update);
231 "SELECT `item`.*, `item`.`id` AS `item_id`,
232 `contact`.`name`, `contact`.`network`, `contact`.`photo`, `contact`.`url`,
233 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
234 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
235 `sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
236 FROM `item` USE INDEX (`uid_wall_changed`) $sql_post_table
237 STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
238 AND (NOT `contact`.`blocked` OR `contact`.`pending`)
239 LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
240 WHERE `item`.`uid` = %d AND `item`.`visible` AND NOT `item`.`moderated` AND `item`.`parent` != 0
241 AND `item`.`wall` AND `item`.`changed` > '%s'
243 ORDER BY `item`.`parent` ".$sort.", `item`.`created` ASC LIMIT 0, 300",
250 * Will check further below if this actually returned results.
251 * We will provide an empty feed if that is the case.
256 $doc = new DOMDocument('1.0', 'utf-8');
257 $doc->formatOutput = true;
259 $alternatelink = $owner['url'];
261 if (isset($category)) {
262 $alternatelink .= "/category/".$category;
266 $author = "dfrn:owner";
271 $root = self::addHeader($doc, $owner, $author, $alternatelink, true);
273 /// @TODO This hook can't work anymore
274 // Addon::callHooks('atom_feed', $atom);
276 if (!DBM::is_result($items) || $onlyheader) {
277 $atom = trim($doc->saveXML());
279 Addon::callHooks('atom_feed_end', $atom);
284 foreach ($items as $item) {
285 // prevent private email from leaking.
286 if ($item['network'] == NETWORK_MAIL) {
290 // public feeds get html, our own nodes use bbcode
294 // catch any email that's in a public conversation and make sure it doesn't leak
295 if ($item['private']) {
302 $entry = self::entry($doc, $type, $item, $owner, true);
303 $root->appendChild($entry);
306 $atom = trim($doc->saveXML());
308 Addon::callHooks('atom_feed_end', $atom);
314 * @brief Generate an atom entry for a given item id
316 * @param int $item_id The item id
317 * @param boolean $conversation Show the conversation. If false show the single post.
319 * @return string DFRN feed entry
321 public static function itemFeed($item_id, $conversation = false)
324 $condition = '`item`.`parent`';
326 $condition = '`item`.`id`';
330 "SELECT `item`.*, `item`.`id` AS `item_id`,
331 `contact`.`name`, `contact`.`network`, `contact`.`photo`, `contact`.`url`,
332 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
333 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
334 `sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
336 STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
337 AND (NOT `contact`.`blocked` OR `contact`.`pending`)
338 LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
339 WHERE %s = %d AND `item`.`visible` AND NOT `item`.`moderated` AND `item`.`parent` != 0
340 AND NOT `item`.`private`",
345 if (!DBM::is_result($r)) {
352 if ($item['uid'] != 0) {
353 $owner = User::getOwnerDataById($item['uid']);
358 $owner = ['uid' => 0, 'nick' => 'feed-item'];
361 $doc = new DOMDocument('1.0', 'utf-8');
362 $doc->formatOutput = true;
366 $root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
367 $doc->appendChild($root);
369 $root->setAttribute("xmlns:thr", NAMESPACE_THREAD);
370 $root->setAttribute("xmlns:at", NAMESPACE_TOMB);
371 $root->setAttribute("xmlns:media", NAMESPACE_MEDIA);
372 $root->setAttribute("xmlns:dfrn", NAMESPACE_DFRN);
373 $root->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
374 $root->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
375 $root->setAttribute("xmlns:poco", NAMESPACE_POCO);
376 $root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
377 $root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
379 //$root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
381 foreach ($items as $item) {
382 $entry = self::entry($doc, $type, $item, $owner, true, 0);
383 $root->appendChild($entry);
386 $root = self::entry($doc, $type, $item, $owner, true, 0, true);
389 $atom = trim($doc->saveXML());
394 * @brief Create XML text for DFRN mails
396 * @param array $item message elements
397 * @param array $owner Owner record
399 * @return string DFRN mail
400 * @todo Add type-hints
402 public static function mail($item, $owner)
404 $doc = new DOMDocument('1.0', 'utf-8');
405 $doc->formatOutput = true;
407 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
409 $mail = $doc->createElement("dfrn:mail");
410 $sender = $doc->createElement("dfrn:sender");
412 XML::addElement($doc, $sender, "dfrn:name", $owner['name']);
413 XML::addElement($doc, $sender, "dfrn:uri", $owner['url']);
414 XML::addElement($doc, $sender, "dfrn:avatar", $owner['thumb']);
416 $mail->appendChild($sender);
418 XML::addElement($doc, $mail, "dfrn:id", $item['uri']);
419 XML::addElement($doc, $mail, "dfrn:in-reply-to", $item['parent-uri']);
420 XML::addElement($doc, $mail, "dfrn:sentdate", DateTimeFormat::utc($item['created'] . '+00:00', DateTimeFormat::ATOM));
421 XML::addElement($doc, $mail, "dfrn:subject", $item['title']);
422 XML::addElement($doc, $mail, "dfrn:content", $item['body']);
424 $root->appendChild($mail);
426 return(trim($doc->saveXML()));
430 * @brief Create XML text for DFRN friend suggestions
432 * @param array $item suggestion elements
433 * @param array $owner Owner record
435 * @return string DFRN suggestions
436 * @todo Add type-hints
438 public static function fsuggest($item, $owner)
440 $doc = new DOMDocument('1.0', 'utf-8');
441 $doc->formatOutput = true;
443 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
445 $suggest = $doc->createElement("dfrn:suggest");
447 XML::addElement($doc, $suggest, "dfrn:url", $item['url']);
448 XML::addElement($doc, $suggest, "dfrn:name", $item['name']);
449 XML::addElement($doc, $suggest, "dfrn:photo", $item['photo']);
450 XML::addElement($doc, $suggest, "dfrn:request", $item['request']);
451 XML::addElement($doc, $suggest, "dfrn:note", $item['note']);
453 $root->appendChild($suggest);
455 return(trim($doc->saveXML()));
459 * @brief Create XML text for DFRN relocations
461 * @param array $owner Owner record
462 * @param int $uid User ID
464 * @return string DFRN relocations
465 * @todo Add type-hints
467 public static function relocate($owner, $uid)
470 /* get site pubkey. this could be a new installation with no site keys*/
471 $pubkey = Config::get('system', 'site_pubkey');
473 $res = Crypto::newKeypair(1024);
474 Config::set('system', 'site_prvkey', $res['prvkey']);
475 Config::set('system', 'site_pubkey', $res['pubkey']);
479 "SELECT `resource-id` , `scale`, type FROM `photo`
480 WHERE `profile` = 1 AND `uid` = %d ORDER BY scale;",
484 $ext = Image::supportedTypes();
486 foreach ($rp as $p) {
487 $photos[$p['scale']] = System::baseUrl().'/photo/'.$p['resource-id'].'-'.$p['scale'].'.'.$ext[$p['type']];
492 $doc = new DOMDocument('1.0', 'utf-8');
493 $doc->formatOutput = true;
495 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
497 $relocate = $doc->createElement("dfrn:relocate");
499 XML::addElement($doc, $relocate, "dfrn:url", $owner['url']);
500 XML::addElement($doc, $relocate, "dfrn:name", $owner['name']);
501 XML::addElement($doc, $relocate, "dfrn:addr", $owner['addr']);
502 XML::addElement($doc, $relocate, "dfrn:avatar", $owner['avatar']);
503 XML::addElement($doc, $relocate, "dfrn:photo", $photos[4]);
504 XML::addElement($doc, $relocate, "dfrn:thumb", $photos[5]);
505 XML::addElement($doc, $relocate, "dfrn:micro", $photos[6]);
506 XML::addElement($doc, $relocate, "dfrn:request", $owner['request']);
507 XML::addElement($doc, $relocate, "dfrn:confirm", $owner['confirm']);
508 XML::addElement($doc, $relocate, "dfrn:notify", $owner['notify']);
509 XML::addElement($doc, $relocate, "dfrn:poll", $owner['poll']);
510 XML::addElement($doc, $relocate, "dfrn:sitepubkey", Config::get('system', 'site_pubkey'));
512 $root->appendChild($relocate);
514 return(trim($doc->saveXML()));
518 * @brief Adds the header elements for the DFRN protocol
520 * @param object $doc XML document
521 * @param array $owner Owner record
522 * @param string $authorelement Element name for the author
523 * @param string $alternatelink link to profile or category
524 * @param bool $public Is it a header for public posts?
526 * @return object XML root object
527 * @todo Add type-hints
529 private static function addHeader($doc, $owner, $authorelement, $alternatelink = "", $public = false)
532 if ($alternatelink == "") {
533 $alternatelink = $owner['url'];
536 $root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
537 $doc->appendChild($root);
539 $root->setAttribute("xmlns:thr", NAMESPACE_THREAD);
540 $root->setAttribute("xmlns:at", NAMESPACE_TOMB);
541 $root->setAttribute("xmlns:media", NAMESPACE_MEDIA);
542 $root->setAttribute("xmlns:dfrn", NAMESPACE_DFRN);
543 $root->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
544 $root->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
545 $root->setAttribute("xmlns:poco", NAMESPACE_POCO);
546 $root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
547 $root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
549 XML::addElement($doc, $root, "id", System::baseUrl()."/profile/".$owner["nick"]);
550 XML::addElement($doc, $root, "title", $owner["name"]);
552 $attributes = ["uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION];
553 XML::addElement($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
555 $attributes = ["rel" => "license", "href" => "http://creativecommons.org/licenses/by/3.0/"];
556 XML::addElement($doc, $root, "link", "", $attributes);
558 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $alternatelink];
559 XML::addElement($doc, $root, "link", "", $attributes);
563 // DFRN itself doesn't uses this. But maybe someone else wants to subscribe to the public feed.
564 OStatus::hublinks($doc, $root, $owner["nick"]);
566 $attributes = ["rel" => "salmon", "href" => System::baseUrl()."/salmon/".$owner["nick"]];
567 XML::addElement($doc, $root, "link", "", $attributes);
569 $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-replies", "href" => System::baseUrl()."/salmon/".$owner["nick"]];
570 XML::addElement($doc, $root, "link", "", $attributes);
572 $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-mention", "href" => System::baseUrl()."/salmon/".$owner["nick"]];
573 XML::addElement($doc, $root, "link", "", $attributes);
576 // For backward compatibility we keep this element
577 if ($owner['page-flags'] == PAGE_COMMUNITY) {
578 XML::addElement($doc, $root, "dfrn:community", 1);
581 // The former element is replaced by this one
582 XML::addElement($doc, $root, "dfrn:account_type", $owner["account-type"]);
584 /// @todo We need a way to transmit the different page flags like "PAGE_PRVGROUP"
586 XML::addElement($doc, $root, "updated", DateTimeFormat::utcNow(DateTimeFormat::ATOM));
588 $author = self::addAuthor($doc, $owner, $authorelement, $public);
589 $root->appendChild($author);
595 * @brief Adds the author element in the header for the DFRN protocol
597 * @param object $doc XML document
598 * @param array $owner Owner record
599 * @param string $authorelement Element name for the author
600 * @param boolean $public boolean
602 * @return object XML author object
603 * @todo Add type-hints
605 private static function addAuthor($doc, $owner, $authorelement, $public)
607 // Is the profile hidden or shouldn't be published in the net? Then add the "hide" element
609 "SELECT `id` FROM `profile` INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
610 WHERE (`hidewall` OR NOT `net-publish`) AND `user`.`uid` = %d",
611 intval($owner['uid'])
613 if (DBM::is_result($r)) {
619 $author = $doc->createElement($authorelement);
621 $namdate = DateTimeFormat::utc($owner['name-date'].'+00:00', DateTimeFormat::ATOM);
622 $uridate = DateTimeFormat::utc($owner['uri-date'].'+00:00', DateTimeFormat::ATOM);
623 $picdate = DateTimeFormat::utc($owner['avatar-date'].'+00:00', DateTimeFormat::ATOM);
627 if (!$public || !$hidewall) {
628 $attributes = ["dfrn:updated" => $namdate];
631 XML::addElement($doc, $author, "name", $owner["name"], $attributes);
632 XML::addElement($doc, $author, "uri", System::baseUrl().'/profile/'.$owner["nickname"], $attributes);
633 XML::addElement($doc, $author, "dfrn:handle", $owner["addr"], $attributes);
635 $attributes = ["rel" => "photo", "type" => "image/jpeg",
636 "media:width" => 175, "media:height" => 175, "href" => $owner['photo']];
638 if (!$public || !$hidewall) {
639 $attributes["dfrn:updated"] = $picdate;
642 XML::addElement($doc, $author, "link", "", $attributes);
644 $attributes["rel"] = "avatar";
645 XML::addElement($doc, $author, "link", "", $attributes);
648 XML::addElement($doc, $author, "dfrn:hide", "true");
651 // The following fields will only be generated if the data isn't meant for a public feed
656 $birthday = feed_birthday($owner['uid'], $owner['timezone']);
659 XML::addElement($doc, $author, "dfrn:birthday", $birthday);
662 // Only show contact details when we are allowed to
664 "SELECT `profile`.`about`, `profile`.`name`, `profile`.`homepage`, `user`.`nickname`,
665 `user`.`timezone`, `profile`.`locality`, `profile`.`region`, `profile`.`country-name`,
666 `profile`.`pub_keywords`, `profile`.`xmpp`, `profile`.`dob`
668 INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
669 WHERE `profile`.`is-default` AND NOT `user`.`hidewall` AND `user`.`uid` = %d",
670 intval($owner['uid'])
672 if (DBM::is_result($r)) {
675 XML::addElement($doc, $author, "poco:displayName", $profile["name"]);
676 XML::addElement($doc, $author, "poco:updated", $namdate);
678 if (trim($profile["dob"]) > '0001-01-01') {
679 XML::addElement($doc, $author, "poco:birthday", "0000-".date("m-d", strtotime($profile["dob"])));
682 XML::addElement($doc, $author, "poco:note", $profile["about"]);
683 XML::addElement($doc, $author, "poco:preferredUsername", $profile["nickname"]);
685 $savetz = date_default_timezone_get();
686 date_default_timezone_set($profile["timezone"]);
687 XML::addElement($doc, $author, "poco:utcOffset", date("P"));
688 date_default_timezone_set($savetz);
690 if (trim($profile["homepage"]) != "") {
691 $urls = $doc->createElement("poco:urls");
692 XML::addElement($doc, $urls, "poco:type", "homepage");
693 XML::addElement($doc, $urls, "poco:value", $profile["homepage"]);
694 XML::addElement($doc, $urls, "poco:primary", "true");
695 $author->appendChild($urls);
698 if (trim($profile["pub_keywords"]) != "") {
699 $keywords = explode(",", $profile["pub_keywords"]);
701 foreach ($keywords as $keyword) {
702 XML::addElement($doc, $author, "poco:tags", trim($keyword));
706 if (trim($profile["xmpp"]) != "") {
707 $ims = $doc->createElement("poco:ims");
708 XML::addElement($doc, $ims, "poco:type", "xmpp");
709 XML::addElement($doc, $ims, "poco:value", $profile["xmpp"]);
710 XML::addElement($doc, $ims, "poco:primary", "true");
711 $author->appendChild($ims);
714 if (trim($profile["locality"].$profile["region"].$profile["country-name"]) != "") {
715 $element = $doc->createElement("poco:address");
717 XML::addElement($doc, $element, "poco:formatted", Profile::formatLocation($profile));
719 if (trim($profile["locality"]) != "") {
720 XML::addElement($doc, $element, "poco:locality", $profile["locality"]);
723 if (trim($profile["region"]) != "") {
724 XML::addElement($doc, $element, "poco:region", $profile["region"]);
727 if (trim($profile["country-name"]) != "") {
728 XML::addElement($doc, $element, "poco:country", $profile["country-name"]);
731 $author->appendChild($element);
739 * @brief Adds the author elements in the "entry" elements of the DFRN protocol
741 * @param object $doc XML document
742 * @param string $element Element name for the author
743 * @param string $contact_url Link of the contact
744 * @param array $item Item elements
746 * @return object XML author object
747 * @todo Add type-hints
749 private static function addEntryAuthor($doc, $element, $contact_url, $item)
751 $contact = Contact::getDetailsByURL($contact_url, $item["uid"]);
753 $author = $doc->createElement($element);
754 XML::addElement($doc, $author, "name", $contact["name"]);
755 XML::addElement($doc, $author, "uri", $contact["url"]);
756 XML::addElement($doc, $author, "dfrn:handle", $contact["addr"]);
759 /// - Check real image type and image size
760 /// - Check which of these boths elements we should use
763 "type" => "image/jpeg",
765 "media:height" => 80,
766 "href" => $contact["photo"]];
767 XML::addElement($doc, $author, "link", "", $attributes);
771 "type" => "image/jpeg",
773 "media:height" => 80,
774 "href" => $contact["photo"]];
775 XML::addElement($doc, $author, "link", "", $attributes);
781 * @brief Adds the activity elements
783 * @param object $doc XML document
784 * @param string $element Element name for the activity
785 * @param string $activity activity value
787 * @return object XML activity object
788 * @todo Add type-hints
790 private static function createActivity($doc, $element, $activity)
793 $entry = $doc->createElement($element);
795 $r = XML::parseString($activity, false);
800 XML::addElement($doc, $entry, "activity:object-type", $r->type);
803 XML::addElement($doc, $entry, "id", $r->id);
806 XML::addElement($doc, $entry, "title", $r->title);
810 if (substr($r->link, 0, 1) == '<') {
811 if (strstr($r->link, '&') && (! strstr($r->link, '&'))) {
812 $r->link = str_replace('&', '&', $r->link);
815 $r->link = preg_replace('/\<link(.*?)\"\>/', '<link$1"/>', $r->link);
817 // XML does need a single element as root element so we add a dummy element here
818 $data = XML::parseString("<dummy>" . $r->link . "</dummy>", false);
819 if (is_object($data)) {
820 foreach ($data->link as $link) {
822 foreach ($link->attributes() as $parameter => $value) {
823 $attributes[$parameter] = $value;
825 XML::addElement($doc, $entry, "link", "", $attributes);
829 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $r->link];
830 XML::addElement($doc, $entry, "link", "", $attributes);
834 XML::addElement($doc, $entry, "content", BBCode::convert($r->content), ["type" => "html"]);
844 * @brief Adds the elements for attachments
846 * @param object $doc XML document
847 * @param object $root XML root
848 * @param array $item Item element
850 * @return object XML attachment object
851 * @todo Add type-hints
853 private static function getAttachment($doc, $root, $item)
855 $arr = explode('[/attach],', $item['attach']);
857 foreach ($arr as $r) {
859 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|', $r, $matches);
861 $attributes = ["rel" => "enclosure",
862 "href" => $matches[1],
863 "type" => $matches[3]];
865 if (intval($matches[2])) {
866 $attributes["length"] = intval($matches[2]);
869 if (trim($matches[4]) != "") {
870 $attributes["title"] = trim($matches[4]);
873 XML::addElement($doc, $root, "link", "", $attributes);
880 * @brief Adds the "entry" elements for the DFRN protocol
882 * @param object $doc XML document
883 * @param string $type "text" or "html"
884 * @param array $item Item element
885 * @param array $owner Owner record
886 * @param bool $comment Trigger the sending of the "comment" element
887 * @param int $cid Contact ID of the recipient
888 * @param bool $single If set, the entry is created as an XML document with a single "entry" element
890 * @return object XML entry object
891 * @todo Add type-hints
893 private static function entry($doc, $type, $item, $owner, $comment = false, $cid = 0, $single = false)
897 if (!$item['parent']) {
901 if ($item['deleted']) {
902 $attributes = ["ref" => $item['uri'], "when" => DateTimeFormat::utc($item['edited'] . '+00:00', DateTimeFormat::ATOM)];
903 return XML::createElement($doc, "at:deleted-entry", "", $attributes);
907 $entry = $doc->createElement("entry");
909 $entry = $doc->createElementNS(NAMESPACE_ATOM1, 'entry');
910 $doc->appendChild($entry);
912 $entry->setAttribute("xmlns:thr", NAMESPACE_THREAD);
913 $entry->setAttribute("xmlns:at", NAMESPACE_TOMB);
914 $entry->setAttribute("xmlns:media", NAMESPACE_MEDIA);
915 $entry->setAttribute("xmlns:dfrn", NAMESPACE_DFRN);
916 $entry->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
917 $entry->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
918 $entry->setAttribute("xmlns:poco", NAMESPACE_POCO);
919 $entry->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
920 $entry->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
923 if ($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid']) {
924 $body = Item::fixPrivatePhotos($item['body'], $owner['uid'], $item, $cid);
926 $body = $item['body'];
929 // Remove the abstract element. It is only locally important.
930 $body = BBCode::stripAbstract($body);
933 if ($type == 'html') {
936 if ($item['title'] != "") {
937 $htmlbody = "[b]".$item['title']."[/b]\n\n".$htmlbody;
940 $htmlbody = BBCode::convert($htmlbody, false, 7);
943 $author = self::addEntryAuthor($doc, "author", $item["author-link"], $item);
944 $entry->appendChild($author);
946 $dfrnowner = self::addEntryAuthor($doc, "dfrn:owner", $item["owner-link"], $item);
947 $entry->appendChild($dfrnowner);
949 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
950 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
951 $parent = q("SELECT `guid`,`plink` FROM `item` WHERE `uri` = '%s' AND `uid` = %d", dbesc($parent_item), intval($item['uid']));
952 $attributes = ["ref" => $parent_item, "type" => "text/html",
953 "href" => $parent[0]['plink'],
954 "dfrn:diaspora_guid" => $parent[0]['guid']];
955 XML::addElement($doc, $entry, "thr:in-reply-to", "", $attributes);
958 // Add conversation data. This is used for OStatus
959 $conversation_href = System::baseUrl()."/display/".$owner["nick"]."/".$item["parent"];
960 $conversation_uri = $conversation_href;
962 if (isset($parent_item)) {
963 $r = dba::fetch_first("SELECT `conversation-uri`, `conversation-href` FROM `conversation` WHERE `item-uri` = ?", $item['parent-uri']);
964 if (DBM::is_result($r)) {
965 if ($r['conversation-uri'] != '') {
966 $conversation_uri = $r['conversation-uri'];
968 if ($r['conversation-href'] != '') {
969 $conversation_href = $r['conversation-href'];
975 "href" => $conversation_href,
976 "ref" => $conversation_uri];
978 XML::addElement($doc, $entry, "ostatus:conversation", $conversation_uri, $attributes);
980 XML::addElement($doc, $entry, "id", $item["uri"]);
981 XML::addElement($doc, $entry, "title", $item["title"]);
983 XML::addElement($doc, $entry, "published", DateTimeFormat::utc($item["created"] . "+00:00", DateTimeFormat::ATOM));
984 XML::addElement($doc, $entry, "updated", DateTimeFormat::utc($item["edited"] . "+00:00", DateTimeFormat::ATOM));
986 // "dfrn:env" is used to read the content
987 XML::addElement($doc, $entry, "dfrn:env", base64url_encode($body, true));
989 // The "content" field is not read by the receiver. We could remove it when the type is "text"
990 // We keep it at the moment, maybe there is some old version that doesn't read "dfrn:env"
991 XML::addElement($doc, $entry, "content", (($type == 'html') ? $htmlbody : $body), ["type" => $type]);
993 // We save this value in "plink". Maybe we should read it from there as well?
999 ["rel" => "alternate", "type" => "text/html",
1000 "href" => System::baseUrl() . "/display/" . $item["guid"]]
1003 // "comment-allow" is some old fashioned stuff for old Friendica versions.
1004 // It is included in the rewritten code for completeness
1006 XML::addElement($doc, $entry, "dfrn:comment-allow", 1);
1009 if ($item['location']) {
1010 XML::addElement($doc, $entry, "dfrn:location", $item['location']);
1013 if ($item['coord']) {
1014 XML::addElement($doc, $entry, "georss:point", $item['coord']);
1017 if (($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid'])) {
1018 XML::addElement($doc, $entry, "dfrn:private", (($item['private']) ? $item['private'] : 1));
1021 if ($item['extid']) {
1022 XML::addElement($doc, $entry, "dfrn:extid", $item['extid']);
1025 if ($item['bookmark']) {
1026 XML::addElement($doc, $entry, "dfrn:bookmark", "true");
1030 XML::addElement($doc, $entry, "statusnet:notice_info", "", ["local_id" => $item['id'], "source" => $item['app']]);
1033 XML::addElement($doc, $entry, "dfrn:diaspora_guid", $item["guid"]);
1035 // The signed text contains the content in Markdown, the sender handle and the signatur for the content
1036 // It is needed for relayed comments to Diaspora.
1037 if ($item['signed_text']) {
1038 $sign = base64_encode(json_encode(['signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer']]));
1039 XML::addElement($doc, $entry, "dfrn:diaspora_signature", $sign);
1042 XML::addElement($doc, $entry, "activity:verb", self::constructVerb($item));
1044 if ($item['object-type'] != "") {
1045 XML::addElement($doc, $entry, "activity:object-type", $item['object-type']);
1046 } elseif ($item['id'] == $item['parent']) {
1047 XML::addElement($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
1049 XML::addElement($doc, $entry, "activity:object-type", ACTIVITY_OBJ_COMMENT);
1052 $actobj = self::createActivity($doc, "activity:object", $item['object']);
1054 $entry->appendChild($actobj);
1057 $actarg = self::createActivity($doc, "activity:target", $item['target']);
1059 $entry->appendChild($actarg);
1062 $tags = Item::getFeedTags($item);
1065 foreach ($tags as $t) {
1066 if (($type != 'html') || ($t[0] != "@")) {
1067 XML::addElement($doc, $entry, "category", "", ["scheme" => "X-DFRN:".$t[0].":".$t[1], "term" => $t[2]]);
1073 foreach ($tags as $t) {
1075 $mentioned[$t[1]] = $t[1];
1080 foreach ($mentioned as $mention) {
1082 "SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
1083 intval($owner["uid"]),
1084 dbesc(normalise_link($mention))
1087 if (DBM::is_result($r) && ($r[0]["forum"] || $r[0]["prv"])) {
1093 ["rel" => "mentioned",
1094 "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
1103 ["rel" => "mentioned",
1104 "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
1110 self::getAttachment($doc, $entry, $item);
1116 * @brief encrypts data via AES
1118 * @param string $data The data that is to be encrypted
1119 * @param string $key The AES key
1121 * @return string encrypted data
1123 private static function aesEncrypt($data, $key)
1125 return openssl_encrypt($data, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1129 * @brief decrypts data via AES
1131 * @param string $encrypted The encrypted data
1132 * @param string $key The AES key
1134 * @return string decrypted data
1136 public static function aesDecrypt($encrypted, $key)
1138 return openssl_decrypt($encrypted, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1142 * @brief Delivers the atom content to the contacts
1144 * @param array $owner Owner record
1145 * @param array $contact Contact record of the receiver
1146 * @param string $atom Content that will be transmitted
1147 * @param bool $dissolve (to be documented)
1149 * @return int Deliver status. Negative values mean an error.
1150 * @todo Add array type-hint for $owner, $contact
1152 public static function deliver($owner, $contact, $atom, $dissolve = false)
1156 // At first try the Diaspora transport layer
1157 $ret = self::transmit($owner, $contact, $atom);
1159 logger('Delivery via Diaspora transport layer was successful with status ' . $ret);
1163 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
1165 if ($contact['duplex'] && $contact['dfrn-id']) {
1166 $idtosend = '0:' . $orig_id;
1168 if ($contact['duplex'] && $contact['issued-id']) {
1169 $idtosend = '1:' . $orig_id;
1172 $rino = Config::get('system', 'rino_encrypt');
1173 $rino = intval($rino);
1175 logger("Local rino version: ". $rino, LOGGER_DEBUG);
1177 $ssl_val = intval(Config::get('system', 'ssl_policy'));
1181 case SSL_POLICY_FULL:
1182 $ssl_policy = 'full';
1184 case SSL_POLICY_SELFSIGN:
1185 $ssl_policy = 'self';
1187 case SSL_POLICY_NONE:
1189 $ssl_policy = 'none';
1193 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino='.$rino : '');
1195 logger('dfrn_deliver: ' . $url);
1197 $ret = Network::curl($url);
1199 if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
1200 Contact::markForArchival($contact);
1201 return -2; // timed out
1204 $xml = $ret['body'];
1206 $curl_stat = $a->get_curl_code();
1207 if (empty($curl_stat)) {
1208 Contact::markForArchival($contact);
1209 return -3; // timed out
1212 logger('dfrn_deliver: ' . $xml, LOGGER_DATA);
1215 Contact::markForArchival($contact);
1219 if (strpos($xml, '<?xml') === false) {
1220 logger('dfrn_deliver: no valid XML returned');
1221 logger('dfrn_deliver: returned XML: ' . $xml, LOGGER_DATA);
1222 Contact::markForArchival($contact);
1226 $res = XML::parseString($xml);
1228 if ((intval($res->status) != 0) || !strlen($res->challenge) || !strlen($res->dfrn_id)) {
1229 Contact::markForArchival($contact);
1230 return ($res->status ? $res->status : 3);
1234 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
1235 $challenge = hex2bin((string) $res->challenge);
1236 $perm = (($res->perm) ? $res->perm : null);
1237 $dfrn_version = (float) (($res->dfrn_version) ? $res->dfrn_version : 2.0);
1238 $rino_remote_version = intval($res->rino);
1239 $page = (($owner['page-flags'] == PAGE_COMMUNITY) ? 1 : 0);
1241 logger("Remote rino version: ".$rino_remote_version." for ".$contact["url"], LOGGER_DEBUG);
1243 if ($owner['page-flags'] == PAGE_PRVGROUP) {
1247 $final_dfrn_id = '';
1250 if ((($perm == 'rw') && (! intval($contact['writable'])))
1251 || (($perm == 'r') && (intval($contact['writable'])))
1254 "update contact set writable = %d where id = %d",
1255 intval(($perm == 'rw') ? 1 : 0),
1256 intval($contact['id'])
1258 $contact['writable'] = (string) 1 - intval($contact['writable']);
1262 if (($contact['duplex'] && strlen($contact['pubkey']))
1263 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
1264 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))
1266 openssl_public_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['pubkey']);
1267 openssl_public_decrypt($challenge, $postvars['challenge'], $contact['pubkey']);
1269 openssl_private_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['prvkey']);
1270 openssl_private_decrypt($challenge, $postvars['challenge'], $contact['prvkey']);
1273 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
1275 if (strpos($final_dfrn_id, ':') == 1) {
1276 $final_dfrn_id = substr($final_dfrn_id, 2);
1279 if ($final_dfrn_id != $orig_id) {
1280 logger('dfrn_deliver: wrong dfrn_id.');
1281 // did not decode properly - cannot trust this site
1282 Contact::markForArchival($contact);
1286 $postvars['dfrn_id'] = $idtosend;
1287 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
1289 $postvars['dissolve'] = '1';
1293 if ((($contact['rel']) && ($contact['rel'] != CONTACT_IS_SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1294 $postvars['data'] = $atom;
1295 $postvars['perm'] = 'rw';
1297 $postvars['data'] = str_replace('<dfrn:comment-allow>1', '<dfrn:comment-allow>0', $atom);
1298 $postvars['perm'] = 'r';
1301 $postvars['ssl_policy'] = $ssl_policy;
1304 $postvars['page'] = $page;
1308 if ($rino > 0 && $rino_remote_version > 0 && (! $dissolve)) {
1309 logger('rino version: '. $rino_remote_version);
1311 switch ($rino_remote_version) {
1313 $key = openssl_random_pseudo_bytes(16);
1314 $data = self::aesEncrypt($postvars['data'], $key);
1317 logger("rino: invalid requested version '$rino_remote_version'");
1318 Contact::markForArchival($contact);
1322 $postvars['rino'] = $rino_remote_version;
1323 $postvars['data'] = bin2hex($data);
1325 if ($dfrn_version >= 2.1) {
1326 if (($contact['duplex'] && strlen($contact['pubkey']))
1327 || ($owner['page-flags'] == PAGE_COMMUNITY && strlen($contact['pubkey']))
1328 || ($contact['rel'] == CONTACT_IS_SHARING && strlen($contact['pubkey']))
1330 openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1332 openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1335 if (($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
1336 openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1338 openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1342 logger('md5 rawkey ' . md5($postvars['key']));
1344 $postvars['key'] = bin2hex($postvars['key']);
1348 logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars, true), LOGGER_DATA);
1350 $xml = Network::post($contact['notify'], $postvars);
1352 logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
1354 $curl_stat = $a->get_curl_code();
1355 if (empty($curl_stat) || empty($xml)) {
1356 Contact::markForArchival($contact);
1357 return -9; // timed out
1360 if (($curl_stat == 503) && stristr($a->get_curl_headers(), 'retry-after')) {
1361 Contact::markForArchival($contact);
1365 if (strpos($xml, '<?xml') === false) {
1366 logger('dfrn_deliver: phase 2: no valid XML returned');
1367 logger('dfrn_deliver: phase 2: returned XML: ' . $xml, LOGGER_DATA);
1368 Contact::markForArchival($contact);
1372 $res = XML::parseString($xml);
1374 if (!isset($res->status)) {
1375 Contact::markForArchival($contact);
1379 // Possibly old servers had returned an empty value when everything was okay
1380 if (empty($res->status)) {
1384 if (!empty($res->message)) {
1385 logger('Delivery returned status '.$res->status.' - '.$res->message, LOGGER_DEBUG);
1388 if (($res->status >= 200) && ($res->status <= 299)) {
1389 Contact::unmarkForArchival($contact);
1392 return intval($res->status);
1396 * @brief Transmits atom content to the contacts via the Diaspora transport layer
1398 * @param array $owner Owner record
1399 * @param array $contact Contact record of the receiver
1400 * @param string $atom Content that will be transmitted
1402 * @return int Deliver status. Negative values mean an error.
1404 public static function transmit($owner, $contact, $atom, $public_batch = false)
1408 if (!$public_batch) {
1409 if (empty($contact['addr'])) {
1410 logger('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.');
1411 if (Contact::updateFromProbe($contact['id'])) {
1412 $new_contact = dba::selectFirst('contact', ['addr'], ['id' => $contact['id']]);
1413 $contact['addr'] = $new_contact['addr'];
1416 if (empty($contact['addr'])) {
1417 logger('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
1418 Contact::markForArchival($contact);
1423 $fcontact = Diaspora::personByHandle($contact['addr']);
1424 if (empty($fcontact)) {
1425 logger('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
1426 Contact::markForArchival($contact);
1429 $pubkey = $fcontact['pubkey'];
1434 $envelope = Diaspora::buildMessage($atom, $owner, $contact, $owner['uprvkey'], $pubkey, $public_batch);
1436 // Create the endpoint for public posts. This is some WIP and should later be added to the probing
1437 if ($public_batch && empty($contact["batch"])) {
1438 $parts = parse_url($contact["notify"]);
1439 $path_parts = explode('/', $parts['path']);
1440 array_pop($path_parts);
1441 $parts['path'] = implode('/', $path_parts);
1442 $contact["batch"] = Network::unparseURL($parts);
1445 $dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
1447 $content_type = ($public_batch ? "application/magic-envelope+xml" : "application/json");
1449 $xml = Network::post($dest_url, $envelope, ["Content-Type: ".$content_type]);
1451 $curl_stat = $a->get_curl_code();
1452 if (empty($curl_stat) || empty($xml)) {
1453 logger('Empty answer from ' . $contact['id'] . ' - ' . $dest_url);
1454 Contact::markForArchival($contact);
1455 return -9; // timed out
1458 if (($curl_stat == 503) && (stristr($a->get_curl_headers(), 'retry-after'))) {
1459 Contact::markForArchival($contact);
1463 if (strpos($xml, '<?xml') === false) {
1464 logger('No valid XML returned from ' . $contact['id'] . ' - ' . $dest_url);
1465 logger('Returned XML: ' . $xml, LOGGER_DATA);
1466 Contact::markForArchival($contact);
1470 $res = XML::parseString($xml);
1472 if (empty($res->status)) {
1473 Contact::markForArchival($contact);
1477 if (!empty($res->message)) {
1478 logger('Transmit to ' . $dest_url . ' returned status '.$res->status.' - '.$res->message, LOGGER_DEBUG);
1481 if (($res->status >= 200) && ($res->status <= 299)) {
1482 Contact::unmarkForArchival($contact);
1485 return intval($res->status);
1489 * @brief Add new birthday event for this person
1491 * @param array $contact Contact record
1492 * @param string $birthday Birthday of the contact
1494 * @todo Add array type-hint for $contact
1496 private static function birthdayEvent($contact, $birthday)
1498 // Check for duplicates
1500 "SELECT `id` FROM `event` WHERE `uid` = %d AND `cid` = %d AND `start` = '%s' AND `type` = '%s' LIMIT 1",
1501 intval($contact['uid']),
1502 intval($contact['id']),
1503 dbesc(DateTimeFormat::utc($birthday)),
1507 if (DBM::is_result($r)) {
1511 logger('updating birthday: ' . $birthday . ' for contact ' . $contact['id']);
1513 $bdtext = L10n::t('%s\'s birthday', $contact['name']);
1514 $bdtext2 = L10n::t('Happy Birthday %s', ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]');
1517 "INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`summary`,`desc`,`type`)
1518 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s') ",
1519 intval($contact['uid']),
1520 intval($contact['id']),
1521 dbesc(DateTimeFormat::utcNow()),
1522 dbesc(DateTimeFormat::utcNow()),
1523 dbesc(DateTimeFormat::utc($birthday)),
1524 dbesc(DateTimeFormat::utc($birthday . ' + 1 day ')),
1532 * @brief Fetch the author data from head or entry items
1534 * @param object $xpath XPath object
1535 * @param object $context In which context should the data be searched
1536 * @param array $importer Record of the importer user mixed with contact of the content
1537 * @param string $element Element name from which the data is fetched
1538 * @param bool $onlyfetch Should the data only be fetched or should it update the contact record as well
1539 * @param string $xml optional, default empty
1541 * @return array Relevant data of the author
1542 * @todo Find good type-hints for all parameter
1544 private static function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "")
1547 $author["name"] = $xpath->evaluate($element."/atom:name/text()", $context)->item(0)->nodeValue;
1548 $author["link"] = $xpath->evaluate($element."/atom:uri/text()", $context)->item(0)->nodeValue;
1550 $contact_old = dba::fetch_first("SELECT `id`, `uid`, `url`, `network`, `avatar-date`, `avatar`, `name-date`, `uri-date`, `addr`,
1551 `name`, `nick`, `about`, `location`, `keywords`, `xmpp`, `bdyear`, `bd`, `hidden`, `contact-type`
1552 FROM `contact` WHERE `uid` = ? AND `nurl` = ? AND `network` != ?",
1553 $importer["importer_uid"],
1554 normalise_link($author["link"]),
1558 if (DBM::is_result($contact_old)) {
1559 $author["contact-id"] = $contact_old["id"];
1560 $author["network"] = $contact_old["network"];
1563 logger("Contact ".$author["link"]." wasn't found for user ".$importer["importer_uid"]." XML: ".$xml, LOGGER_DEBUG);
1566 $author["contact-id"] = $importer["id"];
1567 $author["network"] = $importer["network"];
1571 // Until now we aren't serving different sizes - but maybe later
1573 /// @todo check if "avatar" or "photo" would be the best field in the specification
1574 $avatars = $xpath->query($element."/atom:link[@rel='avatar']", $context);
1575 foreach ($avatars as $avatar) {
1578 foreach ($avatar->attributes as $attributes) {
1579 /// @TODO Rewrite these similar if () to one switch
1580 if ($attributes->name == "href") {
1581 $href = $attributes->textContent;
1583 if ($attributes->name == "width") {
1584 $width = $attributes->textContent;
1586 if ($attributes->name == "updated") {
1587 $author["avatar-date"] = $attributes->textContent;
1590 if (($width > 0) && ($href != "")) {
1591 $avatarlist[$width] = $href;
1594 if (count($avatarlist) > 0) {
1595 krsort($avatarlist);
1596 $author["avatar"] = current($avatarlist);
1599 if (DBM::is_result($contact_old) && !$onlyfetch) {
1600 logger("Check if contact details for contact " . $contact_old["id"] . " (" . $contact_old["nick"] . ") have to be updated.", LOGGER_DEBUG);
1602 $poco = ["url" => $contact_old["url"]];
1604 // When was the last change to name or uri?
1605 $name_element = $xpath->query($element . "/atom:name", $context)->item(0);
1606 foreach ($name_element->attributes as $attributes) {
1607 if ($attributes->name == "updated") {
1608 $poco["name-date"] = $attributes->textContent;
1612 $link_element = $xpath->query($element . "/atom:link", $context)->item(0);
1613 foreach ($link_element->attributes as $attributes) {
1614 if ($attributes->name == "updated") {
1615 $poco["uri-date"] = $attributes->textContent;
1619 // Update contact data
1620 $value = $xpath->evaluate($element . "/dfrn:handle/text()", $context)->item(0)->nodeValue;
1622 $poco["addr"] = $value;
1625 $value = $xpath->evaluate($element . "/poco:displayName/text()", $context)->item(0)->nodeValue;
1627 $poco["name"] = $value;
1630 $value = $xpath->evaluate($element . "/poco:preferredUsername/text()", $context)->item(0)->nodeValue;
1632 $poco["nick"] = $value;
1635 $value = $xpath->evaluate($element . "/poco:note/text()", $context)->item(0)->nodeValue;
1637 $poco["about"] = $value;
1640 $value = $xpath->evaluate($element . "/poco:address/poco:formatted/text()", $context)->item(0)->nodeValue;
1642 $poco["location"] = $value;
1645 /// @todo Only search for elements with "poco:type" = "xmpp"
1646 $value = $xpath->evaluate($element . "/poco:ims/poco:value/text()", $context)->item(0)->nodeValue;
1648 $poco["xmpp"] = $value;
1651 /// @todo Add support for the following fields that we don't support by now in the contact table:
1652 /// - poco:utcOffset
1658 // If the "hide" element is present then the profile isn't searchable.
1659 $hide = intval($xpath->evaluate($element . "/dfrn:hide/text()", $context)->item(0)->nodeValue == "true");
1661 logger("Hidden status for contact " . $contact_old["url"] . ": " . $hide, LOGGER_DEBUG);
1663 // If the contact isn't searchable then set the contact to "hidden".
1664 // Problem: This can be manually overridden by the user.
1666 $contact_old["hidden"] = true;
1669 // Save the keywords into the contact table
1671 $tagelements = $xpath->evaluate($element . "/poco:tags/text()", $context);
1672 foreach ($tagelements as $tag) {
1673 $tags[$tag->nodeValue] = $tag->nodeValue;
1677 $poco["keywords"] = implode(", ", $tags);
1680 // "dfrn:birthday" contains the birthday converted to UTC
1681 $birthday = $xpath->evaluate($element . "/dfrn:birthday/text()", $context)->item(0)->nodeValue;
1683 if (strtotime($birthday) > time()) {
1684 $bd_timestamp = strtotime($birthday);
1686 $poco["bdyear"] = date("Y", $bd_timestamp);
1689 // "poco:birthday" is the birthday in the format "yyyy-mm-dd"
1690 $value = $xpath->evaluate($element . "/poco:birthday/text()", $context)->item(0)->nodeValue;
1692 if (!in_array($value, ["", "0000-00-00", "0001-01-01"])) {
1693 $bdyear = date("Y");
1694 $value = str_replace("0000", $bdyear, $value);
1696 if (strtotime($value) < time()) {
1697 $value = str_replace($bdyear, $bdyear + 1, $value);
1698 $bdyear = $bdyear + 1;
1701 $poco["bd"] = $value;
1704 $contact = array_merge($contact_old, $poco);
1706 if ($contact_old["bdyear"] != $contact["bdyear"]) {
1707 self::birthdayEvent($contact, $birthday);
1710 // Get all field names
1712 foreach ($contact_old as $field => $data) {
1713 $fields[$field] = $data;
1716 unset($fields["id"]);
1717 unset($fields["uid"]);
1718 unset($fields["url"]);
1719 unset($fields["avatar-date"]);
1720 unset($fields["avatar"]);
1721 unset($fields["name-date"]);
1722 unset($fields["uri-date"]);
1725 // Update check for this field has to be done differently
1726 $datefields = ["name-date", "uri-date"];
1727 foreach ($datefields as $field) {
1728 if (strtotime($contact[$field]) > strtotime($contact_old[$field])) {
1729 logger("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $contact_old[$field] . "'", LOGGER_DEBUG);
1734 foreach ($fields as $field => $data) {
1735 if ($contact[$field] != $contact_old[$field]) {
1736 logger("Difference for contact " . $contact["id"] . " in field '" . $field . "'. New value: '" . $contact[$field] . "', old value '" . $contact_old[$field] . "'", LOGGER_DEBUG);
1742 logger("Update contact data for contact " . $contact["id"] . " (" . $contact["nick"] . ")", LOGGER_DEBUG);
1745 "UPDATE `contact` SET `name` = '%s', `nick` = '%s', `about` = '%s', `location` = '%s',
1746 `addr` = '%s', `keywords` = '%s', `bdyear` = '%s', `bd` = '%s', `hidden` = %d,
1747 `xmpp` = '%s', `name-date` = '%s', `uri-date` = '%s'
1748 WHERE `id` = %d AND `network` = '%s'",
1749 dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["about"]), dbesc($contact["location"]),
1750 dbesc($contact["addr"]), dbesc($contact["keywords"]), dbesc($contact["bdyear"]),
1751 dbesc($contact["bd"]), intval($contact["hidden"]), dbesc($contact["xmpp"]),
1752 dbesc(DBM::date($contact["name-date"])), dbesc(DBM::date($contact["uri-date"])),
1753 intval($contact["id"]), dbesc($contact["network"])
1757 Contact::updateAvatar(
1759 $importer['importer_uid'],
1761 (strtotime($contact['avatar-date']) > strtotime($contact_old['avatar-date']) || ($author['avatar'] != $contact_old['avatar']))
1765 * The generation is a sign for the reliability of the provided data.
1766 * It is used in the socgraph.php to prevent that old contact data
1767 * that was relayed over several servers can overwrite contact
1768 * data that we received directly.
1771 $poco["generation"] = 2;
1772 $poco["photo"] = $author["avatar"];
1773 $poco["hide"] = $hide;
1774 $poco["contact-type"] = $contact["contact-type"];
1775 $gcid = GContact::update($poco);
1777 GContact::link($gcid, $importer["importer_uid"], $contact["id"]);
1784 * @brief Transforms activity objects into an XML string
1786 * @param object $xpath XPath object
1787 * @param object $activity Activity object
1788 * @param string $element element name
1790 * @return string XML string
1791 * @todo Find good type-hints for all parameter
1793 private static function transformActivity($xpath, $activity, $element)
1795 if (!is_object($activity)) {
1799 $obj_doc = new DOMDocument("1.0", "utf-8");
1800 $obj_doc->formatOutput = true;
1802 $obj_element = $obj_doc->createElementNS(NAMESPACE_ATOM1, $element);
1804 $activity_type = $xpath->query("activity:object-type/text()", $activity)->item(0)->nodeValue;
1805 XML::addElement($obj_doc, $obj_element, "type", $activity_type);
1807 $id = $xpath->query("atom:id", $activity)->item(0);
1808 if (is_object($id)) {
1809 $obj_element->appendChild($obj_doc->importNode($id, true));
1812 $title = $xpath->query("atom:title", $activity)->item(0);
1813 if (is_object($title)) {
1814 $obj_element->appendChild($obj_doc->importNode($title, true));
1817 $links = $xpath->query("atom:link", $activity);
1818 if (is_object($links)) {
1819 foreach ($links as $link) {
1820 $obj_element->appendChild($obj_doc->importNode($link, true));
1824 $content = $xpath->query("atom:content", $activity)->item(0);
1825 if (is_object($content)) {
1826 $obj_element->appendChild($obj_doc->importNode($content, true));
1829 $obj_doc->appendChild($obj_element);
1831 $objxml = $obj_doc->saveXML($obj_element);
1833 /// @todo This isn't totally clean. We should find a way to transform the namespaces
1834 $objxml = str_replace("<".$element.' xmlns="http://www.w3.org/2005/Atom">', "<".$element.">", $objxml);
1839 * @brief Processes the mail elements
1841 * @param object $xpath XPath object
1842 * @param object $mail mail elements
1843 * @param array $importer Record of the importer user mixed with contact of the content
1845 * @todo Find good type-hints for all parameter
1847 private static function processMail($xpath, $mail, $importer)
1849 logger("Processing mails");
1851 /// @TODO Rewrite this to one statement
1853 $msg["uid"] = $importer["importer_uid"];
1854 $msg["from-name"] = $xpath->query("dfrn:sender/dfrn:name/text()", $mail)->item(0)->nodeValue;
1855 $msg["from-url"] = $xpath->query("dfrn:sender/dfrn:uri/text()", $mail)->item(0)->nodeValue;
1856 $msg["from-photo"] = $xpath->query("dfrn:sender/dfrn:avatar/text()", $mail)->item(0)->nodeValue;
1857 $msg["contact-id"] = $importer["id"];
1858 $msg["uri"] = $xpath->query("dfrn:id/text()", $mail)->item(0)->nodeValue;
1859 $msg["parent-uri"] = $xpath->query("dfrn:in-reply-to/text()", $mail)->item(0)->nodeValue;
1860 $msg["created"] = DateTimeFormat::utc($xpath->query("dfrn:sentdate/text()", $mail)->item(0)->nodeValue);
1861 $msg["title"] = $xpath->query("dfrn:subject/text()", $mail)->item(0)->nodeValue;
1862 $msg["body"] = $xpath->query("dfrn:content/text()", $mail)->item(0)->nodeValue;
1864 $msg["replied"] = 0;
1866 dba::insert('mail', $msg);
1868 // send notifications.
1869 /// @TODO Arange this mess
1871 "type" => NOTIFY_MAIL,
1872 "notify_flags" => $importer["notify-flags"],
1873 "language" => $importer["language"],
1874 "to_name" => $importer["username"],
1875 "to_email" => $importer["email"],
1876 "uid" => $importer["importer_uid"],
1878 "source_name" => $msg["from-name"],
1879 "source_link" => $importer["url"],
1880 "source_photo" => $importer["thumb"],
1881 "verb" => ACTIVITY_POST,
1885 notification($notif_params);
1887 logger("Mail is processed, notification was sent.");
1891 * @brief Processes the suggestion elements
1893 * @param object $xpath XPath object
1894 * @param object $suggestion suggestion elements
1895 * @param array $importer Record of the importer user mixed with contact of the content
1897 * @todo Find good type-hints for all parameter
1899 private static function processSuggestion($xpath, $suggestion, $importer)
1903 logger("Processing suggestions");
1905 /// @TODO Rewrite this to one statement
1907 $suggest["uid"] = $importer["importer_uid"];
1908 $suggest["cid"] = $importer["id"];
1909 $suggest["url"] = $xpath->query("dfrn:url/text()", $suggestion)->item(0)->nodeValue;
1910 $suggest["name"] = $xpath->query("dfrn:name/text()", $suggestion)->item(0)->nodeValue;
1911 $suggest["photo"] = $xpath->query("dfrn:photo/text()", $suggestion)->item(0)->nodeValue;
1912 $suggest["request"] = $xpath->query("dfrn:request/text()", $suggestion)->item(0)->nodeValue;
1913 $suggest["body"] = $xpath->query("dfrn:note/text()", $suggestion)->item(0)->nodeValue;
1915 // Does our member already have a friend matching this description?
1918 "SELECT `id` FROM `contact` WHERE `name` = '%s' AND `nurl` = '%s' AND `uid` = %d LIMIT 1",
1919 dbesc($suggest["name"]),
1920 dbesc(normalise_link($suggest["url"])),
1921 intval($suggest["uid"])
1925 * The valid result means the friend we're about to send a friend
1926 * suggestion already has them in their contact, which means no further
1927 * action is required.
1929 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1931 if (DBM::is_result($r)) {
1935 // Do we already have an fcontact record for this person?
1939 "SELECT `id` FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1940 dbesc($suggest["url"]),
1941 dbesc($suggest["name"]),
1942 dbesc($suggest["request"])
1944 if (DBM::is_result($r)) {
1947 // OK, we do. Do we already have an introduction for this person ?
1949 "SELECT `id` FROM `intro` WHERE `uid` = %d AND `fid` = %d LIMIT 1",
1950 intval($suggest["uid"]),
1955 * The valid result means the friend we're about to send a friend
1956 * suggestion already has them in their contact, which means no further
1957 * action is required.
1959 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1961 if (DBM::is_result($r)) {
1967 "INSERT INTO `fcontact` (`name`,`url`,`photo`,`request`) VALUES ('%s', '%s', '%s', '%s')",
1968 dbesc($suggest["name"]),
1969 dbesc($suggest["url"]),
1970 dbesc($suggest["photo"]),
1971 dbesc($suggest["request"])
1975 "SELECT `id` FROM `fcontact` WHERE `url` = '%s' AND `name` = '%s' AND `request` = '%s' LIMIT 1",
1976 dbesc($suggest["url"]),
1977 dbesc($suggest["name"]),
1978 dbesc($suggest["request"])
1982 * If no record in fcontact is found, below INSERT statement will not
1983 * link an introduction to it.
1985 if (!DBM::is_result($r)) {
1986 // database record did not get created. Quietly give up.
1992 $hash = random_string();
1995 "INSERT INTO `intro` (`uid`, `fid`, `contact-id`, `note`, `hash`, `datetime`, `blocked`)
1996 VALUES(%d, %d, %d, '%s', '%s', '%s', %d)",
1997 intval($suggest["uid"]),
1999 intval($suggest["cid"]),
2000 dbesc($suggest["body"]),
2002 dbesc(DateTimeFormat::utcNow()),
2008 "type" => NOTIFY_SUGGEST,
2009 "notify_flags" => $importer["notify-flags"],
2010 "language" => $importer["language"],
2011 "to_name" => $importer["username"],
2012 "to_email" => $importer["email"],
2013 "uid" => $importer["importer_uid"],
2015 "link" => System::baseUrl()."/notifications/intros",
2016 "source_name" => $importer["name"],
2017 "source_link" => $importer["url"],
2018 "source_photo" => $importer["photo"],
2019 "verb" => ACTIVITY_REQ_FRIEND,
2027 * @brief Processes the relocation elements
2029 * @param object $xpath XPath object
2030 * @param object $relocation relocation elements
2031 * @param array $importer Record of the importer user mixed with contact of the content
2033 * @todo Find good type-hints for all parameter
2035 private static function processRelocation($xpath, $relocation, $importer)
2037 logger("Processing relocations");
2039 /// @TODO Rewrite this to one statement
2041 $relocate["uid"] = $importer["importer_uid"];
2042 $relocate["cid"] = $importer["id"];
2043 $relocate["url"] = $xpath->query("dfrn:url/text()", $relocation)->item(0)->nodeValue;
2044 $relocate["addr"] = $xpath->query("dfrn:addr/text()", $relocation)->item(0)->nodeValue;
2045 $relocate["name"] = $xpath->query("dfrn:name/text()", $relocation)->item(0)->nodeValue;
2046 $relocate["avatar"] = $xpath->query("dfrn:avatar/text()", $relocation)->item(0)->nodeValue;
2047 $relocate["photo"] = $xpath->query("dfrn:photo/text()", $relocation)->item(0)->nodeValue;
2048 $relocate["thumb"] = $xpath->query("dfrn:thumb/text()", $relocation)->item(0)->nodeValue;
2049 $relocate["micro"] = $xpath->query("dfrn:micro/text()", $relocation)->item(0)->nodeValue;
2050 $relocate["request"] = $xpath->query("dfrn:request/text()", $relocation)->item(0)->nodeValue;
2051 $relocate["confirm"] = $xpath->query("dfrn:confirm/text()", $relocation)->item(0)->nodeValue;
2052 $relocate["notify"] = $xpath->query("dfrn:notify/text()", $relocation)->item(0)->nodeValue;
2053 $relocate["poll"] = $xpath->query("dfrn:poll/text()", $relocation)->item(0)->nodeValue;
2054 $relocate["sitepubkey"] = $xpath->query("dfrn:sitepubkey/text()", $relocation)->item(0)->nodeValue;
2056 if (($relocate["avatar"] == "") && ($relocate["photo"] != "")) {
2057 $relocate["avatar"] = $relocate["photo"];
2060 if ($relocate["addr"] == "") {
2061 $relocate["addr"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$3@$2", $relocate["url"]);
2066 "SELECT `photo`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d;",
2067 intval($importer["id"]),
2068 intval($importer["importer_uid"])
2071 if (!DBM::is_result($r)) {
2072 logger("Query failed to execute, no result returned in " . __FUNCTION__);
2078 // Update the gcontact entry
2079 $relocate["server_url"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $relocate["url"]);
2081 $fields = ['name' => $relocate["name"], 'photo' => $relocate["avatar"],
2082 'url' => $relocate["url"], 'nurl' => normalise_link($relocate["url"]),
2083 'addr' => $relocate["addr"], 'connect' => $relocate["addr"],
2084 'notify' => $relocate["notify"], 'server_url' => $relocate["server_url"]];
2085 dba::update('gcontact', $fields, ['nurl' => normalise_link($old["url"])]);
2087 // Update the contact table. We try to find every entry.
2088 $fields = ['name' => $relocate["name"], 'avatar' => $relocate["avatar"],
2089 'url' => $relocate["url"], 'nurl' => normalise_link($relocate["url"]),
2090 'addr' => $relocate["addr"], 'request' => $relocate["request"],
2091 'confirm' => $relocate["confirm"], 'notify' => $relocate["notify"],
2092 'poll' => $relocate["poll"], 'site-pubkey' => $relocate["sitepubkey"]];
2093 $condition = ["(`id` = ?) OR (`nurl` = ?)", $importer["id"], normalise_link($old["url"])];
2094 dba::update('contact', $fields, $condition);
2096 Contact::updateAvatar($relocate["avatar"], $importer["importer_uid"], $importer["id"], true);
2098 logger('Contacts are updated.');
2101 // This is an extreme performance killer
2102 Item::update(['owner-link' => $relocate["url"]], ['owner-link' => $old["url"], 'uid' => $importer["importer_uid"]]);
2103 Item::update(['author-link' => $relocate["url"]], ['author-link' => $old["url"], 'uid' => $importer["importer_uid"]]);
2105 logger('Items are updated.');
2108 /// merge with current record, current contents have priority
2109 /// update record, set url-updated
2110 /// update profile photos
2111 /// schedule a scan?
2116 * @brief Updates an item
2118 * @param array $current the current item record
2119 * @param array $item the new item record
2120 * @param array $importer Record of the importer user mixed with contact of the content
2121 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
2123 * @todo set proper type-hints (array?)
2125 private static function updateContent($current, $item, $importer, $entrytype)
2129 if (self::isEditedTimestampNewer($current, $item)) {
2130 // do not accept (ignore) an earlier edit than one we currently have.
2131 if (DateTimeFormat::utc($item["edited"]) < $current["edited"]) {
2135 $fields = ['title' => defaults($item, 'title', ''), 'body' => defaults($item, 'body', ''),
2136 'tag' => defaults($item, 'tag', ''), 'changed' => DateTimeFormat::utcNow(),
2137 'edited' => DateTimeFormat::utc($item["edited"])];
2139 $condition = ["`uri` = ? AND `uid` IN (0, ?)", $item["uri"], $importer["importer_uid"]];
2140 Item::update($fields, $condition);
2144 if ($entrytype == DFRN_REPLY_RC) {
2145 Worker::add(PRIORITY_HIGH, "Notifier", "comment-import", $current["id"]);
2152 * @brief Detects the entry type of the item
2154 * @param array $importer Record of the importer user mixed with contact of the content
2155 * @param array $item the new item record
2157 * @return int Is it a toplevel entry, a comment or a relayed comment?
2158 * @todo set proper type-hints (array?)
2160 private static function getEntryType($importer, $item)
2162 if ($item["parent-uri"] != $item["uri"]) {
2165 if ($importer["page-flags"] == PAGE_COMMUNITY || $importer["page-flags"] == PAGE_PRVGROUP) {
2168 logger("possible community action");
2170 $sql_extra = " AND `contact`.`self` AND `item`.`wall` ";
2173 // was the top-level post for this action written by somebody on this site?
2174 // Specifically, the recipient?
2176 $is_a_remote_action = false;
2179 "SELECT `item`.`parent-uri` FROM `item`
2180 WHERE `item`.`uri` = '%s'
2182 dbesc($item["parent-uri"])
2184 if (DBM::is_result($r)) {
2186 "SELECT `item`.`forum_mode`, `item`.`wall` FROM `item`
2187 INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
2188 WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' OR `item`.`thr-parent` = '%s')
2189 AND `item`.`uid` = %d
2192 dbesc($r[0]["parent-uri"]),
2193 dbesc($r[0]["parent-uri"]),
2194 dbesc($r[0]["parent-uri"]),
2195 intval($importer["importer_uid"])
2197 if (DBM::is_result($r)) {
2198 $is_a_remote_action = true;
2203 * Does this have the characteristics of a community or private group action?
2204 * If it's an action to a wall post on a community/prvgroup page it's a
2205 * valid community action. Also forum_mode makes it valid for sure.
2206 * If neither, it's not.
2208 if ($is_a_remote_action && $community && (!$r[0]["forum_mode"]) && (!$r[0]["wall"])) {
2209 $is_a_remote_action = false;
2210 logger("not a community action");
2213 if ($is_a_remote_action) {
2214 return DFRN_REPLY_RC;
2219 return DFRN_TOP_LEVEL;
2224 * @brief Send a "poke"
2226 * @param array $item the new item record
2227 * @param array $importer Record of the importer user mixed with contact of the content
2228 * @param int $posted_id The record number of item record that was just posted
2230 * @todo set proper type-hints (array?)
2232 private static function doPoke($item, $importer, $posted_id)
2234 $verb = urldecode(substr($item["verb"], strpos($item["verb"], "#")+1));
2238 $xo = XML::parseString($item["object"], false);
2240 if (($xo->type == ACTIVITY_OBJ_PERSON) && ($xo->id)) {
2241 // somebody was poked/prodded. Was it me?
2242 foreach ($xo->link as $l) {
2243 $atts = $l->attributes();
2244 switch ($atts["rel"]) {
2246 $Blink = $atts["href"];
2253 if ($Blink && link_compare($Blink, System::baseUrl() . "/profile/" . $importer["nickname"])) {
2254 // send a notification
2257 "type" => NOTIFY_POKE,
2258 "notify_flags" => $importer["notify-flags"],
2259 "language" => $importer["language"],
2260 "to_name" => $importer["username"],
2261 "to_email" => $importer["email"],
2262 "uid" => $importer["importer_uid"],
2264 "link" => System::baseUrl()."/display/".urlencode(Item::getGuidById($posted_id)),
2265 "source_name" => stripslashes($item["author-name"]),
2266 "source_link" => $item["author-link"],
2267 "source_photo" => ((link_compare($item["author-link"], $importer["url"]))
2268 ? $importer["thumb"] : $item["author-avatar"]),
2269 "verb" => $item["verb"],
2270 "otype" => "person",
2271 "activity" => $verb,
2272 "parent" => $item["parent"]]
2279 * @brief Processes several actions, depending on the verb
2281 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
2282 * @param array $importer Record of the importer user mixed with contact of the content
2283 * @param array $item the new item record
2284 * @param bool $is_like Is the verb a "like"?
2286 * @return bool Should the processing of the entries be continued?
2287 * @todo set proper type-hints (array?)
2289 private static function processVerbs($entrytype, $importer, &$item, &$is_like)
2291 logger("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, LOGGER_DEBUG);
2293 if (($entrytype == DFRN_TOP_LEVEL)) {
2294 // The filling of the the "contact" variable is done for legcy reasons
2295 // The functions below are partly used by ostatus.php as well - where we have this variable
2296 $r = q("SELECT * FROM `contact` WHERE `id` = %d", intval($importer["id"]));
2298 $nickname = $contact["nick"];
2300 // Big question: Do we need these functions? They were part of the "consume_feed" function.
2301 // This function once was responsible for DFRN and OStatus.
2302 if (activity_match($item["verb"], ACTIVITY_FOLLOW)) {
2303 logger("New follower");
2304 Contact::addRelationship($importer, $contact, $item, $nickname);
2307 if (activity_match($item["verb"], ACTIVITY_UNFOLLOW)) {
2308 logger("Lost follower");
2309 Contact::removeFollower($importer, $contact, $item);
2312 if (activity_match($item["verb"], ACTIVITY_REQ_FRIEND)) {
2313 logger("New friend request");
2314 Contact::addRelationship($importer, $contact, $item, $nickname, true);
2317 if (activity_match($item["verb"], ACTIVITY_UNFRIEND)) {
2318 logger("Lost sharer");
2319 Contact::removeSharer($importer, $contact, $item);
2323 if (($item["verb"] == ACTIVITY_LIKE)
2324 || ($item["verb"] == ACTIVITY_DISLIKE)
2325 || ($item["verb"] == ACTIVITY_ATTEND)
2326 || ($item["verb"] == ACTIVITY_ATTENDNO)
2327 || ($item["verb"] == ACTIVITY_ATTENDMAYBE)
2330 $item["type"] = "activity";
2331 $item["gravity"] = GRAVITY_LIKE;
2332 // only one like or dislike per person
2333 // splitted into two queries for performance issues
2335 "SELECT `id` FROM `item` WHERE `uid` = %d AND `author-link` = '%s' AND `verb` = '%s' AND `parent-uri` = '%s' AND NOT `deleted` LIMIT 1",
2336 intval($item["uid"]),
2337 dbesc($item["author-link"]),
2338 dbesc($item["verb"]),
2339 dbesc($item["parent-uri"])
2341 if (DBM::is_result($r)) {
2346 "SELECT `id` FROM `item` WHERE `uid` = %d AND `author-link` = '%s' AND `verb` = '%s' AND `thr-parent` = '%s' AND NOT `deleted` LIMIT 1",
2347 intval($item["uid"]),
2348 dbesc($item["author-link"]),
2349 dbesc($item["verb"]),
2350 dbesc($item["parent-uri"])
2352 if (DBM::is_result($r)) {
2359 if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) {
2360 $xo = XML::parseString($item["object"], false);
2361 $xt = XML::parseString($item["target"], false);
2363 if ($xt->type == ACTIVITY_OBJ_NOTE) {
2365 "SELECT `id`, `tag` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2367 intval($importer["importer_uid"])
2370 if (!DBM::is_result($r)) {
2371 logger("Query failed to execute, no result returned in " . __FUNCTION__);
2375 // extract tag, if not duplicate, add to parent item
2377 if (!stristr($r[0]["tag"], trim($xo->content))) {
2378 $tag = $r[0]["tag"] . (strlen($r[0]["tag"]) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
2379 Item::update(['tag' => $tag], ['id' => $r[0]["id"]]);
2389 * @brief Processes the link elements
2391 * @param object $links link elements
2392 * @param array $item the item record
2394 * @todo set proper type-hints
2396 private static function parseLinks($links, &$item)
2403 foreach ($links as $link) {
2404 foreach ($link->attributes as $attributes) {
2405 switch ($attributes->name) {
2406 case "href" : $href = $attributes->textContent; break;
2407 case "rel" : $rel = $attributes->textContent; break;
2408 case "type" : $type = $attributes->textContent; break;
2409 case "length": $length = $attributes->textContent; break;
2410 case "title" : $title = $attributes->textContent; break;
2413 if (($rel != "") && ($href != "")) {
2416 $item["plink"] = $href;
2420 if (strlen($item["attach"])) {
2421 $item["attach"] .= ",";
2424 $item["attach"] .= '[attach]href="' . $href . '" length="' . $length . '" type="' . $type . '" title="' . $title . '"[/attach]';
2432 * @brief Processes the entry elements which contain the items and comments
2434 * @param array $header Array of the header elements that always stay the same
2435 * @param object $xpath XPath object
2436 * @param object $entry entry elements
2437 * @param array $importer Record of the importer user mixed with contact of the content
2438 * @param object $xml xml
2440 * @todo Add type-hints
2442 private static function processEntry($header, $xpath, $entry, $importer, $xml)
2444 logger("Processing entries");
2448 $item["protocol"] = PROTOCOL_DFRN;
2450 $item["source"] = $xml;
2453 $item["uri"] = $xpath->query("atom:id/text()", $entry)->item(0)->nodeValue;
2455 $item["edited"] = $xpath->query("atom:updated/text()", $entry)->item(0)->nodeValue;
2457 $current = dba::selectFirst('item',
2458 ['id', 'uid', 'edited', 'body'],
2459 ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]]
2461 // Is there an existing item?
2462 if (DBM::is_result($current) && !self::isEditedTimestampNewer($current, $item)) {
2463 logger("Item ".$item["uri"]." (".$item['edited'].") already existed.", LOGGER_DEBUG);
2468 $owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true);
2470 $item["owner-name"] = $owner["name"];
2471 $item["owner-link"] = $owner["link"];
2472 $item["owner-avatar"] = $owner["avatar"];
2475 $author = self::fetchauthor($xpath, $entry, $importer, "atom:author", true);
2477 $item["author-name"] = $author["name"];
2478 $item["author-link"] = $author["link"];
2479 $item["author-avatar"] = $author["avatar"];
2481 $item["title"] = $xpath->query("atom:title/text()", $entry)->item(0)->nodeValue;
2483 $item["created"] = $xpath->query("atom:published/text()", $entry)->item(0)->nodeValue;
2485 $item["body"] = $xpath->query("dfrn:env/text()", $entry)->item(0)->nodeValue;
2486 $item["body"] = str_replace([' ',"\t","\r","\n"], ['','','',''], $item["body"]);
2487 // make sure nobody is trying to sneak some html tags by us
2488 $item["body"] = notags(base64url_decode($item["body"]));
2490 $item["body"] = BBCode::limitBodySize($item["body"]);
2492 /// @todo Do we really need this check for HTML elements? (It was copied from the old function)
2493 if ((strpos($item['body'], '<') !== false) && (strpos($item['body'], '>') !== false)) {
2494 $base_url = get_app()->get_baseurl();
2495 $item['body'] = reltoabs($item['body'], $base_url);
2497 $item['body'] = html2bb_video($item['body']);
2499 $item['body'] = OEmbed::HTML2BBCode($item['body']);
2501 $config = HTMLPurifier_Config::createDefault();
2502 $config->set('Cache.DefinitionImpl', null);
2504 // we shouldn't need a whitelist, because the bbcode converter
2505 // will strip out any unsupported tags.
2507 $purifier = new HTMLPurifier($config);
2508 $item['body'] = $purifier->purify($item['body']);
2510 $item['body'] = @HTML::toBBCode($item['body']);
2513 /// @todo We should check for a repeated post and if we know the repeated author.
2515 // We don't need the content element since "dfrn:env" is always present
2516 //$item["body"] = $xpath->query("atom:content/text()", $entry)->item(0)->nodeValue;
2518 $item["location"] = $xpath->query("dfrn:location/text()", $entry)->item(0)->nodeValue;
2520 $georsspoint = $xpath->query("georss:point", $entry);
2522 $item["coord"] = $georsspoint->item(0)->nodeValue;
2525 $item["private"] = $xpath->query("dfrn:private/text()", $entry)->item(0)->nodeValue;
2527 $item["extid"] = $xpath->query("dfrn:extid/text()", $entry)->item(0)->nodeValue;
2529 if ($xpath->query("dfrn:bookmark/text()", $entry)->item(0)->nodeValue == "true") {
2530 $item["bookmark"] = true;
2533 $notice_info = $xpath->query("statusnet:notice_info", $entry);
2534 if ($notice_info && ($notice_info->length > 0)) {
2535 foreach ($notice_info->item(0)->attributes as $attributes) {
2536 if ($attributes->name == "source") {
2537 $item["app"] = strip_tags($attributes->textContent);
2542 $item["guid"] = $xpath->query("dfrn:diaspora_guid/text()", $entry)->item(0)->nodeValue;
2544 // We store the data from "dfrn:diaspora_signature" in a different table, this is done in "Item::insert"
2545 $dsprsig = unxmlify($xpath->query("dfrn:diaspora_signature/text()", $entry)->item(0)->nodeValue);
2546 if ($dsprsig != "") {
2547 $item["dsprsig"] = $dsprsig;
2550 $item["verb"] = $xpath->query("activity:verb/text()", $entry)->item(0)->nodeValue;
2552 if ($xpath->query("activity:object-type/text()", $entry)->item(0)->nodeValue != "") {
2553 $item["object-type"] = $xpath->query("activity:object-type/text()", $entry)->item(0)->nodeValue;
2556 $object = $xpath->query("activity:object", $entry)->item(0);
2557 $item["object"] = self::transformActivity($xpath, $object, "object");
2559 if (trim($item["object"]) != "") {
2560 $r = XML::parseString($item["object"], false);
2561 if (isset($r->type)) {
2562 $item["object-type"] = $r->type;
2566 $target = $xpath->query("activity:target", $entry)->item(0);
2567 $item["target"] = self::transformActivity($xpath, $target, "target");
2569 $categories = $xpath->query("atom:category", $entry);
2571 foreach ($categories as $category) {
2574 foreach ($category->attributes as $attributes) {
2575 if ($attributes->name == "term") {
2576 $term = $attributes->textContent;
2579 if ($attributes->name == "scheme") {
2580 $scheme = $attributes->textContent;
2584 if (($term != "") && ($scheme != "")) {
2585 $parts = explode(":", $scheme);
2586 if ((count($parts) >= 4) && (array_shift($parts) == "X-DFRN")) {
2587 $termhash = array_shift($parts);
2588 $termurl = implode(":", $parts);
2590 if (strlen($item["tag"])) {
2591 $item["tag"] .= ",";
2594 $item["tag"] .= $termhash . "[url=" . $termurl . "]" . $term . "[/url]";
2602 $links = $xpath->query("atom:link", $entry);
2604 self::parseLinks($links, $item);
2607 $item['conversation-uri'] = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue;
2609 $conv = $xpath->query('ostatus:conversation', $entry);
2610 if (is_object($conv->item(0))) {
2611 foreach ($conv->item(0)->attributes as $attributes) {
2612 if ($attributes->name == "ref") {
2613 $item['conversation-uri'] = $attributes->textContent;
2615 if ($attributes->name == "href") {
2616 $item['conversation-href'] = $attributes->textContent;
2621 // Is it a reply or a top level posting?
2622 $item["parent-uri"] = $item["uri"];
2624 $inreplyto = $xpath->query("thr:in-reply-to", $entry);
2625 if (is_object($inreplyto->item(0))) {
2626 foreach ($inreplyto->item(0)->attributes as $attributes) {
2627 if ($attributes->name == "ref") {
2628 $item["parent-uri"] = $attributes->textContent;
2633 // Get the type of the item (Top level post, reply or remote reply)
2634 $entrytype = self::getEntryType($importer, $item);
2636 // Now assign the rest of the values that depend on the type of the message
2637 if (in_array($entrytype, [DFRN_REPLY, DFRN_REPLY_RC])) {
2638 if (!isset($item["object-type"])) {
2639 $item["object-type"] = ACTIVITY_OBJ_COMMENT;
2642 if ($item["contact-id"] != $owner["contact-id"]) {
2643 $item["contact-id"] = $owner["contact-id"];
2646 if (($item["network"] != $owner["network"]) && ($owner["network"] != "")) {
2647 $item["network"] = $owner["network"];
2650 if ($item["contact-id"] != $author["contact-id"]) {
2651 $item["contact-id"] = $author["contact-id"];
2654 if (($item["network"] != $author["network"]) && ($author["network"] != "")) {
2655 $item["network"] = $author["network"];
2659 if ($entrytype == DFRN_REPLY_RC) {
2660 $item["type"] = "remote-comment";
2662 } elseif ($entrytype == DFRN_TOP_LEVEL) {
2663 if (!isset($item["object-type"])) {
2664 $item["object-type"] = ACTIVITY_OBJ_NOTE;
2668 if ($item["object-type"] == ACTIVITY_OBJ_EVENT) {
2669 logger("Item ".$item["uri"]." seems to contain an event.", LOGGER_DEBUG);
2670 $ev = Event::fromBBCode($item["body"]);
2671 if ((x($ev, "desc") || x($ev, "summary")) && x($ev, "start")) {
2672 logger("Event in item ".$item["uri"]." was found.", LOGGER_DEBUG);
2673 $ev["cid"] = $importer["id"];
2674 $ev["uid"] = $importer["importer_uid"];
2675 $ev["uri"] = $item["uri"];
2676 $ev["edited"] = $item["edited"];
2677 $ev["private"] = $item["private"];
2678 $ev["guid"] = $item["guid"];
2681 "SELECT `id` FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
2682 dbesc($item["uri"]),
2683 intval($importer["importer_uid"])
2685 if (DBM::is_result($r)) {
2686 $ev["id"] = $r[0]["id"];
2689 $event_id = Event::store($ev);
2690 logger("Event ".$event_id." was stored", LOGGER_DEBUG);
2696 if (!self::processVerbs($entrytype, $importer, $item, $is_like)) {
2697 logger("Exiting because 'processVerbs' told us so", LOGGER_DEBUG);
2701 // Update content if 'updated' changes
2702 if (DBM::is_result($current)) {
2703 if (self::updateContent($current, $item, $importer, $entrytype)) {
2704 logger("Item ".$item["uri"]." was updated.", LOGGER_DEBUG);
2706 logger("Item ".$item["uri"]." already existed.", LOGGER_DEBUG);
2711 if (in_array($entrytype, [DFRN_REPLY, DFRN_REPLY_RC])) {
2712 $posted_id = Item::insert($item);
2716 logger("Reply from contact ".$item["contact-id"]." was stored with id ".$posted_id, LOGGER_DEBUG);
2718 if ($item['uid'] == 0) {
2719 Item::distribute($posted_id);
2722 $item["id"] = $posted_id;
2725 "SELECT `parent`, `parent-uri` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2727 intval($importer["importer_uid"])
2729 if (DBM::is_result($r)) {
2730 $parent = $r[0]["parent"];
2731 $parent_uri = $r[0]["parent-uri"];
2734 if ($posted_id && $parent && ($entrytype == DFRN_REPLY_RC)) {
2735 logger("Notifying followers about comment ".$posted_id, LOGGER_DEBUG);
2736 Worker::add(PRIORITY_HIGH, "Notifier", "comment-import", $posted_id);
2741 } else { // $entrytype == DFRN_TOP_LEVEL
2742 if (($importer["uid"] == 0) && ($importer["importer_uid"] != 0)) {
2743 logger("Contact ".$importer["id"]." isn't known to user ".$importer["importer_uid"].". The post will be ignored.", LOGGER_DEBUG);
2746 if (!link_compare($item["owner-link"], $importer["url"])) {
2748 * The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2749 * but otherwise there's a possible data mixup on the sender's system.
2750 * the tgroup delivery code called from Item::insert will correct it if it's a forum,
2751 * but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2753 logger('Correcting item owner.', LOGGER_DEBUG);
2754 $item["owner-name"] = $importer["senderName"];
2755 $item["owner-link"] = $importer["url"];
2756 $item["owner-avatar"] = $importer["thumb"];
2759 if (($importer["rel"] == CONTACT_IS_FOLLOWER) && (!self::tgroupCheck($importer["importer_uid"], $item))) {
2760 logger("Contact ".$importer["id"]." is only follower and tgroup check was negative.", LOGGER_DEBUG);
2764 // This is my contact on another system, but it's really me.
2765 // Turn this into a wall post.
2766 $notify = Item::isRemoteSelf($importer, $item);
2768 $posted_id = Item::insert($item, false, $notify);
2771 $posted_id = $notify;
2774 logger("Item was stored with id ".$posted_id, LOGGER_DEBUG);
2776 if ($item['uid'] == 0) {
2777 Item::distribute($posted_id);
2780 if (stristr($item["verb"], ACTIVITY_POKE)) {
2781 self::doPoke($item, $importer, $posted_id);
2787 * @brief Deletes items
2789 * @param object $xpath XPath object
2790 * @param object $deletion deletion elements
2791 * @param array $importer Record of the importer user mixed with contact of the content
2793 * @todo set proper type-hints
2795 private static function processDeletion($xpath, $deletion, $importer)
2797 logger("Processing deletions");
2799 foreach ($deletion->attributes as $attributes) {
2800 if ($attributes->name == "ref") {
2801 $uri = $attributes->textContent;
2805 if (!$uri || !$importer["id"]) {
2809 $condition = ["`uri` = ? AND `uid` = ? AND NOT `file` LIKE '%[%'", $uri, $importer["importer_uid"]];
2810 $item = dba::selectFirst('item', ['id', 'parent', 'contact-id'], $condition);
2811 if (!DBM::is_result($item)) {
2812 logger("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " wasn't found.", LOGGER_DEBUG);
2816 // When it is a starting post it has to belong to the person that wants to delete it
2817 if (($item['id'] == $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2818 logger("Item with uri " . $uri . " don't belong to contact " . $importer["id"] . " - ignoring deletion.", LOGGER_DEBUG);
2822 // Comments can be deleted by the thread owner or comment owner
2823 if (($item['id'] != $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2824 $condition = ['id' => $item['parent'], 'contact-id' => $importer["id"]];
2825 if (!dba::exists('item', $condition)) {
2826 logger("Item with uri " . $uri . " wasn't found or mustn't be deleted by contact " . $importer["id"] . " - ignoring deletion.", LOGGER_DEBUG);
2831 $entrytype = self::getEntryType($importer, $item);
2833 if (!$item["deleted"]) {
2834 logger('deleting item '.$item["id"].' uri='.$uri, LOGGER_DEBUG);
2839 Item::deleteById($item["id"]);
2841 if ($entrytype != DFRN_TOP_LEVEL) {
2842 // if this is a relayed delete, propagate it to other recipients
2843 if ($entrytype == DFRN_REPLY_RC) {
2844 logger("Notifying followers about deletion of post " . $item["id"], LOGGER_DEBUG);
2845 Worker::add(PRIORITY_HIGH, "Notifier", "drop", $item["id"]);
2851 * @brief Imports a DFRN message
2853 * @param string $xml The DFRN message
2854 * @param array $importer Record of the importer user mixed with contact of the content
2855 * @param bool $sort_by_date Is used when feeds are polled
2856 * @return integer Import status
2857 * @todo set proper type-hints
2859 public static function import($xml, $importer, $sort_by_date = false)
2865 $doc = new DOMDocument();
2866 @$doc->loadXML($xml);
2868 $xpath = new DOMXPath($doc);
2869 $xpath->registerNamespace("atom", NAMESPACE_ATOM1);
2870 $xpath->registerNamespace("thr", NAMESPACE_THREAD);
2871 $xpath->registerNamespace("at", NAMESPACE_TOMB);
2872 $xpath->registerNamespace("media", NAMESPACE_MEDIA);
2873 $xpath->registerNamespace("dfrn", NAMESPACE_DFRN);
2874 $xpath->registerNamespace("activity", NAMESPACE_ACTIVITY);
2875 $xpath->registerNamespace("georss", NAMESPACE_GEORSS);
2876 $xpath->registerNamespace("poco", NAMESPACE_POCO);
2877 $xpath->registerNamespace("ostatus", NAMESPACE_OSTATUS);
2878 $xpath->registerNamespace("statusnet", NAMESPACE_STATUSNET);
2881 $header["uid"] = $importer["importer_uid"];
2882 $header["network"] = NETWORK_DFRN;
2883 $header["type"] = "remote";
2884 $header["wall"] = 0;
2885 $header["origin"] = 0;
2886 $header["contact-id"] = $importer["id"];
2888 // Update the contact table if the data has changed
2890 // The "atom:author" is only present in feeds
2891 if ($xpath->query("/atom:feed/atom:author")->length > 0) {
2892 self::fetchauthor($xpath, $doc->firstChild, $importer, "atom:author", false, $xml);
2895 // Only the "dfrn:owner" in the head section contains all data
2896 if ($xpath->query("/atom:feed/dfrn:owner")->length > 0) {
2897 self::fetchauthor($xpath, $doc->firstChild, $importer, "dfrn:owner", false, $xml);
2900 logger("Import DFRN message for user " . $importer["importer_uid"] . " from contact " . $importer["id"], LOGGER_DEBUG);
2902 // is it a public forum? Private forums aren't exposed with this method
2903 $forum = intval($xpath->evaluate("/atom:feed/dfrn:community/text()")->item(0)->nodeValue);
2905 // The account type is new since 3.5.1
2906 if ($xpath->query("/atom:feed/dfrn:account_type")->length > 0) {
2907 $accounttype = intval($xpath->evaluate("/atom:feed/dfrn:account_type/text()")->item(0)->nodeValue);
2909 if ($accounttype != $importer["contact-type"]) {
2910 dba::update('contact', ['contact-type' => $accounttype], ['id' => $importer["id"]]);
2912 // A forum contact can either have set "forum" or "prv" - but not both
2913 if (($accounttype == ACCOUNT_TYPE_COMMUNITY) && (($forum != $importer["forum"]) || ($forum == $importer["prv"]))) {
2914 $condition = ['(`forum` != ? OR `prv` != ?) AND `id` = ?', $forum, !$forum, $importer["id"]];
2915 dba::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2917 } elseif ($forum != $importer["forum"]) { // Deprecated since 3.5.1
2918 $condition = ['`forum` != ? AND `id` = ?', $forum, $importer["id"]];
2919 dba::update('contact', ['forum' => $forum], $condition);
2923 // We are processing relocations even if we are ignoring a contact
2924 $relocations = $xpath->query("/atom:feed/dfrn:relocate");
2925 foreach ($relocations as $relocation) {
2926 self::processRelocation($xpath, $relocation, $importer);
2929 if (($importer["uid"] != 0) && !$importer["readonly"]) {
2930 $mails = $xpath->query("/atom:feed/dfrn:mail");
2931 foreach ($mails as $mail) {
2932 self::processMail($xpath, $mail, $importer);
2935 $suggestions = $xpath->query("/atom:feed/dfrn:suggest");
2936 foreach ($suggestions as $suggestion) {
2937 self::processSuggestion($xpath, $suggestion, $importer);
2941 $deletions = $xpath->query("/atom:feed/at:deleted-entry");
2942 foreach ($deletions as $deletion) {
2943 self::processDeletion($xpath, $deletion, $importer);
2946 if (!$sort_by_date) {
2947 $entries = $xpath->query("/atom:feed/atom:entry");
2948 foreach ($entries as $entry) {
2949 self::processEntry($header, $xpath, $entry, $importer, $xml);
2953 $entries = $xpath->query("/atom:feed/atom:entry");
2954 foreach ($entries as $entry) {
2955 $created = $xpath->query("atom:published/text()", $entry)->item(0)->nodeValue;
2956 $newentries[strtotime($created)] = $entry;
2959 // Now sort after the publishing date
2962 foreach ($newentries as $entry) {
2963 self::processEntry($header, $xpath, $entry, $importer, $xml);
2966 logger("Import done for user " . $importer["importer_uid"] . " from contact " . $importer["id"], LOGGER_DEBUG);
2972 * @param string $contact_nick contact nickname
2974 public static function autoRedir(App $a, $contact_nick)
2977 if (x($_REQUEST, 'redir') && intval($_REQUEST['redir'])) {
2981 if ((! $contact_nick) || ($contact_nick === $a->user['nickname'])) {
2986 // We need to find out if $contact_nick is a user on this hub, and if so, if I
2987 // am a contact of that user. However, that user may have other contacts with the
2988 // same nickname as me on other hubs or other networks. Exclude these by requiring
2989 // that the contact have a local URL. I will be the only person with my nickname at
2990 // this URL, so if a result is found, then I am a contact of the $contact_nick user.
2992 // We also have to make sure that I'm a legitimate contact--I'm not blocked or pending.
2994 $baseurl = System::baseUrl();
2995 $domain_st = strpos($baseurl, "://");
2996 if ($domain_st === false) {
2999 $baseurl = substr($baseurl, $domain_st + 3);
3000 $nurl = normalise_link($baseurl);
3002 /// @todo Why is there a query for "url" *and* "nurl"? Especially this normalising is strange.
3003 $r = q("SELECT `id` FROM `contact` WHERE `uid` = (SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1)
3004 AND `nick` = '%s' AND NOT `self` AND (`url` LIKE '%%%s%%' OR `nurl` LIKE '%%%s%%') AND NOT `blocked` AND NOT `pending` LIMIT 1",
3005 dbesc($contact_nick),
3006 dbesc($a->user['nickname']),
3010 if ((! DBM::is_result($r)) || $r[0]['id'] == remote_user()) {
3014 $r = q("SELECT * FROM contact WHERE nick = '%s'
3015 AND network = '%s' AND uid = %d AND url LIKE '%%%s%%' LIMIT 1",
3016 dbesc($contact_nick),
3017 dbesc(NETWORK_DFRN),
3018 intval(local_user()),
3021 if (! DBM::is_result($r)) {
3027 $dfrn_id = (($r[0]['issued-id']) ? $r[0]['issued-id'] : $r[0]['dfrn-id']);
3029 if ($r[0]['duplex'] && $r[0]['issued-id']) {
3030 $orig_id = $r[0]['issued-id'];
3031 $dfrn_id = '1:' . $orig_id;
3033 if ($r[0]['duplex'] && $r[0]['dfrn-id']) {
3034 $orig_id = $r[0]['dfrn-id'];
3035 $dfrn_id = '0:' . $orig_id;
3038 // ensure that we've got a valid ID. There may be some edge cases with forums and non-duplex mode
3039 // that may have triggered some of the "went to {profile/intro} and got an RSS feed" issues
3041 if (strlen($dfrn_id) < 3) {
3045 $sec = random_string();
3047 dba::insert('profile_check', ['uid' => local_user(), 'cid' => $cid, 'dfrn_id' => $dfrn_id, 'sec' => $sec, 'expire' => time() + 45]);
3049 $url = curPageURL();
3051 logger('auto_redir: ' . $r[0]['name'] . ' ' . $sec, LOGGER_DEBUG);
3052 $dest = (($url) ? '&destination_url=' . $url : '');
3053 goaway($r[0]['poll'] . '?dfrn_id=' . $dfrn_id
3054 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest);
3061 * @brief Returns the activity verb
3063 * @param array $item Item array
3065 * @return string activity verb
3067 private static function constructVerb(array $item)
3069 if ($item['verb']) {
3070 return $item['verb'];
3072 return ACTIVITY_POST;
3075 private static function tgroupCheck($uid, $item)
3079 // check that the message originated elsewhere and is a top-level post
3081 if ($item['wall'] || $item['origin'] || ($item['uri'] != $item['parent-uri'])) {
3085 $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
3088 if (!DBM::is_result($u)) {
3092 $community_page = ($u[0]['page-flags'] == PAGE_COMMUNITY);
3093 $prvgroup = ($u[0]['page-flags'] == PAGE_PRVGROUP);
3095 $link = normalise_link(System::baseUrl() . '/profile/' . $u[0]['nickname']);
3098 * Diaspora uses their own hardwired link URL in @-tags
3099 * instead of the one we supply with webfinger
3101 $dlink = normalise_link(System::baseUrl() . '/u/' . $u[0]['nickname']);
3103 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
3105 foreach ($matches as $mtch) {
3106 if (link_compare($link, $mtch[1]) || link_compare($dlink, $mtch[1])) {
3108 logger('mention found: ' . $mtch[2]);
3117 return $community_page || $prvgroup;
3121 * This function returns true if $update has an edited timestamp newer
3122 * than $existing, i.e. $update contains new data which should override
3123 * what's already there. If there is no timestamp yet, the update is
3124 * assumed to be newer. If the update has no timestamp, the existing
3125 * item is assumed to be up-to-date. If the timestamps are equal it
3126 * assumes the update has been seen before and should be ignored.
3129 private static function isEditedTimestampNewer($existing, $update)
3131 if (!x($existing, 'edited') || !$existing['edited']) {
3134 if (!x($update, 'edited') || !$update['edited']) {
3138 $existing_edited = DateTimeFormat::utc($existing['edited']);
3139 $update_edited = DateTimeFormat::utc($update['edited']);
3141 return (strcmp($existing_edited, $update_edited) < 0);