3 * @file include/ostatus.php
6 require_once("include/Contact.php");
7 require_once("include/threads.php");
8 require_once("include/html2bbcode.php");
9 require_once("include/bbcode.php");
10 require_once("include/items.php");
11 require_once("mod/share.php");
12 require_once("include/enotify.php");
13 require_once("include/socgraph.php");
14 require_once("include/Photo.php");
15 require_once("include/Scrape.php");
16 require_once("include/follow.php");
17 require_once("include/api.php");
18 require_once("mod/proxy.php");
19 require_once("include/xml.php");
22 * @brief This class contain functions for the OStatus protocol
26 const OSTATUS_DEFAULT_POLL_INTERVAL = 30; // given in minutes
27 const OSTATUS_DEFAULT_POLL_TIMEFRAME = 1440; // given in minutes
28 const OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS = 14400; // given in minutes
31 * @brief Mix two paths together to possibly fix missing parts
33 * @param string $avatar Path to the avatar
34 * @param string $base Another path that is hopefully complete
36 * @return string fixed avatar path
38 public static function fix_avatar($avatar, $base) {
39 $base_parts = parse_url($base);
41 // Remove all parts that could create a problem
42 unset($base_parts['path']);
43 unset($base_parts['query']);
44 unset($base_parts['fragment']);
46 $avatar_parts = parse_url($avatar);
49 $parts = array_merge($base_parts, $avatar_parts);
51 // And put them together again
52 $scheme = isset($parts['scheme']) ? $parts['scheme'] . '://' : '';
53 $host = isset($parts['host']) ? $parts['host'] : '';
54 $port = isset($parts['port']) ? ':' . $parts['port'] : '';
55 $path = isset($parts['path']) ? $parts['path'] : '';
56 $query = isset($parts['query']) ? '?' . $parts['query'] : '';
57 $fragment = isset($parts['fragment']) ? '#' . $parts['fragment'] : '';
59 $fixed = $scheme.$host.$port.$path.$query.$fragment;
61 logger('Base: '.$base.' - Avatar: '.$avatar.' - Fixed: '.$fixed, LOGGER_DATA);
67 * @brief Fetches author data
69 * @param object $xpath The xpath object
70 * @param object $context The xml context of the author detals
71 * @param array $importer user record of the importing user
72 * @param array $contact Called by reference, will contain the fetched contact
73 * @param bool $onlyfetch Only fetch the header without updating the contact entries
75 * @return array Array of author related entries for the item
77 private function fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch) {
80 $author["author-link"] = $xpath->evaluate('atom:author/atom:uri/text()', $context)->item(0)->nodeValue;
81 $author["author-name"] = $xpath->evaluate('atom:author/atom:name/text()', $context)->item(0)->nodeValue;
83 $aliaslink = $author["author-link"];
85 $alternate = $xpath->query("atom:author/atom:link[@rel='alternate']", $context)->item(0)->attributes;
86 if (is_object($alternate))
87 foreach($alternate AS $attributes)
88 if ($attributes->name == "href")
89 $author["author-link"] = $attributes->textContent;
91 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` IN ('%s', '%s') AND `network` != '%s'",
92 intval($importer["uid"]), dbesc(normalise_link($author["author-link"])),
93 dbesc(normalise_link($aliaslink)), dbesc(NETWORK_STATUSNET));
96 $author["contact-id"] = $r[0]["id"];
98 $author["contact-id"] = $contact["id"];
100 $avatarlist = array();
101 $avatars = $xpath->query("atom:author/atom:link[@rel='avatar']", $context);
102 foreach($avatars AS $avatar) {
105 foreach($avatar->attributes AS $attributes) {
106 if ($attributes->name == "href")
107 $href = $attributes->textContent;
108 if ($attributes->name == "width")
109 $width = $attributes->textContent;
111 if (($width > 0) AND ($href != ""))
112 $avatarlist[$width] = $href;
114 if (count($avatarlist) > 0) {
116 $author["author-avatar"] = self::fix_avatar(current($avatarlist), $author["author-link"]);
119 $displayname = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
120 if ($displayname != "")
121 $author["author-name"] = $displayname;
123 $author["owner-name"] = $author["author-name"];
124 $author["owner-link"] = $author["author-link"];
125 $author["owner-avatar"] = $author["author-avatar"];
127 // Only update the contacts if it is an OStatus contact
128 if ($r AND !$onlyfetch AND ($contact["network"] == NETWORK_OSTATUS)) {
130 // Update contact data
132 // This query doesn't seem to work
133 // $value = $xpath->query("atom:link[@rel='salmon']", $context)->item(0)->nodeValue;
135 // $contact["notify"] = $value;
137 // This query doesn't seem to work as well - I hate these queries
138 // $value = $xpath->query("atom:link[@rel='self' and @type='application/atom+xml']", $context)->item(0)->nodeValue;
140 // $contact["poll"] = $value;
142 $value = $xpath->evaluate('atom:author/atom:uri/text()', $context)->item(0)->nodeValue;
144 $contact["alias"] = $value;
146 $value = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
148 $contact["name"] = $value;
150 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
152 $contact["nick"] = $value;
154 $value = $xpath->evaluate('atom:author/poco:note/text()', $context)->item(0)->nodeValue;
156 $contact["about"] = html2bbcode($value);
158 $value = $xpath->evaluate('atom:author/poco:address/poco:formatted/text()', $context)->item(0)->nodeValue;
160 $contact["location"] = $value;
162 if (($contact["name"] != $r[0]["name"]) OR ($contact["nick"] != $r[0]["nick"]) OR ($contact["about"] != $r[0]["about"]) OR
163 ($contact["alias"] != $r[0]["alias"]) OR ($contact["location"] != $r[0]["location"])) {
165 logger("Update contact data for contact ".$contact["id"], LOGGER_DEBUG);
167 q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `alias` = '%s', `about` = '%s', `location` = '%s', `name-date` = '%s' WHERE `id` = %d",
168 dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["alias"]),
169 dbesc($contact["about"]), dbesc($contact["location"]),
170 dbesc(datetime_convert()), intval($contact["id"]));
173 if (isset($author["author-avatar"]) AND ($author["author-avatar"] != $r[0]['avatar'])) {
174 logger("Update profile picture for contact ".$contact["id"], LOGGER_DEBUG);
176 update_contact_avatar($author["author-avatar"], $importer["uid"], $contact["id"]);
179 // Ensure that we are having this contact (with uid=0)
180 $cid = get_contact($author["author-link"], 0);
183 // Update it with the current values
184 q("UPDATE `contact` SET `url` = '%s', `name` = '%s', `nick` = '%s', `alias` = '%s',
185 `about` = '%s', `location` = '%s',
186 `success_update` = '%s', `last-update` = '%s'
188 dbesc($author["author-link"]), dbesc($contact["name"]), dbesc($contact["nick"]),
189 dbesc($contact["alias"]), dbesc($contact["about"]), dbesc($contact["location"]),
190 dbesc(datetime_convert()), dbesc(datetime_convert()), intval($cid));
193 update_contact_avatar($author["author-avatar"], 0, $cid);
196 $contact["generation"] = 2;
197 $contact["hide"] = false; // OStatus contacts are never hidden
198 $contact["photo"] = $author["author-avatar"];
199 $gcid = update_gcontact($contact);
201 link_gcontact($gcid, $contact["uid"], $contact["id"]);
208 * @brief Fetches author data from a given XML string
210 * @param string $xml The XML
211 * @param array $importer user record of the importing user
213 * @return array Array of author related entries for the item
215 public static function salmon_author($xml, $importer) {
220 $doc = new DOMDocument();
221 @$doc->loadXML($xml);
223 $xpath = new DomXPath($doc);
224 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
225 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
226 $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
227 $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
228 $xpath->registerNamespace('media', NAMESPACE_MEDIA);
229 $xpath->registerNamespace('poco', NAMESPACE_POCO);
230 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
231 $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
233 $entries = $xpath->query('/atom:entry');
235 foreach ($entries AS $entry) {
237 $author = self::fetchauthor($xpath, $entry, $importer, $contact, true);
243 * @brief Read attributes from element
245 * @param object $element Element object
247 * @return array attributes
249 private static function read_attributes($element) {
250 $attribute = array();
252 foreach ($element->attributes AS $attributes) {
253 $attribute[$attributes->name] = $attributes->textContent;
260 * @brief Imports an XML string containing OStatus elements
262 * @param string $xml The XML
263 * @param array $importer user record of the importing user
265 * @param array $hub Called by reference, returns the fetched hub data
267 public static function import($xml,$importer,&$contact, &$hub) {
268 /// @todo this function is too long. It has to be split in many parts
270 logger("Import OStatus message", LOGGER_DEBUG);
275 //$tempfile = tempnam(get_temppath(), "import");
276 //file_put_contents($tempfile, $xml);
278 $doc = new DOMDocument();
279 @$doc->loadXML($xml);
281 $xpath = new DomXPath($doc);
282 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
283 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
284 $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
285 $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
286 $xpath->registerNamespace('media', NAMESPACE_MEDIA);
287 $xpath->registerNamespace('poco', NAMESPACE_POCO);
288 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
289 $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
292 $hub_attributes = $xpath->query("/atom:feed/atom:link[@rel='hub']")->item(0)->attributes;
293 if (is_object($hub_attributes)) {
294 foreach ($hub_attributes AS $hub_attribute) {
295 if ($hub_attribute->name == "href") {
296 $hub = $hub_attribute->textContent;
297 logger("Found hub ".$hub, LOGGER_DEBUG);
302 $header["uid"] = $importer["uid"];
303 $header["network"] = NETWORK_OSTATUS;
304 $header["type"] = "remote";
306 $header["origin"] = 0;
307 $header["gravity"] = GRAVITY_PARENT;
309 // it could either be a received post or a post we fetched by ourselves
310 // depending on that, the first node is different
311 $first_child = $doc->firstChild->tagName;
313 if ($first_child == "feed") {
314 $entries = $xpath->query('/atom:feed/atom:entry');
316 $entries = $xpath->query('/atom:entry');
319 $conversationlist = array();
322 // Reverse the order of the entries
323 $entrylist = array();
325 foreach ($entries AS $entry) {
326 $entrylist[] = $entry;
328 foreach (array_reverse($entrylist) AS $entry) {
333 if ($first_child == "feed") {
334 $author = self::fetchauthor($xpath, $doc->firstChild, $importer, $contact, false);
336 $author = self::fetchauthor($xpath, $entry, $importer, $contact, false);
338 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
342 $nickname = $author["author-name"];
344 $item = array_merge($header, $author);
347 $item["uri"] = $xpath->query('atom:id/text()', $entry)->item(0)->nodeValue;
349 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
350 intval($importer["uid"]), dbesc($item["uri"]));
351 if (dbm::is_result($r)) {
352 logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
356 $item["body"] = add_page_info_to_body(html2bbcode($xpath->query('atom:content/text()', $entry)->item(0)->nodeValue));
357 $item["object-type"] = $xpath->query('activity:object-type/text()', $entry)->item(0)->nodeValue;
359 if (($item["object-type"] == ACTIVITY_OBJ_BOOKMARK) OR ($item["object-type"] == ACTIVITY_OBJ_EVENT)) {
360 $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
361 $item["body"] = $xpath->query('atom:summary/text()', $entry)->item(0)->nodeValue;
362 } elseif ($item["object-type"] == ACTIVITY_OBJ_QUESTION) {
363 $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
365 $item["object"] = $xml;
366 $item["verb"] = $xpath->query('activity:verb/text()', $entry)->item(0)->nodeValue;
370 if ($item["verb"] == "qvitter-delete-notice") {
371 // ignore "Delete" messages (by now)
372 logger("Ignore delete message ".print_r($item, true));
376 if ($item["verb"] == ACTIVITY_JOIN) {
377 // ignore "Join" messages
378 logger("Ignore join message ".print_r($item, true));
382 if ($item["verb"] == ACTIVITY_FOLLOW) {
383 new_follower($importer, $contact, $item, $nickname);
387 if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") {
388 lose_follower($importer, $contact, $item, $dummy);
392 if ($item["verb"] == ACTIVITY_FAVORITE) {
393 $orig_uri = $xpath->query("activity:object/atom:id", $entry)->item(0)->nodeValue;
394 logger("Favorite ".$orig_uri." ".print_r($item, true));
396 $item["verb"] = ACTIVITY_LIKE;
397 $item["parent-uri"] = $orig_uri;
398 $item["gravity"] = GRAVITY_LIKE;
401 if ($item["verb"] == NAMESPACE_OSTATUS."/unfavorite") {
402 // Ignore "Unfavorite" message
403 logger("Ignore unfavorite message ".print_r($item, true));
407 // http://activitystrea.ms/schema/1.0/rsvp-yes
408 if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE, ACTIVITY_SHARE))) {
409 logger("Unhandled verb ".$item["verb"]." ".print_r($item, true));
411 $item["created"] = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
412 $item["edited"] = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue;
413 $conversation = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue;
417 $inreplyto = $xpath->query('thr:in-reply-to', $entry);
418 if (is_object($inreplyto->item(0))) {
419 foreach ($inreplyto->item(0)->attributes AS $attributes) {
420 if ($attributes->name == "ref") {
421 $item["parent-uri"] = $attributes->textContent;
423 if ($attributes->name == "href") {
424 $related = $attributes->textContent;
429 $georsspoint = $xpath->query('georss:point', $entry);
431 $item["coord"] = $georsspoint->item(0)->nodeValue;
433 $categories = $xpath->query('atom:category', $entry);
435 foreach ($categories AS $category) {
436 foreach ($category->attributes AS $attributes) {
437 if ($attributes->name == "term") {
438 $term = $attributes->textContent;
439 if(strlen($item["tag"])) {
442 $item["tag"] .= "#[url=".App::get_baseurl()."/search?tag=".$term."]".$term."[/url]";
451 $links = $xpath->query('atom:link', $entry);
453 foreach ($links AS $link) {
454 $attribute = self::read_attributes($link);
456 if (($attribute['rel'] != "") AND ($attribute['href'] != "")) {
457 switch ($attribute['rel']) {
459 $item["plink"] = $attribute['href'];
460 if (($item["object-type"] == ACTIVITY_OBJ_QUESTION) OR
461 ($item["object-type"] == ACTIVITY_OBJ_EVENT)) {
462 $item["body"] .= add_page_info($attribute['href']);
465 case "ostatus:conversation":
466 $conversation = $attribute['href'];
469 $enclosure = $attribute['href'];
470 if (strlen($item["attach"])) {
471 $item["attach"] .= ',';
473 if (!isset($attribute['length'])) {
474 $attribute['length'] = "0";
476 $item["attach"] .= '[attach]href="'.$attribute['href'].'" length="'.$attribute['length'].'" type="'.$attribute['type'].'" title="'.$attribute['title'].'"[/attach]';
479 if ($item["object-type"] != ACTIVITY_OBJ_BOOKMARK) {
480 if (!isset($item["parent-uri"])) {
481 $item["parent-uri"] = $attribute['href'];
483 if ($related == "") {
484 $related = $attribute['href'];
487 $item["body"] .= add_page_info($attribute['href']);
491 $self = $attribute['href'];
494 // Notification check
495 if ($importer["nurl"] == normalise_link($attribute['href'])) {
507 $notice_info = $xpath->query('statusnet:notice_info', $entry);
508 if ($notice_info AND ($notice_info->length > 0)) {
509 foreach ($notice_info->item(0)->attributes AS $attributes) {
510 if ($attributes->name == "source") {
511 $item["app"] = strip_tags($attributes->textContent);
513 if ($attributes->name == "local_id") {
514 $local_id = $attributes->textContent;
516 if ($attributes->name == "repeat_of") {
517 $repeat_of = $attributes->textContent;
522 // Is it a repeated post?
523 if (($repeat_of != "") OR ($item["verb"] == ACTIVITY_SHARE)) {
524 $activityobjects = $xpath->query('activity:object', $entry)->item(0);
526 if (is_object($activityobjects)) {
528 $orig_uri = $xpath->query("activity:object/atom:id", $activityobjects)->item(0)->nodeValue;
529 if (!isset($orig_uri)) {
530 $orig_uri = $xpath->query('atom:id/text()', $activityobjects)->item(0)->nodeValue;
532 $orig_links = $xpath->query("activity:object/atom:link[@rel='alternate']", $activityobjects);
533 if ($orig_links AND ($orig_links->length > 0)) {
534 foreach ($orig_links->item(0)->attributes AS $attributes) {
535 if ($attributes->name == "href") {
536 $orig_link = $attributes->textContent;
540 if (!isset($orig_link)) {
541 $orig_link = $xpath->query("atom:link[@rel='alternate']", $activityobjects)->item(0)->nodeValue;
543 if (!isset($orig_link)) {
544 $orig_link = self::convert_href($orig_uri);
546 $orig_body = $xpath->query('activity:object/atom:content/text()', $activityobjects)->item(0)->nodeValue;
547 if (!isset($orig_body)) {
548 $orig_body = $xpath->query('atom:content/text()', $activityobjects)->item(0)->nodeValue;
550 $orig_created = $xpath->query('atom:published/text()', $activityobjects)->item(0)->nodeValue;
551 $orig_edited = $xpath->query('atom:updated/text()', $activityobjects)->item(0)->nodeValue;
553 $orig_contact = $contact;
554 $orig_author = self::fetchauthor($xpath, $activityobjects, $importer, $orig_contact, false);
556 $item["author-name"] = $orig_author["author-name"];
557 $item["author-link"] = $orig_author["author-link"];
558 $item["author-avatar"] = $orig_author["author-avatar"];
560 $item["body"] = add_page_info_to_body(html2bbcode($orig_body));
561 $item["created"] = $orig_created;
562 $item["edited"] = $orig_edited;
564 $item["uri"] = $orig_uri;
566 if (!isset($item["plink"])) {
567 $item["plink"] = $orig_link;
570 $item["verb"] = $xpath->query('activity:verb/text()', $activityobjects)->item(0)->nodeValue;
572 $item["object-type"] = $xpath->query('activity:object/activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
573 if (!isset($item["object-type"])) {
574 $item["object-type"] = $xpath->query('activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
577 $enclosures = $xpath->query("atom:link[@rel='alternate']", $activityobjects);
579 foreach ($enclosures AS $link) {
580 $attribute = self::read_attributes($link);
582 $enclosure = $attribute['href'];
583 if (strlen($item["attach"])) {
584 $item["attach"] .= ',';
586 if (!isset($attribute['length'])) {
587 $attribute['length'] = "0";
589 $item["attach"] .= '[attach]href="'.$attribute['href'].'" length="'.$attribute['length'].'" type="'.$attribute['type'].'" title="'.$attribute['title'].'"[/attach]';
596 //if ($enclosure != "")
597 // $item["body"] .= add_page_info($enclosure);
599 if (isset($item["parent-uri"])) {
600 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
601 intval($importer["uid"]), dbesc($item["parent-uri"]));
603 // Only fetch missing stuff if it is a comment or reshare.
604 if (in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_SHARE)) AND
605 !dbm::is_result($r) AND ($related != "")) {
606 $reply_path = str_replace("/notice/", "/api/statuses/show/", $related).".atom";
608 if ($reply_path != $related) {
609 logger("Fetching related items for user ".$importer["uid"]." from ".$reply_path, LOGGER_DEBUG);
610 $reply_xml = fetch_url($reply_path);
612 $reply_contact = $contact;
613 self::import($reply_xml,$importer,$reply_contact, $reply_hub);
615 // After the import try to fetch the parent item again
616 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
617 intval($importer["uid"]), dbesc($item["parent-uri"]));
620 if (dbm::is_result($r)) {
621 $item["type"] = 'remote-comment';
622 $item["gravity"] = GRAVITY_COMMENT;
625 $item["parent-uri"] = $item["uri"];
627 $item_id = self::completion($conversation, $importer["uid"], $item, $self);
630 logger("Error storing item", LOGGER_DEBUG);
634 logger("Item was stored with id ".$item_id, LOGGER_DEBUG);
639 * @brief Create an url out of an uri
641 * @param string $href URI in the format "parameter1:parameter1:..."
643 * @return string URL in the format http(s)://....
645 public static function convert_href($href) {
646 $elements = explode(":",$href);
648 if ((count($elements) <= 2) OR ($elements[0] != "tag"))
651 $server = explode(",", $elements[1]);
652 $conversation = explode("=", $elements[2]);
654 if ((count($elements) == 4) AND ($elements[2] == "post"))
655 return "http://".$server[0]."/notice/".$elements[3];
657 if ((count($conversation) != 2) OR ($conversation[1] ==""))
660 if ($elements[3] == "objectType=thread")
661 return "http://".$server[0]."/conversation/".$conversation[1];
663 return "http://".$server[0]."/notice/".$conversation[1];
669 * @brief Checks if there are entries in conversations that aren't present on our side
671 * @param bool $mentions Fetch conversations where we are mentioned
672 * @param bool $override Override the interval setting
674 public static function check_conversations($mentions = false, $override = false) {
675 $last = get_config('system','ostatus_last_poll');
677 $poll_interval = intval(get_config('system','ostatus_poll_interval'));
678 if (!$poll_interval) {
679 $poll_interval = self::OSTATUS_DEFAULT_POLL_INTERVAL;
682 // Don't poll if the interval is set negative
683 if (($poll_interval < 0) AND !$override) {
688 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
689 if (!$poll_timeframe) {
690 $poll_timeframe = self::OSTATUS_DEFAULT_POLL_TIMEFRAME;
693 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
694 if (!$poll_timeframe) {
695 $poll_timeframe = self::OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS;
700 if ($last AND !$override) {
701 $next = $last + ($poll_interval * 60);
702 if ($next > time()) {
703 logger('poll interval not reached');
708 logger('cron_start');
710 $start = date("Y-m-d H:i:s", time() - ($poll_timeframe * 60));
713 $conversations = q("SELECT `term`.`oid`, `term`.`url`, `term`.`uid` FROM `term`
714 STRAIGHT_JOIN `thread` ON `thread`.`iid` = `term`.`oid` AND `thread`.`uid` = `term`.`uid`
715 WHERE `term`.`type` = 7 AND `term`.`term` > '%s' AND `thread`.`mention`
716 GROUP BY `term`.`url`, `term`.`uid` ORDER BY `term`.`term` DESC", dbesc($start));
718 $conversations = q("SELECT `oid`, `url`, `uid` FROM `term`
719 WHERE `type` = 7 AND `term` > '%s'
720 GROUP BY `url`, `uid` ORDER BY `term` DESC", dbesc($start));
723 foreach ($conversations AS $conversation) {
724 self::completion($conversation['url'], $conversation['uid']);
729 set_config('system','ostatus_last_poll', time());
733 * @brief Updates the gcontact table with actor data from the conversation
735 * @param object $actor The actor object that contains the contact data
737 private function conv_fetch_actor($actor) {
739 // We set the generation to "3" since the data here is not as reliable as the data we get on other occasions
740 $contact = array("network" => NETWORK_OSTATUS, "generation" => 3);
742 if (isset($actor->url))
743 $contact["url"] = $actor->url;
745 if (isset($actor->displayName))
746 $contact["name"] = $actor->displayName;
748 if (isset($actor->portablecontacts_net->displayName))
749 $contact["name"] = $actor->portablecontacts_net->displayName;
751 if (isset($actor->portablecontacts_net->preferredUsername))
752 $contact["nick"] = $actor->portablecontacts_net->preferredUsername;
754 if (isset($actor->id))
755 $contact["alias"] = $actor->id;
757 if (isset($actor->summary))
758 $contact["about"] = $actor->summary;
760 if (isset($actor->portablecontacts_net->note))
761 $contact["about"] = $actor->portablecontacts_net->note;
763 if (isset($actor->portablecontacts_net->addresses->formatted))
764 $contact["location"] = $actor->portablecontacts_net->addresses->formatted;
767 if (isset($actor->image->url))
768 $contact["photo"] = $actor->image->url;
770 if (isset($actor->image->width))
771 $avatarwidth = $actor->image->width;
773 if (is_array($actor->status_net->avatarLinks))
774 foreach ($actor->status_net->avatarLinks AS $avatar) {
775 if ($avatarsize < $avatar->width) {
776 $contact["photo"] = $avatar->url;
777 $avatarsize = $avatar->width;
781 $contact["hide"] = false; // OStatus contacts are never hidden
782 update_gcontact($contact);
786 * @brief Fetches the conversation url for a given item link or conversation id
788 * @param string $self The link to the posting
789 * @param string $conversation_id The conversation id
791 * @return string The conversation url
793 private function fetch_conversation($self, $conversation_id = "") {
795 if ($conversation_id != "") {
796 $elements = explode(":", $conversation_id);
798 if ((count($elements) <= 2) OR ($elements[0] != "tag"))
799 return $conversation_id;
805 $json = str_replace(".atom", ".json", $self);
807 $raw = fetch_url($json);
811 $data = json_decode($raw);
812 if (!is_object($data))
815 $conversation_id = $data->statusnet_conversation_id;
817 $pos = strpos($self, "/api/statuses/show/");
818 $base_url = substr($self, 0, $pos);
820 return $base_url."/conversation/".$conversation_id;
824 * @brief Fetches actor details of a given actor and user id
826 * @param string $actor The actor url
827 * @param int $uid The user id
828 * @param int $contact_id The default contact-id
830 * @return array Array with actor details
832 private function get_actor_details($actor, $uid, $contact_id) {
836 $contact = q("SELECT `id`, `rel`, `network` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` != '%s'",
837 $uid, normalise_link($actor), NETWORK_STATUSNET);
840 $contact = q("SELECT `id`, `rel`, `network` FROM `contact` WHERE `uid` = %d AND `alias` IN ('%s', '%s') AND `network` != '%s'",
841 $uid, $actor, normalise_link($actor), NETWORK_STATUSNET);
844 logger("Found contact for url ".$actor, LOGGER_DEBUG);
845 $details["contact_id"] = $contact[0]["id"];
846 $details["network"] = $contact[0]["network"];
848 $details["not_following"] = !in_array($contact[0]["rel"], array(CONTACT_IS_SHARING, CONTACT_IS_FRIEND));
850 logger("No contact found for user ".$uid." and url ".$actor, LOGGER_DEBUG);
852 // Adding a global contact
853 /// @TODO Use this data for the post
854 $details["global_contact_id"] = get_contact($actor, 0);
856 logger("Global contact ".$global_contact_id." found for url ".$actor, LOGGER_DEBUG);
858 $details["contact_id"] = $contact_id;
859 $details["network"] = NETWORK_OSTATUS;
861 $details["not_following"] = true;
868 * @brief Stores an item and completes the thread
870 * @param string $conversation_url The URI of the conversation
871 * @param integer $uid The user id
872 * @param array $item Data of the item that is to be posted
874 * @return integer The item id of the posted item array
876 private function completion($conversation_url, $uid, $item = array(), $self = "") {
878 /// @todo This function is totally ugly and has to be rewritten totally
880 // Import all threads or only threads that were started by our followers?
881 $all_threads = !get_config('system','ostatus_full_threads');
885 $conversation_url = self::fetch_conversation($self, $conversation_url);
887 // If the thread shouldn't be completed then store the item and go away
888 // Don't do a completion on liked content
889 if (((intval(get_config('system','ostatus_poll_interval')) == -2) AND (count($item) > 0)) OR
890 ($item["verb"] == ACTIVITY_LIKE) OR ($conversation_url == "")) {
891 $item_stored = item_store($item, $all_threads);
896 $parents = q("SELECT `item`.`id`, `item`.`parent`, `item`.`uri`, `item`.`contact-id`, `item`.`type`,
897 `item`.`verb`, `item`.`visible` FROM `term`
898 STRAIGHT_JOIN `item` AS `thritem` ON `thritem`.`parent` = `term`.`oid`
899 STRAIGHT_JOIN `item` ON `item`.`parent` = `thritem`.`parent`
900 WHERE `term`.`uid` = %d AND `term`.`otype` = %d AND `term`.`type` = %d AND `term`.`url` = '%s'",
901 intval($uid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc($conversation_url));
903 /* 2016-10-23: The old query will be kept until we are sure that the query above is a good and fast replacement
905 $parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
906 (SELECT `parent` FROM `item` WHERE `id` IN
907 (SELECT `oid` FROM `term` WHERE `uid` = %d AND `otype` = %d AND `type` = %d AND `url` = '%s'))",
908 intval($uid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc($conversation_url));
911 $parent = $parents[0];
912 elseif (count($item) > 0) {
914 $parent["type"] = "remote";
915 $parent["verb"] = ACTIVITY_POST;
916 $parent["visible"] = 1;
919 $r = q("SELECT `id` FROM `contact` WHERE `self` AND `uid`=%d", $uid);
925 $parent["parent"] = 0;
927 $parent["contact-id"] = $r[0]["id"];
928 $parent["type"] = "remote";
929 $parent["verb"] = ACTIVITY_POST;
930 $parent["visible"] = 1;
933 $conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as";
937 logger('fetching conversation url '.$conv.' (Self: '.$self.') for user '.$uid);
940 $conv_arr = z_fetch_url($conv."?page=".$pageno);
942 // If it is a non-ssl site and there is an error, then try ssl or vice versa
943 if (!$conv_arr["success"] AND (substr($conv, 0, 7) == "http://")) {
944 $conv = str_replace("http://", "https://", $conv);
945 $conv_as = fetch_url($conv."?page=".$pageno);
946 } elseif (!$conv_arr["success"] AND (substr($conv, 0, 8) == "https://")) {
947 $conv = str_replace("https://", "http://", $conv);
948 $conv_as = fetch_url($conv."?page=".$pageno);
950 $conv_as = $conv_arr["body"];
952 $conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as);
953 $conv_as = json_decode($conv_as);
955 $no_of_items = sizeof($items);
957 if (@is_array($conv_as->items))
958 foreach ($conv_as->items AS $single_item)
959 $items[$single_item->id] = $single_item;
961 if ($no_of_items == sizeof($items))
968 logger('fetching conversation done. Found '.count($items).' items');
970 if (!sizeof($items)) {
971 if (count($item) > 0) {
972 $item_stored = item_store($item, $all_threads);
975 logger("Conversation ".$conversation_url." couldn't be fetched. Item uri ".$item["uri"]." stored: ".$item_stored, LOGGER_DEBUG);
976 self::store_conversation($item_id, $conversation_url);
979 return($item_stored);
984 $items = array_reverse($items);
986 $r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND `self`", intval($uid));
991 foreach ($items as $single_conv) {
993 // Update the gcontact table
994 self::conv_fetch_actor($single_conv->actor);
996 // Test - remove before flight
997 //$tempfile = tempnam(get_temppath(), "conversation");
998 //file_put_contents($tempfile, json_encode($single_conv));
1002 if (isset($single_conv->object->id))
1003 $single_conv->id = $single_conv->object->id;
1005 $plink = self::convert_href($single_conv->id);
1006 if (isset($single_conv->object->url))
1007 $plink = self::convert_href($single_conv->object->url);
1009 if (@!$single_conv->id)
1012 logger("Got id ".$single_conv->id, LOGGER_DEBUG);
1014 if ($first_id == "") {
1015 $first_id = $single_conv->id;
1017 // The first post of the conversation isn't our first post. There are three options:
1018 // 1. Our conversation hasn't the "real" thread starter
1019 // 2. This first post is a post inside our thread
1020 // 3. This first post is a post inside another thread
1021 if (($first_id != $parent["uri"]) AND ($parent["uri"] != "")) {
1025 $new_parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
1026 (SELECT `parent` FROM `item`
1027 WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s')) LIMIT 1",
1028 intval($uid), dbesc($first_id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
1030 if ($new_parents[0]["parent"] == $parent["parent"]) {
1031 // Option 2: This post is already present inside our thread - but not as thread starter
1032 logger("Option 2: uri present in our thread: ".$first_id, LOGGER_DEBUG);
1033 $first_id = $parent["uri"];
1035 // Option 3: Not so good. We have mixed parents. We have to see how to clean this up.
1036 // For now just take the new parent.
1037 $parent = $new_parents[0];
1038 $first_id = $parent["uri"];
1039 logger("Option 3: mixed parents for uri ".$first_id, LOGGER_DEBUG);
1042 // Option 1: We hadn't got the real thread starter
1043 // We have to clean up our existing messages.
1045 $parent["uri"] = $first_id;
1046 logger("Option 1: we have a new parent: ".$first_id, LOGGER_DEBUG);
1048 } elseif ($parent["uri"] == "") {
1050 $parent["uri"] = $first_id;
1054 $parent_uri = $parent["uri"];
1056 // "context" only seems to exist on older servers
1057 if (isset($single_conv->context->inReplyTo->id)) {
1058 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
1059 intval($uid), dbesc($single_conv->context->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
1061 $parent_uri = $single_conv->context->inReplyTo->id;
1064 // This is the current way
1065 if (isset($single_conv->object->inReplyTo->id)) {
1066 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
1067 intval($uid), dbesc($single_conv->object->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
1069 $parent_uri = $single_conv->object->inReplyTo->id;
1072 $message_exists = q("SELECT `id`, `parent`, `uri` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
1073 intval($uid), dbesc($single_conv->id),
1074 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
1075 if ($message_exists) {
1076 logger("Message ".$single_conv->id." already existed on the system", LOGGER_DEBUG);
1078 if ($parent["id"] != 0) {
1079 $existing_message = $message_exists[0];
1081 // We improved the way we fetch OStatus messages, this shouldn't happen very often now
1082 /// @TODO We have to change the shadow copies as well. This way here is really ugly.
1083 if ($existing_message["parent"] != $parent["id"]) {
1084 logger('updating id '.$existing_message["id"].' with parent '.$existing_message["parent"].' to parent '.$parent["id"].' uri '.$parent["uri"].' thread '.$parent_uri, LOGGER_DEBUG);
1086 // Update the parent id of the selected item
1087 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `id` = %d",
1088 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["id"]));
1090 // Update the parent uri in the thread - but only if it points to itself
1091 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE `id` = %d AND `uri` = `thr-parent`",
1092 dbesc($parent_uri), intval($existing_message["id"]));
1094 // try to change all items of the same parent
1095 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
1096 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["parent"]));
1098 // Update the parent uri in the thread - but only if it points to itself
1099 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE (`parent` = %d) AND (`uri` = `thr-parent`)",
1100 dbesc($parent["uri"]), intval($existing_message["parent"]));
1102 // Now delete the thread
1103 delete_thread($existing_message["parent"]);
1107 // The item we are having on the system is the one that we wanted to store via the item array
1108 if (isset($item["uri"]) AND ($item["uri"] == $existing_message["uri"])) {
1116 if (is_array($single_conv->to))
1117 foreach($single_conv->to AS $to)
1118 if ($importer["nurl"] == normalise_link($to->id))
1121 $actor = $single_conv->actor->id;
1122 if (isset($single_conv->actor->url))
1123 $actor = $single_conv->actor->url;
1125 $details = self::get_actor_details($actor, $uid, $parent["contact-id"]);
1127 // Do we only want to import threads that were started by our contacts?
1128 if ($details["not_following"] AND $new_parent AND get_config('system','ostatus_full_threads')) {
1129 logger("Don't import uri ".$first_id." because user ".$uid." doesn't follow the person ".$actor, LOGGER_DEBUG);
1134 $arr["network"] = $details["network"];
1135 $arr["uri"] = $single_conv->id;
1136 $arr["plink"] = $plink;
1138 $arr["contact-id"] = $details["contact_id"];
1139 $arr["parent-uri"] = $parent_uri;
1140 $arr["created"] = $single_conv->published;
1141 $arr["edited"] = $single_conv->published;
1142 $arr["owner-name"] = $single_conv->actor->displayName;
1143 if ($arr["owner-name"] == '')
1144 $arr["owner-name"] = $single_conv->actor->contact->displayName;
1145 if ($arr["owner-name"] == '')
1146 $arr["owner-name"] = $single_conv->actor->portablecontacts_net->displayName;
1148 $arr["owner-link"] = $actor;
1149 $arr["owner-avatar"] = self::fix_avatar($single_conv->actor->image->url, $arr["owner-link"]);
1151 $arr["author-name"] = $arr["owner-name"];
1152 $arr["author-link"] = $arr["owner-link"];
1153 $arr["author-avatar"] = $arr["owner-avatar"];
1154 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->content));
1156 if (isset($single_conv->status_net->notice_info->source))
1157 $arr["app"] = strip_tags($single_conv->status_net->notice_info->source);
1158 elseif (isset($single_conv->statusnet->notice_info->source))
1159 $arr["app"] = strip_tags($single_conv->statusnet->notice_info->source);
1160 elseif (isset($single_conv->statusnet_notice_info->source))
1161 $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source);
1162 elseif (isset($single_conv->provider->displayName))
1163 $arr["app"] = $single_conv->provider->displayName;
1165 $arr["app"] = "OStatus";
1168 $arr["object"] = json_encode($single_conv);
1169 $arr["verb"] = $parent["verb"];
1170 $arr["visible"] = $parent["visible"];
1171 $arr["location"] = $single_conv->location->displayName;
1172 $arr["coord"] = trim($single_conv->location->lat." ".$single_conv->location->lon);
1174 // Is it a reshared item?
1175 if (isset($single_conv->verb) AND ($single_conv->verb == "share") AND isset($single_conv->object)) {
1176 if (is_array($single_conv->object))
1177 $single_conv->object = $single_conv->object[0];
1179 logger("Found reshared item ".$single_conv->object->id);
1181 // $single_conv->object->context->conversation;
1183 if (isset($single_conv->object->object->id))
1184 $arr["uri"] = $single_conv->object->object->id;
1186 $arr["uri"] = $single_conv->object->id;
1188 if (isset($single_conv->object->object->url))
1189 $plink = self::convert_href($single_conv->object->object->url);
1191 $plink = self::convert_href($single_conv->object->url);
1193 if (isset($single_conv->object->object->content))
1194 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->object->content));
1196 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->content));
1198 $arr["plink"] = $plink;
1200 $arr["created"] = $single_conv->object->published;
1201 $arr["edited"] = $single_conv->object->published;
1203 $arr["author-name"] = $single_conv->object->actor->displayName;
1204 if ($arr["owner-name"] == '') {
1205 $arr["author-name"] = $single_conv->object->actor->contact->displayName;
1207 $arr["author-link"] = $single_conv->object->actor->url;
1208 $arr["author-avatar"] = self::fix_avatar($single_conv->object->actor->image->url, $arr["author-link"]);
1210 $arr["app"] = $single_conv->object->provider->displayName."#";
1211 //$arr["verb"] = $single_conv->object->verb;
1213 $arr["location"] = $single_conv->object->location->displayName;
1214 $arr["coord"] = trim($single_conv->object->location->lat." ".$single_conv->object->location->lon);
1217 if ($arr["location"] == "")
1218 unset($arr["location"]);
1220 if ($arr["coord"] == "")
1221 unset($arr["coord"]);
1223 // Copy fields from given item array
1224 if (isset($item["uri"]) AND (($item["uri"] == $arr["uri"]) OR ($item["uri"] == $single_conv->id))) {
1225 $copy_fields = array("owner-name", "owner-link", "owner-avatar", "author-name", "author-link", "author-avatar",
1226 "gravity", "body", "object-type", "object", "verb", "created", "edited", "coord", "tag",
1227 "title", "attach", "app", "type", "location", "contact-id", "uri");
1228 foreach ($copy_fields AS $field)
1229 if (isset($item[$field]))
1230 $arr[$field] = $item[$field];
1234 $newitem = item_store($arr);
1236 logger("Item wasn't stored ".print_r($arr, true), LOGGER_DEBUG);
1240 if (isset($item["uri"]) AND ($item["uri"] == $arr["uri"])) {
1242 $item_stored = $newitem;
1245 logger('Stored new item '.$plink.' for parent '.$arr["parent-uri"].' under id '.$newitem, LOGGER_DEBUG);
1247 // Add the conversation entry (but don't fetch the whole conversation)
1248 self::store_conversation($newitem, $conversation_url);
1250 // If the newly created item is the top item then change the parent settings of the thread
1251 // This shouldn't happen anymore. This is supposed to be absolote.
1252 if ($arr["uri"] == $first_id) {
1253 logger('setting new parent to id '.$newitem);
1254 $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
1255 intval($uid), intval($newitem));
1257 $parent = $new_parents[0];
1261 if (($item_stored < 0) AND (count($item) > 0)) {
1263 if (get_config('system','ostatus_full_threads')) {
1264 $details = self::get_actor_details($item["owner-link"], $uid, $item["contact-id"]);
1265 if ($details["not_following"]) {
1266 logger("Don't import uri ".$item["uri"]." because user ".$uid." doesn't follow the person ".$item["owner-link"], LOGGER_DEBUG);
1271 $item_stored = item_store($item, $all_threads);
1273 logger("Uri ".$item["uri"]." wasn't found in conversation ".$conversation_url, LOGGER_DEBUG);
1274 self::store_conversation($item_stored, $conversation_url);
1278 return($item_stored);
1282 * @brief Stores conversation data into the database
1284 * @param integer $itemid The id of the item
1285 * @param string $conversation_url The uri of the conversation
1287 private function store_conversation($itemid, $conversation_url) {
1289 $conversation_url = self::convert_href($conversation_url);
1291 $messages = q("SELECT `uid`, `parent`, `created`, `received`, `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
1294 $message = $messages[0];
1296 // Store conversation url if not done before
1297 $conversation = q("SELECT `url` FROM `term` WHERE `uid` = %d AND `oid` = %d AND `otype` = %d AND `type` = %d",
1298 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION));
1300 if (!$conversation) {
1301 $r = q("INSERT INTO `term` (`uid`, `oid`, `otype`, `type`, `term`, `url`, `created`, `received`, `guid`) VALUES (%d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s')",
1302 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION),
1303 dbesc($message["created"]), dbesc($conversation_url), dbesc($message["created"]), dbesc($message["received"]), dbesc($message["guid"]));
1304 logger('Storing conversation url '.$conversation_url.' for id '.$itemid);
1309 * @brief Checks if the current post is a reshare
1311 * @param array $item The item array of thw post
1313 * @return string The guid if the post is a reshare
1315 private function get_reshared_guid($item) {
1316 $body = trim($item["body"]);
1318 // Skip if it isn't a pure repeated messages
1319 // Does it start with a share?
1320 if (strpos($body, "[share") > 0)
1323 // Does it end with a share?
1324 if (strlen($body) > (strrpos($body, "[/share]") + 8))
1327 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
1328 // Skip if there is no shared message in there
1329 if ($body == $attributes)
1333 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
1334 if ($matches[1] != "")
1335 $guid = $matches[1];
1337 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
1338 if ($matches[1] != "")
1339 $guid = $matches[1];
1345 * @brief Cleans the body of a post if it contains picture links
1347 * @param string $body The body
1349 * @return string The cleaned body
1351 private function format_picture_post($body) {
1352 $siteinfo = get_attached_data($body);
1354 if (($siteinfo["type"] == "photo")) {
1355 if (isset($siteinfo["preview"]))
1356 $preview = $siteinfo["preview"];
1358 $preview = $siteinfo["image"];
1360 // Is it a remote picture? Then make a smaller preview here
1361 $preview = proxy_url($preview, false, PROXY_SIZE_SMALL);
1363 // Is it a local picture? Then make it smaller here
1364 $preview = str_replace(array("-0.jpg", "-0.png"), array("-2.jpg", "-2.png"), $preview);
1365 $preview = str_replace(array("-1.jpg", "-1.png"), array("-2.jpg", "-2.png"), $preview);
1367 if (isset($siteinfo["url"]))
1368 $url = $siteinfo["url"];
1370 $url = $siteinfo["image"];
1372 $body = trim($siteinfo["text"])." [url]".$url."[/url]\n[img]".$preview."[/img]";
1379 * @brief Adds the header elements to the XML document
1381 * @param object $doc XML document
1382 * @param array $owner Contact data of the poster
1384 * @return object header root element
1386 private function add_header($doc, $owner) {
1390 $root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
1391 $doc->appendChild($root);
1393 $root->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1394 $root->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1395 $root->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1396 $root->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1397 $root->setAttribute("xmlns:poco", NAMESPACE_POCO);
1398 $root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1399 $root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1401 $attributes = array("uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION);
1402 xml::add_element($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
1403 xml::add_element($doc, $root, "id", App::get_baseurl()."/profile/".$owner["nick"]);
1404 xml::add_element($doc, $root, "title", sprintf("%s timeline", $owner["name"]));
1405 xml::add_element($doc, $root, "subtitle", sprintf("Updates from %s on %s", $owner["name"], $a->config["sitename"]));
1406 xml::add_element($doc, $root, "logo", $owner["photo"]);
1407 xml::add_element($doc, $root, "updated", datetime_convert("UTC", "UTC", "now", ATOM_TIME));
1409 $author = self::add_author($doc, $owner);
1410 $root->appendChild($author);
1412 $attributes = array("href" => $owner["url"], "rel" => "alternate", "type" => "text/html");
1413 xml::add_element($doc, $root, "link", "", $attributes);
1415 /// @TODO We have to find out what this is
1416 /// $attributes = array("href" => App::get_baseurl()."/sup",
1417 /// "rel" => "http://api.friendfeed.com/2008/03#sup",
1418 /// "type" => "application/json");
1419 /// xml::add_element($doc, $root, "link", "", $attributes);
1421 self::hublinks($doc, $root);
1423 $attributes = array("href" => App::get_baseurl()."/salmon/".$owner["nick"], "rel" => "salmon");
1424 xml::add_element($doc, $root, "link", "", $attributes);
1426 $attributes = array("href" => App::get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-replies");
1427 xml::add_element($doc, $root, "link", "", $attributes);
1429 $attributes = array("href" => App::get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-mention");
1430 xml::add_element($doc, $root, "link", "", $attributes);
1432 $attributes = array("href" => App::get_baseurl()."/api/statuses/user_timeline/".$owner["nick"].".atom",
1433 "rel" => "self", "type" => "application/atom+xml");
1434 xml::add_element($doc, $root, "link", "", $attributes);
1440 * @brief Add the link to the push hubs to the XML document
1442 * @param object $doc XML document
1443 * @param object $root XML root element where the hub links are added
1445 public static function hublinks($doc, $root) {
1446 $hub = get_config('system','huburl');
1450 $hubs = explode(',', $hub);
1452 foreach($hubs as $h) {
1456 if ($h === '[internal]')
1457 $h = App::get_baseurl() . '/pubsubhubbub';
1458 xml::add_element($doc, $root, "link", "", array("href" => $h, "rel" => "hub"));
1465 * @brief Adds attachement data to the XML document
1467 * @param object $doc XML document
1468 * @param object $root XML root element where the hub links are added
1469 * @param array $item Data of the item that is to be posted
1471 private function get_attachment($doc, $root, $item) {
1473 $siteinfo = get_attached_data($item["body"]);
1475 switch($siteinfo["type"]) {
1477 $attributes = array("rel" => "enclosure",
1478 "href" => $siteinfo["url"],
1479 "type" => "text/html; charset=UTF-8",
1481 "title" => $siteinfo["title"]);
1482 xml::add_element($doc, $root, "link", "", $attributes);
1485 $imgdata = get_photo_info($siteinfo["image"]);
1486 $attributes = array("rel" => "enclosure",
1487 "href" => $siteinfo["image"],
1488 "type" => $imgdata["mime"],
1489 "length" => intval($imgdata["size"]));
1490 xml::add_element($doc, $root, "link", "", $attributes);
1493 $attributes = array("rel" => "enclosure",
1494 "href" => $siteinfo["url"],
1495 "type" => "text/html; charset=UTF-8",
1497 "title" => $siteinfo["title"]);
1498 xml::add_element($doc, $root, "link", "", $attributes);
1504 if (($siteinfo["type"] != "photo") AND isset($siteinfo["image"])) {
1505 $photodata = get_photo_info($siteinfo["image"]);
1507 $attributes = array("rel" => "preview", "href" => $siteinfo["image"], "media:width" => $photodata[0], "media:height" => $photodata[1]);
1508 xml::add_element($doc, $root, "link", "", $attributes);
1512 $arr = explode('[/attach],',$item['attach']);
1514 foreach($arr as $r) {
1516 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
1518 $attributes = array("rel" => "enclosure",
1519 "href" => $matches[1],
1520 "type" => $matches[3]);
1522 if(intval($matches[2]))
1523 $attributes["length"] = intval($matches[2]);
1525 if(trim($matches[4]) != "")
1526 $attributes["title"] = trim($matches[4]);
1528 xml::add_element($doc, $root, "link", "", $attributes);
1535 * @brief Adds the author element to the XML document
1537 * @param object $doc XML document
1538 * @param array $owner Contact data of the poster
1540 * @return object author element
1542 private function add_author($doc, $owner) {
1544 $r = q("SELECT `homepage` FROM `profile` WHERE `uid` = %d AND `is-default` LIMIT 1", intval($owner["uid"]));
1548 $author = $doc->createElement("author");
1549 xml::add_element($doc, $author, "activity:object-type", ACTIVITY_OBJ_PERSON);
1550 xml::add_element($doc, $author, "uri", $owner["url"]);
1551 xml::add_element($doc, $author, "name", $owner["name"]);
1552 xml::add_element($doc, $author, "summary", bbcode($owner["about"], false, false, 7));
1554 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $owner["url"]);
1555 xml::add_element($doc, $author, "link", "", $attributes);
1557 $attributes = array(
1559 "type" => "image/jpeg", // To-Do?
1560 "media:width" => 175,
1561 "media:height" => 175,
1562 "href" => $owner["photo"]);
1563 xml::add_element($doc, $author, "link", "", $attributes);
1565 if (isset($owner["thumb"])) {
1566 $attributes = array(
1568 "type" => "image/jpeg", // To-Do?
1569 "media:width" => 80,
1570 "media:height" => 80,
1571 "href" => $owner["thumb"]);
1572 xml::add_element($doc, $author, "link", "", $attributes);
1575 xml::add_element($doc, $author, "poco:preferredUsername", $owner["nick"]);
1576 xml::add_element($doc, $author, "poco:displayName", $owner["name"]);
1577 xml::add_element($doc, $author, "poco:note", bbcode($owner["about"], false, false, 7));
1579 if (trim($owner["location"]) != "") {
1580 $element = $doc->createElement("poco:address");
1581 xml::add_element($doc, $element, "poco:formatted", $owner["location"]);
1582 $author->appendChild($element);
1585 if (trim($profile["homepage"]) != "") {
1586 $urls = $doc->createElement("poco:urls");
1587 xml::add_element($doc, $urls, "poco:type", "homepage");
1588 xml::add_element($doc, $urls, "poco:value", $profile["homepage"]);
1589 xml::add_element($doc, $urls, "poco:primary", "true");
1590 $author->appendChild($urls);
1593 if (count($profile)) {
1594 xml::add_element($doc, $author, "followers", "", array("url" => App::get_baseurl()."/viewcontacts/".$owner["nick"]));
1595 xml::add_element($doc, $author, "statusnet:profile_info", "", array("local_id" => $owner["uid"]));
1602 * @TODO Picture attachments should look like this:
1603 * <a href="https://status.pirati.ca/attachment/572819" title="https://status.pirati.ca/file/heluecht-20151202T222602-rd3u49p.gif"
1604 * class="attachment thumbnail" id="attachment-572819" rel="nofollow external">https://status.pirati.ca/attachment/572819</a>
1609 * @brief Returns the given activity if present - otherwise returns the "post" activity
1611 * @param array $item Data of the item that is to be posted
1613 * @return string activity
1615 function construct_verb($item) {
1617 return $item['verb'];
1618 return ACTIVITY_POST;
1622 * @brief Returns the given object type if present - otherwise returns the "note" object type
1624 * @param array $item Data of the item that is to be posted
1626 * @return string Object type
1628 function construct_objecttype($item) {
1629 if (in_array($item['object-type'], array(ACTIVITY_OBJ_NOTE, ACTIVITY_OBJ_COMMENT)))
1630 return $item['object-type'];
1631 return ACTIVITY_OBJ_NOTE;
1635 * @brief Adds an entry element to the XML document
1637 * @param object $doc XML document
1638 * @param array $item Data of the item that is to be posted
1639 * @param array $owner Contact data of the poster
1640 * @param bool $toplevel
1642 * @return object Entry element
1644 private function entry($doc, $item, $owner, $toplevel = false) {
1645 $repeated_guid = self::get_reshared_guid($item);
1646 if ($repeated_guid != "")
1647 $xml = self::reshare_entry($doc, $item, $owner, $repeated_guid, $toplevel);
1652 if ($item["verb"] == ACTIVITY_LIKE) {
1653 return self::like_entry($doc, $item, $owner, $toplevel);
1654 } elseif (in_array($item["verb"], array(ACTIVITY_FOLLOW, NAMESPACE_OSTATUS."/unfollow"))) {
1655 return self::follow_entry($doc, $item, $owner, $toplevel);
1657 return self::note_entry($doc, $item, $owner, $toplevel);
1662 * @brief Adds a source entry to the XML document
1664 * @param object $doc XML document
1665 * @param array $contact Array of the contact that is added
1667 * @return object Source element
1669 private function source_entry($doc, $contact) {
1670 $source = $doc->createElement("source");
1671 xml::add_element($doc, $source, "id", $contact["poll"]);
1672 xml::add_element($doc, $source, "title", $contact["name"]);
1673 xml::add_element($doc, $source, "link", "", array("rel" => "alternate",
1674 "type" => "text/html",
1675 "href" => $contact["alias"]));
1676 xml::add_element($doc, $source, "link", "", array("rel" => "self",
1677 "type" => "application/atom+xml",
1678 "href" => $contact["poll"]));
1679 xml::add_element($doc, $source, "icon", $contact["photo"]);
1680 xml::add_element($doc, $source, "updated", datetime_convert("UTC","UTC",$contact["success_update"]."+00:00",ATOM_TIME));
1686 * @brief Fetches contact data from the contact or the gcontact table
1688 * @param string $url URL of the contact
1689 * @param array $owner Contact data of the poster
1691 * @return array Contact array
1693 private function contact_entry($url, $owner) {
1695 $r = q("SELECT * FROM `contact` WHERE `nurl` = '%s' AND `uid` IN (0, %d) ORDER BY `uid` DESC LIMIT 1",
1696 dbesc(normalise_link($url)), intval($owner["uid"]));
1699 $contact["uid"] = -1;
1703 $r = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
1704 dbesc(normalise_link($url)));
1707 $contact["uid"] = -1;
1708 $contact["success_update"] = $contact["updated"];
1715 if (!isset($contact["poll"])) {
1716 $data = probe_url($url);
1717 $contact["poll"] = $data["poll"];
1719 if (!$contact["alias"])
1720 $contact["alias"] = $data["alias"];
1723 if (!isset($contact["alias"]))
1724 $contact["alias"] = $contact["url"];
1730 * @brief Adds an entry element with reshared content
1732 * @param object $doc XML document
1733 * @param array $item Data of the item that is to be posted
1734 * @param array $owner Contact data of the poster
1735 * @param $repeated_guid
1736 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1738 * @return object Entry element
1740 private function reshare_entry($doc, $item, $owner, $repeated_guid, $toplevel) {
1742 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1743 logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1746 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1748 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' AND NOT `private` AND `network` IN ('%s', '%s', '%s') LIMIT 1",
1749 intval($owner["uid"]), dbesc($repeated_guid),
1750 dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS));
1752 $repeated_item = $r[0];
1756 $contact = self::contact_entry($repeated_item['author-link'], $owner);
1758 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1760 $title = $owner["nick"]." repeated a notice by ".$contact["nick"];
1762 self::entry_content($doc, $entry, $item, $owner, $title, ACTIVITY_SHARE, false);
1764 $as_object = $doc->createElement("activity:object");
1766 xml::add_element($doc, $as_object, "activity:object-type", NAMESPACE_ACTIVITY_SCHEMA."activity");
1768 self::entry_content($doc, $as_object, $repeated_item, $owner, "", "", false);
1770 $author = self::add_author($doc, $contact);
1771 $as_object->appendChild($author);
1773 $as_object2 = $doc->createElement("activity:object");
1775 xml::add_element($doc, $as_object2, "activity:object-type", self::construct_objecttype($repeated_item));
1777 $title = sprintf("New comment by %s", $contact["nick"]);
1779 self::entry_content($doc, $as_object2, $repeated_item, $owner, $title);
1781 $as_object->appendChild($as_object2);
1783 self::entry_footer($doc, $as_object, $item, $owner, false);
1785 $source = self::source_entry($doc, $contact);
1787 $as_object->appendChild($source);
1789 $entry->appendChild($as_object);
1791 self::entry_footer($doc, $entry, $item, $owner);
1797 * @brief Adds an entry element with a "like"
1799 * @param object $doc XML document
1800 * @param array $item Data of the item that is to be posted
1801 * @param array $owner Contact data of the poster
1802 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1804 * @return object Entry element with "like"
1806 private function like_entry($doc, $item, $owner, $toplevel) {
1808 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1809 logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1812 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1814 $verb = NAMESPACE_ACTIVITY_SCHEMA."favorite";
1815 self::entry_content($doc, $entry, $item, $owner, "Favorite", $verb, false);
1817 $as_object = $doc->createElement("activity:object");
1819 $parent = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d",
1820 dbesc($item["thr-parent"]), intval($item["uid"]));
1821 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1823 xml::add_element($doc, $as_object, "activity:object-type", self::construct_objecttype($parent[0]));
1825 self::entry_content($doc, $as_object, $parent[0], $owner, "New entry");
1827 $entry->appendChild($as_object);
1829 self::entry_footer($doc, $entry, $item, $owner);
1835 * @brief Adds the person object element to the XML document
1837 * @param object $doc XML document
1838 * @param array $owner Contact data of the poster
1839 * @param array $contact Contact data of the target
1841 * @return object author element
1843 private function add_person_object($doc, $owner, $contact) {
1845 $object = $doc->createElement("activity:object");
1846 xml::add_element($doc, $object, "activity:object-type", ACTIVITY_OBJ_PERSON);
1848 if ($contact['network'] == NETWORK_PHANTOM) {
1849 xml::add_element($doc, $object, "id", $contact['url']);
1853 xml::add_element($doc, $object, "id", $contact["alias"]);
1854 xml::add_element($doc, $object, "title", $contact["nick"]);
1856 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $contact["url"]);
1857 xml::add_element($doc, $object, "link", "", $attributes);
1859 $attributes = array(
1861 "type" => "image/jpeg", // To-Do?
1862 "media:width" => 175,
1863 "media:height" => 175,
1864 "href" => $contact["photo"]);
1865 xml::add_element($doc, $object, "link", "", $attributes);
1867 xml::add_element($doc, $object, "poco:preferredUsername", $contact["nick"]);
1868 xml::add_element($doc, $object, "poco:displayName", $contact["name"]);
1870 if (trim($contact["location"]) != "") {
1871 $element = $doc->createElement("poco:address");
1872 xml::add_element($doc, $element, "poco:formatted", $contact["location"]);
1873 $object->appendChild($element);
1880 * @brief Adds a follow/unfollow entry element
1882 * @param object $doc XML document
1883 * @param array $item Data of the follow/unfollow message
1884 * @param array $owner Contact data of the poster
1885 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1887 * @return object Entry element
1889 private function follow_entry($doc, $item, $owner, $toplevel) {
1891 $item["id"] = $item["parent"] = 0;
1892 $item["created"] = $item["edited"] = date("c");
1893 $item["private"] = true;
1895 $contact = Probe::uri($item['follow']);
1897 if ($contact['alias'] == '') {
1898 $contact['alias'] = $contact["url"];
1900 $item['follow'] = $contact['alias'];
1903 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
1904 intval($owner['uid']), dbesc(normalise_link($contact["url"])));
1906 if (dbm::is_result($r)) {
1907 $connect_id = $r[0]['id'];
1912 if ($item['verb'] == ACTIVITY_FOLLOW) {
1913 $message = t('%s is now following %s.');
1914 $title = t('following');
1915 $action = "subscription";
1917 $message = t('%s stopped following %s.');
1918 $title = t('stopped following');
1919 $action = "unfollow";
1922 $item["uri"] = $item['parent-uri'] = $item['thr-parent'] =
1923 'tag:'.get_app()->get_hostname().
1924 ','.date('Y-m-d').':'.$action.':'.$owner['uid'].
1925 ':person:'.$connect_id.':'.$item['created'];
1927 $item["body"] = sprintf($message, $owner["nick"], $contact["nick"]);
1929 self::entry_header($doc, $entry, $owner, $toplevel);
1931 self::entry_content($doc, $entry, $item, $owner, $title);
1933 $object = self::add_person_object($doc, $owner, $contact);
1934 $entry->appendChild($object);
1936 self::entry_footer($doc, $entry, $item, $owner);
1942 * @brief Adds a regular entry element
1944 * @param object $doc XML document
1945 * @param array $item Data of the item that is to be posted
1946 * @param array $owner Contact data of the poster
1947 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1949 * @return object Entry element
1951 private function note_entry($doc, $item, $owner, $toplevel) {
1953 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1954 logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1957 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1959 xml::add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
1961 self::entry_content($doc, $entry, $item, $owner, $title);
1963 self::entry_footer($doc, $entry, $item, $owner);
1969 * @brief Adds a header element to the XML document
1971 * @param object $doc XML document
1972 * @param object $entry The entry element where the elements are added
1973 * @param array $owner Contact data of the poster
1974 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1976 * @return string The title for the element
1978 private function entry_header($doc, &$entry, $owner, $toplevel) {
1979 /// @todo Check if this title stuff is really needed (I guess not)
1981 $entry = $doc->createElement("entry");
1982 $title = sprintf("New note by %s", $owner["nick"]);
1984 $entry = $doc->createElementNS(NAMESPACE_ATOM1, "entry");
1986 $entry->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1987 $entry->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1988 $entry->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1989 $entry->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1990 $entry->setAttribute("xmlns:poco", NAMESPACE_POCO);
1991 $entry->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1992 $entry->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1994 $author = self::add_author($doc, $owner);
1995 $entry->appendChild($author);
1997 $title = sprintf("New comment by %s", $owner["nick"]);
2003 * @brief Adds elements to the XML document
2005 * @param object $doc XML document
2006 * @param object $entry Entry element where the content is added
2007 * @param array $item Data of the item that is to be posted
2008 * @param array $owner Contact data of the poster
2009 * @param string $title Title for the post
2010 * @param string $verb The activity verb
2011 * @param bool $complete Add the "status_net" element?
2013 private function entry_content($doc, $entry, $item, $owner, $title, $verb = "", $complete = true) {
2016 $verb = self::construct_verb($item);
2018 xml::add_element($doc, $entry, "id", $item["uri"]);
2019 xml::add_element($doc, $entry, "title", $title);
2021 $body = self::format_picture_post($item['body']);
2023 if ($item['title'] != "")
2024 $body = "[b]".$item['title']."[/b]\n\n".$body;
2026 $body = bbcode($body, false, false, 7);
2028 xml::add_element($doc, $entry, "content", $body, array("type" => "html"));
2030 xml::add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
2031 "href" => App::get_baseurl()."/display/".$item["guid"]));
2033 if ($complete AND ($item["id"] > 0))
2034 xml::add_element($doc, $entry, "status_net", "", array("notice_id" => $item["id"]));
2036 xml::add_element($doc, $entry, "activity:verb", $verb);
2038 xml::add_element($doc, $entry, "published", datetime_convert("UTC","UTC",$item["created"]."+00:00",ATOM_TIME));
2039 xml::add_element($doc, $entry, "updated", datetime_convert("UTC","UTC",$item["edited"]."+00:00",ATOM_TIME));
2043 * @brief Adds the elements at the foot of an entry to the XML document
2045 * @param object $doc XML document
2046 * @param object $entry The entry element where the elements are added
2047 * @param array $item Data of the item that is to be posted
2048 * @param array $owner Contact data of the poster
2051 private function entry_footer($doc, $entry, $item, $owner, $complete = true) {
2053 $mentioned = array();
2055 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
2056 $parent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `id` = %d", intval($item["parent"]));
2057 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
2059 $attributes = array(
2060 "ref" => $parent_item,
2061 "type" => "text/html",
2062 "href" => App::get_baseurl()."/display/".$parent[0]["guid"]);
2063 xml::add_element($doc, $entry, "thr:in-reply-to", "", $attributes);
2065 $attributes = array(
2067 "href" => App::get_baseurl()."/display/".$parent[0]["guid"]);
2068 xml::add_element($doc, $entry, "link", "", $attributes);
2070 $mentioned[$parent[0]["author-link"]] = $parent[0]["author-link"];
2071 $mentioned[$parent[0]["owner-link"]] = $parent[0]["owner-link"];
2073 $thrparent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
2074 intval($owner["uid"]),
2075 dbesc($parent_item));
2077 $mentioned[$thrparent[0]["author-link"]] = $thrparent[0]["author-link"];
2078 $mentioned[$thrparent[0]["owner-link"]] = $thrparent[0]["owner-link"];
2082 if (intval($item["parent"]) > 0) {
2083 $conversation = App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"];
2084 xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation", "href" => $conversation));
2085 xml::add_element($doc, $entry, "ostatus:conversation", $conversation);
2088 $tags = item_getfeedtags($item);
2091 foreach($tags as $t)
2093 $mentioned[$t[1]] = $t[1];
2095 // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS)
2096 $newmentions = array();
2097 foreach ($mentioned AS $mention) {
2098 $newmentions[str_replace("http://", "https://", $mention)] = str_replace("http://", "https://", $mention);
2099 $newmentions[str_replace("https://", "http://", $mention)] = str_replace("https://", "http://", $mention);
2101 $mentioned = $newmentions;
2103 foreach ($mentioned AS $mention) {
2104 $r = q("SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
2105 intval($owner["uid"]),
2106 dbesc(normalise_link($mention)));
2107 if ($r[0]["forum"] OR $r[0]["prv"])
2108 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
2109 "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
2110 "href" => $mention));
2112 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
2113 "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
2114 "href" => $mention));
2117 if (!$item["private"]) {
2118 xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:attention",
2119 "href" => "http://activityschema.org/collection/public"));
2120 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
2121 "ostatus:object-type" => "http://activitystrea.ms/schema/1.0/collection",
2122 "href" => "http://activityschema.org/collection/public"));
2126 foreach($tags as $t)
2128 xml::add_element($doc, $entry, "category", "", array("term" => $t[2]));
2130 self::get_attachment($doc, $entry, $item);
2132 if ($complete AND ($item["id"] > 0)) {
2133 $app = $item["app"];
2137 $attributes = array("local_id" => $item["id"], "source" => $app);
2139 if (isset($parent["id"]))
2140 $attributes["repeat_of"] = $parent["id"];
2142 if ($item["coord"] != "")
2143 xml::add_element($doc, $entry, "georss:point", $item["coord"]);
2145 xml::add_element($doc, $entry, "statusnet:notice_info", "", $attributes);
2150 * @brief Creates the XML feed for a given nickname
2152 * @param app $a The application class
2153 * @param string $owner_nick Nickname of the feed owner
2154 * @param string $last_update Date of the last update
2156 * @return string XML feed
2158 public static function feed(App $a, $owner_nick, $last_update) {
2160 $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`
2161 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
2162 WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
2163 dbesc($owner_nick));
2169 if(!strlen($last_update))
2170 $last_update = 'now -30 days';
2172 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
2173 $authorid = get_contact($owner["url"], 0);
2175 $items = q("SELECT `item`.*, `item`.`id` AS `item_id` FROM `item` USE INDEX (`uid_contactid_created`)
2176 STRAIGHT_JOIN `thread` ON `thread`.`iid` = `item`.`parent`
2177 WHERE `item`.`uid` = %d AND `item`.`contact-id` = %d AND
2178 `item`.`author-id` = %d AND `item`.`created` > '%s' AND
2179 NOT `item`.`deleted` AND NOT `item`.`private` AND
2180 `thread`.`network` IN ('%s', '%s')
2181 ORDER BY `item`.`created` DESC LIMIT 300",
2182 intval($owner["uid"]), intval($owner["id"]),
2183 intval($authorid), dbesc($check_date),
2184 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
2186 /* 2016-10-23: The old query will be kept until we are sure that the query above is a good and fast replacement
2188 $items = q("SELECT `item`.*, `item`.`id` AS `item_id` FROM `item`
2189 STRAIGHT_JOIN `thread` ON `thread`.`iid` = `item`.`parent`
2190 LEFT JOIN `item` AS `thritem` ON `thritem`.`uri`=`item`.`thr-parent` AND `thritem`.`uid`=`item`.`uid`
2191 WHERE `item`.`uid` = %d AND `item`.`received` > '%s' AND NOT `item`.`private` AND NOT `item`.`deleted`
2192 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
2193 AND ((`item`.`wall` AND (`item`.`parent` = `item`.`id`))
2194 OR (`item`.`network` = '%s' AND ((`thread`.`network` IN ('%s', '%s')) OR (`thritem`.`network` IN ('%s', '%s')))) AND `thread`.`mention`)
2195 AND ((`item`.`owner-link` IN ('%s', '%s') AND (`item`.`parent` = `item`.`id`))
2196 OR (`item`.`author-link` IN ('%s', '%s')))
2197 ORDER BY `item`.`id` DESC
2199 intval($owner["uid"]), dbesc($check_date), dbesc(NETWORK_DFRN),
2200 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
2201 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
2202 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
2203 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
2204 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"])),
2205 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"]))
2208 $doc = new DOMDocument('1.0', 'utf-8');
2209 $doc->formatOutput = true;
2211 $root = self::add_header($doc, $owner);
2213 foreach ($items AS $item) {
2214 $entry = self::entry($doc, $item, $owner);
2215 $root->appendChild($entry);
2218 return(trim($doc->saveXML()));
2222 * @brief Creates the XML for a salmon message
2224 * @param array $item Data of the item that is to be posted
2225 * @param array $owner Contact data of the poster
2227 * @return string XML for the salmon
2229 public static function salmon($item,$owner) {
2231 $doc = new DOMDocument('1.0', 'utf-8');
2232 $doc->formatOutput = true;
2234 $entry = self::entry($doc, $item, $owner, true);
2236 $doc->appendChild($entry);
2238 return(trim($doc->saveXML()));