3 * @file src/Protocol/OStatus.php
5 namespace Friendica\Protocol;
9 use Friendica\Content\Text\BBCode;
10 use Friendica\Content\Text\HTML;
11 use Friendica\Core\Cache;
12 use Friendica\Core\Config;
13 use Friendica\Core\L10n;
14 use Friendica\Core\Logger;
15 use Friendica\Core\Lock;
16 use Friendica\Core\Protocol;
17 use Friendica\Core\System;
18 use Friendica\Database\DBA;
19 use Friendica\Model\Contact;
20 use Friendica\Model\Conversation;
21 use Friendica\Model\GContact;
22 use Friendica\Model\Item;
23 use Friendica\Model\User;
24 use Friendica\Network\Probe;
25 use Friendica\Object\Image;
26 use Friendica\Util\DateTimeFormat;
27 use Friendica\Util\Network;
28 use Friendica\Util\Proxy as ProxyUtils;
29 use Friendica\Util\Strings;
30 use Friendica\Util\XML;
32 require_once 'mod/share.php';
33 require_once 'include/api.php';
36 * @brief This class contain functions for the OStatus protocol
40 private static $itemlist;
41 private static $conv_list = [];
44 * @brief Fetches author data
46 * @param DOMXPath $xpath The xpath object
47 * @param object $context The xml context of the author details
48 * @param array $importer user record of the importing user
49 * @param array $contact Called by reference, will contain the fetched contact
50 * @param bool $onlyfetch Only fetch the header without updating the contact entries
52 * @return array Array of author related entries for the item
53 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
54 * @throws \ImagickException
56 private static function fetchAuthor(DOMXPath $xpath, $context, array $importer, array &$contact = null, $onlyfetch)
59 $author["author-link"] = XML::getFirstNodeValue($xpath, 'atom:author/atom:uri/text()', $context);
60 $author["author-name"] = XML::getFirstNodeValue($xpath, 'atom:author/atom:name/text()', $context);
61 $addr = XML::getFirstNodeValue($xpath, 'atom:author/atom:email/text()', $context);
63 $aliaslink = $author["author-link"];
65 $alternate_item = $xpath->query("atom:author/atom:link[@rel='alternate']", $context)->item(0);
66 if (is_object($alternate_item)) {
67 foreach ($alternate_item->attributes as $attributes) {
68 if (($attributes->name == "href") && ($attributes->textContent != "")) {
69 $author["author-link"] = $attributes->textContent;
73 $author["author-id"] = Contact::getIdForURL($author["author-link"]);
75 $author['contact-id'] = defaults($contact, 'id', $author['author-id']);
80 This here would be better, but we would get problems with contacts from the statusnet addon
81 This is kept here as a reminder for the future
83 $cid = Contact::getIdForURL($author["author-link"], $importer["uid"]);
85 $contact = DBA::selectFirst('contact', [], ['id' => $cid]);
88 if ($aliaslink != '') {
89 $condition = ["`uid` = ? AND `alias` = ? AND `network` != ? AND `rel` IN (?, ?)",
90 $importer["uid"], $aliaslink, Protocol::STATUSNET,
91 Contact::SHARING, Contact::FRIEND];
92 $contact = DBA::selectFirst('contact', [], $condition);
95 if (!DBA::isResult($contact) && $author["author-link"] != '') {
96 if ($aliaslink == "") {
97 $aliaslink = $author["author-link"];
100 $condition = ["`uid` = ? AND `nurl` IN (?, ?) AND `network` != ? AND `rel` IN (?, ?)",
101 $importer["uid"], Strings::normaliseLink($author["author-link"]), Strings::normaliseLink($aliaslink),
102 Protocol::STATUSNET, Contact::SHARING, Contact::FRIEND];
103 $contact = DBA::selectFirst('contact', [], $condition);
106 if (!DBA::isResult($contact) && ($addr != '')) {
107 $condition = ["`uid` = ? AND `addr` = ? AND `network` != ? AND `rel` IN (?, ?)",
108 $importer["uid"], $addr, Protocol::STATUSNET,
109 Contact::SHARING, Contact::FRIEND];
110 $contact = DBA::selectFirst('contact', [], $condition);
113 if (DBA::isResult($contact)) {
114 if ($contact['blocked']) {
117 $author["contact-id"] = $contact["id"];
121 $avatars = $xpath->query("atom:author/atom:link[@rel='avatar']", $context);
122 foreach ($avatars as $avatar) {
125 foreach ($avatar->attributes as $attributes) {
126 if ($attributes->name == "href") {
127 $href = $attributes->textContent;
129 if ($attributes->name == "width") {
130 $width = $attributes->textContent;
134 $avatarlist[$width] = $href;
137 if (count($avatarlist) > 0) {
139 $author["author-avatar"] = Probe::fixAvatar(current($avatarlist), $author["author-link"]);
142 $displayname = XML::getFirstNodeValue($xpath, 'atom:author/poco:displayName/text()', $context);
143 if ($displayname != "") {
144 $author["author-name"] = $displayname;
147 $author["owner-id"] = $author["author-id"];
149 // Only update the contacts if it is an OStatus contact
150 if (DBA::isResult($contact) && ($contact['id'] > 0) && !$onlyfetch && ($contact["network"] == Protocol::OSTATUS)) {
152 // Update contact data
154 unset($current['name-date']);
156 // This query doesn't seem to work
157 // $value = $xpath->query("atom:link[@rel='salmon']", $context)->item(0)->nodeValue;
159 // $contact["notify"] = $value;
161 // This query doesn't seem to work as well - I hate these queries
162 // $value = $xpath->query("atom:link[@rel='self' and @type='application/atom+xml']", $context)->item(0)->nodeValue;
164 // $contact["poll"] = $value;
166 $contact['url'] = $author["author-link"];
167 $contact['nurl'] = Strings::normaliseLink($contact['url']);
169 $value = XML::getFirstNodeValue($xpath, 'atom:author/atom:uri/text()', $context);
171 $contact["alias"] = $value;
174 $value = XML::getFirstNodeValue($xpath, 'atom:author/poco:displayName/text()', $context);
176 $contact["name"] = $value;
179 $value = XML::getFirstNodeValue($xpath, 'atom:author/poco:preferredUsername/text()', $context);
181 $contact["nick"] = $value;
184 $value = XML::getFirstNodeValue($xpath, 'atom:author/poco:note/text()', $context);
186 $contact["about"] = HTML::toBBCode($value);
189 $value = XML::getFirstNodeValue($xpath, 'atom:author/poco:address/poco:formatted/text()', $context);
191 $contact["location"] = $value;
194 $contact['name-date'] = DateTimeFormat::utcNow();
196 DBA::update('contact', $contact, ['id' => $contact["id"]], $current);
198 if (!empty($author["author-avatar"]) && ($author["author-avatar"] != $current['avatar'])) {
199 Logger::log("Update profile picture for contact ".$contact["id"], Logger::DEBUG);
200 Contact::updateAvatar($author["author-avatar"], $importer["uid"], $contact["id"]);
203 // Ensure that we are having this contact (with uid=0)
204 $cid = Contact::getIdForURL($aliaslink, 0, true);
207 $fields = ['url', 'nurl', 'name', 'nick', 'alias', 'about', 'location'];
208 $old_contact = DBA::selectFirst('contact', $fields, ['id' => $cid]);
210 // Update it with the current values
211 $fields = ['url' => $author["author-link"], 'name' => $contact["name"],
212 'nurl' => Strings::normaliseLink($author["author-link"]),
213 'nick' => $contact["nick"], 'alias' => $contact["alias"],
214 'about' => $contact["about"], 'location' => $contact["location"],
215 'success_update' => DateTimeFormat::utcNow(), 'last-update' => DateTimeFormat::utcNow()];
217 DBA::update('contact', $fields, ['id' => $cid], $old_contact);
220 if (!empty($author["author-avatar"])) {
221 Contact::updateAvatar($author["author-avatar"], 0, $cid);
225 $contact["generation"] = 2;
226 $contact["hide"] = false; // OStatus contacts are never hidden
227 if (!empty($author["author-avatar"])) {
228 $contact["photo"] = $author["author-avatar"];
230 $gcid = GContact::update($contact);
232 GContact::link($gcid, $contact["uid"], $contact["id"]);
233 } elseif ($contact["network"] != Protocol::DFRN) {
241 * @brief Fetches author data from a given XML string
243 * @param string $xml The XML
244 * @param array $importer user record of the importing user
246 * @return array Array of author related entries for the item
247 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
248 * @throws \ImagickException
250 public static function salmonAuthor($xml, array $importer)
256 $doc = new DOMDocument();
257 @$doc->loadXML($xml);
259 $xpath = new DOMXPath($doc);
260 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
261 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
262 $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
263 $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
264 $xpath->registerNamespace('media', NAMESPACE_MEDIA);
265 $xpath->registerNamespace('poco', NAMESPACE_POCO);
266 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
267 $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
269 $contact = ["id" => 0];
271 // Fetch the first author
272 $authordata = $xpath->query('//author')->item(0);
273 $author = self::fetchAuthor($xpath, $authordata, $importer, $contact, true);
278 * @brief Read attributes from element
280 * @param object $element Element object
282 * @return array attributes
284 private static function readAttributes($element)
288 foreach ($element->attributes as $attributes) {
289 $attribute[$attributes->name] = $attributes->textContent;
296 * @brief Imports an XML string containing OStatus elements
298 * @param string $xml The XML
299 * @param array $importer user record of the importing user
300 * @param array $contact contact
301 * @param string $hub Called by reference, returns the fetched hub data
303 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
304 * @throws \ImagickException
306 public static function import($xml, array $importer, array &$contact, &$hub)
308 self::process($xml, $importer, $contact, $hub);
312 * @brief Internal feed processing
314 * @param string $xml The XML
315 * @param array $importer user record of the importing user
316 * @param array $contact contact
317 * @param string $hub Called by reference, returns the fetched hub data
318 * @param boolean $stored Is the post fresh imported or from the database?
319 * @param boolean $initialize Is it the leading post so that data has to be initialized?
321 * @return boolean Could the XML be processed?
322 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
323 * @throws \ImagickException
325 private static function process($xml, array $importer, array &$contact = null, &$hub, $stored = false, $initialize = true)
328 self::$itemlist = [];
329 self::$conv_list = [];
332 Logger::log('Import OStatus message for user ' . $importer['uid'], Logger::DEBUG);
337 $doc = new DOMDocument();
338 @$doc->loadXML($xml);
340 $xpath = new DOMXPath($doc);
341 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
342 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
343 $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
344 $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
345 $xpath->registerNamespace('media', NAMESPACE_MEDIA);
346 $xpath->registerNamespace('poco', NAMESPACE_POCO);
347 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
348 $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
351 $hub_items = $xpath->query("/atom:feed/atom:link[@rel='hub']")->item(0);
352 if (is_object($hub_items)) {
353 $hub_attributes = $hub_items->attributes;
354 if (is_object($hub_attributes)) {
355 foreach ($hub_attributes as $hub_attribute) {
356 if ($hub_attribute->name == "href") {
357 $hub = $hub_attribute->textContent;
358 Logger::log("Found hub ".$hub, Logger::DEBUG);
365 $header["uid"] = $importer["uid"];
366 $header["network"] = Protocol::OSTATUS;
368 $header["origin"] = 0;
369 $header["gravity"] = GRAVITY_COMMENT;
371 if (!is_object($doc->firstChild) || empty($doc->firstChild->tagName)) {
375 $first_child = $doc->firstChild->tagName;
377 if ($first_child == "feed") {
378 $entries = $xpath->query('/atom:feed/atom:entry');
380 $entries = $xpath->query('/atom:entry');
383 if ($entries->length == 1) {
384 // We reformat the XML to make it better readable
385 $doc2 = new DOMDocument();
386 $doc2->loadXML($xml);
387 $doc2->preserveWhiteSpace = false;
388 $doc2->formatOutput = true;
389 $xml2 = $doc2->saveXML();
391 $header["protocol"] = Conversation::PARCEL_SALMON;
392 $header["source"] = $xml2;
393 } elseif (!$initialize) {
397 // Fetch the first author
398 $authordata = $xpath->query('//author')->item(0);
399 $author = self::fetchAuthor($xpath, $authordata, $importer, $contact, $stored);
401 // Reverse the order of the entries
404 foreach ($entries as $entry) {
405 $entrylist[] = $entry;
408 foreach (array_reverse($entrylist) as $entry) {
410 $authorelement = $xpath->query('/atom:entry/atom:author', $entry);
412 if ($authorelement->length == 0) {
413 $authorelement = $xpath->query('atom:author', $entry);
416 if ($authorelement->length > 0) {
417 $author = self::fetchAuthor($xpath, $entry, $importer, $contact, $stored);
420 $value = XML::getFirstNodeValue($xpath, 'atom:author/poco:preferredUsername/text()', $entry);
424 $nickname = $author["author-name"];
427 $item = array_merge($header, $author);
429 $item["uri"] = XML::getFirstNodeValue($xpath, 'atom:id/text()', $entry);
431 $item["verb"] = XML::getFirstNodeValue($xpath, 'activity:verb/text()', $entry);
434 if (in_array($item["verb"], ['qvitter-delete-notice', ACTIVITY_DELETE, 'delete'])) {
435 self::deleteNotice($item);
439 if (in_array($item["verb"], [NAMESPACE_OSTATUS."/unfavorite", ACTIVITY_UNFAVORITE])) {
440 // Ignore "Unfavorite" message
441 Logger::log("Ignore unfavorite message ".print_r($item, true), Logger::DEBUG);
445 // Deletions come with the same uri, so we check for duplicates after processing deletions
446 if (Item::exists(['uid' => $importer["uid"], 'uri' => $item["uri"]])) {
447 Logger::log('Post with URI '.$item["uri"].' already existed for user '.$importer["uid"].'.', Logger::DEBUG);
450 Logger::log('Processing post with URI '.$item["uri"].' for user '.$importer["uid"].'.', Logger::DEBUG);
453 if ($item["verb"] == ACTIVITY_JOIN) {
454 // ignore "Join" messages
455 Logger::log("Ignore join message ".print_r($item, true), Logger::DEBUG);
459 if ($item["verb"] == "http://mastodon.social/schema/1.0/block") {
460 // ignore mastodon "block" messages
461 Logger::log("Ignore block message ".print_r($item, true), Logger::DEBUG);
465 if ($item["verb"] == ACTIVITY_FOLLOW) {
466 Contact::addRelationship($importer, $contact, $item, $nickname);
470 if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") {
472 Contact::removeFollower($importer, $contact, $item, $dummy);
476 if ($item["verb"] == ACTIVITY_FAVORITE) {
477 $orig_uri = $xpath->query("activity:object/atom:id", $entry)->item(0)->nodeValue;
478 Logger::log("Favorite ".$orig_uri." ".print_r($item, true));
480 $item["verb"] = ACTIVITY_LIKE;
481 $item["parent-uri"] = $orig_uri;
482 $item["gravity"] = GRAVITY_ACTIVITY;
483 $item["object-type"] = ACTIVITY_OBJ_NOTE;
486 // http://activitystrea.ms/schema/1.0/rsvp-yes
487 if (!in_array($item["verb"], [ACTIVITY_POST, ACTIVITY_LIKE, ACTIVITY_SHARE])) {
488 Logger::log("Unhandled verb ".$item["verb"]." ".print_r($item, true), Logger::DEBUG);
491 self::processPost($xpath, $entry, $item, $importer);
493 if ($initialize && (count(self::$itemlist) > 0)) {
494 if (self::$itemlist[0]['uri'] == self::$itemlist[0]['parent-uri']) {
495 // We will import it everytime, when it is started by our contacts
496 $valid = !empty(self::$itemlist[0]['contact-id']);
498 // If not, then it depends on this setting
499 $valid = !Config::get('system', 'ostatus_full_threads');
501 Logger::log("Item with uri ".self::$itemlist[0]['uri']." will be imported due to the system settings.", Logger::DEBUG);
504 Logger::log("Item with uri ".self::$itemlist[0]['uri']." belongs to a contact (".self::$itemlist[0]['contact-id']."). It will be imported.", Logger::DEBUG);
507 // Never post a thread when the only interaction by our contact was a like
509 $verbs = [ACTIVITY_POST, ACTIVITY_SHARE];
510 foreach (self::$itemlist as $item) {
511 if (!empty($item['contact-id']) && in_array($item['verb'], $verbs)) {
516 Logger::log("Item with uri ".self::$itemlist[0]['uri']." will be imported since the thread contains posts or shares.", Logger::DEBUG);
520 // But we will only import complete threads
521 $valid = Item::exists(['uid' => $importer["uid"], 'uri' => self::$itemlist[0]['parent-uri']]);
523 Logger::log("Item with uri ".self::$itemlist[0]["uri"]." belongs to parent ".self::$itemlist[0]['parent-uri']." of user ".$importer["uid"].". It will be imported.", Logger::DEBUG);
528 $default_contact = 0;
529 for ($key = count(self::$itemlist) - 1; $key >= 0; $key--) {
530 if (empty(self::$itemlist[$key]['contact-id'])) {
531 self::$itemlist[$key]['contact-id'] = $default_contact;
533 $default_contact = $item['contact-id'];
536 foreach (self::$itemlist as $item) {
537 $found = Item::exists(['uid' => $importer["uid"], 'uri' => $item["uri"]]);
539 Logger::log("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already exists.", Logger::DEBUG);
540 } elseif ($item['contact-id'] < 0) {
541 Logger::log("Item with uri ".$item["uri"]." is from a blocked contact.", Logger::DEBUG);
543 // We are having duplicated entries. Hopefully this solves it.
544 if (Lock::acquire('ostatus_process_item_insert')) {
545 $ret = Item::insert($item);
546 Lock::release('ostatus_process_item_insert');
547 Logger::log("Item with uri ".$item["uri"]." for user ".$importer["uid"].' stored. Return value: '.$ret);
549 $ret = Item::insert($item);
550 Logger::log("We couldn't lock - but tried to store the item anyway. Return value is ".$ret);
555 self::$itemlist = [];
557 Logger::log('Processing done for post with URI '.$item["uri"].' for user '.$importer["uid"].'.', Logger::DEBUG);
563 * Removes notice item from database
565 * @param array $item item
569 private static function deleteNotice(array $item)
571 $condition = ['uid' => $item['uid'], 'author-id' => $item['author-id'], 'uri' => $item['uri']];
572 if (!Item::exists($condition)) {
573 Logger::log('Item from '.$item['author-link'].' with uri '.$item['uri'].' for user '.$item['uid']." wasn't found. We don't delete it.");
577 Item::delete($condition);
579 Logger::log('Deleted item with uri '.$item['uri'].' for user '.$item['uid']);
583 * @brief Processes the XML for a post
585 * @param DOMXPath $xpath The xpath object
586 * @param object $entry The xml entry that is processed
587 * @param array $item The item array
588 * @param array $importer user record of the importing user
590 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
591 * @throws \ImagickException
593 private static function processPost(DOMXPath $xpath, $entry, array &$item, array $importer)
595 $item["body"] = HTML::toBBCode(XML::getFirstNodeValue($xpath, 'atom:content/text()', $entry));
596 $item["object-type"] = XML::getFirstNodeValue($xpath, 'activity:object-type/text()', $entry);
597 if (($item["object-type"] == ACTIVITY_OBJ_BOOKMARK) || ($item["object-type"] == ACTIVITY_OBJ_EVENT)) {
598 $item["title"] = XML::getFirstNodeValue($xpath, 'atom:title/text()', $entry);
599 $item["body"] = XML::getFirstNodeValue($xpath, 'atom:summary/text()', $entry);
600 } elseif ($item["object-type"] == ACTIVITY_OBJ_QUESTION) {
601 $item["title"] = XML::getFirstNodeValue($xpath, 'atom:title/text()', $entry);
604 $item["created"] = XML::getFirstNodeValue($xpath, 'atom:published/text()', $entry);
605 $item["edited"] = XML::getFirstNodeValue($xpath, 'atom:updated/text()', $entry);
606 $item['conversation-uri'] = XML::getFirstNodeValue($xpath, 'ostatus:conversation/text()', $entry);
608 $conv = $xpath->query('ostatus:conversation', $entry);
609 if (is_object($conv->item(0))) {
610 foreach ($conv->item(0)->attributes as $attributes) {
611 if ($attributes->name == "ref") {
612 $item['conversation-uri'] = $attributes->textContent;
614 if ($attributes->name == "href") {
615 $item['conversation-href'] = $attributes->textContent;
622 $inreplyto = $xpath->query('thr:in-reply-to', $entry);
623 if (is_object($inreplyto->item(0))) {
624 foreach ($inreplyto->item(0)->attributes as $attributes) {
625 if ($attributes->name == "ref") {
626 $item["parent-uri"] = $attributes->textContent;
628 if ($attributes->name == "href") {
629 $related = $attributes->textContent;
634 $georsspoint = $xpath->query('georss:point', $entry);
635 if (!empty($georsspoint) && ($georsspoint->length > 0)) {
636 $item["coord"] = $georsspoint->item(0)->nodeValue;
639 $categories = $xpath->query('atom:category', $entry);
641 foreach ($categories as $category) {
642 foreach ($category->attributes as $attributes) {
643 if ($attributes->name == 'term') {
644 $term = $attributes->textContent;
645 if (!empty($item['tag'])) {
651 $item['tag'] .= '#[url=' . System::baseUrl() . '/search?tag=' . $term . ']' . $term . '[/url]';
660 $links = $xpath->query('atom:link', $entry);
662 $link_data = self::processLinks($links, $item);
663 $self = $link_data['self'];
664 $add_body = $link_data['add_body'];
669 $notice_info = $xpath->query('statusnet:notice_info', $entry);
670 if ($notice_info && ($notice_info->length > 0)) {
671 foreach ($notice_info->item(0)->attributes as $attributes) {
672 if ($attributes->name == "source") {
673 $item["app"] = strip_tags($attributes->textContent);
675 if ($attributes->name == "repeat_of") {
676 $repeat_of = $attributes->textContent;
680 // Is it a repeated post?
681 if (($repeat_of != "") || ($item["verb"] == ACTIVITY_SHARE)) {
682 $link_data = self::processRepeatedItem($xpath, $entry, $item, $importer);
683 if (!empty($link_data['add_body'])) {
684 $add_body .= $link_data['add_body'];
688 $item["body"] .= $add_body;
690 // Only add additional data when there is no picture in the post
691 if (!strstr($item["body"], '[/img]')) {
692 $item["body"] = add_page_info_to_body($item["body"]);
695 // Mastodon Content Warning
696 if (($item["verb"] == ACTIVITY_POST) && $xpath->evaluate('boolean(atom:summary)', $entry)) {
697 $clear_text = XML::getFirstNodeValue($xpath, 'atom:summary/text()', $entry);
698 if (!empty($clear_text)) {
699 $item['content-warning'] = HTML::toBBCode($clear_text);
703 if (($self != '') && empty($item['protocol'])) {
704 self::fetchSelf($self, $item);
707 if (!empty($item["conversation-href"])) {
708 self::fetchConversation($item['conversation-href'], $item['conversation-uri']);
711 if (isset($item["parent-uri"])) {
712 if (!Item::exists(['uid' => $importer["uid"], 'uri' => $item['parent-uri']])) {
713 if ($related != '') {
714 self::fetchRelated($related, $item["parent-uri"], $importer);
717 Logger::log('Reply with URI '.$item["uri"].' already existed for user '.$importer["uid"].'.', Logger::DEBUG);
720 $item["parent-uri"] = $item["uri"];
721 $item["gravity"] = GRAVITY_PARENT;
724 if (($item['author-link'] != '') && !empty($item['protocol'])) {
725 $item = Conversation::insert($item);
728 self::$itemlist[] = $item;
732 * @brief Fetch the conversation for posts
734 * @param string $conversation The link to the conversation
735 * @param string $conversation_uri The conversation in "uri" format
737 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
739 private static function fetchConversation($conversation, $conversation_uri)
741 // Ensure that we only store a conversation once in a process
742 if (isset(self::$conv_list[$conversation])) {
746 self::$conv_list[$conversation] = true;
748 $curlResult = Network::curl($conversation, false, $redirects, ['accept_content' => 'application/atom+xml, text/html']);
750 if (!$curlResult->isSuccess()) {
756 if (stristr($curlResult->getHeader(), 'Content-Type: application/atom+xml')) {
757 $xml = $curlResult->getBody();
761 $doc = new DOMDocument();
762 if (!@$doc->loadHTML($curlResult->getBody())) {
765 $xpath = new DOMXPath($doc);
767 $links = $xpath->query('//link');
770 foreach ($links as $link) {
771 $attribute = self::readAttributes($link);
772 if (($attribute['rel'] == 'alternate') && ($attribute['type'] == 'application/atom+xml')) {
773 $file = $attribute['href'];
777 $conversation_atom = Network::curl($attribute['href']);
779 if ($conversation_atom->isSuccess()) {
780 $xml = $conversation_atom->getBody();
790 self::storeConversation($xml, $conversation, $conversation_uri);
794 * @brief Store a feed in several conversation entries
796 * @param string $xml The feed
797 * @param string $conversation conversation
798 * @param string $conversation_uri conversation uri
802 private static function storeConversation($xml, $conversation = '', $conversation_uri = '')
804 $doc = new DOMDocument();
805 @$doc->loadXML($xml);
807 $xpath = new DOMXPath($doc);
808 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
809 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
810 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
812 $entries = $xpath->query('/atom:feed/atom:entry');
814 // Now store the entries
815 foreach ($entries as $entry) {
816 $doc2 = new DOMDocument();
817 $doc2->preserveWhiteSpace = false;
818 $doc2->formatOutput = true;
822 $conv_data['protocol'] = Conversation::PARCEL_SPLIT_CONVERSATION;
823 $conv_data['network'] = Protocol::OSTATUS;
824 $conv_data['uri'] = XML::getFirstNodeValue($xpath, 'atom:id/text()', $entry);
826 $inreplyto = $xpath->query('thr:in-reply-to', $entry);
827 if (is_object($inreplyto->item(0))) {
828 foreach ($inreplyto->item(0)->attributes as $attributes) {
829 if ($attributes->name == "ref") {
830 $conv_data['reply-to-uri'] = $attributes->textContent;
835 $conv_data['conversation-uri'] = XML::getFirstNodeValue($xpath, 'ostatus:conversation/text()', $entry);
837 $conv = $xpath->query('ostatus:conversation', $entry);
838 if (is_object($conv->item(0))) {
839 foreach ($conv->item(0)->attributes as $attributes) {
840 if ($attributes->name == "ref") {
841 $conv_data['conversation-uri'] = $attributes->textContent;
843 if ($attributes->name == "href") {
844 $conv_data['conversation-href'] = $attributes->textContent;
849 if ($conversation != '') {
850 $conv_data['conversation-uri'] = $conversation;
853 if ($conversation_uri != '') {
854 $conv_data['conversation-uri'] = $conversation_uri;
857 $entry = $doc2->importNode($entry, true);
859 $doc2->appendChild($entry);
861 $conv_data['source'] = $doc2->saveXML();
863 $condition = ['item-uri' => $conv_data['uri'],'protocol' => Conversation::PARCEL_FEED];
864 if (DBA::exists('conversation', $condition)) {
865 Logger::log('Delete deprecated entry for URI '.$conv_data['uri'], Logger::DEBUG);
866 DBA::delete('conversation', ['item-uri' => $conv_data['uri']]);
869 Logger::log('Store conversation data for uri '.$conv_data['uri'], Logger::DEBUG);
870 Conversation::insert($conv_data);
875 * @brief Fetch the own post so that it can be stored later
877 * We want to store the original data for later processing.
878 * This function is meant for cases where we process a feed with multiple entries.
879 * In that case we need to fetch the single posts here.
881 * @param string $self The link to the self item
882 * @param array $item The item array
884 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
886 private static function fetchSelf($self, array &$item)
888 $condition = ['`item-uri` = ? AND `protocol` IN (?, ?)', $self, Conversation::PARCEL_DFRN, Conversation::PARCEL_SALMON];
889 if (DBA::exists('conversation', $condition)) {
890 Logger::log('Conversation '.$item['uri'].' is already stored.', Logger::DEBUG);
894 $curlResult = Network::curl($self);
896 if (!$curlResult->isSuccess()) {
900 // We reformat the XML to make it better readable
901 $doc = new DOMDocument();
902 $doc->loadXML($curlResult->getBody());
903 $doc->preserveWhiteSpace = false;
904 $doc->formatOutput = true;
905 $xml = $doc->saveXML();
907 $item["protocol"] = Conversation::PARCEL_SALMON;
908 $item["source"] = $xml;
910 Logger::log('Conversation '.$item['uri'].' is now fetched.', Logger::DEBUG);
914 * @brief Fetch related posts and processes them
916 * @param string $related The link to the related item
917 * @param string $related_uri The related item in "uri" format
918 * @param array $importer user record of the importing user
920 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
921 * @throws \ImagickException
923 private static function fetchRelated($related, $related_uri, $importer)
925 $condition = ['`item-uri` = ? AND `protocol` IN (?, ?)', $related_uri, Conversation::PARCEL_DFRN, Conversation::PARCEL_SALMON];
926 $conversation = DBA::selectFirst('conversation', ['source', 'protocol'], $condition);
927 if (DBA::isResult($conversation)) {
929 $xml = $conversation['source'];
930 if (self::process($xml, $importer, $contact, $hub, $stored, false)) {
931 Logger::log('Got valid cached XML for URI '.$related_uri, Logger::DEBUG);
934 if ($conversation['protocol'] == Conversation::PARCEL_SALMON) {
935 Logger::log('Delete invalid cached XML for URI '.$related_uri, Logger::DEBUG);
936 DBA::delete('conversation', ['item-uri' => $related_uri]);
941 $curlResult = Network::curl($related, false, $redirects, ['accept_content' => 'application/atom+xml, text/html']);
943 if (!$curlResult->isSuccess()) {
949 if (stristr($curlResult->getHeader(), 'Content-Type: application/atom+xml')) {
950 Logger::log('Directly fetched XML for URI ' . $related_uri, Logger::DEBUG);
951 $xml = $curlResult->getBody();
955 $doc = new DOMDocument();
956 if (!@$doc->loadHTML($curlResult->getBody())) {
959 $xpath = new DOMXPath($doc);
963 $links = $xpath->query('//link');
965 foreach ($links as $link) {
966 $attribute = self::readAttributes($link);
967 if (($attribute['rel'] == 'alternate') && ($attribute['type'] == 'application/atom+xml')) {
968 $atom_file = $attribute['href'];
971 if ($atom_file != '') {
972 $curlResult = Network::curl($atom_file);
974 if ($curlResult->isSuccess()) {
975 Logger::log('Fetched XML for URI ' . $related_uri, Logger::DEBUG);
976 $xml = $curlResult->getBody();
982 // Workaround for older GNU Social servers
983 if (($xml == '') && strstr($related, '/notice/')) {
984 $curlResult = Network::curl(str_replace('/notice/', '/api/statuses/show/', $related).'.atom');
986 if ($curlResult->isSuccess()) {
987 Logger::log('GNU Social workaround to fetch XML for URI ' . $related_uri, Logger::DEBUG);
988 $xml = $curlResult->getBody();
992 // Even more worse workaround for GNU Social ;-)
994 $related_guess = OStatus::convertHref($related_uri);
995 $curlResult = Network::curl(str_replace('/notice/', '/api/statuses/show/', $related_guess).'.atom');
997 if ($curlResult->isSuccess()) {
998 Logger::log('GNU Social workaround 2 to fetch XML for URI ' . $related_uri, Logger::DEBUG);
999 $xml = $curlResult->getBody();
1003 // Finally we take the data that we fetched from "ostatus:conversation"
1005 $condition = ['item-uri' => $related_uri, 'protocol' => Conversation::PARCEL_SPLIT_CONVERSATION];
1006 $conversation = DBA::selectFirst('conversation', ['source'], $condition);
1007 if (DBA::isResult($conversation)) {
1009 Logger::log('Got cached XML from conversation for URI '.$related_uri, Logger::DEBUG);
1010 $xml = $conversation['source'];
1015 self::process($xml, $importer, $contact, $hub, $stored, false);
1017 Logger::log("XML couldn't be fetched for URI: ".$related_uri." - href: ".$related, Logger::DEBUG);
1023 * @brief Processes the XML for a repeated post
1025 * @param DOMXPath $xpath The xpath object
1026 * @param object $entry The xml entry that is processed
1027 * @param array $item The item array
1028 * @param array $importer user record of the importing user
1030 * @return array with data from links
1031 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1032 * @throws \ImagickException
1034 private static function processRepeatedItem(DOMXPath $xpath, $entry, array &$item, array $importer)
1036 $activityobject = $xpath->query('activity:object', $entry)->item(0);
1038 if (!is_object($activityobject)) {
1044 $orig_uri = XML::getFirstNodeValue($xpath, 'atom:id/text()', $activityobject);
1046 $links = $xpath->query("atom:link", $activityobject);
1048 $link_data = self::processLinks($links, $item);
1051 $orig_body = XML::getFirstNodeValue($xpath, 'atom:content/text()', $activityobject);
1052 $orig_created = XML::getFirstNodeValue($xpath, 'atom:published/text()', $activityobject);
1053 $orig_edited = XML::getFirstNodeValue($xpath, 'atom:updated/text()', $activityobject);
1055 $orig_author = self::fetchAuthor($xpath, $activityobject, $importer, $dummy, false);
1057 $item["author-name"] = $orig_author["author-name"];
1058 $item["author-link"] = $orig_author["author-link"];
1059 $item["author-id"] = $orig_author["author-id"];
1061 $item["body"] = HTML::toBBCode($orig_body);
1062 $item["created"] = $orig_created;
1063 $item["edited"] = $orig_edited;
1065 $item["uri"] = $orig_uri;
1067 $item["verb"] = XML::getFirstNodeValue($xpath, 'activity:verb/text()', $activityobject);
1069 $item["object-type"] = XML::getFirstNodeValue($xpath, 'activity:object-type/text()', $activityobject);
1071 // Mastodon Content Warning
1072 if (($item["verb"] == ACTIVITY_POST) && $xpath->evaluate('boolean(atom:summary)', $activityobject)) {
1073 $clear_text = XML::getFirstNodeValue($xpath, 'atom:summary/text()', $activityobject);
1074 if (!empty($clear_text)) {
1075 $item['content-warning'] = HTML::toBBCode($clear_text);
1079 $inreplyto = $xpath->query('thr:in-reply-to', $activityobject);
1080 if (is_object($inreplyto->item(0))) {
1081 foreach ($inreplyto->item(0)->attributes as $attributes) {
1082 if ($attributes->name == "ref") {
1083 $item["parent-uri"] = $attributes->textContent;
1092 * @brief Processes links in the XML
1094 * @param object $links The xml data that contain links
1095 * @param array $item The item array
1097 * @return array with data from the links
1099 private static function processLinks($links, array &$item)
1101 $link_data = ['add_body' => '', 'self' => ''];
1103 foreach ($links as $link) {
1104 $attribute = self::readAttributes($link);
1106 if (!empty($attribute['rel']) && !empty($attribute['href'])) {
1107 switch ($attribute['rel']) {
1109 $item["plink"] = $attribute['href'];
1110 if (($item["object-type"] == ACTIVITY_OBJ_QUESTION)
1111 || ($item["object-type"] == ACTIVITY_OBJ_EVENT)
1113 $item["body"] .= add_page_info($attribute['href']);
1116 case "ostatus:conversation":
1117 $link_data['conversation'] = $attribute['href'];
1118 $item['conversation-href'] = $link_data['conversation'];
1119 if (!isset($item['conversation-uri'])) {
1120 $item['conversation-uri'] = $item['conversation-href'];
1124 $filetype = strtolower(substr($attribute['type'], 0, strpos($attribute['type'], '/')));
1125 if ($filetype == 'image') {
1126 $link_data['add_body'] .= "\n[img]".$attribute['href'].'[/img]';
1128 if (!empty($item["attach"])) {
1129 $item["attach"] .= ',';
1131 $item["attach"] = '';
1133 if (!isset($attribute['length'])) {
1134 $attribute['length'] = "0";
1136 $item["attach"] .= '[attach]href="'.$attribute['href'].'" length="'.$attribute['length'].'" type="'.$attribute['type'].'" title="'.defaults($attribute, 'title', '').'"[/attach]';
1140 if ($item["object-type"] != ACTIVITY_OBJ_BOOKMARK) {
1141 if (!isset($item["parent-uri"])) {
1142 $item["parent-uri"] = $attribute['href'];
1144 $link_data['related'] = $attribute['href'];
1146 $item["body"] .= add_page_info($attribute['href']);
1150 if (empty($item["plink"])) {
1151 $item["plink"] = $attribute['href'];
1153 $link_data['self'] = $attribute['href'];
1162 * @brief Create an url out of an uri
1164 * @param string $href URI in the format "parameter1:parameter1:..."
1166 * @return string URL in the format http(s)://....
1168 public static function convertHref($href)
1170 $elements = explode(":", $href);
1172 if ((count($elements) <= 2) || ($elements[0] != "tag")) {
1176 $server = explode(",", $elements[1]);
1177 $conversation = explode("=", $elements[2]);
1179 if ((count($elements) == 4) && ($elements[2] == "post")) {
1180 return "http://".$server[0]."/notice/".$elements[3];
1183 if ((count($conversation) != 2) || ($conversation[1] =="")) {
1186 if ($elements[3] == "objectType=thread") {
1187 return "http://".$server[0]."/conversation/".$conversation[1];
1189 return "http://".$server[0]."/notice/".$conversation[1];
1194 * @brief Checks if the current post is a reshare
1196 * @param array $item The item array of thw post
1198 * @return string The guid if the post is a reshare
1200 private static function getResharedGuid(array $item)
1202 $body = trim($item["body"]);
1204 // Skip if it isn't a pure repeated messages
1205 // Does it start with a share?
1206 if (strpos($body, "[share") > 0) {
1210 // Does it end with a share?
1211 if (strlen($body) > (strrpos($body, "[/share]") + 8)) {
1215 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "$1", $body);
1216 // Skip if there is no shared message in there
1217 if ($body == $attributes) {
1222 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
1223 if (!empty($matches[1])) {
1224 $guid = $matches[1];
1227 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
1228 if (!empty($matches[1])) {
1229 $guid = $matches[1];
1236 * @brief Cleans the body of a post if it contains picture links
1238 * @param string $body The body
1240 * @return string The cleaned body
1241 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1243 private static function formatPicturePost($body)
1245 $siteinfo = BBCode::getAttachedData($body);
1247 if (($siteinfo["type"] == "photo") && (!empty($siteinfo["preview"]) || !empty($siteinfo["image"]))) {
1248 if (isset($siteinfo["preview"])) {
1249 $preview = $siteinfo["preview"];
1251 $preview = $siteinfo["image"];
1254 // Is it a remote picture? Then make a smaller preview here
1255 $preview = ProxyUtils::proxifyUrl($preview, false, ProxyUtils::SIZE_SMALL);
1257 // Is it a local picture? Then make it smaller here
1258 $preview = str_replace(["-0.jpg", "-0.png"], ["-2.jpg", "-2.png"], $preview);
1259 $preview = str_replace(["-1.jpg", "-1.png"], ["-2.jpg", "-2.png"], $preview);
1261 if (isset($siteinfo["url"])) {
1262 $url = $siteinfo["url"];
1264 $url = $siteinfo["image"];
1267 $body = trim($siteinfo["text"])." [url]".$url."[/url]\n[img]".$preview."[/img]";
1274 * @brief Adds the header elements to the XML document
1276 * @param DOMDocument $doc XML document
1277 * @param array $owner Contact data of the poster
1278 * @param string $filter The related feed filter (activity, posts or comments)
1279 * @param bool $feed_mode Behave like a regular feed for users if true
1281 * @return object header root element
1282 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1284 private static function addHeader(DOMDocument $doc, array $owner, $filter, $feed_mode = false)
1286 $root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
1287 $doc->appendChild($root);
1289 $root->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1290 $root->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1291 $root->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1292 $root->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1293 $root->setAttribute("xmlns:poco", NAMESPACE_POCO);
1294 $root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1295 $root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1296 $root->setAttribute("xmlns:mastodon", NAMESPACE_MASTODON);
1299 $selfUri = '/feed/' . $owner["nick"] . '/';
1302 $title = L10n::t('%s\'s timeline', $owner['name']);
1303 $selfUri .= $filter;
1306 $title = L10n::t('%s\'s posts', $owner['name']);
1309 $title = L10n::t('%s\'s comments', $owner['name']);
1310 $selfUri .= $filter;
1315 $selfUri = "/dfrn_poll/" . $owner["nick"];
1318 $attributes = ["uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION . "-" . DB_UPDATE_VERSION];
1319 XML::addElement($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
1320 XML::addElement($doc, $root, "id", System::baseUrl() . "/profile/" . $owner["nick"]);
1321 XML::addElement($doc, $root, "title", $title);
1322 XML::addElement($doc, $root, "subtitle", sprintf("Updates from %s on %s", $owner["name"], Config::get('config', 'sitename')));
1323 XML::addElement($doc, $root, "logo", $owner["photo"]);
1324 XML::addElement($doc, $root, "updated", DateTimeFormat::utcNow(DateTimeFormat::ATOM));
1326 $author = self::addAuthor($doc, $owner);
1327 $root->appendChild($author);
1329 $attributes = ["href" => $owner["url"], "rel" => "alternate", "type" => "text/html"];
1330 XML::addElement($doc, $root, "link", "", $attributes);
1332 /// @TODO We have to find out what this is
1333 /// $attributes = array("href" => System::baseUrl()."/sup",
1334 /// "rel" => "http://api.friendfeed.com/2008/03#sup",
1335 /// "type" => "application/json");
1336 /// XML::addElement($doc, $root, "link", "", $attributes);
1338 self::hublinks($doc, $root, $owner["nick"]);
1340 $attributes = ["href" => System::baseUrl() . "/salmon/" . $owner["nick"], "rel" => "salmon"];
1341 XML::addElement($doc, $root, "link", "", $attributes);
1343 $attributes = ["href" => System::baseUrl() . "/salmon/" . $owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-replies"];
1344 XML::addElement($doc, $root, "link", "", $attributes);
1346 $attributes = ["href" => System::baseUrl() . "/salmon/" . $owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-mention"];
1347 XML::addElement($doc, $root, "link", "", $attributes);
1349 $attributes = ["href" => System::baseUrl() . $selfUri, "rel" => "self", "type" => "application/atom+xml"];
1350 XML::addElement($doc, $root, "link", "", $attributes);
1352 if ($owner['account-type'] == Contact::TYPE_COMMUNITY) {
1353 $condition = ['uid' => $owner['uid'], 'self' => false, 'pending' => false,
1354 'archive' => false, 'hidden' => false, 'blocked' => false];
1355 $members = DBA::count('contact', $condition);
1356 XML::addElement($doc, $root, "statusnet:group_info", "", ["member_count" => $members]);
1363 * @brief Add the link to the push hubs to the XML document
1365 * @param DOMDocument $doc XML document
1366 * @param object $root XML root element where the hub links are added
1367 * @param object $nick nick
1369 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1371 public static function hublinks(DOMDocument $doc, $root, $nick)
1373 $h = System::baseUrl() . '/pubsubhubbub/'.$nick;
1374 XML::addElement($doc, $root, "link", "", ["href" => $h, "rel" => "hub"]);
1378 * @brief Adds attachment data to the XML document
1380 * @param DOMDocument $doc XML document
1381 * @param object $root XML root element where the hub links are added
1382 * @param array $item Data of the item that is to be posted
1384 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1386 private static function getAttachment(DOMDocument $doc, $root, $item)
1388 $siteinfo = BBCode::getAttachedData($item["body"]);
1390 switch ($siteinfo["type"]) {
1392 if (!empty($siteinfo["image"])) {
1393 $imgdata = Image::getInfoFromURL($siteinfo["image"]);
1395 $attributes = ["rel" => "enclosure",
1396 "href" => $siteinfo["image"],
1397 "type" => $imgdata["mime"],
1398 "length" => intval($imgdata["size"])];
1399 XML::addElement($doc, $root, "link", "", $attributes);
1404 $attributes = ["rel" => "enclosure",
1405 "href" => $siteinfo["url"],
1406 "type" => "text/html; charset=UTF-8",
1408 "title" => defaults($siteinfo, "title", $siteinfo["url"])];
1409 XML::addElement($doc, $root, "link", "", $attributes);
1415 if (!Config::get('system', 'ostatus_not_attach_preview') && ($siteinfo["type"] != "photo") && isset($siteinfo["image"])) {
1416 $imgdata = Image::getInfoFromURL($siteinfo["image"]);
1418 $attributes = ["rel" => "enclosure",
1419 "href" => $siteinfo["image"],
1420 "type" => $imgdata["mime"],
1421 "length" => intval($imgdata["size"])];
1423 XML::addElement($doc, $root, "link", "", $attributes);
1427 $arr = explode('[/attach],', $item['attach']);
1429 foreach ($arr as $r) {
1431 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|', $r, $matches);
1433 $attributes = ["rel" => "enclosure",
1434 "href" => $matches[1],
1435 "type" => $matches[3]];
1437 if (intval($matches[2])) {
1438 $attributes["length"] = intval($matches[2]);
1440 if (trim($matches[4]) != "") {
1441 $attributes["title"] = trim($matches[4]);
1443 XML::addElement($doc, $root, "link", "", $attributes);
1450 * @brief Adds the author element to the XML document
1452 * @param DOMDocument $doc XML document
1453 * @param array $owner Contact data of the poster
1454 * @param bool $show_profile Whether to show profile
1456 * @return \DOMElement author element
1457 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1459 private static function addAuthor(DOMDocument $doc, array $owner, $show_profile = true)
1461 $profile = DBA::selectFirst('profile', ['homepage', 'publish'], ['uid' => $owner['uid'], 'is-default' => true]);
1462 $author = $doc->createElement("author");
1463 XML::addElement($doc, $author, "id", $owner["url"]);
1464 if ($owner['account-type'] == User::ACCOUNT_TYPE_COMMUNITY) {
1465 XML::addElement($doc, $author, "activity:object-type", ACTIVITY_OBJ_GROUP);
1467 XML::addElement($doc, $author, "activity:object-type", ACTIVITY_OBJ_PERSON);
1469 XML::addElement($doc, $author, "uri", $owner["url"]);
1470 XML::addElement($doc, $author, "name", $owner["nick"]);
1471 XML::addElement($doc, $author, "email", $owner["addr"]);
1472 if ($show_profile) {
1473 XML::addElement($doc, $author, "summary", BBCode::convert($owner["about"], false, 7));
1476 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $owner["url"]];
1477 XML::addElement($doc, $author, "link", "", $attributes);
1481 "type" => "image/jpeg", // To-Do?
1482 "media:width" => 300,
1483 "media:height" => 300,
1484 "href" => $owner["photo"]];
1485 XML::addElement($doc, $author, "link", "", $attributes);
1487 if (isset($owner["thumb"])) {
1490 "type" => "image/jpeg", // To-Do?
1491 "media:width" => 80,
1492 "media:height" => 80,
1493 "href" => $owner["thumb"]];
1494 XML::addElement($doc, $author, "link", "", $attributes);
1497 XML::addElement($doc, $author, "poco:preferredUsername", $owner["nick"]);
1498 XML::addElement($doc, $author, "poco:displayName", $owner["name"]);
1499 if ($show_profile) {
1500 XML::addElement($doc, $author, "poco:note", BBCode::convert($owner["about"], false, 7));
1502 if (trim($owner["location"]) != "") {
1503 $element = $doc->createElement("poco:address");
1504 XML::addElement($doc, $element, "poco:formatted", $owner["location"]);
1505 $author->appendChild($element);
1509 if (DBA::isResult($profile) && !$show_profile) {
1510 if (trim($profile["homepage"]) != "") {
1511 $urls = $doc->createElement("poco:urls");
1512 XML::addElement($doc, $urls, "poco:type", "homepage");
1513 XML::addElement($doc, $urls, "poco:value", $profile["homepage"]);
1514 XML::addElement($doc, $urls, "poco:primary", "true");
1515 $author->appendChild($urls);
1518 XML::addElement($doc, $author, "followers", "", ["url" => System::baseUrl()."/viewcontacts/".$owner["nick"]]);
1519 XML::addElement($doc, $author, "statusnet:profile_info", "", ["local_id" => $owner["uid"]]);
1521 if ($profile["publish"]) {
1522 XML::addElement($doc, $author, "mastodon:scope", "public");
1530 * @TODO Picture attachments should look like this:
1531 * <a href="https://status.pirati.ca/attachment/572819" title="https://status.pirati.ca/file/heluecht-20151202T222602-rd3u49p.gif"
1532 * class="attachment thumbnail" id="attachment-572819" rel="nofollow external">https://status.pirati.ca/attachment/572819</a>
1536 * @brief Returns the given activity if present - otherwise returns the "post" activity
1538 * @param array $item Data of the item that is to be posted
1540 * @return string activity
1542 private static function constructVerb(array $item)
1544 if (!empty($item['verb'])) {
1545 return $item['verb'];
1548 return ACTIVITY_POST;
1552 * @brief Returns the given object type if present - otherwise returns the "note" object type
1554 * @param array $item Data of the item that is to be posted
1556 * @return string Object type
1558 private static function constructObjecttype(array $item)
1560 if (!empty($item['object-type']) && in_array($item['object-type'], [ACTIVITY_OBJ_NOTE, ACTIVITY_OBJ_COMMENT])) {
1561 return $item['object-type'];
1564 return ACTIVITY_OBJ_NOTE;
1568 * @brief Adds an entry element to the XML document
1570 * @param DOMDocument $doc XML document
1571 * @param array $item Data of the item that is to be posted
1572 * @param array $owner Contact data of the poster
1573 * @param bool $toplevel optional default false
1574 * @param bool $feed_mode Behave like a regular feed for users if true
1576 * @return \DOMElement Entry element
1577 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1578 * @throws \ImagickException
1580 private static function entry(DOMDocument $doc, array $item, array $owner, $toplevel = false, $feed_mode = false)
1584 $repeated_guid = self::getResharedGuid($item);
1585 if ($repeated_guid != "") {
1586 $xml = self::reshareEntry($doc, $item, $owner, $repeated_guid, $toplevel);
1593 if ($item["verb"] == ACTIVITY_LIKE) {
1594 return self::likeEntry($doc, $item, $owner, $toplevel);
1595 } elseif (in_array($item["verb"], [ACTIVITY_FOLLOW, NAMESPACE_OSTATUS."/unfollow"])) {
1596 return self::followEntry($doc, $item, $owner, $toplevel);
1598 return self::noteEntry($doc, $item, $owner, $toplevel, $feed_mode);
1603 * @brief Adds a source entry to the XML document
1605 * @param DOMDocument $doc XML document
1606 * @param array $contact Array of the contact that is added
1608 * @return \DOMElement Source element
1609 * @throws \Exception
1611 private static function sourceEntry(DOMDocument $doc, array $contact)
1613 $source = $doc->createElement("source");
1614 XML::addElement($doc, $source, "id", $contact["poll"]);
1615 XML::addElement($doc, $source, "title", $contact["name"]);
1616 XML::addElement($doc, $source, "link", "", ["rel" => "alternate", "type" => "text/html", "href" => $contact["alias"]]);
1617 XML::addElement($doc, $source, "link", "", ["rel" => "self", "type" => "application/atom+xml", "href" => $contact["poll"]]);
1618 XML::addElement($doc, $source, "icon", $contact["photo"]);
1619 XML::addElement($doc, $source, "updated", DateTimeFormat::utc($contact["success_update"]."+00:00", DateTimeFormat::ATOM));
1625 * @brief Fetches contact data from the contact or the gcontact table
1627 * @param string $url URL of the contact
1628 * @param array $owner Contact data of the poster
1630 * @return array Contact array
1631 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1632 * @throws \ImagickException
1634 private static function contactEntry($url, array $owner)
1637 "SELECT * FROM `contact` WHERE `nurl` = '%s' AND `uid` IN (0, %d) ORDER BY `uid` DESC LIMIT 1",
1638 DBA::escape(Strings::normaliseLink($url)),
1639 intval($owner["uid"])
1641 if (DBA::isResult($r)) {
1643 $contact["uid"] = -1;
1646 if (!DBA::isResult($r)) {
1647 $gcontact = DBA::selectFirst('gcontact', [], ['nurl' => Strings::normaliseLink($url)]);
1648 if (DBA::isResult($r)) {
1649 $contact = $gcontact;
1650 $contact["uid"] = -1;
1651 $contact["success_update"] = $contact["updated"];
1655 if (!DBA::isResult($r)) {
1659 if (!isset($contact["poll"])) {
1660 $data = Probe::uri($url);
1661 $contact["poll"] = $data["poll"];
1663 if (!$contact["alias"]) {
1664 $contact["alias"] = $data["alias"];
1668 if (!isset($contact["alias"])) {
1669 $contact["alias"] = $contact["url"];
1672 $contact['account-type'] = $owner['account-type'];
1678 * @brief Adds an entry element with reshared content
1680 * @param DOMDocument $doc XML document
1681 * @param array $item Data of the item that is to be posted
1682 * @param array $owner Contact data of the poster
1683 * @param string $repeated_guid guid
1684 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1686 * @return bool Entry element
1687 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1688 * @throws \ImagickException
1690 private static function reshareEntry(DOMDocument $doc, array $item, array $owner, $repeated_guid, $toplevel)
1692 if (($item["id"] != $item["parent"]) && (Strings::normaliseLink($item["author-link"]) != Strings::normaliseLink($owner["url"]))) {
1693 Logger::log("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", Logger::DEBUG);
1696 $entry = self::entryHeader($doc, $owner, $item, $toplevel);
1698 $condition = ['uid' => $owner["uid"], 'guid' => $repeated_guid, 'private' => false,
1699 'network' => [Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS]];
1700 $repeated_item = Item::selectFirst([], $condition);
1701 if (!DBA::isResult($repeated_item)) {
1705 $contact = self::contactEntry($repeated_item['author-link'], $owner);
1707 $title = $owner["nick"]." repeated a notice by ".$contact["nick"];
1709 self::entryContent($doc, $entry, $item, $owner, $title, ACTIVITY_SHARE, false);
1711 $as_object = $doc->createElement("activity:object");
1713 XML::addElement($doc, $as_object, "activity:object-type", NAMESPACE_ACTIVITY_SCHEMA."activity");
1715 self::entryContent($doc, $as_object, $repeated_item, $owner, "", "", false);
1717 $author = self::addAuthor($doc, $contact, false);
1718 $as_object->appendChild($author);
1720 $as_object2 = $doc->createElement("activity:object");
1722 XML::addElement($doc, $as_object2, "activity:object-type", self::constructObjecttype($repeated_item));
1724 $title = sprintf("New comment by %s", $contact["nick"]);
1726 self::entryContent($doc, $as_object2, $repeated_item, $owner, $title);
1728 $as_object->appendChild($as_object2);
1730 self::entryFooter($doc, $as_object, $item, $owner, false);
1732 $source = self::sourceEntry($doc, $contact);
1734 $as_object->appendChild($source);
1736 $entry->appendChild($as_object);
1738 self::entryFooter($doc, $entry, $item, $owner);
1744 * @brief Adds an entry element with a "like"
1746 * @param DOMDocument $doc XML document
1747 * @param array $item Data of the item that is to be posted
1748 * @param array $owner Contact data of the poster
1749 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1751 * @return \DOMElement Entry element with "like"
1752 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1753 * @throws \ImagickException
1755 private static function likeEntry(DOMDocument $doc, array $item, array $owner, $toplevel)
1757 if (($item["id"] != $item["parent"]) && (Strings::normaliseLink($item["author-link"]) != Strings::normaliseLink($owner["url"]))) {
1758 Logger::log("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", Logger::DEBUG);
1761 $entry = self::entryHeader($doc, $owner, $item, $toplevel);
1763 $verb = NAMESPACE_ACTIVITY_SCHEMA."favorite";
1764 self::entryContent($doc, $entry, $item, $owner, "Favorite", $verb, false);
1766 $parent = Item::selectFirst([], ['uri' => $item["thr-parent"], 'uid' => $item["uid"]]);
1767 if (DBA::isResult($parent)) {
1768 $as_object = $doc->createElement("activity:object");
1770 XML::addElement($doc, $as_object, "activity:object-type", self::constructObjecttype($parent));
1772 self::entryContent($doc, $as_object, $parent, $owner, "New entry");
1774 $entry->appendChild($as_object);
1777 self::entryFooter($doc, $entry, $item, $owner);
1783 * @brief Adds the person object element to the XML document
1785 * @param DOMDocument $doc XML document
1786 * @param array $owner Contact data of the poster
1787 * @param array $contact Contact data of the target
1789 * @return object author element
1791 private static function addPersonObject(DOMDocument $doc, array $owner, array $contact)
1793 $object = $doc->createElement("activity:object");
1794 XML::addElement($doc, $object, "activity:object-type", ACTIVITY_OBJ_PERSON);
1796 if ($contact['network'] == Protocol::PHANTOM) {
1797 XML::addElement($doc, $object, "id", $contact['url']);
1801 XML::addElement($doc, $object, "id", $contact["alias"]);
1802 XML::addElement($doc, $object, "title", $contact["nick"]);
1804 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $contact["url"]];
1805 XML::addElement($doc, $object, "link", "", $attributes);
1809 "type" => "image/jpeg", // To-Do?
1810 "media:width" => 300,
1811 "media:height" => 300,
1812 "href" => $contact["photo"]];
1813 XML::addElement($doc, $object, "link", "", $attributes);
1815 XML::addElement($doc, $object, "poco:preferredUsername", $contact["nick"]);
1816 XML::addElement($doc, $object, "poco:displayName", $contact["name"]);
1818 if (trim($contact["location"]) != "") {
1819 $element = $doc->createElement("poco:address");
1820 XML::addElement($doc, $element, "poco:formatted", $contact["location"]);
1821 $object->appendChild($element);
1828 * @brief Adds a follow/unfollow entry element
1830 * @param DOMDocument $doc XML document
1831 * @param array $item Data of the follow/unfollow message
1832 * @param array $owner Contact data of the poster
1833 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1835 * @return \DOMElement Entry element
1836 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1837 * @throws \ImagickException
1839 private static function followEntry(DOMDocument $doc, array $item, array $owner, $toplevel)
1841 $item["id"] = $item["parent"] = 0;
1842 $item["created"] = $item["edited"] = date("c");
1843 $item["private"] = true;
1845 $contact = Probe::uri($item['follow']);
1847 if ($contact['alias'] == '') {
1848 $contact['alias'] = $contact["url"];
1850 $item['follow'] = $contact['alias'];
1853 $condition = ['uid' => $owner['uid'], 'nurl' => Strings::normaliseLink($contact["url"])];
1854 $user_contact = DBA::selectFirst('contact', ['id'], $condition);
1856 if (DBA::isResult($user_contact)) {
1857 $connect_id = $user_contact['id'];
1862 if ($item['verb'] == ACTIVITY_FOLLOW) {
1863 $message = L10n::t('%s is now following %s.');
1864 $title = L10n::t('following');
1865 $action = "subscription";
1867 $message = L10n::t('%s stopped following %s.');
1868 $title = L10n::t('stopped following');
1869 $action = "unfollow";
1872 $item["uri"] = $item['parent-uri'] = $item['thr-parent']
1873 = 'tag:'.get_app()->getHostName().
1874 ','.date('Y-m-d').':'.$action.':'.$owner['uid'].
1875 ':person:'.$connect_id.':'.$item['created'];
1877 $item["body"] = sprintf($message, $owner["nick"], $contact["nick"]);
1879 $entry = self::entryHeader($doc, $owner, $item, $toplevel);
1881 self::entryContent($doc, $entry, $item, $owner, $title);
1883 $object = self::addPersonObject($doc, $owner, $contact);
1884 $entry->appendChild($object);
1886 self::entryFooter($doc, $entry, $item, $owner);
1892 * @brief Adds a regular entry element
1894 * @param DOMDocument $doc XML document
1895 * @param array $item Data of the item that is to be posted
1896 * @param array $owner Contact data of the poster
1897 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1898 * @param bool $feed_mode Behave like a regular feed for users if true
1900 * @return \DOMElement Entry element
1901 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1902 * @throws \ImagickException
1904 private static function noteEntry(DOMDocument $doc, array $item, array $owner, $toplevel, $feed_mode)
1906 if (($item["id"] != $item["parent"]) && (Strings::normaliseLink($item["author-link"]) != Strings::normaliseLink($owner["url"]))) {
1907 Logger::log("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", Logger::DEBUG);
1911 if (!empty($item['title'])) {
1912 $title = BBCode::convert($item['title'], false, 7);
1914 $title = sprintf("New note by %s", $owner["nick"]);
1917 $title = sprintf("New comment by %s", $owner["nick"]);
1920 $entry = self::entryHeader($doc, $owner, $item, $toplevel);
1922 XML::addElement($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
1924 self::entryContent($doc, $entry, $item, $owner, $title, '', true, $feed_mode);
1926 self::entryFooter($doc, $entry, $item, $owner, !$feed_mode, $feed_mode);
1932 * @brief Adds a header element to the XML document
1934 * @param DOMDocument $doc XML document
1935 * @param array $owner Contact data of the poster
1936 * @param array $item
1937 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1939 * @return \DOMElement The entry element where the elements are added
1940 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1941 * @throws \ImagickException
1943 private static function entryHeader(DOMDocument $doc, array $owner, array $item, $toplevel)
1946 $entry = $doc->createElement("entry");
1948 if ($owner['account-type'] == User::ACCOUNT_TYPE_COMMUNITY) {
1949 $contact = self::contactEntry($item['author-link'], $owner);
1950 $author = self::addAuthor($doc, $contact, false);
1951 $entry->appendChild($author);
1954 $entry = $doc->createElementNS(NAMESPACE_ATOM1, "entry");
1956 $entry->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1957 $entry->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1958 $entry->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1959 $entry->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1960 $entry->setAttribute("xmlns:poco", NAMESPACE_POCO);
1961 $entry->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1962 $entry->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1963 $entry->setAttribute("xmlns:mastodon", NAMESPACE_MASTODON);
1965 $author = self::addAuthor($doc, $owner);
1966 $entry->appendChild($author);
1973 * @brief Adds elements to the XML document
1975 * @param DOMDocument $doc XML document
1976 * @param \DOMElement $entry Entry element where the content is added
1977 * @param array $item Data of the item that is to be posted
1978 * @param array $owner Contact data of the poster
1979 * @param string $title Title for the post
1980 * @param string $verb The activity verb
1981 * @param bool $complete Add the "status_net" element?
1982 * @param bool $feed_mode Behave like a regular feed for users if true
1984 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1986 private static function entryContent(DOMDocument $doc, \DOMElement $entry, array $item, array $owner, $title, $verb = "", $complete = true, $feed_mode = false)
1989 $verb = self::constructVerb($item);
1992 XML::addElement($doc, $entry, "id", $item["uri"]);
1993 XML::addElement($doc, $entry, "title", html_entity_decode($title, ENT_QUOTES, 'UTF-8'));
1995 $body = self::formatPicturePost($item['body']);
1997 if (!empty($item['title']) && !$feed_mode) {
1998 $body = "[b]".$item['title']."[/b]\n\n".$body;
2001 $body = BBCode::convert($body, false, 7);
2003 XML::addElement($doc, $entry, "content", $body, ["type" => "html"]);
2005 XML::addElement($doc, $entry, "link", "", ["rel" => "alternate", "type" => "text/html",
2006 "href" => System::baseUrl()."/display/".$item["guid"]]
2009 if (!$feed_mode && $complete && ($item["id"] > 0)) {
2010 XML::addElement($doc, $entry, "status_net", "", ["notice_id" => $item["id"]]);
2014 XML::addElement($doc, $entry, "activity:verb", $verb);
2017 XML::addElement($doc, $entry, "published", DateTimeFormat::utc($item["created"]."+00:00", DateTimeFormat::ATOM));
2018 XML::addElement($doc, $entry, "updated", DateTimeFormat::utc($item["edited"]."+00:00", DateTimeFormat::ATOM));
2022 * @brief Adds the elements at the foot of an entry to the XML document
2024 * @param DOMDocument $doc XML document
2025 * @param object $entry The entry element where the elements are added
2026 * @param array $item Data of the item that is to be posted
2027 * @param array $owner Contact data of the poster
2028 * @param bool $complete default true
2029 * @param bool $feed_mode Behave like a regular feed for users if true
2031 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2033 private static function entryFooter(DOMDocument $doc, $entry, array $item, array $owner, $complete = true, $feed_mode = false)
2037 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
2038 $parent = Item::selectFirst(['guid', 'author-link', 'owner-link'], ['id' => $item["parent"]]);
2039 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
2041 $thrparent = Item::selectFirst(['guid', 'author-link', 'owner-link', 'plink'], ['uid' => $owner["uid"], 'uri' => $parent_item]);
2043 if (DBA::isResult($thrparent)) {
2044 $mentioned[$thrparent["author-link"]] = $thrparent["author-link"];
2045 $mentioned[$thrparent["owner-link"]] = $thrparent["owner-link"];
2046 $parent_plink = $thrparent["plink"];
2048 $mentioned[$parent["author-link"]] = $parent["author-link"];
2049 $mentioned[$parent["owner-link"]] = $parent["owner-link"];
2050 $parent_plink = System::baseUrl()."/display/".$parent["guid"];
2054 "ref" => $parent_item,
2055 "href" => $parent_plink];
2056 XML::addElement($doc, $entry, "thr:in-reply-to", "", $attributes);
2060 "href" => $parent_plink];
2061 XML::addElement($doc, $entry, "link", "", $attributes);
2064 if (!$feed_mode && (intval($item["parent"]) > 0)) {
2065 $conversation_href = $conversation_uri = str_replace('/objects/', '/context/', $item['parent-uri']);
2067 if (isset($parent_item)) {
2068 $conversation = DBA::selectFirst('conversation', ['conversation-uri', 'conversation-href'], ['item-uri' => $parent_item]);
2069 if (DBA::isResult($conversation)) {
2070 if ($conversation['conversation-uri'] != '') {
2071 $conversation_uri = $conversation['conversation-uri'];
2073 if ($conversation['conversation-href'] != '') {
2074 $conversation_href = $conversation['conversation-href'];
2079 XML::addElement($doc, $entry, "link", "", ["rel" => "ostatus:conversation", "href" => $conversation_href]);
2082 "href" => $conversation_href,
2083 "local_id" => $item["parent"],
2084 "ref" => $conversation_uri];
2086 XML::addElement($doc, $entry, "ostatus:conversation", $conversation_uri, $attributes);
2089 $tags = item::getFeedTags($item);
2092 foreach ($tags as $t) {
2094 $mentioned[$t[1]] = $t[1];
2099 // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS)
2101 foreach ($mentioned as $mention) {
2102 $newmentions[str_replace("http://", "https://", $mention)] = str_replace("http://", "https://", $mention);
2103 $newmentions[str_replace("https://", "http://", $mention)] = str_replace("https://", "http://", $mention);
2105 $mentioned = $newmentions;
2107 foreach ($mentioned as $mention) {
2108 $condition = ['uid' => $owner['uid'], 'nurl' => Strings::normaliseLink($mention)];
2109 $contact = DBA::selectFirst('contact', ['forum', 'prv', 'self', 'contact-type'], $condition);
2110 if ($contact["forum"] || $contact["prv"] || ($owner['contact-type'] == Contact::TYPE_COMMUNITY) ||
2111 ($contact['self'] && ($owner['account-type'] == User::ACCOUNT_TYPE_COMMUNITY))) {
2112 XML::addElement($doc, $entry, "link", "",
2114 "rel" => "mentioned",
2115 "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
2119 XML::addElement($doc, $entry, "link", "",
2121 "rel" => "mentioned",
2122 "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
2128 if ($owner['account-type'] == User::ACCOUNT_TYPE_COMMUNITY) {
2129 XML::addElement($doc, $entry, "link", "", [
2130 "rel" => "mentioned",
2131 "ostatus:object-type" => "http://activitystrea.ms/schema/1.0/group",
2132 "href" => $owner['url']
2136 if (!$item["private"] && !$feed_mode) {
2137 XML::addElement($doc, $entry, "link", "", ["rel" => "ostatus:attention",
2138 "href" => "http://activityschema.org/collection/public"]);
2139 XML::addElement($doc, $entry, "link", "", ["rel" => "mentioned",
2140 "ostatus:object-type" => "http://activitystrea.ms/schema/1.0/collection",
2141 "href" => "http://activityschema.org/collection/public"]);
2142 XML::addElement($doc, $entry, "mastodon:scope", "public");
2146 foreach ($tags as $t) {
2148 XML::addElement($doc, $entry, "category", "", ["term" => $t[2]]);
2153 self::getAttachment($doc, $entry, $item);
2155 if ($complete && ($item["id"] > 0)) {
2156 $app = $item["app"];
2161 $attributes = ["local_id" => $item["id"], "source" => $app];
2163 if (isset($parent["id"])) {
2164 $attributes["repeat_of"] = $parent["id"];
2167 if ($item["coord"] != "") {
2168 XML::addElement($doc, $entry, "georss:point", $item["coord"]);
2171 XML::addElement($doc, $entry, "statusnet:notice_info", "", $attributes);
2176 * Creates the XML feed for a given nickname
2178 * Supported filters:
2179 * - activity (default): all the public posts
2180 * - posts: all the public top-level posts
2181 * - comments: all the public replies
2183 * Updates the provided last_update parameter if the result comes from the
2184 * cache or it is empty
2186 * @brief Creates the XML feed for a given nickname
2188 * @param string $owner_nick Nickname of the feed owner
2189 * @param string $last_update Date of the last update
2190 * @param integer $max_items Number of maximum items to fetch
2191 * @param string $filter Feed items filter (activity, posts or comments)
2192 * @param boolean $nocache Wether to bypass caching
2193 * @param boolean $feed_mode Behave like a regular feed for users if true
2195 * @return string XML feed
2196 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2197 * @throws \ImagickException
2199 public static function feed($owner_nick, &$last_update, $max_items = 300, $filter = 'activity', $nocache = false, $feed_mode = false)
2201 $stamp = microtime(true);
2203 $owner = User::getOwnerDataByNick($owner_nick);
2208 $cachekey = "ostatus:feed:" . $owner_nick . ":" . $filter . ":" . $last_update;
2210 $previous_created = $last_update;
2212 // Don't cache when the last item was posted less then 15 minutes ago (Cache duration)
2213 if ((time() - strtotime($owner['last-item'])) < 15*60) {
2214 $result = Cache::get($cachekey);
2215 if (!$nocache && !is_null($result)) {
2216 Logger::log('Feed duration: ' . number_format(microtime(true) - $stamp, 3) . ' - ' . $owner_nick . ' - ' . $filter . ' - ' . $previous_created . ' (cached)', Logger::DEBUG);
2217 $last_update = $result['last_update'];
2218 return $result['feed'];
2222 if (!strlen($last_update)) {
2223 $last_update = 'now -30 days';
2226 $check_date = DateTimeFormat::utc($last_update);
2227 $authorid = Contact::getIdForURL($owner["url"], 0, true);
2229 $condition = ["`uid` = ? AND `created` > ? AND NOT `deleted`
2230 AND NOT `private` AND `visible` AND `wall` AND `parent-network` IN (?, ?)",
2231 $owner["uid"], $check_date, Protocol::OSTATUS, Protocol::DFRN];
2233 if ($filter === 'comments') {
2234 $condition[0] .= " AND `object-type` = ? ";
2235 $condition[] = ACTIVITY_OBJ_COMMENT;
2238 if ($owner['account-type'] != User::ACCOUNT_TYPE_COMMUNITY) {
2239 $condition[0] .= " AND `contact-id` = ? AND `author-id` = ?";
2240 $condition[] = $owner["id"];
2241 $condition[] = $authorid;
2244 $params = ['order' => ['created' => true], 'limit' => $max_items];
2246 if ($filter === 'posts') {
2247 $ret = Item::selectThread([], $condition, $params);
2249 $ret = Item::select([], $condition, $params);
2252 $items = Item::inArray($ret);
2254 $doc = new DOMDocument('1.0', 'utf-8');
2255 $doc->formatOutput = true;
2257 $root = self::addHeader($doc, $owner, $filter, $feed_mode);
2259 foreach ($items as $item) {
2260 if (Config::get('system', 'ostatus_debug')) {
2261 $item['body'] .= '🍼';
2264 $entry = self::entry($doc, $item, $owner, false, $feed_mode);
2265 $root->appendChild($entry);
2267 if ($last_update < $item['created']) {
2268 $last_update = $item['created'];
2272 $feeddata = trim($doc->saveXML());
2274 $msg = ['feed' => $feeddata, 'last_update' => $last_update];
2275 Cache::set($cachekey, $msg, Cache::QUARTER_HOUR);
2277 Logger::log('Feed duration: ' . number_format(microtime(true) - $stamp, 3) . ' - ' . $owner_nick . ' - ' . $filter . ' - ' . $previous_created, Logger::DEBUG);
2283 * @brief Creates the XML for a salmon message
2285 * @param array $item Data of the item that is to be posted
2286 * @param array $owner Contact data of the poster
2288 * @return string XML for the salmon
2289 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2290 * @throws \ImagickException
2292 public static function salmon(array $item, array $owner)
2294 $doc = new DOMDocument('1.0', 'utf-8');
2295 $doc->formatOutput = true;
2297 if (Config::get('system', 'ostatus_debug')) {
2298 $item['body'] .= '🐟';
2301 $entry = self::entry($doc, $item, $owner, true);
2303 $doc->appendChild($entry);
2305 return trim($doc->saveXML());