3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Protocol;
26 use Friendica\App\BaseURL;
27 use Friendica\Content\Text\BBCode;
28 use Friendica\Core\Hook;
29 use Friendica\Core\Logger;
30 use Friendica\Core\Protocol;
31 use Friendica\Database\DBA;
33 use Friendica\Model\Contact;
34 use Friendica\Model\Conversation;
35 use Friendica\Model\Event;
36 use Friendica\Model\Item;
37 use Friendica\Model\ItemURI;
38 use Friendica\Model\Mail;
39 use Friendica\Model\Notify\Type;
40 use Friendica\Model\PermissionSet;
41 use Friendica\Model\Post\Category;
42 use Friendica\Model\Profile;
43 use Friendica\Model\Tag;
44 use Friendica\Model\User;
45 use Friendica\Network\Probe;
46 use Friendica\Util\Crypto;
47 use Friendica\Util\DateTimeFormat;
48 use Friendica\Util\Images;
49 use Friendica\Util\Network;
50 use Friendica\Util\Strings;
51 use Friendica\Util\XML;
54 * This class contain functions to create and send DFRN XML files
59 const TOP_LEVEL = 0; // Top level posting
60 const REPLY = 1; // Regular reply that is stored locally
61 const REPLY_RC = 2; // Reply that will be relayed
64 * Generates an array of contact and user for DFRN imports
66 * This array contains not only the receiver but also the sender of the message.
68 * @param integer $cid Contact id
69 * @param integer $uid User id
71 * @return array importer
74 public static function getImporter($cid, $uid = 0)
76 $condition = ['id' => $cid, 'blocked' => false, 'pending' => false];
77 $contact = DBA::selectFirst('contact', [], $condition);
78 if (!DBA::isResult($contact)) {
82 $contact['cpubkey'] = $contact['pubkey'];
83 $contact['cprvkey'] = $contact['prvkey'];
84 $contact['senderName'] = $contact['name'];
87 $condition = ['uid' => $uid, 'account_expired' => false, 'account_removed' => false];
88 $user = DBA::selectFirst('user', [], $condition);
89 if (!DBA::isResult($user)) {
93 $user['importer_uid'] = $user['uid'];
94 $user['uprvkey'] = $user['prvkey'];
96 $user = ['importer_uid' => 0, 'uprvkey' => '', 'timezone' => 'UTC',
97 'nickname' => '', 'sprvkey' => '', 'spubkey' => '',
98 'page-flags' => 0, 'account-type' => 0, 'prvnets' => 0];
101 return array_merge($contact, $user);
105 * Generates the atom entries for delivery.php
107 * This function is used whenever content is transmitted via DFRN.
109 * @param array $items Item elements
110 * @param array $owner Owner record
112 * @return string DFRN entries
113 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
114 * @throws \ImagickException
115 * @todo Find proper type-hints
117 public static function entries($items, $owner)
119 $doc = new DOMDocument('1.0', 'utf-8');
120 $doc->formatOutput = true;
122 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
124 if (! count($items)) {
125 return trim($doc->saveXML());
128 foreach ($items as $item) {
129 // These values aren't sent when sending from the queue.
130 /// @todo Check if we can set these values from the queue or if they are needed at all.
131 $item["entry:comment-allow"] = ($item["entry:comment-allow"] ?? '') ?: true;
132 $item["entry:cid"] = $item["entry:cid"] ?? 0;
134 $entry = self::entry($doc, "text", $item, $owner, $item["entry:comment-allow"], $item["entry:cid"]);
136 $root->appendChild($entry);
140 return trim($doc->saveXML());
144 * Generate an atom feed for the given user
146 * This function is called when another server is pulling data from the user feed.
148 * @param string $dfrn_id DFRN ID from the requesting party
149 * @param string $owner_nick Owner nick name
150 * @param string $last_update Date of the last update
151 * @param int $direction Can be -1, 0 or 1.
152 * @param boolean $onlyheader Output only the header without content? (Default is "no")
154 * @return string DFRN feed entries
155 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
156 * @throws \ImagickException
158 public static function feed($dfrn_id, $owner_nick, $last_update, $direction = 0, $onlyheader = false)
162 $sitefeed = ((strlen($owner_nick)) ? false : true); // not yet implemented, need to rewrite huge chunks of following logic
163 $public_feed = (($dfrn_id) ? false : true);
164 $starred = false; // not yet implemented, possible security issues
167 if ($public_feed && $a->argc > 2) {
168 for ($x = 2; $x < $a->argc; $x++) {
169 if ($a->argv[$x] == 'converse') {
172 if ($a->argv[$x] == 'starred') {
175 if ($a->argv[$x] == 'category' && $a->argc > ($x + 1) && strlen($a->argv[$x+1])) {
176 $category = $a->argv[$x+1];
181 // default permissions - anonymous user
183 $sql_extra = sprintf(" AND `item`.`private` != %s ", Item::PRIVATE);
185 $owner = DBA::selectFirst('owner-view', [], ['nickname' => $owner_nick]);
186 if (!DBA::isResult($owner)) {
187 Logger::log(sprintf('No contact found for nickname=%d', $owner_nick), Logger::WARNING);
191 $owner_id = $owner['uid'];
193 $sql_post_table = "";
195 if (! $public_feed) {
196 switch ($direction) {
198 $sql_extra = sprintf(" AND `issued-id` = '%s' ", DBA::escape($dfrn_id));
201 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", DBA::escape($dfrn_id));
204 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", DBA::escape($dfrn_id));
212 "SELECT * FROM `contact` WHERE NOT `blocked` AND `contact`.`uid` = %d $sql_extra LIMIT 1",
216 if (! DBA::isResult($r)) {
217 Logger::log(sprintf('No contact found for uid=%d', $owner_id), Logger::WARNING);
223 $set = PermissionSet::get($owner_id, $contact['id']);
226 $sql_extra = " AND `item`.`psid` IN (" . implode(',', $set) .")";
228 $sql_extra = sprintf(" AND `item`.`private` != %s", Item::PRIVATE);
238 if (! strlen($last_update)) {
239 $last_update = 'now -30 days';
242 if (isset($category)) {
243 $sql_post_table = sprintf("INNER JOIN (SELECT `uri-id` FROM `category-view` WHERE `name` = '%s' AND `type` = %d AND `uid` = %d ORDER BY `uri-id` DESC) AS `category` ON `item`.`uri-id` = `category`.`uri-id` ",
244 DBA::escape(Strings::protectSprintf($category)), intval(Category::CATEGORY), intval($owner_id));
247 if ($public_feed && ! $converse) {
248 $sql_extra .= " AND `contact`.`self` = 1 ";
251 $check_date = DateTimeFormat::utc($last_update);
255 FROM `item` USE INDEX (`uid_wall_changed`) $sql_post_table
256 STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
257 WHERE `item`.`uid` = %d AND `item`.`wall` AND `item`.`changed` > '%s'
258 AND `item`.`visible` $sql_extra
259 ORDER BY `item`.`parent` ".$sort.", `item`.`received` ASC LIMIT 0, 300",
261 DBA::escape($check_date),
266 foreach ($r as $item) {
267 $ids[] = $item['id'];
271 $ret = Item::select(Item::DELIVER_FIELDLIST, ['id' => $ids]);
272 $items = Item::inArray($ret);
278 * Will check further below if this actually returned results.
279 * We will provide an empty feed if that is the case.
282 $doc = new DOMDocument('1.0', 'utf-8');
283 $doc->formatOutput = true;
285 $alternatelink = $owner['url'];
287 if (isset($category)) {
288 $alternatelink .= "/category/".$category;
292 $author = "dfrn:owner";
297 $root = self::addHeader($doc, $owner, $author, $alternatelink, true);
299 /// @TODO This hook can't work anymore
300 // \Friendica\Core\Hook::callAll('atom_feed', $atom);
302 if (!DBA::isResult($items) || $onlyheader) {
303 $atom = trim($doc->saveXML());
305 Hook::callAll('atom_feed_end', $atom);
310 foreach ($items as $item) {
311 // prevent private email from leaking.
312 if ($item['network'] == Protocol::MAIL) {
316 // public feeds get html, our own nodes use bbcode
320 // catch any email that's in a public conversation and make sure it doesn't leak
321 if ($item['private'] == Item::PRIVATE) {
328 $entry = self::entry($doc, $type, $item, $owner, true);
330 $root->appendChild($entry);
334 $atom = trim($doc->saveXML());
336 Hook::callAll('atom_feed_end', $atom);
342 * Generate an atom entry for a given item id
344 * @param int $item_id The item id
345 * @param boolean $conversation Show the conversation. If false show the single post.
347 * @return string DFRN feed entry
348 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
349 * @throws \ImagickException
351 public static function itemFeed($item_id, $conversation = false)
354 $condition = ['parent' => $item_id];
356 $condition = ['id' => $item_id];
359 $ret = Item::select(Item::DELIVER_FIELDLIST, $condition);
360 $items = Item::inArray($ret);
361 if (!DBA::isResult($items)) {
367 if ($item['uid'] != 0) {
368 $owner = User::getOwnerDataById($item['uid']);
373 $owner = ['uid' => 0, 'nick' => 'feed-item'];
376 $doc = new DOMDocument('1.0', 'utf-8');
377 $doc->formatOutput = true;
381 $root = $doc->createElementNS(ActivityNamespace::ATOM1, 'feed');
382 $doc->appendChild($root);
384 $root->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
385 $root->setAttribute("xmlns:at", ActivityNamespace::TOMB);
386 $root->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
387 $root->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
388 $root->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
389 $root->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
390 $root->setAttribute("xmlns:poco", ActivityNamespace::POCO);
391 $root->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
392 $root->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
394 //$root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
396 foreach ($items as $item) {
397 $entry = self::entry($doc, $type, $item, $owner, true, 0);
399 $root->appendChild($entry);
403 self::entry($doc, $type, $item, $owner, true, 0, true);
406 $atom = trim($doc->saveXML());
411 * Create XML text for DFRN mails
413 * @param array $item message elements
414 * @param array $owner Owner record
416 * @return string DFRN mail
417 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
418 * @todo Find proper type-hints
420 public static function mail($item, $owner)
422 $doc = new DOMDocument('1.0', 'utf-8');
423 $doc->formatOutput = true;
425 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
427 $mail = $doc->createElement("dfrn:mail");
428 $sender = $doc->createElement("dfrn:sender");
430 XML::addElement($doc, $sender, "dfrn:name", $owner['name']);
431 XML::addElement($doc, $sender, "dfrn:uri", $owner['url']);
432 XML::addElement($doc, $sender, "dfrn:avatar", $owner['thumb']);
434 $mail->appendChild($sender);
436 XML::addElement($doc, $mail, "dfrn:id", $item['uri']);
437 XML::addElement($doc, $mail, "dfrn:in-reply-to", $item['parent-uri']);
438 XML::addElement($doc, $mail, "dfrn:sentdate", DateTimeFormat::utc($item['created'] . '+00:00', DateTimeFormat::ATOM));
439 XML::addElement($doc, $mail, "dfrn:subject", $item['title']);
440 XML::addElement($doc, $mail, "dfrn:content", $item['body']);
442 $root->appendChild($mail);
444 return trim($doc->saveXML());
448 * Create XML text for DFRN friend suggestions
450 * @param array $item suggestion elements
451 * @param array $owner Owner record
453 * @return string DFRN suggestions
454 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
455 * @todo Find proper type-hints
457 public static function fsuggest($item, $owner)
459 $doc = new DOMDocument('1.0', 'utf-8');
460 $doc->formatOutput = true;
462 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
464 $suggest = $doc->createElement("dfrn:suggest");
466 XML::addElement($doc, $suggest, "dfrn:url", $item['url']);
467 XML::addElement($doc, $suggest, "dfrn:name", $item['name']);
468 XML::addElement($doc, $suggest, "dfrn:photo", $item['photo']);
469 XML::addElement($doc, $suggest, "dfrn:request", $item['request']);
470 XML::addElement($doc, $suggest, "dfrn:note", $item['note']);
472 $root->appendChild($suggest);
474 return trim($doc->saveXML());
478 * Create XML text for DFRN relocations
480 * @param array $owner Owner record
481 * @param int $uid User ID
483 * @return string DFRN relocations
484 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
485 * @todo Find proper type-hints
487 public static function relocate($owner, $uid)
490 /* get site pubkey. this could be a new installation with no site keys*/
491 $pubkey = DI::config()->get('system', 'site_pubkey');
493 $res = Crypto::newKeypair(1024);
494 DI::config()->set('system', 'site_prvkey', $res['prvkey']);
495 DI::config()->set('system', 'site_pubkey', $res['pubkey']);
499 "SELECT `resource-id` , `scale`, type FROM `photo`
500 WHERE `profile` = 1 AND `uid` = %d ORDER BY scale;",
504 $ext = Images::supportedTypes();
506 foreach ($rp as $p) {
507 $photos[$p['scale']] = DI::baseUrl().'/photo/'.$p['resource-id'].'-'.$p['scale'].'.'.$ext[$p['type']];
511 $doc = new DOMDocument('1.0', 'utf-8');
512 $doc->formatOutput = true;
514 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
516 $relocate = $doc->createElement("dfrn:relocate");
518 XML::addElement($doc, $relocate, "dfrn:url", $owner['url']);
519 XML::addElement($doc, $relocate, "dfrn:name", $owner['name']);
520 XML::addElement($doc, $relocate, "dfrn:addr", $owner['addr']);
521 XML::addElement($doc, $relocate, "dfrn:avatar", $owner['avatar']);
522 XML::addElement($doc, $relocate, "dfrn:photo", $photos[4]);
523 XML::addElement($doc, $relocate, "dfrn:thumb", $photos[5]);
524 XML::addElement($doc, $relocate, "dfrn:micro", $photos[6]);
525 XML::addElement($doc, $relocate, "dfrn:request", $owner['request']);
526 XML::addElement($doc, $relocate, "dfrn:confirm", $owner['confirm']);
527 XML::addElement($doc, $relocate, "dfrn:notify", $owner['notify']);
528 XML::addElement($doc, $relocate, "dfrn:poll", $owner['poll']);
529 XML::addElement($doc, $relocate, "dfrn:sitepubkey", DI::config()->get('system', 'site_pubkey'));
531 $root->appendChild($relocate);
533 return trim($doc->saveXML());
537 * Adds the header elements for the DFRN protocol
539 * @param DOMDocument $doc XML document
540 * @param array $owner Owner record
541 * @param string $authorelement Element name for the author
542 * @param string $alternatelink link to profile or category
543 * @param bool $public Is it a header for public posts?
545 * @return object XML root object
546 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
547 * @todo Find proper type-hints
549 private static function addHeader(DOMDocument $doc, $owner, $authorelement, $alternatelink = "", $public = false)
552 if ($alternatelink == "") {
553 $alternatelink = $owner['url'];
556 $root = $doc->createElementNS(ActivityNamespace::ATOM1, 'feed');
557 $doc->appendChild($root);
559 $root->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
560 $root->setAttribute("xmlns:at", ActivityNamespace::TOMB);
561 $root->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
562 $root->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
563 $root->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
564 $root->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
565 $root->setAttribute("xmlns:poco", ActivityNamespace::POCO);
566 $root->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
567 $root->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
569 XML::addElement($doc, $root, "id", DI::baseUrl()."/profile/".$owner["nick"]);
570 XML::addElement($doc, $root, "title", $owner["name"]);
572 $attributes = ["uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION];
573 XML::addElement($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
575 $attributes = ["rel" => "license", "href" => "http://creativecommons.org/licenses/by/3.0/"];
576 XML::addElement($doc, $root, "link", "", $attributes);
578 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $alternatelink];
579 XML::addElement($doc, $root, "link", "", $attributes);
583 // DFRN itself doesn't uses this. But maybe someone else wants to subscribe to the public feed.
584 OStatus::hublinks($doc, $root, $owner["nick"]);
586 $attributes = ["rel" => "salmon", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
587 XML::addElement($doc, $root, "link", "", $attributes);
589 $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-replies", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
590 XML::addElement($doc, $root, "link", "", $attributes);
592 $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-mention", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
593 XML::addElement($doc, $root, "link", "", $attributes);
596 // For backward compatibility we keep this element
597 if ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
598 XML::addElement($doc, $root, "dfrn:community", 1);
601 // The former element is replaced by this one
602 XML::addElement($doc, $root, "dfrn:account_type", $owner["account-type"]);
604 /// @todo We need a way to transmit the different page flags like "User::PAGE_FLAGS_PRVGROUP"
606 XML::addElement($doc, $root, "updated", DateTimeFormat::utcNow(DateTimeFormat::ATOM));
608 $author = self::addAuthor($doc, $owner, $authorelement, $public);
609 $root->appendChild($author);
615 * Adds the author element in the header for the DFRN protocol
617 * @param DOMDocument $doc XML document
618 * @param array $owner Owner record
619 * @param string $authorelement Element name for the author
620 * @param boolean $public boolean
622 * @return \DOMElement XML author object
623 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
624 * @todo Find proper type-hints
626 private static function addAuthor(DOMDocument $doc, array $owner, $authorelement, $public)
628 // Should the profile be "unsearchable" in the net? Then add the "hide" element
629 $hide = DBA::exists('profile', ['uid' => $owner['uid'], 'net-publish' => false]);
631 $author = $doc->createElement($authorelement);
633 $namdate = DateTimeFormat::utc($owner['name-date'].'+00:00', DateTimeFormat::ATOM);
634 $picdate = DateTimeFormat::utc($owner['avatar-date'].'+00:00', DateTimeFormat::ATOM);
638 if (!$public || !$hide) {
639 $attributes = ["dfrn:updated" => $namdate];
642 XML::addElement($doc, $author, "name", $owner["name"], $attributes);
643 XML::addElement($doc, $author, "uri", DI::baseUrl().'/profile/'.$owner["nickname"], $attributes);
644 XML::addElement($doc, $author, "dfrn:handle", $owner["addr"], $attributes);
646 $attributes = ["rel" => "photo", "type" => "image/jpeg",
647 "media:width" => 300, "media:height" => 300, "href" => $owner['photo']];
649 if (!$public || !$hide) {
650 $attributes["dfrn:updated"] = $picdate;
653 XML::addElement($doc, $author, "link", "", $attributes);
655 $attributes["rel"] = "avatar";
656 XML::addElement($doc, $author, "link", "", $attributes);
659 XML::addElement($doc, $author, "dfrn:hide", "true");
662 // The following fields will only be generated if the data isn't meant for a public feed
667 $birthday = feed_birthday($owner['uid'], $owner['timezone']);
670 XML::addElement($doc, $author, "dfrn:birthday", $birthday);
673 // Only show contact details when we are allowed to
674 $profile = DBA::selectFirst('owner-view',
675 ['about', 'name', 'homepage', 'nickname', 'timezone', 'locality', 'region', 'country-name', 'pub_keywords', 'xmpp', 'dob'],
676 ['uid' => $owner['uid'], 'hidewall' => false]);
677 if (DBA::isResult($profile)) {
678 XML::addElement($doc, $author, "poco:displayName", $profile["name"]);
679 XML::addElement($doc, $author, "poco:updated", $namdate);
681 if (trim($profile["dob"]) > DBA::NULL_DATE) {
682 XML::addElement($doc, $author, "poco:birthday", "0000-".date("m-d", strtotime($profile["dob"])));
685 XML::addElement($doc, $author, "poco:note", $profile["about"]);
686 XML::addElement($doc, $author, "poco:preferredUsername", $profile["nickname"]);
688 $savetz = date_default_timezone_get();
689 date_default_timezone_set($profile["timezone"]);
690 XML::addElement($doc, $author, "poco:utcOffset", date("P"));
691 date_default_timezone_set($savetz);
693 if (trim($profile["homepage"]) != "") {
694 $urls = $doc->createElement("poco:urls");
695 XML::addElement($doc, $urls, "poco:type", "homepage");
696 XML::addElement($doc, $urls, "poco:value", $profile["homepage"]);
697 XML::addElement($doc, $urls, "poco:primary", "true");
698 $author->appendChild($urls);
701 if (trim($profile["pub_keywords"]) != "") {
702 $keywords = explode(",", $profile["pub_keywords"]);
704 foreach ($keywords as $keyword) {
705 XML::addElement($doc, $author, "poco:tags", trim($keyword));
709 if (trim($profile["xmpp"]) != "") {
710 $ims = $doc->createElement("poco:ims");
711 XML::addElement($doc, $ims, "poco:type", "xmpp");
712 XML::addElement($doc, $ims, "poco:value", $profile["xmpp"]);
713 XML::addElement($doc, $ims, "poco:primary", "true");
714 $author->appendChild($ims);
717 if (trim($profile["locality"].$profile["region"].$profile["country-name"]) != "") {
718 $element = $doc->createElement("poco:address");
720 XML::addElement($doc, $element, "poco:formatted", Profile::formatLocation($profile));
722 if (trim($profile["locality"]) != "") {
723 XML::addElement($doc, $element, "poco:locality", $profile["locality"]);
726 if (trim($profile["region"]) != "") {
727 XML::addElement($doc, $element, "poco:region", $profile["region"]);
730 if (trim($profile["country-name"]) != "") {
731 XML::addElement($doc, $element, "poco:country", $profile["country-name"]);
734 $author->appendChild($element);
742 * Adds the author elements in the "entry" elements of the DFRN protocol
744 * @param DOMDocument $doc XML document
745 * @param string $element Element name for the author
746 * @param string $contact_url Link of the contact
747 * @param array $item Item elements
749 * @return \DOMElement XML author object
750 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
751 * @todo Find proper type-hints
753 private static function addEntryAuthor(DOMDocument $doc, $element, $contact_url, $item)
755 $author = $doc->createElement($element);
757 $contact = Contact::getByURLForUser($contact_url, $item["uid"], false, ['url', 'name', 'addr', 'photo']);
758 if (!empty($contact)) {
759 XML::addElement($doc, $author, "name", $contact["name"]);
760 XML::addElement($doc, $author, "uri", $contact["url"]);
761 XML::addElement($doc, $author, "dfrn:handle", $contact["addr"]);
764 /// - Check real image type and image size
765 /// - Check which of these boths elements we should use
768 "type" => "image/jpeg",
770 "media:height" => 80,
771 "href" => $contact["photo"]];
772 XML::addElement($doc, $author, "link", "", $attributes);
776 "type" => "image/jpeg",
778 "media:height" => 80,
779 "href" => $contact["photo"]];
780 XML::addElement($doc, $author, "link", "", $attributes);
787 * Adds the activity elements
789 * @param DOMDocument $doc XML document
790 * @param string $element Element name for the activity
791 * @param string $activity activity value
793 * @return \DOMElement XML activity object
794 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
795 * @todo Find proper type-hints
797 private static function createActivity(DOMDocument $doc, $element, $activity)
800 $entry = $doc->createElement($element);
802 $r = XML::parseString($activity);
808 XML::addElement($doc, $entry, "activity:object-type", $r->type);
812 XML::addElement($doc, $entry, "id", $r->id);
816 XML::addElement($doc, $entry, "title", $r->title);
820 if (substr($r->link, 0, 1) == '<') {
821 if (strstr($r->link, '&') && (! strstr($r->link, '&'))) {
822 $r->link = str_replace('&', '&', $r->link);
825 $r->link = preg_replace('/\<link(.*?)\"\>/', '<link$1"/>', $r->link);
827 // XML does need a single element as root element so we add a dummy element here
828 $data = XML::parseString("<dummy>" . $r->link . "</dummy>");
829 if (is_object($data)) {
830 foreach ($data->link as $link) {
832 foreach ($link->attributes() as $parameter => $value) {
833 $attributes[$parameter] = $value;
835 XML::addElement($doc, $entry, "link", "", $attributes);
839 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $r->link];
840 XML::addElement($doc, $entry, "link", "", $attributes);
844 XML::addElement($doc, $entry, "content", BBCode::convert($r->content), ["type" => "html"]);
854 * Adds the elements for attachments
856 * @param object $doc XML document
857 * @param object $root XML root
858 * @param array $item Item element
860 * @return void XML attachment object
861 * @todo Find proper type-hints
863 private static function getAttachment($doc, $root, $item)
865 $arr = explode('[/attach],', $item['attach']);
867 foreach ($arr as $r) {
869 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|', $r, $matches);
871 $attributes = ["rel" => "enclosure",
872 "href" => $matches[1],
873 "type" => $matches[3]];
875 if (intval($matches[2])) {
876 $attributes["length"] = intval($matches[2]);
879 if (trim($matches[4]) != "") {
880 $attributes["title"] = trim($matches[4]);
883 XML::addElement($doc, $root, "link", "", $attributes);
890 * Adds the "entry" elements for the DFRN protocol
892 * @param DOMDocument $doc XML document
893 * @param string $type "text" or "html"
894 * @param array $item Item element
895 * @param array $owner Owner record
896 * @param bool $comment Trigger the sending of the "comment" element
897 * @param int $cid Contact ID of the recipient
898 * @param bool $single If set, the entry is created as an XML document with a single "entry" element
900 * @return null|\DOMElement XML entry object
901 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
902 * @throws \ImagickException
903 * @todo Find proper type-hints
905 private static function entry(DOMDocument $doc, $type, array $item, array $owner, $comment = false, $cid = 0, $single = false)
909 if (!$item['parent']) {
910 Logger::notice('Item without parent found.', ['type' => $type, 'item' => $item]);
914 if ($item['deleted']) {
915 $attributes = ["ref" => $item['uri'], "when" => DateTimeFormat::utc($item['edited'] . '+00:00', DateTimeFormat::ATOM)];
916 return XML::createElement($doc, "at:deleted-entry", "", $attributes);
920 $entry = $doc->createElement("entry");
922 $entry = $doc->createElementNS(ActivityNamespace::ATOM1, 'entry');
923 $doc->appendChild($entry);
925 $entry->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
926 $entry->setAttribute("xmlns:at", ActivityNamespace::TOMB);
927 $entry->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
928 $entry->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
929 $entry->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
930 $entry->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
931 $entry->setAttribute("xmlns:poco", ActivityNamespace::POCO);
932 $entry->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
933 $entry->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
936 if ($item['private'] == Item::PRIVATE) {
937 $body = Item::fixPrivatePhotos($item['body'], $owner['uid'], $item, $cid);
939 $body = $item['body'];
942 // Remove the abstract element. It is only locally important.
943 $body = BBCode::stripAbstract($body);
946 if ($type == 'html') {
949 if ($item['title'] != "") {
950 $htmlbody = "[b]" . $item['title'] . "[/b]\n\n" . $htmlbody;
953 $htmlbody = BBCode::convert($htmlbody, false, BBCode::OSTATUS);
956 $author = self::addEntryAuthor($doc, "author", $item["author-link"], $item);
957 $entry->appendChild($author);
959 $dfrnowner = self::addEntryAuthor($doc, "dfrn:owner", $item["owner-link"], $item);
960 $entry->appendChild($dfrnowner);
962 if ($item['gravity'] != GRAVITY_PARENT) {
963 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
964 $parent = Item::selectFirst(['guid', 'plink'], ['uri' => $parent_item, 'uid' => $item['uid']]);
965 $attributes = ["ref" => $parent_item, "type" => "text/html",
966 "href" => $parent['plink'],
967 "dfrn:diaspora_guid" => $parent['guid']];
968 XML::addElement($doc, $entry, "thr:in-reply-to", "", $attributes);
971 // Add conversation data. This is used for OStatus
972 $conversation_href = DI::baseUrl()."/display/".$item["parent-guid"];
973 $conversation_uri = $conversation_href;
975 if (isset($parent_item)) {
976 $conversation = DBA::selectFirst('conversation', ['conversation-uri', 'conversation-href'], ['item-uri' => $item['parent-uri']]);
977 if (DBA::isResult($conversation)) {
978 if ($conversation['conversation-uri'] != '') {
979 $conversation_uri = $conversation['conversation-uri'];
981 if ($conversation['conversation-href'] != '') {
982 $conversation_href = $conversation['conversation-href'];
988 "href" => $conversation_href,
989 "ref" => $conversation_uri];
991 XML::addElement($doc, $entry, "ostatus:conversation", $conversation_uri, $attributes);
993 XML::addElement($doc, $entry, "id", $item["uri"]);
994 XML::addElement($doc, $entry, "title", $item["title"]);
996 XML::addElement($doc, $entry, "published", DateTimeFormat::utc($item["created"] . "+00:00", DateTimeFormat::ATOM));
997 XML::addElement($doc, $entry, "updated", DateTimeFormat::utc($item["edited"] . "+00:00", DateTimeFormat::ATOM));
999 // "dfrn:env" is used to read the content
1000 XML::addElement($doc, $entry, "dfrn:env", Strings::base64UrlEncode($body, true));
1002 // The "content" field is not read by the receiver. We could remove it when the type is "text"
1003 // We keep it at the moment, maybe there is some old version that doesn't read "dfrn:env"
1004 XML::addElement($doc, $entry, "content", (($type == 'html') ? $htmlbody : $body), ["type" => $type]);
1006 // We save this value in "plink". Maybe we should read it from there as well?
1012 ["rel" => "alternate", "type" => "text/html",
1013 "href" => DI::baseUrl() . "/display/" . $item["guid"]]
1016 // "comment-allow" is some old fashioned stuff for old Friendica versions.
1017 // It is included in the rewritten code for completeness
1019 XML::addElement($doc, $entry, "dfrn:comment-allow", 1);
1022 if ($item['location']) {
1023 XML::addElement($doc, $entry, "dfrn:location", $item['location']);
1026 if ($item['coord']) {
1027 XML::addElement($doc, $entry, "georss:point", $item['coord']);
1030 if ($item['private']) {
1031 // Friendica versions prior to 2020.3 can't handle "unlisted" properly. So we can only transmit public and private
1032 XML::addElement($doc, $entry, "dfrn:private", ($item['private'] == Item::PRIVATE ? Item::PRIVATE : Item::PUBLIC));
1033 XML::addElement($doc, $entry, "dfrn:unlisted", $item['private'] == Item::UNLISTED);
1036 if ($item['extid']) {
1037 XML::addElement($doc, $entry, "dfrn:extid", $item['extid']);
1040 if ($item['post-type'] == Item::PT_PAGE) {
1041 XML::addElement($doc, $entry, "dfrn:bookmark", "true");
1045 XML::addElement($doc, $entry, "statusnet:notice_info", "", ["local_id" => $item['id'], "source" => $item['app']]);
1048 XML::addElement($doc, $entry, "dfrn:diaspora_guid", $item["guid"]);
1050 // The signed text contains the content in Markdown, the sender handle and the signatur for the content
1051 // It is needed for relayed comments to Diaspora.
1052 if ($item['signed_text']) {
1053 $sign = base64_encode(json_encode(['signed_text' => $item['signed_text'],'signature' => '','signer' => '']));
1054 XML::addElement($doc, $entry, "dfrn:diaspora_signature", $sign);
1057 XML::addElement($doc, $entry, "activity:verb", self::constructVerb($item));
1059 if ($item['object-type'] != "") {
1060 XML::addElement($doc, $entry, "activity:object-type", $item['object-type']);
1061 } elseif ($item['gravity'] == GRAVITY_PARENT) {
1062 XML::addElement($doc, $entry, "activity:object-type", Activity\ObjectType::NOTE);
1064 XML::addElement($doc, $entry, "activity:object-type", Activity\ObjectType::COMMENT);
1067 $actobj = self::createActivity($doc, "activity:object", $item['object']);
1069 $entry->appendChild($actobj);
1072 $actarg = self::createActivity($doc, "activity:target", $item['target']);
1074 $entry->appendChild($actarg);
1077 $tags = Tag::getByURIId($item['uri-id']);
1080 foreach ($tags as $tag) {
1081 if (($type != 'html') || ($tag['type'] == Tag::HASHTAG)) {
1082 XML::addElement($doc, $entry, "category", "", ["scheme" => "X-DFRN:" . Tag::TAG_CHARACTER[$tag['type']] . ":" . $tag['url'], "term" => $tag['name']]);
1084 if ($tag['type'] != Tag::HASHTAG) {
1085 $mentioned[$tag['url']] = $tag['url'];
1090 foreach ($mentioned as $mention) {
1091 $condition = ['uid' => $owner["uid"], 'nurl' => Strings::normaliseLink($mention)];
1092 $contact = DBA::selectFirst('contact', ['forum', 'prv'], $condition);
1094 if (DBA::isResult($contact) && ($contact["forum"] || $contact["prv"])) {
1100 ["rel" => "mentioned",
1101 "ostatus:object-type" => Activity\ObjectType::GROUP,
1110 ["rel" => "mentioned",
1111 "ostatus:object-type" => Activity\ObjectType::PERSON,
1117 self::getAttachment($doc, $entry, $item);
1123 * encrypts data via AES
1125 * @param string $data The data that is to be encrypted
1126 * @param string $key The AES key
1128 * @return string encrypted data
1130 private static function aesEncrypt($data, $key)
1132 return openssl_encrypt($data, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1136 * decrypts data via AES
1138 * @param string $encrypted The encrypted data
1139 * @param string $key The AES key
1141 * @return string decrypted data
1143 public static function aesDecrypt($encrypted, $key)
1145 return openssl_decrypt($encrypted, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1149 * Delivers the atom content to the contacts
1151 * @param array $owner Owner record
1152 * @param array $contact Contact record of the receiver
1153 * @param string $atom Content that will be transmitted
1154 * @param bool $dissolve (to be documented)
1156 * @return int Deliver status. Negative values mean an error.
1157 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1158 * @throws \ImagickException
1159 * @todo Add array type-hint for $owner, $contact
1161 public static function deliver($owner, $contact, $atom, $dissolve = false)
1163 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
1165 if ($contact['duplex'] && $contact['dfrn-id']) {
1166 $idtosend = '0:' . $orig_id;
1168 if ($contact['duplex'] && $contact['issued-id']) {
1169 $idtosend = '1:' . $orig_id;
1172 $rino = DI::config()->get('system', 'rino_encrypt');
1173 $rino = intval($rino);
1175 Logger::log("Local rino version: ". $rino, Logger::DEBUG);
1177 $ssl_val = intval(DI::config()->get('system', 'ssl_policy'));
1180 case BaseURL::SSL_POLICY_FULL:
1181 $ssl_policy = 'full';
1183 case BaseURL::SSL_POLICY_SELFSIGN:
1184 $ssl_policy = 'self';
1186 case BaseURL::SSL_POLICY_NONE:
1188 $ssl_policy = 'none';
1192 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino='.$rino : '');
1194 Logger::log('dfrn_deliver: ' . $url);
1196 $curlResult = DI::httpRequest()->get($url);
1198 if ($curlResult->isTimeout()) {
1199 return -2; // timed out
1202 $xml = $curlResult->getBody();
1204 $curl_stat = $curlResult->getReturnCode();
1205 if (empty($curl_stat)) {
1206 return -3; // timed out
1209 Logger::log('dfrn_deliver: ' . $xml, Logger::DATA);
1215 if (strpos($xml, '<?xml') === false) {
1216 Logger::log('dfrn_deliver: no valid XML returned');
1217 Logger::log('dfrn_deliver: returned XML: ' . $xml, Logger::DATA);
1221 $res = XML::parseString($xml);
1223 if (!is_object($res) || (intval($res->status) != 0) || !strlen($res->challenge) || !strlen($res->dfrn_id)) {
1224 if (empty($res->status)) {
1227 $status = $res->status;
1234 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
1235 $challenge = hex2bin((string) $res->challenge);
1236 $perm = (($res->perm) ? $res->perm : null);
1237 $dfrn_version = floatval($res->dfrn_version ?: 2.0);
1238 $rino_remote_version = intval($res->rino);
1239 $page = (($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? 1 : 0);
1241 Logger::log("Remote rino version: ".$rino_remote_version." for ".$contact["url"], Logger::DEBUG);
1243 if ($owner['page-flags'] == User::PAGE_FLAGS_PRVGROUP) {
1247 $final_dfrn_id = '';
1250 if ((($perm == 'rw') && !intval($contact['writable']))
1251 || (($perm == 'r') && intval($contact['writable']))
1253 DBA::update('contact', ['writable' => ($perm == 'rw')], ['id' => $contact['id']]);
1255 $contact['writable'] = (string) 1 - intval($contact['writable']);
1259 if (($contact['duplex'] && strlen($contact['pubkey']))
1260 || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1261 || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1263 openssl_public_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['pubkey']);
1264 openssl_public_decrypt($challenge, $postvars['challenge'], $contact['pubkey']);
1266 openssl_private_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['prvkey']);
1267 openssl_private_decrypt($challenge, $postvars['challenge'], $contact['prvkey']);
1270 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
1272 if (strpos($final_dfrn_id, ':') == 1) {
1273 $final_dfrn_id = substr($final_dfrn_id, 2);
1276 if ($final_dfrn_id != $orig_id) {
1277 Logger::log('dfrn_deliver: wrong dfrn_id.');
1278 // did not decode properly - cannot trust this site
1282 $postvars['dfrn_id'] = $idtosend;
1283 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
1285 $postvars['dissolve'] = '1';
1288 if ((($contact['rel']) && ($contact['rel'] != Contact::SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1289 $postvars['data'] = $atom;
1290 $postvars['perm'] = 'rw';
1292 $postvars['data'] = str_replace('<dfrn:comment-allow>1', '<dfrn:comment-allow>0', $atom);
1293 $postvars['perm'] = 'r';
1296 $postvars['ssl_policy'] = $ssl_policy;
1299 $postvars['page'] = $page;
1303 if ($rino > 0 && $rino_remote_version > 0 && (! $dissolve)) {
1304 Logger::log('rino version: '. $rino_remote_version);
1306 switch ($rino_remote_version) {
1308 $key = openssl_random_pseudo_bytes(16);
1309 $data = self::aesEncrypt($postvars['data'], $key);
1313 Logger::log("rino: invalid requested version '$rino_remote_version'");
1317 $postvars['rino'] = $rino_remote_version;
1318 $postvars['data'] = bin2hex($data);
1320 if ($dfrn_version >= 2.1) {
1321 if (($contact['duplex'] && strlen($contact['pubkey']))
1322 || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1323 || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1325 openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1327 openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1330 if (($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1331 openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1333 openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1337 Logger::log('md5 rawkey ' . md5($postvars['key']));
1339 $postvars['key'] = bin2hex($postvars['key']);
1343 Logger::debug('dfrn_deliver', ['post' => $postvars]);
1345 $postResult = DI::httpRequest()->post($contact['notify'], $postvars);
1347 $xml = $postResult->getBody();
1349 Logger::log('dfrn_deliver: ' . "RECEIVED: " . $xml, Logger::DATA);
1351 $curl_stat = $postResult->getReturnCode();
1352 if (empty($curl_stat) || empty($xml)) {
1353 return -9; // timed out
1356 if (($curl_stat == 503) && stristr($postResult->getHeader(), 'retry-after')) {
1360 if (strpos($xml, '<?xml') === false) {
1361 Logger::log('dfrn_deliver: phase 2: no valid XML returned');
1362 Logger::log('dfrn_deliver: phase 2: returned XML: ' . $xml, Logger::DATA);
1366 $res = XML::parseString($xml);
1368 if (!isset($res->status)) {
1372 // Possibly old servers had returned an empty value when everything was okay
1373 if (empty($res->status)) {
1377 if (!empty($res->message)) {
1378 Logger::log('Delivery returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1381 return intval($res->status);
1385 * Transmits atom content to the contacts via the Diaspora transport layer
1387 * @param array $owner Owner record
1388 * @param array $contact Contact record of the receiver
1389 * @param string $atom Content that will be transmitted
1391 * @param bool $public_batch
1392 * @return int Deliver status. Negative values mean an error.
1393 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1394 * @throws \ImagickException
1396 public static function transmit($owner, $contact, $atom, $public_batch = false)
1398 if (!$public_batch) {
1399 if (empty($contact['addr'])) {
1400 Logger::log('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.');
1401 if (Contact::updateFromProbe($contact['id'])) {
1402 $new_contact = DBA::selectFirst('contact', ['addr'], ['id' => $contact['id']]);
1403 $contact['addr'] = $new_contact['addr'];
1406 if (empty($contact['addr'])) {
1407 Logger::log('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
1412 $fcontact = Diaspora::personByHandle($contact['addr']);
1413 if (empty($fcontact)) {
1414 Logger::log('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
1417 $pubkey = $fcontact['pubkey'];
1422 $envelope = Diaspora::buildMessage($atom, $owner, $contact, $owner['uprvkey'], $pubkey, $public_batch);
1424 // Create the endpoint for public posts. This is some WIP and should later be added to the probing
1425 if ($public_batch && empty($contact["batch"])) {
1426 $parts = parse_url($contact["notify"]);
1427 $path_parts = explode('/', $parts['path']);
1428 array_pop($path_parts);
1429 $parts['path'] = implode('/', $path_parts);
1430 $contact["batch"] = Network::unparseURL($parts);
1433 $dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
1435 if (empty($dest_url)) {
1436 Logger::info('Empty destination', ['public' => $public_batch, 'contact' => $contact]);
1440 $content_type = ($public_batch ? "application/magic-envelope+xml" : "application/json");
1442 $postResult = DI::httpRequest()->post($dest_url, $envelope, ["Content-Type: " . $content_type]);
1443 $xml = $postResult->getBody();
1445 $curl_stat = $postResult->getReturnCode();
1446 if (empty($curl_stat) || empty($xml)) {
1447 Logger::log('Empty answer from ' . $contact['id'] . ' - ' . $dest_url);
1448 return -9; // timed out
1451 if (($curl_stat == 503) && (stristr($postResult->getHeader(), 'retry-after'))) {
1455 if (strpos($xml, '<?xml') === false) {
1456 Logger::log('No valid XML returned from ' . $contact['id'] . ' - ' . $dest_url);
1457 Logger::log('Returned XML: ' . $xml, Logger::DATA);
1461 $res = XML::parseString($xml);
1463 if (empty($res->status)) {
1467 if (!empty($res->message)) {
1468 Logger::log('Transmit to ' . $dest_url . ' returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1471 return intval($res->status);
1475 * Fetch the author data from head or entry items
1477 * @param object $xpath XPath object
1478 * @param object $context In which context should the data be searched
1479 * @param array $importer Record of the importer user mixed with contact of the content
1480 * @param string $element Element name from which the data is fetched
1481 * @param bool $onlyfetch Should the data only be fetched or should it update the contact record as well
1482 * @param string $xml optional, default empty
1484 * @return array Relevant data of the author
1485 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1486 * @throws \ImagickException
1487 * @todo Find good type-hints for all parameter
1489 private static function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "")
1492 $author["name"] = XML::getFirstNodeValue($xpath, $element."/atom:name/text()", $context);
1493 $author["link"] = XML::getFirstNodeValue($xpath, $element."/atom:uri/text()", $context);
1495 $fields = ['id', 'uid', 'url', 'network', 'avatar-date', 'avatar', 'name-date', 'uri-date', 'addr',
1496 'name', 'nick', 'about', 'location', 'keywords', 'xmpp', 'bdyear', 'bd', 'hidden', 'contact-type'];
1497 $condition = ["`uid` = ? AND `nurl` = ? AND `network` != ?",
1498 $importer["importer_uid"], Strings::normaliseLink($author["link"]), Protocol::STATUSNET];
1499 $contact_old = DBA::selectFirst('contact', $fields, $condition);
1501 if (DBA::isResult($contact_old)) {
1502 $author["contact-id"] = $contact_old["id"];
1503 $author["network"] = $contact_old["network"];
1506 Logger::debug("Contact ".$author["link"]." wasn't found for user ".$importer["importer_uid"]." XML: ".$xml);
1509 $author["contact-unknown"] = true;
1510 $author["contact-id"] = $importer["id"];
1511 $author["network"] = $importer["network"];
1515 // Until now we aren't serving different sizes - but maybe later
1517 /// @todo check if "avatar" or "photo" would be the best field in the specification
1518 $avatars = $xpath->query($element . "/atom:link[@rel='avatar']", $context);
1519 foreach ($avatars as $avatar) {
1522 foreach ($avatar->attributes as $attributes) {
1523 /// @TODO Rewrite these similar if() to one switch
1524 if ($attributes->name == "href") {
1525 $href = $attributes->textContent;
1527 if ($attributes->name == "width") {
1528 $width = $attributes->textContent;
1530 if ($attributes->name == "updated") {
1531 $author["avatar-date"] = $attributes->textContent;
1534 if (($width > 0) && ($href != "")) {
1535 $avatarlist[$width] = $href;
1539 if (count($avatarlist) > 0) {
1540 krsort($avatarlist);
1541 $author["avatar"] = current($avatarlist);
1544 if (empty($author['avatar']) && !empty($author['link'])) {
1545 $cid = Contact::getIdForURL($author['link'], 0);
1547 $contact = DBA::selectFirst('contact', ['avatar'], ['id' => $cid]);
1548 if (DBA::isResult($contact)) {
1549 $author['avatar'] = $contact['avatar'];
1554 if (empty($author['avatar'])) {
1555 Logger::log('Empty author: ' . $xml);
1556 $author['avatar'] = '';
1559 if (DBA::isResult($contact_old) && !$onlyfetch) {
1560 Logger::log("Check if contact details for contact " . $contact_old["id"] . " (" . $contact_old["nick"] . ") have to be updated.", Logger::DEBUG);
1562 $poco = ["url" => $contact_old["url"], "network" => $contact_old["network"]];
1564 // When was the last change to name or uri?
1565 $name_element = $xpath->query($element . "/atom:name", $context)->item(0);
1566 foreach ($name_element->attributes as $attributes) {
1567 if ($attributes->name == "updated") {
1568 $poco["name-date"] = $attributes->textContent;
1572 $link_element = $xpath->query($element . "/atom:link", $context)->item(0);
1573 foreach ($link_element->attributes as $attributes) {
1574 if ($attributes->name == "updated") {
1575 $poco["uri-date"] = $attributes->textContent;
1579 // Update contact data
1580 $value = XML::getFirstNodeValue($xpath, $element . "/dfrn:handle/text()", $context);
1582 $poco["addr"] = $value;
1585 $value = XML::getFirstNodeValue($xpath, $element . "/poco:displayName/text()", $context);
1587 $poco["name"] = $value;
1590 $value = XML::getFirstNodeValue($xpath, $element . "/poco:preferredUsername/text()", $context);
1592 $poco["nick"] = $value;
1595 $value = XML::getFirstNodeValue($xpath, $element . "/poco:note/text()", $context);
1597 $poco["about"] = $value;
1600 $value = XML::getFirstNodeValue($xpath, $element . "/poco:address/poco:formatted/text()", $context);
1602 $poco["location"] = $value;
1605 /// @todo Only search for elements with "poco:type" = "xmpp"
1606 $value = XML::getFirstNodeValue($xpath, $element . "/poco:ims/poco:value/text()", $context);
1608 $poco["xmpp"] = $value;
1611 /// @todo Add support for the following fields that we don't support by now in the contact table:
1612 /// - poco:utcOffset
1618 // If the "hide" element is present then the profile isn't searchable.
1619 $hide = intval(XML::getFirstNodeValue($xpath, $element . "/dfrn:hide/text()", $context) == "true");
1621 Logger::log("Hidden status for contact " . $contact_old["url"] . ": " . $hide, Logger::DEBUG);
1623 // If the contact isn't searchable then set the contact to "hidden".
1624 // Problem: This can be manually overridden by the user.
1626 $contact_old["hidden"] = true;
1629 // Save the keywords into the contact table
1631 $tagelements = $xpath->evaluate($element . "/poco:tags/text()", $context);
1632 foreach ($tagelements as $tag) {
1633 $tags[$tag->nodeValue] = $tag->nodeValue;
1637 $poco["keywords"] = implode(", ", $tags);
1640 // "dfrn:birthday" contains the birthday converted to UTC
1641 $birthday = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1643 if (strtotime($birthday) > time()) {
1644 $bd_timestamp = strtotime($birthday);
1646 $poco["bdyear"] = date("Y", $bd_timestamp);
1649 // "poco:birthday" is the birthday in the format "yyyy-mm-dd"
1650 $value = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1652 if (!in_array($value, ["", "0000-00-00", DBA::NULL_DATE])) {
1653 $bdyear = date("Y");
1654 $value = str_replace(["0000", "0001"], $bdyear, $value);
1656 if (strtotime($value) < time()) {
1657 $value = str_replace($bdyear, $bdyear + 1, $value);
1660 $poco["bd"] = $value;
1663 $contact = array_merge($contact_old, $poco);
1665 if ($contact_old["bdyear"] != $contact["bdyear"]) {
1666 Event::createBirthday($contact, $birthday);
1669 $fields = ['name' => $contact['name'], 'nick' => $contact['nick'], 'about' => $contact['about'],
1670 'location' => $contact['location'], 'addr' => $contact['addr'], 'keywords' => $contact['keywords'],
1671 'bdyear' => $contact['bdyear'], 'bd' => $contact['bd'], 'hidden' => $contact['hidden'],
1672 'xmpp' => $contact['xmpp'], 'name-date' => DateTimeFormat::utc($contact['name-date']),
1673 'unsearchable' => $contact['hidden'], 'uri-date' => DateTimeFormat::utc($contact['uri-date'])];
1675 DBA::update('contact', $fields, ['id' => $contact['id'], 'network' => $contact['network']], $contact_old);
1677 // Update the public contact. Don't set the "hidden" value, this is used differently for public contacts
1678 unset($fields['hidden']);
1679 $condition = ['uid' => 0, 'nurl' => Strings::normaliseLink($contact_old['url'])];
1680 DBA::update('contact', $fields, $condition, true);
1682 Contact::updateAvatar($contact['id'], $author['avatar']);
1684 $pcid = Contact::getIdForURL($contact_old['url']);
1685 if (!empty($pcid)) {
1686 Contact::updateAvatar($pcid, $author['avatar']);
1694 * Transforms activity objects into an XML string
1696 * @param object $xpath XPath object
1697 * @param object $activity Activity object
1698 * @param string $element element name
1700 * @return string XML string
1701 * @todo Find good type-hints for all parameter
1703 private static function transformActivity($xpath, $activity, $element)
1705 if (!is_object($activity)) {
1709 $obj_doc = new DOMDocument("1.0", "utf-8");
1710 $obj_doc->formatOutput = true;
1712 $obj_element = $obj_doc->createElementNS( ActivityNamespace::ATOM1, $element);
1714 $activity_type = $xpath->query("activity:object-type/text()", $activity)->item(0)->nodeValue;
1715 XML::addElement($obj_doc, $obj_element, "type", $activity_type);
1717 $id = $xpath->query("atom:id", $activity)->item(0);
1718 if (is_object($id)) {
1719 $obj_element->appendChild($obj_doc->importNode($id, true));
1722 $title = $xpath->query("atom:title", $activity)->item(0);
1723 if (is_object($title)) {
1724 $obj_element->appendChild($obj_doc->importNode($title, true));
1727 $links = $xpath->query("atom:link", $activity);
1728 if (is_object($links)) {
1729 foreach ($links as $link) {
1730 $obj_element->appendChild($obj_doc->importNode($link, true));
1734 $content = $xpath->query("atom:content", $activity)->item(0);
1735 if (is_object($content)) {
1736 $obj_element->appendChild($obj_doc->importNode($content, true));
1739 $obj_doc->appendChild($obj_element);
1741 $objxml = $obj_doc->saveXML($obj_element);
1743 /// @todo This isn't totally clean. We should find a way to transform the namespaces
1744 $objxml = str_replace("<".$element.' xmlns="http://www.w3.org/2005/Atom">', "<".$element.">", $objxml);
1749 * Processes the mail elements
1751 * @param object $xpath XPath object
1752 * @param object $mail mail elements
1753 * @param array $importer Record of the importer user mixed with contact of the content
1755 * @throws \Exception
1756 * @todo Find good type-hints for all parameter
1758 private static function processMail($xpath, $mail, $importer)
1760 Logger::log("Processing mails");
1763 $msg["uid"] = $importer["importer_uid"];
1764 $msg["from-name"] = $xpath->query("dfrn:sender/dfrn:name/text()", $mail)->item(0)->nodeValue;
1765 $msg["from-url"] = $xpath->query("dfrn:sender/dfrn:uri/text()", $mail)->item(0)->nodeValue;
1766 $msg["from-photo"] = $xpath->query("dfrn:sender/dfrn:avatar/text()", $mail)->item(0)->nodeValue;
1767 $msg["contact-id"] = $importer["id"];
1768 $msg["uri"] = $xpath->query("dfrn:id/text()", $mail)->item(0)->nodeValue;
1769 $msg["parent-uri"] = $xpath->query("dfrn:in-reply-to/text()", $mail)->item(0)->nodeValue;
1770 $msg["created"] = DateTimeFormat::utc($xpath->query("dfrn:sentdate/text()", $mail)->item(0)->nodeValue);
1771 $msg["title"] = $xpath->query("dfrn:subject/text()", $mail)->item(0)->nodeValue;
1772 $msg["body"] = $xpath->query("dfrn:content/text()", $mail)->item(0)->nodeValue;
1778 * Processes the suggestion elements
1780 * @param object $xpath XPath object
1781 * @param object $suggestion suggestion elements
1782 * @param array $importer Record of the importer user mixed with contact of the content
1784 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1785 * @todo Find good type-hints for all parameter
1787 private static function processSuggestion($xpath, $suggestion, $importer)
1789 Logger::log('Processing suggestions');
1791 /// @TODO Rewrite this to one statement
1793 $suggest['uid'] = $importer['importer_uid'];
1794 $suggest['cid'] = $importer['id'];
1795 $suggest['url'] = $xpath->query('dfrn:url/text()', $suggestion)->item(0)->nodeValue;
1796 $suggest['name'] = $xpath->query('dfrn:name/text()', $suggestion)->item(0)->nodeValue;
1797 $suggest['photo'] = $xpath->query('dfrn:photo/text()', $suggestion)->item(0)->nodeValue;
1798 $suggest['request'] = $xpath->query('dfrn:request/text()', $suggestion)->item(0)->nodeValue;
1799 $suggest['body'] = $xpath->query('dfrn:note/text()', $suggestion)->item(0)->nodeValue;
1801 // Does our member already have a friend matching this description?
1804 * The valid result means the friend we're about to send a friend
1805 * suggestion already has them in their contact, which means no further
1806 * action is required.
1808 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1810 $condition = ['nurl' => Strings::normaliseLink($suggest['url']), 'uid' => $suggest['uid']];
1811 if (DBA::exists('contact', $condition)) {
1814 // Do we already have an fcontact record for this person?
1817 $fcontact = DBA::selectFirst('fcontact', ['id'], ['url' => $suggest['url']]);
1818 if (DBA::isResult($fcontact)) {
1819 $fid = $fcontact['id'];
1821 // OK, we do. Do we already have an introduction for this person?
1822 if (DBA::exists('intro', ['uid' => $suggest['uid'], 'fid' => $fid])) {
1824 * The valid result means the friend we're about to send a friend
1825 * suggestion already has them in their contact, which means no further
1826 * action is required.
1828 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1835 $fields = ['name' => $suggest['name'], 'url' => $suggest['url'],
1836 'photo' => $suggest['photo'], 'request' => $suggest['request']];
1837 DBA::insert('fcontact', $fields);
1838 $fid = DBA::lastInsertId();
1842 * If no record in fcontact is found, below INSERT statement will not
1843 * link an introduction to it.
1846 // Database record did not get created. Quietly give up.
1850 $hash = Strings::getRandomHex();
1852 $fields = ['uid' => $suggest['uid'], 'fid' => $fid, 'contact-id' => $suggest['cid'],
1853 'note' => $suggest['body'], 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow(), 'blocked' => false];
1854 DBA::insert('intro', $fields);
1858 'type' => Type::SUGGEST,
1859 'notify_flags' => $importer['notify-flags'],
1860 'language' => $importer['language'],
1861 'to_name' => $importer['username'],
1862 'to_email' => $importer['email'],
1863 'uid' => $importer['importer_uid'],
1865 'link' => DI::baseUrl().'/notifications/intros',
1866 'source_name' => $importer['name'],
1867 'source_link' => $importer['url'],
1868 'source_photo' => $importer['photo'],
1869 'verb' => Activity::REQ_FRIEND,
1877 * Processes the relocation elements
1879 * @param object $xpath XPath object
1880 * @param object $relocation relocation elements
1881 * @param array $importer Record of the importer user mixed with contact of the content
1883 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1884 * @throws \ImagickException
1885 * @todo Find good type-hints for all parameter
1887 private static function processRelocation($xpath, $relocation, $importer)
1889 Logger::log("Processing relocations");
1891 /// @TODO Rewrite this to one statement
1893 $relocate["uid"] = $importer["importer_uid"];
1894 $relocate["cid"] = $importer["id"];
1895 $relocate["url"] = $xpath->query("dfrn:url/text()", $relocation)->item(0)->nodeValue;
1896 $relocate["addr"] = $xpath->query("dfrn:addr/text()", $relocation)->item(0)->nodeValue;
1897 $relocate["name"] = $xpath->query("dfrn:name/text()", $relocation)->item(0)->nodeValue;
1898 $relocate["avatar"] = $xpath->query("dfrn:avatar/text()", $relocation)->item(0)->nodeValue;
1899 $relocate["photo"] = $xpath->query("dfrn:photo/text()", $relocation)->item(0)->nodeValue;
1900 $relocate["thumb"] = $xpath->query("dfrn:thumb/text()", $relocation)->item(0)->nodeValue;
1901 $relocate["micro"] = $xpath->query("dfrn:micro/text()", $relocation)->item(0)->nodeValue;
1902 $relocate["request"] = $xpath->query("dfrn:request/text()", $relocation)->item(0)->nodeValue;
1903 $relocate["confirm"] = $xpath->query("dfrn:confirm/text()", $relocation)->item(0)->nodeValue;
1904 $relocate["notify"] = $xpath->query("dfrn:notify/text()", $relocation)->item(0)->nodeValue;
1905 $relocate["poll"] = $xpath->query("dfrn:poll/text()", $relocation)->item(0)->nodeValue;
1906 $relocate["sitepubkey"] = $xpath->query("dfrn:sitepubkey/text()", $relocation)->item(0)->nodeValue;
1908 if (($relocate["avatar"] == "") && ($relocate["photo"] != "")) {
1909 $relocate["avatar"] = $relocate["photo"];
1912 if ($relocate["addr"] == "") {
1913 $relocate["addr"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$3@$2", $relocate["url"]);
1918 "SELECT `photo`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d",
1919 intval($importer["id"]),
1920 intval($importer["importer_uid"])
1923 if (!DBA::isResult($r)) {
1924 Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
1930 // Update the contact table. We try to find every entry.
1931 $fields = ['name' => $relocate["name"], 'avatar' => $relocate["avatar"],
1932 'url' => $relocate["url"], 'nurl' => Strings::normaliseLink($relocate["url"]),
1933 'addr' => $relocate["addr"], 'request' => $relocate["request"],
1934 'confirm' => $relocate["confirm"], 'notify' => $relocate["notify"],
1935 'poll' => $relocate["poll"], 'site-pubkey' => $relocate["sitepubkey"]];
1936 $condition = ["(`id` = ?) OR (`nurl` = ?)", $importer["id"], Strings::normaliseLink($old["url"])];
1938 DBA::update('contact', $fields, $condition);
1940 Contact::updateAvatar($importer["id"], $relocate["avatar"], true);
1942 Logger::log('Contacts are updated.');
1945 /// merge with current record, current contents have priority
1946 /// update record, set url-updated
1947 /// update profile photos
1948 /// schedule a scan?
1955 * @param array $current the current item record
1956 * @param array $item the new item record
1957 * @param array $importer Record of the importer user mixed with contact of the content
1958 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
1960 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1961 * @todo set proper type-hints (array?)
1963 private static function updateContent($current, $item, $importer, $entrytype)
1967 if (self::isEditedTimestampNewer($current, $item)) {
1968 // do not accept (ignore) an earlier edit than one we currently have.
1969 if (DateTimeFormat::utc($item["edited"]) < $current["edited"]) {
1973 $fields = ['title' => $item['title'] ?? '', 'body' => $item['body'] ?? '',
1974 'changed' => DateTimeFormat::utcNow(),
1975 'edited' => DateTimeFormat::utc($item["edited"])];
1977 $condition = ["`uri` = ? AND `uid` IN (0, ?)", $item["uri"], $importer["importer_uid"]];
1978 Item::update($fields, $condition);
1986 * Detects the entry type of the item
1988 * @param array $importer Record of the importer user mixed with contact of the content
1989 * @param array $item the new item record
1991 * @return int Is it a toplevel entry, a comment or a relayed comment?
1992 * @throws \Exception
1993 * @todo set proper type-hints (array?)
1995 private static function getEntryType($importer, $item)
1997 if ($item["parent-uri"] != $item["uri"]) {
2000 if ($importer["page-flags"] == User::PAGE_FLAGS_COMMUNITY || $importer["page-flags"] == User::PAGE_FLAGS_PRVGROUP) {
2003 Logger::log("possible community action");
2005 $sql_extra = " AND `contact`.`self` AND `item`.`wall` ";
2008 // was the top-level post for this action written by somebody on this site?
2009 // Specifically, the recipient?
2011 $is_a_remote_action = false;
2013 $parent = Item::selectFirst(['parent-uri'], ['uri' => $item["parent-uri"]]);
2014 if (DBA::isResult($parent)) {
2016 "SELECT `item`.`forum_mode`, `item`.`wall` FROM `item`
2017 INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
2018 WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' OR `item`.`thr-parent` = '%s')
2019 AND `item`.`uid` = %d
2022 DBA::escape($parent["parent-uri"]),
2023 DBA::escape($parent["parent-uri"]),
2024 DBA::escape($parent["parent-uri"]),
2025 intval($importer["importer_uid"])
2027 if (DBA::isResult($r)) {
2028 $is_a_remote_action = true;
2033 * Does this have the characteristics of a community or private group action?
2034 * If it's an action to a wall post on a community/prvgroup page it's a
2035 * valid community action. Also forum_mode makes it valid for sure.
2036 * If neither, it's not.
2038 if ($is_a_remote_action && $community && (!$r[0]["forum_mode"]) && (!$r[0]["wall"])) {
2039 $is_a_remote_action = false;
2040 Logger::log("not a community action");
2043 if ($is_a_remote_action) {
2044 return DFRN::REPLY_RC;
2049 return DFRN::TOP_LEVEL;
2056 * @param array $item The new item record
2057 * @param array $importer Record of the importer user mixed with contact of the content
2059 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2060 * @todo set proper type-hints (array?)
2062 private static function doPoke(array $item, array $importer)
2064 $verb = urldecode(substr($item["verb"], strpos($item["verb"], "#")+1));
2068 $xo = XML::parseString($item["object"]);
2070 if (($xo->type == Activity\ObjectType::PERSON) && ($xo->id)) {
2071 // somebody was poked/prodded. Was it me?
2073 foreach ($xo->link as $l) {
2074 $atts = $l->attributes();
2075 switch ($atts["rel"]) {
2077 $Blink = $atts["href"];
2084 if ($Blink && Strings::compareLink($Blink, DI::baseUrl() . "/profile/" . $importer["nickname"])) {
2085 $author = DBA::selectFirst('contact', ['name', 'thumb', 'url'], ['id' => $item['author-id']]);
2087 $parent = Item::selectFirst(['id'], ['uri' => $item['parent-uri'], 'uid' => $importer["importer_uid"]]);
2088 $item['parent'] = $parent['id'];
2090 // send a notification
2093 "type" => Type::POKE,
2094 "notify_flags" => $importer["notify-flags"],
2095 "language" => $importer["language"],
2096 "to_name" => $importer["username"],
2097 "to_email" => $importer["email"],
2098 "uid" => $importer["importer_uid"],
2100 "link" => DI::baseUrl()."/display/".urlencode($item['guid']),
2101 "source_name" => $author["name"],
2102 "source_link" => $author["url"],
2103 "source_photo" => $author["thumb"],
2104 "verb" => $item["verb"],
2105 "otype" => "person",
2106 "activity" => $verb,
2107 "parent" => $item['parent']]
2114 * Processes several actions, depending on the verb
2116 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
2117 * @param array $importer Record of the importer user mixed with contact of the content
2118 * @param array $item the new item record
2119 * @param bool $is_like Is the verb a "like"?
2121 * @return bool Should the processing of the entries be continued?
2122 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2123 * @todo set proper type-hints (array?)
2125 private static function processVerbs($entrytype, $importer, &$item, &$is_like)
2127 Logger::log("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, Logger::DEBUG);
2129 if (($entrytype == DFRN::TOP_LEVEL) && !empty($importer['id'])) {
2130 // The filling of the the "contact" variable is done for legcy reasons
2131 // The functions below are partly used by ostatus.php as well - where we have this variable
2132 $contact = Contact::selectFirst([], ['id' => $importer['id']]);
2134 $activity = DI::activity();
2136 // Big question: Do we need these functions? They were part of the "consume_feed" function.
2137 // This function once was responsible for DFRN and OStatus.
2138 if ($activity->match($item["verb"], Activity::FOLLOW)) {
2139 Logger::log("New follower");
2140 Contact::addRelationship($importer, $contact, $item);
2143 if ($activity->match($item["verb"], Activity::UNFOLLOW)) {
2144 Logger::log("Lost follower");
2145 Contact::removeFollower($importer, $contact, $item);
2148 if ($activity->match($item["verb"], Activity::REQ_FRIEND)) {
2149 Logger::log("New friend request");
2150 Contact::addRelationship($importer, $contact, $item, true);
2153 if ($activity->match($item["verb"], Activity::UNFRIEND)) {
2154 Logger::log("Lost sharer");
2155 Contact::removeSharer($importer, $contact, $item);
2159 if (($item["verb"] == Activity::LIKE)
2160 || ($item["verb"] == Activity::DISLIKE)
2161 || ($item["verb"] == Activity::ATTEND)
2162 || ($item["verb"] == Activity::ATTENDNO)
2163 || ($item["verb"] == Activity::ATTENDMAYBE)
2166 $item["gravity"] = GRAVITY_ACTIVITY;
2167 // only one like or dislike per person
2168 // splitted into two queries for performance issues
2169 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2170 'verb' => $item["verb"], 'parent-uri' => $item["parent-uri"]];
2171 if (Item::exists($condition)) {
2175 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2176 'verb' => $item["verb"], 'thr-parent' => $item["parent-uri"]];
2177 if (Item::exists($condition)) {
2181 // The owner of an activity must be the author
2182 $item["owner-name"] = $item["author-name"];
2183 $item["owner-link"] = $item["author-link"];
2184 $item["owner-avatar"] = $item["author-avatar"];
2185 $item["owner-id"] = $item["author-id"];
2190 if (($item["verb"] == Activity::TAG) && ($item["object-type"] == Activity\ObjectType::TAGTERM)) {
2191 $xo = XML::parseString($item["object"]);
2192 $xt = XML::parseString($item["target"]);
2194 if ($xt->type == Activity\ObjectType::NOTE) {
2195 $item_tag = Item::selectFirst(['id', 'uri-id', 'tag'], ['uri' => $xt->id, 'uid' => $importer["importer_uid"]]);
2197 if (!DBA::isResult($item_tag)) {
2198 Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
2202 // extract tag, if not duplicate, add to parent item
2204 Tag::store($item_tag['uri-id'], Tag::HASHTAG, $xo->content);
2213 * Processes the link elements
2215 * @param object $links link elements
2216 * @param array $item the item record
2218 * @todo set proper type-hints
2220 private static function parseLinks($links, &$item)
2227 foreach ($links as $link) {
2228 foreach ($link->attributes as $attributes) {
2229 switch ($attributes->name) {
2230 case "href" : $href = $attributes->textContent; break;
2231 case "rel" : $rel = $attributes->textContent; break;
2232 case "type" : $type = $attributes->textContent; break;
2233 case "length": $length = $attributes->textContent; break;
2234 case "title" : $title = $attributes->textContent; break;
2237 if (($rel != "") && ($href != "")) {
2240 $item["plink"] = $href;
2243 if (!empty($item["attach"])) {
2244 $item["attach"] .= ",";
2246 $item["attach"] = "";
2249 $item["attach"] .= '[attach]href="' . $href . '" length="' . $length . '" type="' . $type . '" title="' . $title . '"[/attach]';
2257 * Processes the entry elements which contain the items and comments
2259 * @param array $header Array of the header elements that always stay the same
2260 * @param object $xpath XPath object
2261 * @param object $entry entry elements
2262 * @param array $importer Record of the importer user mixed with contact of the content
2263 * @param string $xml xml
2265 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2266 * @throws \ImagickException
2267 * @todo Add type-hints
2269 private static function processEntry($header, $xpath, $entry, $importer, $xml)
2271 Logger::log("Processing entries");
2275 $item["protocol"] = Conversation::PARCEL_DFRN;
2277 $item["source"] = $xml;
2280 $item["uri"] = XML::getFirstNodeValue($xpath, "atom:id/text()", $entry);
2282 $item["edited"] = XML::getFirstNodeValue($xpath, "atom:updated/text()", $entry);
2284 $current = Item::selectFirst(['id', 'uid', 'edited', 'body'],
2285 ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]]
2287 // Is there an existing item?
2288 if (DBA::isResult($current) && !self::isEditedTimestampNewer($current, $item)) {
2289 Logger::log("Item ".$item["uri"]." (".$item['edited'].") already existed.", Logger::DEBUG);
2294 $owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true, $xml);
2296 $owner_unknown = (isset($owner["contact-unknown"]) && $owner["contact-unknown"]);
2298 $item["owner-name"] = $owner["name"];
2299 $item["owner-link"] = $owner["link"];
2300 $item["owner-avatar"] = $owner["avatar"];
2301 $item["owner-id"] = Contact::getIdForURL($owner["link"], 0);
2304 $author = self::fetchauthor($xpath, $entry, $importer, "atom:author", true, $xml);
2306 $item["author-name"] = $author["name"];
2307 $item["author-link"] = $author["link"];
2308 $item["author-avatar"] = $author["avatar"];
2309 $item["author-id"] = Contact::getIdForURL($author["link"], 0);
2311 $item["title"] = XML::getFirstNodeValue($xpath, "atom:title/text()", $entry);
2313 $item["created"] = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2315 $item["body"] = XML::getFirstNodeValue($xpath, "dfrn:env/text()", $entry);
2316 $item["body"] = str_replace([' ',"\t","\r","\n"], ['','','',''], $item["body"]);
2318 $item["body"] = Strings::base64UrlDecode($item["body"]);
2320 $item["body"] = BBCode::limitBodySize($item["body"]);
2322 /// @todo We should check for a repeated post and if we know the repeated author.
2324 // We don't need the content element since "dfrn:env" is always present
2325 //$item["body"] = $xpath->query("atom:content/text()", $entry)->item(0)->nodeValue;
2327 $item["location"] = XML::getFirstNodeValue($xpath, "dfrn:location/text()", $entry);
2329 $item["coord"] = XML::getFirstNodeValue($xpath, "georss:point", $entry);
2331 $item["private"] = XML::getFirstNodeValue($xpath, "dfrn:private/text()", $entry);
2333 $unlisted = XML::getFirstNodeValue($xpath, "dfrn:unlisted/text()", $entry);
2334 if (!empty($unlisted) && ($item['private'] != Item::PRIVATE)) {
2335 $item['private'] = Item::UNLISTED;
2338 $item["extid"] = XML::getFirstNodeValue($xpath, "dfrn:extid/text()", $entry);
2340 if (XML::getFirstNodeValue($xpath, "dfrn:bookmark/text()", $entry) == "true") {
2341 $item["post-type"] = Item::PT_PAGE;
2344 $notice_info = $xpath->query("statusnet:notice_info", $entry);
2345 if ($notice_info && ($notice_info->length > 0)) {
2346 foreach ($notice_info->item(0)->attributes as $attributes) {
2347 if ($attributes->name == "source") {
2348 $item["app"] = strip_tags($attributes->textContent);
2353 $item["guid"] = XML::getFirstNodeValue($xpath, "dfrn:diaspora_guid/text()", $entry);
2355 $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
2357 Tag::storeFromBody($item['uri-id'], $item["body"]);
2359 // We store the data from "dfrn:diaspora_signature" in a different table, this is done in "Item::insert"
2360 $dsprsig = XML::unescape(XML::getFirstNodeValue($xpath, "dfrn:diaspora_signature/text()", $entry));
2361 if ($dsprsig != "") {
2362 $signature = json_decode(base64_decode($dsprsig));
2363 // We don't store the old style signatures anymore that also contained the "signature" and "signer"
2364 if (!empty($signature->signed_text) && empty($signature->signature) && empty($signature->signer)) {
2365 $item["diaspora_signed_text"] = $signature->signed_text;
2369 $item["verb"] = XML::getFirstNodeValue($xpath, "activity:verb/text()", $entry);
2371 if (XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry) != "") {
2372 $item["object-type"] = XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry);
2375 $object = $xpath->query("activity:object", $entry)->item(0);
2376 $item["object"] = self::transformActivity($xpath, $object, "object");
2378 if (trim($item["object"]) != "") {
2379 $r = XML::parseString($item["object"]);
2380 if (isset($r->type)) {
2381 $item["object-type"] = $r->type;
2385 $target = $xpath->query("activity:target", $entry)->item(0);
2386 $item["target"] = self::transformActivity($xpath, $target, "target");
2388 $categories = $xpath->query("atom:category", $entry);
2390 foreach ($categories as $category) {
2393 foreach ($category->attributes as $attributes) {
2394 if ($attributes->name == "term") {
2395 $term = $attributes->textContent;
2398 if ($attributes->name == "scheme") {
2399 $scheme = $attributes->textContent;
2403 if (($term != "") && ($scheme != "")) {
2404 $parts = explode(":", $scheme);
2405 if ((count($parts) >= 4) && (array_shift($parts) == "X-DFRN")) {
2406 $termurl = array_pop($parts);
2407 $termurl = array_pop($parts) . $termurl;
2408 Tag::store($item['uri-id'], Tag::IMPLICIT_MENTION, $term, $termurl);
2414 $links = $xpath->query("atom:link", $entry);
2416 self::parseLinks($links, $item);
2419 $item['conversation-uri'] = XML::getFirstNodeValue($xpath, 'ostatus:conversation/text()', $entry);
2421 $conv = $xpath->query('ostatus:conversation', $entry);
2422 if (is_object($conv->item(0))) {
2423 foreach ($conv->item(0)->attributes as $attributes) {
2424 if ($attributes->name == "ref") {
2425 $item['conversation-uri'] = $attributes->textContent;
2427 if ($attributes->name == "href") {
2428 $item['conversation-href'] = $attributes->textContent;
2433 // Is it a reply or a top level posting?
2434 $item["parent-uri"] = $item["uri"];
2436 $inreplyto = $xpath->query("thr:in-reply-to", $entry);
2437 if (is_object($inreplyto->item(0))) {
2438 foreach ($inreplyto->item(0)->attributes as $attributes) {
2439 if ($attributes->name == "ref") {
2440 $item["parent-uri"] = $attributes->textContent;
2445 // Get the type of the item (Top level post, reply or remote reply)
2446 $entrytype = self::getEntryType($importer, $item);
2448 // Now assign the rest of the values that depend on the type of the message
2449 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2450 if (!isset($item["object-type"])) {
2451 $item["object-type"] = Activity\ObjectType::COMMENT;
2454 if ($item["contact-id"] != $owner["contact-id"]) {
2455 $item["contact-id"] = $owner["contact-id"];
2458 if (($item["network"] != $owner["network"]) && ($owner["network"] != "")) {
2459 $item["network"] = $owner["network"];
2462 if ($item["contact-id"] != $author["contact-id"]) {
2463 $item["contact-id"] = $author["contact-id"];
2466 if (($item["network"] != $author["network"]) && ($author["network"] != "")) {
2467 $item["network"] = $author["network"];
2471 // Ensure to have the correct share data
2472 $item = Item::addShareDataFromOriginal($item);
2474 if ($entrytype == DFRN::REPLY_RC) {
2476 } elseif ($entrytype == DFRN::TOP_LEVEL) {
2477 if (!isset($item["object-type"])) {
2478 $item["object-type"] = Activity\ObjectType::NOTE;
2482 if (($item["object-type"] == Activity\ObjectType::EVENT) && !$owner_unknown) {
2483 Logger::log("Item ".$item["uri"]." seems to contain an event.", Logger::DEBUG);
2484 $ev = Event::fromBBCode($item["body"]);
2485 if ((!empty($ev['desc']) || !empty($ev['summary'])) && !empty($ev['start'])) {
2486 Logger::log("Event in item ".$item["uri"]." was found.", Logger::DEBUG);
2487 $ev["cid"] = $importer["id"];
2488 $ev["uid"] = $importer["importer_uid"];
2489 $ev["uri"] = $item["uri"];
2490 $ev["edited"] = $item["edited"];
2491 $ev["private"] = $item["private"];
2492 $ev["guid"] = $item["guid"];
2493 $ev["plink"] = $item["plink"];
2495 $condition = ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]];
2496 $event = DBA::selectFirst('event', ['id'], $condition);
2497 if (DBA::isResult($event)) {
2498 $ev["id"] = $event["id"];
2501 $event_id = Event::store($ev);
2502 Logger::log("Event ".$event_id." was stored", Logger::DEBUG);
2508 if (!self::processVerbs($entrytype, $importer, $item, $is_like)) {
2509 Logger::log("Exiting because 'processVerbs' told us so", Logger::DEBUG);
2513 // This check is done here to be able to receive connection requests in "processVerbs"
2514 if (($entrytype == DFRN::TOP_LEVEL) && $owner_unknown) {
2515 Logger::log("Item won't be stored because user " . $importer["importer_uid"] . " doesn't follow " . $item["owner-link"] . ".", Logger::DEBUG);
2520 // Update content if 'updated' changes
2521 if (DBA::isResult($current)) {
2522 if (self::updateContent($current, $item, $importer, $entrytype)) {
2523 Logger::log("Item ".$item["uri"]." was updated.", Logger::DEBUG);
2525 Logger::log("Item " . $item["uri"] . " already existed.", Logger::DEBUG);
2530 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2531 $posted_id = Item::insert($item);
2533 Logger::log("Reply from contact ".$item["contact-id"]." was stored with id ".$posted_id, Logger::DEBUG);
2535 if ($item['uid'] == 0) {
2536 Item::distribute($posted_id);
2541 } else { // $entrytype == DFRN::TOP_LEVEL
2542 if (($importer["uid"] == 0) && ($importer["importer_uid"] != 0)) {
2543 Logger::log("Contact ".$importer["id"]." isn't known to user ".$importer["importer_uid"].". The post will be ignored.", Logger::DEBUG);
2546 if (!Strings::compareLink($item["owner-link"], $importer["url"])) {
2548 * The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2549 * but otherwise there's a possible data mixup on the sender's system.
2550 * the tgroup delivery code called from Item::insert will correct it if it's a forum,
2551 * but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2553 Logger::log('Correcting item owner.', Logger::DEBUG);
2554 $item["owner-link"] = $importer["url"];
2555 $item["owner-id"] = Contact::getIdForURL($importer["url"], 0);
2558 if (($importer["rel"] == Contact::FOLLOWER) && (!self::tgroupCheck($importer["importer_uid"], $item))) {
2559 Logger::log("Contact ".$importer["id"]." is only follower and tgroup check was negative.", Logger::DEBUG);
2563 // This is my contact on another system, but it's really me.
2564 // Turn this into a wall post.
2565 $notify = Item::isRemoteSelf($importer, $item);
2567 $posted_id = Item::insert($item, $notify);
2570 $posted_id = $notify;
2573 Logger::log("Item was stored with id ".$posted_id, Logger::DEBUG);
2575 if ($item['uid'] == 0) {
2576 Item::distribute($posted_id);
2579 if (stristr($item["verb"], Activity::POKE)) {
2580 $item['id'] = $posted_id;
2581 self::doPoke($item, $importer);
2589 * @param object $xpath XPath object
2590 * @param object $deletion deletion elements
2591 * @param array $importer Record of the importer user mixed with contact of the content
2593 * @throws \Exception
2594 * @todo set proper type-hints
2596 private static function processDeletion($xpath, $deletion, $importer)
2598 Logger::log("Processing deletions");
2601 foreach ($deletion->attributes as $attributes) {
2602 if ($attributes->name == "ref") {
2603 $uri = $attributes->textContent;
2607 if (!$uri || !$importer["id"]) {
2611 $condition = ['uri' => $uri, 'uid' => $importer["importer_uid"]];
2612 $item = Item::selectFirst(['id', 'parent', 'contact-id', 'file', 'deleted', 'gravity'], $condition);
2613 if (!DBA::isResult($item)) {
2614 Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " wasn't found.", Logger::DEBUG);
2618 if (strstr($item['file'], '[')) {
2619 Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " is filed. So it won't be deleted.", Logger::DEBUG);
2623 // When it is a starting post it has to belong to the person that wants to delete it
2624 if (($item['gravity'] == GRAVITY_PARENT) && ($item['contact-id'] != $importer["id"])) {
2625 Logger::log("Item with uri " . $uri . " don't belong to contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2629 // Comments can be deleted by the thread owner or comment owner
2630 if (($item['gravity'] != GRAVITY_PARENT) && ($item['contact-id'] != $importer["id"])) {
2631 $condition = ['id' => $item['parent'], 'contact-id' => $importer["id"]];
2632 if (!Item::exists($condition)) {
2633 Logger::log("Item with uri " . $uri . " wasn't found or mustn't be deleted by contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2638 if ($item["deleted"]) {
2642 Logger::log('deleting item '.$item['id'].' uri='.$uri, Logger::DEBUG);
2644 Item::markForDeletion(['id' => $item['id']]);
2648 * Imports a DFRN message
2650 * @param string $xml The DFRN message
2651 * @param array $importer Record of the importer user mixed with contact of the content
2652 * @param bool $sort_by_date Is used when feeds are polled
2653 * @return integer Import status
2654 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2655 * @throws \ImagickException
2656 * @todo set proper type-hints
2658 public static function import($xml, $importer, $sort_by_date = false)
2664 $doc = new DOMDocument();
2665 @$doc->loadXML($xml);
2667 $xpath = new DOMXPath($doc);
2668 $xpath->registerNamespace("atom", ActivityNamespace::ATOM1);
2669 $xpath->registerNamespace("thr", ActivityNamespace::THREAD);
2670 $xpath->registerNamespace("at", ActivityNamespace::TOMB);
2671 $xpath->registerNamespace("media", ActivityNamespace::MEDIA);
2672 $xpath->registerNamespace("dfrn", ActivityNamespace::DFRN);
2673 $xpath->registerNamespace("activity", ActivityNamespace::ACTIVITY);
2674 $xpath->registerNamespace("georss", ActivityNamespace::GEORSS);
2675 $xpath->registerNamespace("poco", ActivityNamespace::POCO);
2676 $xpath->registerNamespace("ostatus", ActivityNamespace::OSTATUS);
2677 $xpath->registerNamespace("statusnet", ActivityNamespace::STATUSNET);
2680 $header["uid"] = $importer["importer_uid"];
2681 $header["network"] = Protocol::DFRN;
2682 $header["wall"] = 0;
2683 $header["origin"] = 0;
2684 $header["contact-id"] = $importer["id"];
2686 // Update the contact table if the data has changed
2688 // The "atom:author" is only present in feeds
2689 if ($xpath->query("/atom:feed/atom:author")->length > 0) {
2690 self::fetchauthor($xpath, $doc->firstChild, $importer, "atom:author", false, $xml);
2693 // Only the "dfrn:owner" in the head section contains all data
2694 if ($xpath->query("/atom:feed/dfrn:owner")->length > 0) {
2695 self::fetchauthor($xpath, $doc->firstChild, $importer, "dfrn:owner", false, $xml);
2698 Logger::log("Import DFRN message for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2700 // is it a public forum? Private forums aren't exposed with this method
2701 $forum = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:community/text()"));
2703 // The account type is new since 3.5.1
2704 if ($xpath->query("/atom:feed/dfrn:account_type")->length > 0) {
2705 // Hint: We are using separate update calls for uid=0 and uid!=0 since a combined call is bad for the database performance
2707 $accounttype = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:account_type/text()"));
2709 if ($accounttype != $importer["contact-type"]) {
2710 DBA::update('contact', ['contact-type' => $accounttype], ['id' => $importer['id']]);
2712 // Updating the public contact as well
2713 DBA::update('contact', ['contact-type' => $accounttype], ['uid' => 0, 'nurl' => $importer['nurl']]);
2715 // A forum contact can either have set "forum" or "prv" - but not both
2716 if ($accounttype == User::ACCOUNT_TYPE_COMMUNITY) {
2717 // It's a forum, so either set the public or private forum flag
2718 $condition = ['(`forum` != ? OR `prv` != ?) AND `id` = ?', $forum, !$forum, $importer['id']];
2719 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2721 // Updating the public contact as well
2722 $condition = ['(`forum` != ? OR `prv` != ?) AND `uid` = 0 AND `nurl` = ?', $forum, !$forum, $importer['nurl']];
2723 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2725 // It's not a forum, so remove the flags
2726 $condition = ['(`forum` OR `prv`) AND `id` = ?', $importer['id']];
2727 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2729 // Updating the public contact as well
2730 $condition = ['(`forum` OR `prv`) AND `uid` = 0 AND `nurl` = ?', $importer['nurl']];
2731 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2733 } elseif ($forum != $importer["forum"]) { // Deprecated since 3.5.1
2734 $condition = ['`forum` != ? AND `id` = ?', $forum, $importer["id"]];
2735 DBA::update('contact', ['forum' => $forum], $condition);
2737 // Updating the public contact as well
2738 $condition = ['`forum` != ? AND `uid` = 0 AND `nurl` = ?', $forum, $importer['nurl']];
2739 DBA::update('contact', ['forum' => $forum], $condition);
2743 // We are processing relocations even if we are ignoring a contact
2744 $relocations = $xpath->query("/atom:feed/dfrn:relocate");
2745 foreach ($relocations as $relocation) {
2746 self::processRelocation($xpath, $relocation, $importer);
2749 if (($importer["uid"] != 0) && !$importer["readonly"]) {
2750 $mails = $xpath->query("/atom:feed/dfrn:mail");
2751 foreach ($mails as $mail) {
2752 self::processMail($xpath, $mail, $importer);
2755 $suggestions = $xpath->query("/atom:feed/dfrn:suggest");
2756 foreach ($suggestions as $suggestion) {
2757 self::processSuggestion($xpath, $suggestion, $importer);
2761 $deletions = $xpath->query("/atom:feed/at:deleted-entry");
2762 foreach ($deletions as $deletion) {
2763 self::processDeletion($xpath, $deletion, $importer);
2766 if (!$sort_by_date) {
2767 $entries = $xpath->query("/atom:feed/atom:entry");
2768 foreach ($entries as $entry) {
2769 self::processEntry($header, $xpath, $entry, $importer, $xml);
2773 $entries = $xpath->query("/atom:feed/atom:entry");
2774 foreach ($entries as $entry) {
2775 $created = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2776 $newentries[strtotime($created)] = $entry;
2779 // Now sort after the publishing date
2782 foreach ($newentries as $entry) {
2783 self::processEntry($header, $xpath, $entry, $importer, $xml);
2786 Logger::log("Import done for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2791 * Returns the activity verb
2793 * @param array $item Item array
2795 * @return string activity verb
2797 private static function constructVerb(array $item)
2799 if ($item['verb']) {
2800 return $item['verb'];
2802 return Activity::POST;
2805 private static function tgroupCheck($uid, $item)
2809 // check that the message originated elsewhere and is a top-level post
2811 if ($item['wall'] || $item['origin'] || ($item['uri'] != $item['parent-uri'])) {
2815 $user = DBA::selectFirst('user', ['page-flags', 'nickname'], ['uid' => $uid]);
2816 if (!DBA::isResult($user)) {
2820 $community_page = ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY);
2821 $prvgroup = ($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP);
2823 $link = Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']);
2826 * Diaspora uses their own hardwired link URL in @-tags
2827 * instead of the one we supply with webfinger
2829 $dlink = Strings::normaliseLink(DI::baseUrl() . '/u/' . $user['nickname']);
2831 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
2833 foreach ($matches as $mtch) {
2834 if (Strings::compareLink($link, $mtch[1]) || Strings::compareLink($dlink, $mtch[1])) {
2836 Logger::log('mention found: ' . $mtch[2]);
2845 return $community_page || $prvgroup;
2849 * This function returns true if $update has an edited timestamp newer
2850 * than $existing, i.e. $update contains new data which should override
2851 * what's already there. If there is no timestamp yet, the update is
2852 * assumed to be newer. If the update has no timestamp, the existing
2853 * item is assumed to be up-to-date. If the timestamps are equal it
2854 * assumes the update has been seen before and should be ignored.
2859 * @throws \Exception
2861 private static function isEditedTimestampNewer($existing, $update)
2863 if (empty($existing['edited'])) {
2866 if (empty($update['edited'])) {
2870 $existing_edited = DateTimeFormat::utc($existing['edited']);
2871 $update_edited = DateTimeFormat::utc($update['edited']);
2873 return (strcmp($existing_edited, $update_edited) < 0);
2877 * Checks if the given contact url does support DFRN
2879 * @param string $url profile url
2880 * @param boolean $update Update the profile
2882 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2883 * @throws \ImagickException
2885 public static function isSupportedByContactUrl($url, $update = false)
2887 $probe = Probe::uri($url, Protocol::DFRN, 0, !$update);
2888 return $probe['network'] == Protocol::DFRN;