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\GContact;
37 use Friendica\Model\Item;
38 use Friendica\Model\ItemURI;
39 use Friendica\Model\Mail;
40 use Friendica\Model\Notify\Type;
41 use Friendica\Model\PermissionSet;
42 use Friendica\Model\Post\Category;
43 use Friendica\Model\Profile;
44 use Friendica\Model\Tag;
45 use Friendica\Model\User;
46 use Friendica\Network\Probe;
47 use Friendica\Util\Crypto;
48 use Friendica\Util\DateTimeFormat;
49 use Friendica\Util\Images;
50 use Friendica\Util\Network;
51 use Friendica\Util\Strings;
52 use Friendica\Util\XML;
55 * This class contain functions to create and send DFRN XML files
60 const TOP_LEVEL = 0; // Top level posting
61 const REPLY = 1; // Regular reply that is stored locally
62 const REPLY_RC = 2; // Reply that will be relayed
65 * Generates an array of contact and user for DFRN imports
67 * This array contains not only the receiver but also the sender of the message.
69 * @param integer $cid Contact id
70 * @param integer $uid User id
72 * @return array importer
75 public static function getImporter($cid, $uid = 0)
77 $condition = ['id' => $cid, 'blocked' => false, 'pending' => false];
78 $contact = DBA::selectFirst('contact', [], $condition);
79 if (!DBA::isResult($contact)) {
83 $contact['cpubkey'] = $contact['pubkey'];
84 $contact['cprvkey'] = $contact['prvkey'];
85 $contact['senderName'] = $contact['name'];
88 $condition = ['uid' => $uid, 'account_expired' => false, 'account_removed' => false];
89 $user = DBA::selectFirst('user', [], $condition);
90 if (!DBA::isResult($user)) {
94 $user['importer_uid'] = $user['uid'];
95 $user['uprvkey'] = $user['prvkey'];
97 $user = ['importer_uid' => 0, 'uprvkey' => '', 'timezone' => 'UTC',
98 'nickname' => '', 'sprvkey' => '', 'spubkey' => '',
99 'page-flags' => 0, 'account-type' => 0, 'prvnets' => 0];
102 return array_merge($contact, $user);
106 * Generates the atom entries for delivery.php
108 * This function is used whenever content is transmitted via DFRN.
110 * @param array $items Item elements
111 * @param array $owner Owner record
113 * @return string DFRN entries
114 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
115 * @throws \ImagickException
116 * @todo Find proper type-hints
118 public static function entries($items, $owner)
120 $doc = new DOMDocument('1.0', 'utf-8');
121 $doc->formatOutput = true;
123 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
125 if (! count($items)) {
126 return trim($doc->saveXML());
129 foreach ($items as $item) {
130 // These values aren't sent when sending from the queue.
131 /// @todo Check if we can set these values from the queue or if they are needed at all.
132 $item["entry:comment-allow"] = ($item["entry:comment-allow"] ?? '') ?: true;
133 $item["entry:cid"] = $item["entry:cid"] ?? 0;
135 $entry = self::entry($doc, "text", $item, $owner, $item["entry:comment-allow"], $item["entry:cid"]);
137 $root->appendChild($entry);
141 return trim($doc->saveXML());
145 * Generate an atom feed for the given user
147 * This function is called when another server is pulling data from the user feed.
149 * @param string $dfrn_id DFRN ID from the requesting party
150 * @param string $owner_nick Owner nick name
151 * @param string $last_update Date of the last update
152 * @param int $direction Can be -1, 0 or 1.
153 * @param boolean $onlyheader Output only the header without content? (Default is "no")
155 * @return string DFRN feed entries
156 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
157 * @throws \ImagickException
159 public static function feed($dfrn_id, $owner_nick, $last_update, $direction = 0, $onlyheader = false)
163 $sitefeed = ((strlen($owner_nick)) ? false : true); // not yet implemented, need to rewrite huge chunks of following logic
164 $public_feed = (($dfrn_id) ? false : true);
165 $starred = false; // not yet implemented, possible security issues
168 if ($public_feed && $a->argc > 2) {
169 for ($x = 2; $x < $a->argc; $x++) {
170 if ($a->argv[$x] == 'converse') {
173 if ($a->argv[$x] == 'starred') {
176 if ($a->argv[$x] == 'category' && $a->argc > ($x + 1) && strlen($a->argv[$x+1])) {
177 $category = $a->argv[$x+1];
182 // default permissions - anonymous user
184 $sql_extra = sprintf(" AND `item`.`private` != %s ", Item::PRIVATE);
186 $owner = DBA::selectFirst('owner-view', [], ['nickname' => $owner_nick]);
187 if (!DBA::isResult($owner)) {
188 Logger::log(sprintf('No contact found for nickname=%d', $owner_nick), Logger::WARNING);
192 $owner_id = $owner['uid'];
194 $sql_post_table = "";
196 if (! $public_feed) {
197 switch ($direction) {
199 $sql_extra = sprintf(" AND `issued-id` = '%s' ", DBA::escape($dfrn_id));
202 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", DBA::escape($dfrn_id));
205 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", DBA::escape($dfrn_id));
213 "SELECT * FROM `contact` WHERE NOT `blocked` AND `contact`.`uid` = %d $sql_extra LIMIT 1",
217 if (! DBA::isResult($r)) {
218 Logger::log(sprintf('No contact found for uid=%d', $owner_id), Logger::WARNING);
224 $set = PermissionSet::get($owner_id, $contact['id']);
227 $sql_extra = " AND `item`.`psid` IN (" . implode(',', $set) .")";
229 $sql_extra = sprintf(" AND `item`.`private` != %s", Item::PRIVATE);
239 if (! strlen($last_update)) {
240 $last_update = 'now -30 days';
243 if (isset($category)) {
244 $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` ",
245 DBA::escape(Strings::protectSprintf($category)), intval(Category::CATEGORY), intval($owner_id));
248 if ($public_feed && ! $converse) {
249 $sql_extra .= " AND `contact`.`self` = 1 ";
252 $check_date = DateTimeFormat::utc($last_update);
256 FROM `item` USE INDEX (`uid_wall_changed`) $sql_post_table
257 STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
258 WHERE `item`.`uid` = %d AND `item`.`wall` AND `item`.`changed` > '%s'
259 AND `item`.`visible` $sql_extra
260 ORDER BY `item`.`parent` ".$sort.", `item`.`received` ASC LIMIT 0, 300",
262 DBA::escape($check_date),
267 foreach ($r as $item) {
268 $ids[] = $item['id'];
272 $ret = Item::select(Item::DELIVER_FIELDLIST, ['id' => $ids]);
273 $items = Item::inArray($ret);
279 * Will check further below if this actually returned results.
280 * We will provide an empty feed if that is the case.
283 $doc = new DOMDocument('1.0', 'utf-8');
284 $doc->formatOutput = true;
286 $alternatelink = $owner['url'];
288 if (isset($category)) {
289 $alternatelink .= "/category/".$category;
293 $author = "dfrn:owner";
298 $root = self::addHeader($doc, $owner, $author, $alternatelink, true);
300 /// @TODO This hook can't work anymore
301 // \Friendica\Core\Hook::callAll('atom_feed', $atom);
303 if (!DBA::isResult($items) || $onlyheader) {
304 $atom = trim($doc->saveXML());
306 Hook::callAll('atom_feed_end', $atom);
311 foreach ($items as $item) {
312 // prevent private email from leaking.
313 if ($item['network'] == Protocol::MAIL) {
317 // public feeds get html, our own nodes use bbcode
321 // catch any email that's in a public conversation and make sure it doesn't leak
322 if ($item['private'] == Item::PRIVATE) {
329 $entry = self::entry($doc, $type, $item, $owner, true);
331 $root->appendChild($entry);
335 $atom = trim($doc->saveXML());
337 Hook::callAll('atom_feed_end', $atom);
343 * Generate an atom entry for a given item id
345 * @param int $item_id The item id
346 * @param boolean $conversation Show the conversation. If false show the single post.
348 * @return string DFRN feed entry
349 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
350 * @throws \ImagickException
352 public static function itemFeed($item_id, $conversation = false)
355 $condition = ['parent' => $item_id];
357 $condition = ['id' => $item_id];
360 $ret = Item::select(Item::DELIVER_FIELDLIST, $condition);
361 $items = Item::inArray($ret);
362 if (!DBA::isResult($items)) {
368 if ($item['uid'] != 0) {
369 $owner = User::getOwnerDataById($item['uid']);
374 $owner = ['uid' => 0, 'nick' => 'feed-item'];
377 $doc = new DOMDocument('1.0', 'utf-8');
378 $doc->formatOutput = true;
382 $root = $doc->createElementNS(ActivityNamespace::ATOM1, 'feed');
383 $doc->appendChild($root);
385 $root->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
386 $root->setAttribute("xmlns:at", ActivityNamespace::TOMB);
387 $root->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
388 $root->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
389 $root->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
390 $root->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
391 $root->setAttribute("xmlns:poco", ActivityNamespace::POCO);
392 $root->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
393 $root->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
395 //$root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
397 foreach ($items as $item) {
398 $entry = self::entry($doc, $type, $item, $owner, true, 0);
400 $root->appendChild($entry);
404 self::entry($doc, $type, $item, $owner, true, 0, true);
407 $atom = trim($doc->saveXML());
412 * Create XML text for DFRN mails
414 * @param array $item message elements
415 * @param array $owner Owner record
417 * @return string DFRN mail
418 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
419 * @todo Find proper type-hints
421 public static function mail($item, $owner)
423 $doc = new DOMDocument('1.0', 'utf-8');
424 $doc->formatOutput = true;
426 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
428 $mail = $doc->createElement("dfrn:mail");
429 $sender = $doc->createElement("dfrn:sender");
431 XML::addElement($doc, $sender, "dfrn:name", $owner['name']);
432 XML::addElement($doc, $sender, "dfrn:uri", $owner['url']);
433 XML::addElement($doc, $sender, "dfrn:avatar", $owner['thumb']);
435 $mail->appendChild($sender);
437 XML::addElement($doc, $mail, "dfrn:id", $item['uri']);
438 XML::addElement($doc, $mail, "dfrn:in-reply-to", $item['parent-uri']);
439 XML::addElement($doc, $mail, "dfrn:sentdate", DateTimeFormat::utc($item['created'] . '+00:00', DateTimeFormat::ATOM));
440 XML::addElement($doc, $mail, "dfrn:subject", $item['title']);
441 XML::addElement($doc, $mail, "dfrn:content", $item['body']);
443 $root->appendChild($mail);
445 return trim($doc->saveXML());
449 * Create XML text for DFRN friend suggestions
451 * @param array $item suggestion elements
452 * @param array $owner Owner record
454 * @return string DFRN suggestions
455 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
456 * @todo Find proper type-hints
458 public static function fsuggest($item, $owner)
460 $doc = new DOMDocument('1.0', 'utf-8');
461 $doc->formatOutput = true;
463 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
465 $suggest = $doc->createElement("dfrn:suggest");
467 XML::addElement($doc, $suggest, "dfrn:url", $item['url']);
468 XML::addElement($doc, $suggest, "dfrn:name", $item['name']);
469 XML::addElement($doc, $suggest, "dfrn:photo", $item['photo']);
470 XML::addElement($doc, $suggest, "dfrn:request", $item['request']);
471 XML::addElement($doc, $suggest, "dfrn:note", $item['note']);
473 $root->appendChild($suggest);
475 return trim($doc->saveXML());
479 * Create XML text for DFRN relocations
481 * @param array $owner Owner record
482 * @param int $uid User ID
484 * @return string DFRN relocations
485 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
486 * @todo Find proper type-hints
488 public static function relocate($owner, $uid)
491 /* get site pubkey. this could be a new installation with no site keys*/
492 $pubkey = DI::config()->get('system', 'site_pubkey');
494 $res = Crypto::newKeypair(1024);
495 DI::config()->set('system', 'site_prvkey', $res['prvkey']);
496 DI::config()->set('system', 'site_pubkey', $res['pubkey']);
500 "SELECT `resource-id` , `scale`, type FROM `photo`
501 WHERE `profile` = 1 AND `uid` = %d ORDER BY scale;",
505 $ext = Images::supportedTypes();
507 foreach ($rp as $p) {
508 $photos[$p['scale']] = DI::baseUrl().'/photo/'.$p['resource-id'].'-'.$p['scale'].'.'.$ext[$p['type']];
512 $doc = new DOMDocument('1.0', 'utf-8');
513 $doc->formatOutput = true;
515 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
517 $relocate = $doc->createElement("dfrn:relocate");
519 XML::addElement($doc, $relocate, "dfrn:url", $owner['url']);
520 XML::addElement($doc, $relocate, "dfrn:name", $owner['name']);
521 XML::addElement($doc, $relocate, "dfrn:addr", $owner['addr']);
522 XML::addElement($doc, $relocate, "dfrn:avatar", $owner['avatar']);
523 XML::addElement($doc, $relocate, "dfrn:photo", $photos[4]);
524 XML::addElement($doc, $relocate, "dfrn:thumb", $photos[5]);
525 XML::addElement($doc, $relocate, "dfrn:micro", $photos[6]);
526 XML::addElement($doc, $relocate, "dfrn:request", $owner['request']);
527 XML::addElement($doc, $relocate, "dfrn:confirm", $owner['confirm']);
528 XML::addElement($doc, $relocate, "dfrn:notify", $owner['notify']);
529 XML::addElement($doc, $relocate, "dfrn:poll", $owner['poll']);
530 XML::addElement($doc, $relocate, "dfrn:sitepubkey", DI::config()->get('system', 'site_pubkey'));
532 $root->appendChild($relocate);
534 return trim($doc->saveXML());
538 * Adds the header elements for the DFRN protocol
540 * @param DOMDocument $doc XML document
541 * @param array $owner Owner record
542 * @param string $authorelement Element name for the author
543 * @param string $alternatelink link to profile or category
544 * @param bool $public Is it a header for public posts?
546 * @return object XML root object
547 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
548 * @todo Find proper type-hints
550 private static function addHeader(DOMDocument $doc, $owner, $authorelement, $alternatelink = "", $public = false)
553 if ($alternatelink == "") {
554 $alternatelink = $owner['url'];
557 $root = $doc->createElementNS(ActivityNamespace::ATOM1, 'feed');
558 $doc->appendChild($root);
560 $root->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
561 $root->setAttribute("xmlns:at", ActivityNamespace::TOMB);
562 $root->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
563 $root->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
564 $root->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
565 $root->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
566 $root->setAttribute("xmlns:poco", ActivityNamespace::POCO);
567 $root->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
568 $root->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
570 XML::addElement($doc, $root, "id", DI::baseUrl()."/profile/".$owner["nick"]);
571 XML::addElement($doc, $root, "title", $owner["name"]);
573 $attributes = ["uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION];
574 XML::addElement($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
576 $attributes = ["rel" => "license", "href" => "http://creativecommons.org/licenses/by/3.0/"];
577 XML::addElement($doc, $root, "link", "", $attributes);
579 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $alternatelink];
580 XML::addElement($doc, $root, "link", "", $attributes);
584 // DFRN itself doesn't uses this. But maybe someone else wants to subscribe to the public feed.
585 OStatus::hublinks($doc, $root, $owner["nick"]);
587 $attributes = ["rel" => "salmon", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
588 XML::addElement($doc, $root, "link", "", $attributes);
590 $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-replies", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
591 XML::addElement($doc, $root, "link", "", $attributes);
593 $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-mention", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
594 XML::addElement($doc, $root, "link", "", $attributes);
597 // For backward compatibility we keep this element
598 if ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
599 XML::addElement($doc, $root, "dfrn:community", 1);
602 // The former element is replaced by this one
603 XML::addElement($doc, $root, "dfrn:account_type", $owner["account-type"]);
605 /// @todo We need a way to transmit the different page flags like "User::PAGE_FLAGS_PRVGROUP"
607 XML::addElement($doc, $root, "updated", DateTimeFormat::utcNow(DateTimeFormat::ATOM));
609 $author = self::addAuthor($doc, $owner, $authorelement, $public);
610 $root->appendChild($author);
616 * Adds the author element in the header for the DFRN protocol
618 * @param DOMDocument $doc XML document
619 * @param array $owner Owner record
620 * @param string $authorelement Element name for the author
621 * @param boolean $public boolean
623 * @return \DOMElement XML author object
624 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
625 * @todo Find proper type-hints
627 private static function addAuthor(DOMDocument $doc, array $owner, $authorelement, $public)
629 // Should the profile be "unsearchable" in the net? Then add the "hide" element
630 $hide = DBA::exists('profile', ['uid' => $owner['uid'], 'net-publish' => false]);
632 $author = $doc->createElement($authorelement);
634 $namdate = DateTimeFormat::utc($owner['name-date'].'+00:00', DateTimeFormat::ATOM);
635 $picdate = DateTimeFormat::utc($owner['avatar-date'].'+00:00', DateTimeFormat::ATOM);
639 if (!$public || !$hide) {
640 $attributes = ["dfrn:updated" => $namdate];
643 XML::addElement($doc, $author, "name", $owner["name"], $attributes);
644 XML::addElement($doc, $author, "uri", DI::baseUrl().'/profile/'.$owner["nickname"], $attributes);
645 XML::addElement($doc, $author, "dfrn:handle", $owner["addr"], $attributes);
647 $attributes = ["rel" => "photo", "type" => "image/jpeg",
648 "media:width" => 300, "media:height" => 300, "href" => $owner['photo']];
650 if (!$public || !$hide) {
651 $attributes["dfrn:updated"] = $picdate;
654 XML::addElement($doc, $author, "link", "", $attributes);
656 $attributes["rel"] = "avatar";
657 XML::addElement($doc, $author, "link", "", $attributes);
660 XML::addElement($doc, $author, "dfrn:hide", "true");
663 // The following fields will only be generated if the data isn't meant for a public feed
668 $birthday = feed_birthday($owner['uid'], $owner['timezone']);
671 XML::addElement($doc, $author, "dfrn:birthday", $birthday);
674 // Only show contact details when we are allowed to
675 $profile = DBA::selectFirst('owner-view',
676 ['about', 'name', 'homepage', 'nickname', 'timezone', 'locality', 'region', 'country-name', 'pub_keywords', 'xmpp', 'dob'],
677 ['uid' => $owner['uid'], 'hidewall' => false]);
678 if (DBA::isResult($profile)) {
679 XML::addElement($doc, $author, "poco:displayName", $profile["name"]);
680 XML::addElement($doc, $author, "poco:updated", $namdate);
682 if (trim($profile["dob"]) > DBA::NULL_DATE) {
683 XML::addElement($doc, $author, "poco:birthday", "0000-".date("m-d", strtotime($profile["dob"])));
686 XML::addElement($doc, $author, "poco:note", $profile["about"]);
687 XML::addElement($doc, $author, "poco:preferredUsername", $profile["nickname"]);
689 $savetz = date_default_timezone_get();
690 date_default_timezone_set($profile["timezone"]);
691 XML::addElement($doc, $author, "poco:utcOffset", date("P"));
692 date_default_timezone_set($savetz);
694 if (trim($profile["homepage"]) != "") {
695 $urls = $doc->createElement("poco:urls");
696 XML::addElement($doc, $urls, "poco:type", "homepage");
697 XML::addElement($doc, $urls, "poco:value", $profile["homepage"]);
698 XML::addElement($doc, $urls, "poco:primary", "true");
699 $author->appendChild($urls);
702 if (trim($profile["pub_keywords"]) != "") {
703 $keywords = explode(",", $profile["pub_keywords"]);
705 foreach ($keywords as $keyword) {
706 XML::addElement($doc, $author, "poco:tags", trim($keyword));
710 if (trim($profile["xmpp"]) != "") {
711 $ims = $doc->createElement("poco:ims");
712 XML::addElement($doc, $ims, "poco:type", "xmpp");
713 XML::addElement($doc, $ims, "poco:value", $profile["xmpp"]);
714 XML::addElement($doc, $ims, "poco:primary", "true");
715 $author->appendChild($ims);
718 if (trim($profile["locality"].$profile["region"].$profile["country-name"]) != "") {
719 $element = $doc->createElement("poco:address");
721 XML::addElement($doc, $element, "poco:formatted", Profile::formatLocation($profile));
723 if (trim($profile["locality"]) != "") {
724 XML::addElement($doc, $element, "poco:locality", $profile["locality"]);
727 if (trim($profile["region"]) != "") {
728 XML::addElement($doc, $element, "poco:region", $profile["region"]);
731 if (trim($profile["country-name"]) != "") {
732 XML::addElement($doc, $element, "poco:country", $profile["country-name"]);
735 $author->appendChild($element);
743 * Adds the author elements in the "entry" elements of the DFRN protocol
745 * @param DOMDocument $doc XML document
746 * @param string $element Element name for the author
747 * @param string $contact_url Link of the contact
748 * @param array $item Item elements
750 * @return \DOMElement XML author object
751 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
752 * @todo Find proper type-hints
754 private static function addEntryAuthor(DOMDocument $doc, $element, $contact_url, $item)
756 $author = $doc->createElement($element);
758 $contact = Contact::getDetailsByURL($contact_url, $item["uid"]);
759 if (!empty($contact)) {
760 XML::addElement($doc, $author, "name", $contact["name"]);
761 XML::addElement($doc, $author, "uri", $contact["url"]);
762 XML::addElement($doc, $author, "dfrn:handle", $contact["addr"]);
765 /// - Check real image type and image size
766 /// - Check which of these boths elements we should use
769 "type" => "image/jpeg",
771 "media:height" => 80,
772 "href" => $contact["photo"]];
773 XML::addElement($doc, $author, "link", "", $attributes);
777 "type" => "image/jpeg",
779 "media:height" => 80,
780 "href" => $contact["photo"]];
781 XML::addElement($doc, $author, "link", "", $attributes);
788 * Adds the activity elements
790 * @param DOMDocument $doc XML document
791 * @param string $element Element name for the activity
792 * @param string $activity activity value
794 * @return \DOMElement XML activity object
795 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
796 * @todo Find proper type-hints
798 private static function createActivity(DOMDocument $doc, $element, $activity)
801 $entry = $doc->createElement($element);
803 $r = XML::parseString($activity);
809 XML::addElement($doc, $entry, "activity:object-type", $r->type);
813 XML::addElement($doc, $entry, "id", $r->id);
817 XML::addElement($doc, $entry, "title", $r->title);
821 if (substr($r->link, 0, 1) == '<') {
822 if (strstr($r->link, '&') && (! strstr($r->link, '&'))) {
823 $r->link = str_replace('&', '&', $r->link);
826 $r->link = preg_replace('/\<link(.*?)\"\>/', '<link$1"/>', $r->link);
828 // XML does need a single element as root element so we add a dummy element here
829 $data = XML::parseString("<dummy>" . $r->link . "</dummy>");
830 if (is_object($data)) {
831 foreach ($data->link as $link) {
833 foreach ($link->attributes() as $parameter => $value) {
834 $attributes[$parameter] = $value;
836 XML::addElement($doc, $entry, "link", "", $attributes);
840 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $r->link];
841 XML::addElement($doc, $entry, "link", "", $attributes);
845 XML::addElement($doc, $entry, "content", BBCode::convert($r->content), ["type" => "html"]);
855 * Adds the elements for attachments
857 * @param object $doc XML document
858 * @param object $root XML root
859 * @param array $item Item element
861 * @return void XML attachment object
862 * @todo Find proper type-hints
864 private static function getAttachment($doc, $root, $item)
866 $arr = explode('[/attach],', $item['attach']);
868 foreach ($arr as $r) {
870 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|', $r, $matches);
872 $attributes = ["rel" => "enclosure",
873 "href" => $matches[1],
874 "type" => $matches[3]];
876 if (intval($matches[2])) {
877 $attributes["length"] = intval($matches[2]);
880 if (trim($matches[4]) != "") {
881 $attributes["title"] = trim($matches[4]);
884 XML::addElement($doc, $root, "link", "", $attributes);
891 * Adds the "entry" elements for the DFRN protocol
893 * @param DOMDocument $doc XML document
894 * @param string $type "text" or "html"
895 * @param array $item Item element
896 * @param array $owner Owner record
897 * @param bool $comment Trigger the sending of the "comment" element
898 * @param int $cid Contact ID of the recipient
899 * @param bool $single If set, the entry is created as an XML document with a single "entry" element
901 * @return null|\DOMElement XML entry object
902 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
903 * @throws \ImagickException
904 * @todo Find proper type-hints
906 private static function entry(DOMDocument $doc, $type, array $item, array $owner, $comment = false, $cid = 0, $single = false)
910 if (!$item['parent']) {
911 Logger::notice('Item without parent found.', ['type' => $type, 'item' => $item]);
915 if ($item['deleted']) {
916 $attributes = ["ref" => $item['uri'], "when" => DateTimeFormat::utc($item['edited'] . '+00:00', DateTimeFormat::ATOM)];
917 return XML::createElement($doc, "at:deleted-entry", "", $attributes);
921 $entry = $doc->createElement("entry");
923 $entry = $doc->createElementNS(ActivityNamespace::ATOM1, 'entry');
924 $doc->appendChild($entry);
926 $entry->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
927 $entry->setAttribute("xmlns:at", ActivityNamespace::TOMB);
928 $entry->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
929 $entry->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
930 $entry->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
931 $entry->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
932 $entry->setAttribute("xmlns:poco", ActivityNamespace::POCO);
933 $entry->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
934 $entry->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
937 if ($item['private'] == Item::PRIVATE) {
938 $body = Item::fixPrivatePhotos($item['body'], $owner['uid'], $item, $cid);
940 $body = $item['body'];
943 // Remove the abstract element. It is only locally important.
944 $body = BBCode::stripAbstract($body);
947 if ($type == 'html') {
950 if ($item['title'] != "") {
951 $htmlbody = "[b]" . $item['title'] . "[/b]\n\n" . $htmlbody;
954 $htmlbody = BBCode::convert($htmlbody, false, 7);
957 $author = self::addEntryAuthor($doc, "author", $item["author-link"], $item);
958 $entry->appendChild($author);
960 $dfrnowner = self::addEntryAuthor($doc, "dfrn:owner", $item["owner-link"], $item);
961 $entry->appendChild($dfrnowner);
963 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
964 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
965 $parent = Item::selectFirst(['guid', 'plink'], ['uri' => $parent_item, 'uid' => $item['uid']]);
966 $attributes = ["ref" => $parent_item, "type" => "text/html",
967 "href" => $parent['plink'],
968 "dfrn:diaspora_guid" => $parent['guid']];
969 XML::addElement($doc, $entry, "thr:in-reply-to", "", $attributes);
972 // Add conversation data. This is used for OStatus
973 $conversation_href = DI::baseUrl()."/display/".$item["parent-guid"];
974 $conversation_uri = $conversation_href;
976 if (isset($parent_item)) {
977 $conversation = DBA::selectFirst('conversation', ['conversation-uri', 'conversation-href'], ['item-uri' => $item['parent-uri']]);
978 if (DBA::isResult($conversation)) {
979 if ($conversation['conversation-uri'] != '') {
980 $conversation_uri = $conversation['conversation-uri'];
982 if ($conversation['conversation-href'] != '') {
983 $conversation_href = $conversation['conversation-href'];
989 "href" => $conversation_href,
990 "ref" => $conversation_uri];
992 XML::addElement($doc, $entry, "ostatus:conversation", $conversation_uri, $attributes);
994 XML::addElement($doc, $entry, "id", $item["uri"]);
995 XML::addElement($doc, $entry, "title", $item["title"]);
997 XML::addElement($doc, $entry, "published", DateTimeFormat::utc($item["created"] . "+00:00", DateTimeFormat::ATOM));
998 XML::addElement($doc, $entry, "updated", DateTimeFormat::utc($item["edited"] . "+00:00", DateTimeFormat::ATOM));
1000 // "dfrn:env" is used to read the content
1001 XML::addElement($doc, $entry, "dfrn:env", Strings::base64UrlEncode($body, true));
1003 // The "content" field is not read by the receiver. We could remove it when the type is "text"
1004 // We keep it at the moment, maybe there is some old version that doesn't read "dfrn:env"
1005 XML::addElement($doc, $entry, "content", (($type == 'html') ? $htmlbody : $body), ["type" => $type]);
1007 // We save this value in "plink". Maybe we should read it from there as well?
1013 ["rel" => "alternate", "type" => "text/html",
1014 "href" => DI::baseUrl() . "/display/" . $item["guid"]]
1017 // "comment-allow" is some old fashioned stuff for old Friendica versions.
1018 // It is included in the rewritten code for completeness
1020 XML::addElement($doc, $entry, "dfrn:comment-allow", 1);
1023 if ($item['location']) {
1024 XML::addElement($doc, $entry, "dfrn:location", $item['location']);
1027 if ($item['coord']) {
1028 XML::addElement($doc, $entry, "georss:point", $item['coord']);
1031 if ($item['private']) {
1032 // Friendica versions prior to 2020.3 can't handle "unlisted" properly. So we can only transmit public and private
1033 XML::addElement($doc, $entry, "dfrn:private", ($item['private'] == Item::PRIVATE ? Item::PRIVATE : Item::PUBLIC));
1034 XML::addElement($doc, $entry, "dfrn:unlisted", $item['private'] == Item::UNLISTED);
1037 if ($item['extid']) {
1038 XML::addElement($doc, $entry, "dfrn:extid", $item['extid']);
1041 if ($item['post-type'] == Item::PT_PAGE) {
1042 XML::addElement($doc, $entry, "dfrn:bookmark", "true");
1046 XML::addElement($doc, $entry, "statusnet:notice_info", "", ["local_id" => $item['id'], "source" => $item['app']]);
1049 XML::addElement($doc, $entry, "dfrn:diaspora_guid", $item["guid"]);
1051 // The signed text contains the content in Markdown, the sender handle and the signatur for the content
1052 // It is needed for relayed comments to Diaspora.
1053 if ($item['signed_text']) {
1054 $sign = base64_encode(json_encode(['signed_text' => $item['signed_text'],'signature' => '','signer' => '']));
1055 XML::addElement($doc, $entry, "dfrn:diaspora_signature", $sign);
1058 XML::addElement($doc, $entry, "activity:verb", self::constructVerb($item));
1060 if ($item['object-type'] != "") {
1061 XML::addElement($doc, $entry, "activity:object-type", $item['object-type']);
1062 } elseif ($item['id'] == $item['parent']) {
1063 XML::addElement($doc, $entry, "activity:object-type", Activity\ObjectType::NOTE);
1065 XML::addElement($doc, $entry, "activity:object-type", Activity\ObjectType::COMMENT);
1068 $actobj = self::createActivity($doc, "activity:object", $item['object']);
1070 $entry->appendChild($actobj);
1073 $actarg = self::createActivity($doc, "activity:target", $item['target']);
1075 $entry->appendChild($actarg);
1078 $tags = Tag::getByURIId($item['uri-id']);
1081 foreach ($tags as $tag) {
1082 if (($type != 'html') || ($tag['type'] == Tag::HASHTAG)) {
1083 XML::addElement($doc, $entry, "category", "", ["scheme" => "X-DFRN:" . Tag::TAG_CHARACTER[$tag['type']] . ":" . $tag['url'], "term" => $tag['name']]);
1085 if ($tag['type'] != Tag::HASHTAG) {
1086 $mentioned[$tag['url']] = $tag['url'];
1091 foreach ($mentioned as $mention) {
1092 $condition = ['uid' => $owner["uid"], 'nurl' => Strings::normaliseLink($mention)];
1093 $contact = DBA::selectFirst('contact', ['forum', 'prv'], $condition);
1095 if (DBA::isResult($contact) && ($contact["forum"] || $contact["prv"])) {
1101 ["rel" => "mentioned",
1102 "ostatus:object-type" => Activity\ObjectType::GROUP,
1111 ["rel" => "mentioned",
1112 "ostatus:object-type" => Activity\ObjectType::PERSON,
1118 self::getAttachment($doc, $entry, $item);
1124 * encrypts data via AES
1126 * @param string $data The data that is to be encrypted
1127 * @param string $key The AES key
1129 * @return string encrypted data
1131 private static function aesEncrypt($data, $key)
1133 return openssl_encrypt($data, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1137 * decrypts data via AES
1139 * @param string $encrypted The encrypted data
1140 * @param string $key The AES key
1142 * @return string decrypted data
1144 public static function aesDecrypt($encrypted, $key)
1146 return openssl_decrypt($encrypted, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1150 * Delivers the atom content to the contacts
1152 * @param array $owner Owner record
1153 * @param array $contact Contact record of the receiver
1154 * @param string $atom Content that will be transmitted
1155 * @param bool $dissolve (to be documented)
1157 * @return int Deliver status. Negative values mean an error.
1158 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1159 * @throws \ImagickException
1160 * @todo Add array type-hint for $owner, $contact
1162 public static function deliver($owner, $contact, $atom, $dissolve = false)
1164 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
1166 if ($contact['duplex'] && $contact['dfrn-id']) {
1167 $idtosend = '0:' . $orig_id;
1169 if ($contact['duplex'] && $contact['issued-id']) {
1170 $idtosend = '1:' . $orig_id;
1173 $rino = DI::config()->get('system', 'rino_encrypt');
1174 $rino = intval($rino);
1176 Logger::log("Local rino version: ". $rino, Logger::DEBUG);
1178 $ssl_val = intval(DI::config()->get('system', 'ssl_policy'));
1181 case BaseURL::SSL_POLICY_FULL:
1182 $ssl_policy = 'full';
1184 case BaseURL::SSL_POLICY_SELFSIGN:
1185 $ssl_policy = 'self';
1187 case BaseURL::SSL_POLICY_NONE:
1189 $ssl_policy = 'none';
1193 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino='.$rino : '');
1195 Logger::log('dfrn_deliver: ' . $url);
1197 $curlResult = Network::curl($url);
1199 if ($curlResult->isTimeout()) {
1200 return -2; // timed out
1203 $xml = $curlResult->getBody();
1205 $curl_stat = $curlResult->getReturnCode();
1206 if (empty($curl_stat)) {
1207 return -3; // timed out
1210 Logger::log('dfrn_deliver: ' . $xml, Logger::DATA);
1216 if (strpos($xml, '<?xml') === false) {
1217 Logger::log('dfrn_deliver: no valid XML returned');
1218 Logger::log('dfrn_deliver: returned XML: ' . $xml, Logger::DATA);
1222 $res = XML::parseString($xml);
1224 if (!is_object($res) || (intval($res->status) != 0) || !strlen($res->challenge) || !strlen($res->dfrn_id)) {
1225 if (empty($res->status)) {
1228 $status = $res->status;
1235 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
1236 $challenge = hex2bin((string) $res->challenge);
1237 $perm = (($res->perm) ? $res->perm : null);
1238 $dfrn_version = floatval($res->dfrn_version ?: 2.0);
1239 $rino_remote_version = intval($res->rino);
1240 $page = (($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? 1 : 0);
1242 Logger::log("Remote rino version: ".$rino_remote_version." for ".$contact["url"], Logger::DEBUG);
1244 if ($owner['page-flags'] == User::PAGE_FLAGS_PRVGROUP) {
1248 $final_dfrn_id = '';
1251 if ((($perm == 'rw') && !intval($contact['writable']))
1252 || (($perm == 'r') && intval($contact['writable']))
1254 DBA::update('contact', ['writable' => ($perm == 'rw')], ['id' => $contact['id']]);
1256 $contact['writable'] = (string) 1 - intval($contact['writable']);
1260 if (($contact['duplex'] && strlen($contact['pubkey']))
1261 || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1262 || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1264 openssl_public_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['pubkey']);
1265 openssl_public_decrypt($challenge, $postvars['challenge'], $contact['pubkey']);
1267 openssl_private_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['prvkey']);
1268 openssl_private_decrypt($challenge, $postvars['challenge'], $contact['prvkey']);
1271 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
1273 if (strpos($final_dfrn_id, ':') == 1) {
1274 $final_dfrn_id = substr($final_dfrn_id, 2);
1277 if ($final_dfrn_id != $orig_id) {
1278 Logger::log('dfrn_deliver: wrong dfrn_id.');
1279 // did not decode properly - cannot trust this site
1283 $postvars['dfrn_id'] = $idtosend;
1284 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
1286 $postvars['dissolve'] = '1';
1289 if ((($contact['rel']) && ($contact['rel'] != Contact::SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1290 $postvars['data'] = $atom;
1291 $postvars['perm'] = 'rw';
1293 $postvars['data'] = str_replace('<dfrn:comment-allow>1', '<dfrn:comment-allow>0', $atom);
1294 $postvars['perm'] = 'r';
1297 $postvars['ssl_policy'] = $ssl_policy;
1300 $postvars['page'] = $page;
1304 if ($rino > 0 && $rino_remote_version > 0 && (! $dissolve)) {
1305 Logger::log('rino version: '. $rino_remote_version);
1307 switch ($rino_remote_version) {
1309 $key = openssl_random_pseudo_bytes(16);
1310 $data = self::aesEncrypt($postvars['data'], $key);
1314 Logger::log("rino: invalid requested version '$rino_remote_version'");
1318 $postvars['rino'] = $rino_remote_version;
1319 $postvars['data'] = bin2hex($data);
1321 if ($dfrn_version >= 2.1) {
1322 if (($contact['duplex'] && strlen($contact['pubkey']))
1323 || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1324 || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1326 openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1328 openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1331 if (($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1332 openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1334 openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1338 Logger::log('md5 rawkey ' . md5($postvars['key']));
1340 $postvars['key'] = bin2hex($postvars['key']);
1344 Logger::log('dfrn_deliver: ' . "SENDING: " . print_r($postvars, true), Logger::DATA);
1346 $postResult = Network::post($contact['notify'], $postvars);
1348 $xml = $postResult->getBody();
1350 Logger::log('dfrn_deliver: ' . "RECEIVED: " . $xml, Logger::DATA);
1352 $curl_stat = $postResult->getReturnCode();
1353 if (empty($curl_stat) || empty($xml)) {
1354 return -9; // timed out
1357 if (($curl_stat == 503) && stristr($postResult->getHeader(), 'retry-after')) {
1361 if (strpos($xml, '<?xml') === false) {
1362 Logger::log('dfrn_deliver: phase 2: no valid XML returned');
1363 Logger::log('dfrn_deliver: phase 2: returned XML: ' . $xml, Logger::DATA);
1367 $res = XML::parseString($xml);
1369 if (!isset($res->status)) {
1373 // Possibly old servers had returned an empty value when everything was okay
1374 if (empty($res->status)) {
1378 if (!empty($res->message)) {
1379 Logger::log('Delivery returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1382 return intval($res->status);
1386 * Transmits atom content to the contacts via the Diaspora transport layer
1388 * @param array $owner Owner record
1389 * @param array $contact Contact record of the receiver
1390 * @param string $atom Content that will be transmitted
1392 * @param bool $public_batch
1393 * @return int Deliver status. Negative values mean an error.
1394 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1395 * @throws \ImagickException
1397 public static function transmit($owner, $contact, $atom, $public_batch = false)
1399 if (!$public_batch) {
1400 if (empty($contact['addr'])) {
1401 Logger::log('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.');
1402 if (Contact::updateFromProbe($contact['id'])) {
1403 $new_contact = DBA::selectFirst('contact', ['addr'], ['id' => $contact['id']]);
1404 $contact['addr'] = $new_contact['addr'];
1407 if (empty($contact['addr'])) {
1408 Logger::log('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
1413 $fcontact = Diaspora::personByHandle($contact['addr']);
1414 if (empty($fcontact)) {
1415 Logger::log('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
1418 $pubkey = $fcontact['pubkey'];
1423 $envelope = Diaspora::buildMessage($atom, $owner, $contact, $owner['uprvkey'], $pubkey, $public_batch);
1425 // Create the endpoint for public posts. This is some WIP and should later be added to the probing
1426 if ($public_batch && empty($contact["batch"])) {
1427 $parts = parse_url($contact["notify"]);
1428 $path_parts = explode('/', $parts['path']);
1429 array_pop($path_parts);
1430 $parts['path'] = implode('/', $path_parts);
1431 $contact["batch"] = Network::unparseURL($parts);
1434 $dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
1436 if (empty($dest_url)) {
1437 Logger::info('Empty destination', ['public' => $public_batch, 'contact' => $contact]);
1441 $content_type = ($public_batch ? "application/magic-envelope+xml" : "application/json");
1443 $postResult = Network::post($dest_url, $envelope, ["Content-Type: ".$content_type]);
1444 $xml = $postResult->getBody();
1446 $curl_stat = $postResult->getReturnCode();
1447 if (empty($curl_stat) || empty($xml)) {
1448 Logger::log('Empty answer from ' . $contact['id'] . ' - ' . $dest_url);
1449 return -9; // timed out
1452 if (($curl_stat == 503) && (stristr($postResult->getHeader(), 'retry-after'))) {
1456 if (strpos($xml, '<?xml') === false) {
1457 Logger::log('No valid XML returned from ' . $contact['id'] . ' - ' . $dest_url);
1458 Logger::log('Returned XML: ' . $xml, Logger::DATA);
1462 $res = XML::parseString($xml);
1464 if (empty($res->status)) {
1468 if (!empty($res->message)) {
1469 Logger::log('Transmit to ' . $dest_url . ' returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1472 return intval($res->status);
1476 * Fetch the author data from head or entry items
1478 * @param object $xpath XPath object
1479 * @param object $context In which context should the data be searched
1480 * @param array $importer Record of the importer user mixed with contact of the content
1481 * @param string $element Element name from which the data is fetched
1482 * @param bool $onlyfetch Should the data only be fetched or should it update the contact record as well
1483 * @param string $xml optional, default empty
1485 * @return array Relevant data of the author
1486 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1487 * @throws \ImagickException
1488 * @todo Find good type-hints for all parameter
1490 private static function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "")
1493 $author["name"] = XML::getFirstNodeValue($xpath, $element."/atom:name/text()", $context);
1494 $author["link"] = XML::getFirstNodeValue($xpath, $element."/atom:uri/text()", $context);
1496 $fields = ['id', 'uid', 'url', 'network', 'avatar-date', 'avatar', 'name-date', 'uri-date', 'addr',
1497 'name', 'nick', 'about', 'location', 'keywords', 'xmpp', 'bdyear', 'bd', 'hidden', 'contact-type'];
1498 $condition = ["`uid` = ? AND `nurl` = ? AND `network` != ?",
1499 $importer["importer_uid"], Strings::normaliseLink($author["link"]), Protocol::STATUSNET];
1500 $contact_old = DBA::selectFirst('contact', $fields, $condition);
1502 if (DBA::isResult($contact_old)) {
1503 $author["contact-id"] = $contact_old["id"];
1504 $author["network"] = $contact_old["network"];
1507 Logger::debug("Contact ".$author["link"]." wasn't found for user ".$importer["importer_uid"]." XML: ".$xml);
1510 $author["contact-unknown"] = true;
1511 $author["contact-id"] = $importer["id"];
1512 $author["network"] = $importer["network"];
1516 // Until now we aren't serving different sizes - but maybe later
1518 /// @todo check if "avatar" or "photo" would be the best field in the specification
1519 $avatars = $xpath->query($element . "/atom:link[@rel='avatar']", $context);
1520 foreach ($avatars as $avatar) {
1523 foreach ($avatar->attributes as $attributes) {
1524 /// @TODO Rewrite these similar if() to one switch
1525 if ($attributes->name == "href") {
1526 $href = $attributes->textContent;
1528 if ($attributes->name == "width") {
1529 $width = $attributes->textContent;
1531 if ($attributes->name == "updated") {
1532 $author["avatar-date"] = $attributes->textContent;
1535 if (($width > 0) && ($href != "")) {
1536 $avatarlist[$width] = $href;
1540 if (count($avatarlist) > 0) {
1541 krsort($avatarlist);
1542 $author["avatar"] = current($avatarlist);
1545 if (empty($author['avatar']) && !empty($author['link'])) {
1546 $cid = Contact::getIdForURL($author['link'], 0);
1548 $contact = DBA::selectFirst('contact', ['avatar'], ['id' => $cid]);
1549 if (DBA::isResult($contact)) {
1550 $author['avatar'] = $contact['avatar'];
1555 if (empty($author['avatar'])) {
1556 Logger::log('Empty author: ' . $xml);
1557 $author['avatar'] = '';
1560 if (DBA::isResult($contact_old) && !$onlyfetch) {
1561 Logger::log("Check if contact details for contact " . $contact_old["id"] . " (" . $contact_old["nick"] . ") have to be updated.", Logger::DEBUG);
1563 $poco = ["url" => $contact_old["url"]];
1565 // When was the last change to name or uri?
1566 $name_element = $xpath->query($element . "/atom:name", $context)->item(0);
1567 foreach ($name_element->attributes as $attributes) {
1568 if ($attributes->name == "updated") {
1569 $poco["name-date"] = $attributes->textContent;
1573 $link_element = $xpath->query($element . "/atom:link", $context)->item(0);
1574 foreach ($link_element->attributes as $attributes) {
1575 if ($attributes->name == "updated") {
1576 $poco["uri-date"] = $attributes->textContent;
1580 // Update contact data
1581 $value = XML::getFirstNodeValue($xpath, $element . "/dfrn:handle/text()", $context);
1583 $poco["addr"] = $value;
1586 $value = XML::getFirstNodeValue($xpath, $element . "/poco:displayName/text()", $context);
1588 $poco["name"] = $value;
1591 $value = XML::getFirstNodeValue($xpath, $element . "/poco:preferredUsername/text()", $context);
1593 $poco["nick"] = $value;
1596 $value = XML::getFirstNodeValue($xpath, $element . "/poco:note/text()", $context);
1598 $poco["about"] = $value;
1601 $value = XML::getFirstNodeValue($xpath, $element . "/poco:address/poco:formatted/text()", $context);
1603 $poco["location"] = $value;
1606 /// @todo Only search for elements with "poco:type" = "xmpp"
1607 $value = XML::getFirstNodeValue($xpath, $element . "/poco:ims/poco:value/text()", $context);
1609 $poco["xmpp"] = $value;
1612 /// @todo Add support for the following fields that we don't support by now in the contact table:
1613 /// - poco:utcOffset
1619 // If the "hide" element is present then the profile isn't searchable.
1620 $hide = intval(XML::getFirstNodeValue($xpath, $element . "/dfrn:hide/text()", $context) == "true");
1622 Logger::log("Hidden status for contact " . $contact_old["url"] . ": " . $hide, Logger::DEBUG);
1624 // If the contact isn't searchable then set the contact to "hidden".
1625 // Problem: This can be manually overridden by the user.
1627 $contact_old["hidden"] = true;
1630 // Save the keywords into the contact table
1632 $tagelements = $xpath->evaluate($element . "/poco:tags/text()", $context);
1633 foreach ($tagelements as $tag) {
1634 $tags[$tag->nodeValue] = $tag->nodeValue;
1638 $poco["keywords"] = implode(", ", $tags);
1641 // "dfrn:birthday" contains the birthday converted to UTC
1642 $birthday = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1644 if (strtotime($birthday) > time()) {
1645 $bd_timestamp = strtotime($birthday);
1647 $poco["bdyear"] = date("Y", $bd_timestamp);
1650 // "poco:birthday" is the birthday in the format "yyyy-mm-dd"
1651 $value = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1653 if (!in_array($value, ["", "0000-00-00", DBA::NULL_DATE])) {
1654 $bdyear = date("Y");
1655 $value = str_replace(["0000", "0001"], $bdyear, $value);
1657 if (strtotime($value) < time()) {
1658 $value = str_replace($bdyear, $bdyear + 1, $value);
1661 $poco["bd"] = $value;
1664 $contact = array_merge($contact_old, $poco);
1666 if ($contact_old["bdyear"] != $contact["bdyear"]) {
1667 Event::createBirthday($contact, $birthday);
1670 $fields = ['name' => $contact['name'], 'nick' => $contact['nick'], 'about' => $contact['about'],
1671 'location' => $contact['location'], 'addr' => $contact['addr'], 'keywords' => $contact['keywords'],
1672 'bdyear' => $contact['bdyear'], 'bd' => $contact['bd'], 'hidden' => $contact['hidden'],
1673 'xmpp' => $contact['xmpp'], 'name-date' => DateTimeFormat::utc($contact['name-date']),
1674 'unsearchable' => $contact['hidden'], 'uri-date' => DateTimeFormat::utc($contact['uri-date'])];
1676 DBA::update('contact', $fields, ['id' => $contact['id'], 'network' => $contact['network']], $contact_old);
1678 // Update the public contact. Don't set the "hidden" value, this is used differently for public contacts
1679 unset($fields['hidden']);
1680 $condition = ['uid' => 0, 'nurl' => Strings::normaliseLink($contact_old['url'])];
1681 DBA::update('contact', $fields, $condition, true);
1683 Contact::updateAvatar($author['avatar'], $importer['importer_uid'], $contact['id']);
1685 $pcid = Contact::getIdForURL($contact_old['url']);
1686 if (!empty($pcid)) {
1687 Contact::updateAvatar($author['avatar'], 0, $pcid);
1691 * The generation is a sign for the reliability of the provided data.
1692 * It is used in the socgraph.php to prevent that old contact data
1693 * that was relayed over several servers can overwrite contact
1694 * data that we received directly.
1697 $poco["generation"] = 2;
1698 $poco["photo"] = $author["avatar"];
1699 $poco["hide"] = $hide;
1700 $poco["contact-type"] = $contact["contact-type"];
1701 $gcid = GContact::update($poco);
1703 GContact::link($gcid, $importer["importer_uid"], $contact["id"]);
1710 * Transforms activity objects into an XML string
1712 * @param object $xpath XPath object
1713 * @param object $activity Activity object
1714 * @param string $element element name
1716 * @return string XML string
1717 * @todo Find good type-hints for all parameter
1719 private static function transformActivity($xpath, $activity, $element)
1721 if (!is_object($activity)) {
1725 $obj_doc = new DOMDocument("1.0", "utf-8");
1726 $obj_doc->formatOutput = true;
1728 $obj_element = $obj_doc->createElementNS( ActivityNamespace::ATOM1, $element);
1730 $activity_type = $xpath->query("activity:object-type/text()", $activity)->item(0)->nodeValue;
1731 XML::addElement($obj_doc, $obj_element, "type", $activity_type);
1733 $id = $xpath->query("atom:id", $activity)->item(0);
1734 if (is_object($id)) {
1735 $obj_element->appendChild($obj_doc->importNode($id, true));
1738 $title = $xpath->query("atom:title", $activity)->item(0);
1739 if (is_object($title)) {
1740 $obj_element->appendChild($obj_doc->importNode($title, true));
1743 $links = $xpath->query("atom:link", $activity);
1744 if (is_object($links)) {
1745 foreach ($links as $link) {
1746 $obj_element->appendChild($obj_doc->importNode($link, true));
1750 $content = $xpath->query("atom:content", $activity)->item(0);
1751 if (is_object($content)) {
1752 $obj_element->appendChild($obj_doc->importNode($content, true));
1755 $obj_doc->appendChild($obj_element);
1757 $objxml = $obj_doc->saveXML($obj_element);
1759 /// @todo This isn't totally clean. We should find a way to transform the namespaces
1760 $objxml = str_replace("<".$element.' xmlns="http://www.w3.org/2005/Atom">', "<".$element.">", $objxml);
1765 * Processes the mail elements
1767 * @param object $xpath XPath object
1768 * @param object $mail mail elements
1769 * @param array $importer Record of the importer user mixed with contact of the content
1771 * @throws \Exception
1772 * @todo Find good type-hints for all parameter
1774 private static function processMail($xpath, $mail, $importer)
1776 Logger::log("Processing mails");
1779 $msg["uid"] = $importer["importer_uid"];
1780 $msg["from-name"] = $xpath->query("dfrn:sender/dfrn:name/text()", $mail)->item(0)->nodeValue;
1781 $msg["from-url"] = $xpath->query("dfrn:sender/dfrn:uri/text()", $mail)->item(0)->nodeValue;
1782 $msg["from-photo"] = $xpath->query("dfrn:sender/dfrn:avatar/text()", $mail)->item(0)->nodeValue;
1783 $msg["contact-id"] = $importer["id"];
1784 $msg["uri"] = $xpath->query("dfrn:id/text()", $mail)->item(0)->nodeValue;
1785 $msg["parent-uri"] = $xpath->query("dfrn:in-reply-to/text()", $mail)->item(0)->nodeValue;
1786 $msg["created"] = DateTimeFormat::utc($xpath->query("dfrn:sentdate/text()", $mail)->item(0)->nodeValue);
1787 $msg["title"] = $xpath->query("dfrn:subject/text()", $mail)->item(0)->nodeValue;
1788 $msg["body"] = $xpath->query("dfrn:content/text()", $mail)->item(0)->nodeValue;
1794 * Processes the suggestion elements
1796 * @param object $xpath XPath object
1797 * @param object $suggestion suggestion elements
1798 * @param array $importer Record of the importer user mixed with contact of the content
1800 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1801 * @todo Find good type-hints for all parameter
1803 private static function processSuggestion($xpath, $suggestion, $importer)
1805 Logger::log('Processing suggestions');
1807 /// @TODO Rewrite this to one statement
1809 $suggest['uid'] = $importer['importer_uid'];
1810 $suggest['cid'] = $importer['id'];
1811 $suggest['url'] = $xpath->query('dfrn:url/text()', $suggestion)->item(0)->nodeValue;
1812 $suggest['name'] = $xpath->query('dfrn:name/text()', $suggestion)->item(0)->nodeValue;
1813 $suggest['photo'] = $xpath->query('dfrn:photo/text()', $suggestion)->item(0)->nodeValue;
1814 $suggest['request'] = $xpath->query('dfrn:request/text()', $suggestion)->item(0)->nodeValue;
1815 $suggest['body'] = $xpath->query('dfrn:note/text()', $suggestion)->item(0)->nodeValue;
1817 // Does our member already have a friend matching this description?
1820 * The valid result means the friend we're about to send a friend
1821 * suggestion already has them in their contact, which means no further
1822 * action is required.
1824 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1826 $condition = ['nurl' => Strings::normaliseLink($suggest['url']), 'uid' => $suggest['uid']];
1827 if (DBA::exists('contact', $condition)) {
1830 // Do we already have an fcontact record for this person?
1833 $fcontact = DBA::selectFirst('fcontact', ['id'], ['url' => $suggest['url']]);
1834 if (DBA::isResult($fcontact)) {
1835 $fid = $fcontact['id'];
1837 // OK, we do. Do we already have an introduction for this person?
1838 if (DBA::exists('intro', ['uid' => $suggest['uid'], 'fid' => $fid])) {
1840 * The valid result means the friend we're about to send a friend
1841 * suggestion already has them in their contact, which means no further
1842 * action is required.
1844 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1851 $fields = ['name' => $suggest['name'], 'url' => $suggest['url'],
1852 'photo' => $suggest['photo'], 'request' => $suggest['request']];
1853 DBA::insert('fcontact', $fields);
1854 $fid = DBA::lastInsertId();
1858 * If no record in fcontact is found, below INSERT statement will not
1859 * link an introduction to it.
1862 // Database record did not get created. Quietly give up.
1866 $hash = Strings::getRandomHex();
1868 $fields = ['uid' => $suggest['uid'], 'fid' => $fid, 'contact-id' => $suggest['cid'],
1869 'note' => $suggest['body'], 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow(), 'blocked' => false];
1870 DBA::insert('intro', $fields);
1874 'type' => Type::SUGGEST,
1875 'notify_flags' => $importer['notify-flags'],
1876 'language' => $importer['language'],
1877 'to_name' => $importer['username'],
1878 'to_email' => $importer['email'],
1879 'uid' => $importer['importer_uid'],
1881 'link' => DI::baseUrl().'/notifications/intros',
1882 'source_name' => $importer['name'],
1883 'source_link' => $importer['url'],
1884 'source_photo' => $importer['photo'],
1885 'verb' => Activity::REQ_FRIEND,
1893 * Processes the relocation elements
1895 * @param object $xpath XPath object
1896 * @param object $relocation relocation elements
1897 * @param array $importer Record of the importer user mixed with contact of the content
1899 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1900 * @throws \ImagickException
1901 * @todo Find good type-hints for all parameter
1903 private static function processRelocation($xpath, $relocation, $importer)
1905 Logger::log("Processing relocations");
1907 /// @TODO Rewrite this to one statement
1909 $relocate["uid"] = $importer["importer_uid"];
1910 $relocate["cid"] = $importer["id"];
1911 $relocate["url"] = $xpath->query("dfrn:url/text()", $relocation)->item(0)->nodeValue;
1912 $relocate["addr"] = $xpath->query("dfrn:addr/text()", $relocation)->item(0)->nodeValue;
1913 $relocate["name"] = $xpath->query("dfrn:name/text()", $relocation)->item(0)->nodeValue;
1914 $relocate["avatar"] = $xpath->query("dfrn:avatar/text()", $relocation)->item(0)->nodeValue;
1915 $relocate["photo"] = $xpath->query("dfrn:photo/text()", $relocation)->item(0)->nodeValue;
1916 $relocate["thumb"] = $xpath->query("dfrn:thumb/text()", $relocation)->item(0)->nodeValue;
1917 $relocate["micro"] = $xpath->query("dfrn:micro/text()", $relocation)->item(0)->nodeValue;
1918 $relocate["request"] = $xpath->query("dfrn:request/text()", $relocation)->item(0)->nodeValue;
1919 $relocate["confirm"] = $xpath->query("dfrn:confirm/text()", $relocation)->item(0)->nodeValue;
1920 $relocate["notify"] = $xpath->query("dfrn:notify/text()", $relocation)->item(0)->nodeValue;
1921 $relocate["poll"] = $xpath->query("dfrn:poll/text()", $relocation)->item(0)->nodeValue;
1922 $relocate["sitepubkey"] = $xpath->query("dfrn:sitepubkey/text()", $relocation)->item(0)->nodeValue;
1924 if (($relocate["avatar"] == "") && ($relocate["photo"] != "")) {
1925 $relocate["avatar"] = $relocate["photo"];
1928 if ($relocate["addr"] == "") {
1929 $relocate["addr"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$3@$2", $relocate["url"]);
1934 "SELECT `photo`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d",
1935 intval($importer["id"]),
1936 intval($importer["importer_uid"])
1939 if (!DBA::isResult($r)) {
1940 Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
1946 // Update the gcontact entry
1947 $relocate["server_url"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $relocate["url"]);
1949 $fields = ['name' => $relocate["name"], 'photo' => $relocate["avatar"],
1950 'url' => $relocate["url"], 'nurl' => Strings::normaliseLink($relocate["url"]),
1951 'addr' => $relocate["addr"], 'connect' => $relocate["addr"],
1952 'notify' => $relocate["notify"], 'server_url' => $relocate["server_url"]];
1953 DBA::update('gcontact', $fields, ['nurl' => Strings::normaliseLink($old["url"])]);
1955 // Update the contact table. We try to find every entry.
1956 $fields = ['name' => $relocate["name"], 'avatar' => $relocate["avatar"],
1957 'url' => $relocate["url"], 'nurl' => Strings::normaliseLink($relocate["url"]),
1958 'addr' => $relocate["addr"], 'request' => $relocate["request"],
1959 'confirm' => $relocate["confirm"], 'notify' => $relocate["notify"],
1960 'poll' => $relocate["poll"], 'site-pubkey' => $relocate["sitepubkey"]];
1961 $condition = ["(`id` = ?) OR (`nurl` = ?)", $importer["id"], Strings::normaliseLink($old["url"])];
1963 DBA::update('contact', $fields, $condition);
1965 Contact::updateAvatar($relocate["avatar"], $importer["importer_uid"], $importer["id"], true);
1967 Logger::log('Contacts are updated.');
1970 /// merge with current record, current contents have priority
1971 /// update record, set url-updated
1972 /// update profile photos
1973 /// schedule a scan?
1980 * @param array $current the current item record
1981 * @param array $item the new item record
1982 * @param array $importer Record of the importer user mixed with contact of the content
1983 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
1985 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1986 * @todo set proper type-hints (array?)
1988 private static function updateContent($current, $item, $importer, $entrytype)
1992 if (self::isEditedTimestampNewer($current, $item)) {
1993 // do not accept (ignore) an earlier edit than one we currently have.
1994 if (DateTimeFormat::utc($item["edited"]) < $current["edited"]) {
1998 $fields = ['title' => $item['title'] ?? '', 'body' => $item['body'] ?? '',
1999 'changed' => DateTimeFormat::utcNow(),
2000 'edited' => DateTimeFormat::utc($item["edited"])];
2002 $condition = ["`uri` = ? AND `uid` IN (0, ?)", $item["uri"], $importer["importer_uid"]];
2003 Item::update($fields, $condition);
2011 * Detects the entry type of the item
2013 * @param array $importer Record of the importer user mixed with contact of the content
2014 * @param array $item the new item record
2016 * @return int Is it a toplevel entry, a comment or a relayed comment?
2017 * @throws \Exception
2018 * @todo set proper type-hints (array?)
2020 private static function getEntryType($importer, $item)
2022 if ($item["parent-uri"] != $item["uri"]) {
2025 if ($importer["page-flags"] == User::PAGE_FLAGS_COMMUNITY || $importer["page-flags"] == User::PAGE_FLAGS_PRVGROUP) {
2028 Logger::log("possible community action");
2030 $sql_extra = " AND `contact`.`self` AND `item`.`wall` ";
2033 // was the top-level post for this action written by somebody on this site?
2034 // Specifically, the recipient?
2036 $is_a_remote_action = false;
2038 $parent = Item::selectFirst(['parent-uri'], ['uri' => $item["parent-uri"]]);
2039 if (DBA::isResult($parent)) {
2041 "SELECT `item`.`forum_mode`, `item`.`wall` FROM `item`
2042 INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
2043 WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' OR `item`.`thr-parent` = '%s')
2044 AND `item`.`uid` = %d
2047 DBA::escape($parent["parent-uri"]),
2048 DBA::escape($parent["parent-uri"]),
2049 DBA::escape($parent["parent-uri"]),
2050 intval($importer["importer_uid"])
2052 if (DBA::isResult($r)) {
2053 $is_a_remote_action = true;
2058 * Does this have the characteristics of a community or private group action?
2059 * If it's an action to a wall post on a community/prvgroup page it's a
2060 * valid community action. Also forum_mode makes it valid for sure.
2061 * If neither, it's not.
2063 if ($is_a_remote_action && $community && (!$r[0]["forum_mode"]) && (!$r[0]["wall"])) {
2064 $is_a_remote_action = false;
2065 Logger::log("not a community action");
2068 if ($is_a_remote_action) {
2069 return DFRN::REPLY_RC;
2074 return DFRN::TOP_LEVEL;
2081 * @param array $item The new item record
2082 * @param array $importer Record of the importer user mixed with contact of the content
2084 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2085 * @todo set proper type-hints (array?)
2087 private static function doPoke(array $item, array $importer)
2089 $verb = urldecode(substr($item["verb"], strpos($item["verb"], "#")+1));
2093 $xo = XML::parseString($item["object"]);
2095 if (($xo->type == Activity\ObjectType::PERSON) && ($xo->id)) {
2096 // somebody was poked/prodded. Was it me?
2098 foreach ($xo->link as $l) {
2099 $atts = $l->attributes();
2100 switch ($atts["rel"]) {
2102 $Blink = $atts["href"];
2109 if ($Blink && Strings::compareLink($Blink, DI::baseUrl() . "/profile/" . $importer["nickname"])) {
2110 $author = DBA::selectFirst('contact', ['name', 'thumb', 'url'], ['id' => $item['author-id']]);
2112 $parent = Item::selectFirst(['id'], ['uri' => $item['parent-uri'], 'uid' => $importer["importer_uid"]]);
2113 $item["parent"] = $parent['id'];
2115 // send a notification
2118 "type" => Type::POKE,
2119 "notify_flags" => $importer["notify-flags"],
2120 "language" => $importer["language"],
2121 "to_name" => $importer["username"],
2122 "to_email" => $importer["email"],
2123 "uid" => $importer["importer_uid"],
2125 "link" => DI::baseUrl()."/display/".urlencode($item['guid']),
2126 "source_name" => $author["name"],
2127 "source_link" => $author["url"],
2128 "source_photo" => $author["thumb"],
2129 "verb" => $item["verb"],
2130 "otype" => "person",
2131 "activity" => $verb,
2132 "parent" => $item["parent"]]
2139 * Processes several actions, depending on the verb
2141 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
2142 * @param array $importer Record of the importer user mixed with contact of the content
2143 * @param array $item the new item record
2144 * @param bool $is_like Is the verb a "like"?
2146 * @return bool Should the processing of the entries be continued?
2147 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2148 * @todo set proper type-hints (array?)
2150 private static function processVerbs($entrytype, $importer, &$item, &$is_like)
2152 Logger::log("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, Logger::DEBUG);
2154 if (($entrytype == DFRN::TOP_LEVEL) && !empty($importer['id'])) {
2155 // The filling of the the "contact" variable is done for legcy reasons
2156 // The functions below are partly used by ostatus.php as well - where we have this variable
2157 $contact = Contact::selectFirst([], ['id' => $importer['id']]);
2159 $activity = DI::activity();
2161 // Big question: Do we need these functions? They were part of the "consume_feed" function.
2162 // This function once was responsible for DFRN and OStatus.
2163 if ($activity->match($item["verb"], Activity::FOLLOW)) {
2164 Logger::log("New follower");
2165 Contact::addRelationship($importer, $contact, $item);
2168 if ($activity->match($item["verb"], Activity::UNFOLLOW)) {
2169 Logger::log("Lost follower");
2170 Contact::removeFollower($importer, $contact, $item);
2173 if ($activity->match($item["verb"], Activity::REQ_FRIEND)) {
2174 Logger::log("New friend request");
2175 Contact::addRelationship($importer, $contact, $item, true);
2178 if ($activity->match($item["verb"], Activity::UNFRIEND)) {
2179 Logger::log("Lost sharer");
2180 Contact::removeSharer($importer, $contact, $item);
2184 if (($item["verb"] == Activity::LIKE)
2185 || ($item["verb"] == Activity::DISLIKE)
2186 || ($item["verb"] == Activity::ATTEND)
2187 || ($item["verb"] == Activity::ATTENDNO)
2188 || ($item["verb"] == Activity::ATTENDMAYBE)
2191 $item["gravity"] = GRAVITY_ACTIVITY;
2192 // only one like or dislike per person
2193 // splitted into two queries for performance issues
2194 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2195 'verb' => $item["verb"], 'parent-uri' => $item["parent-uri"]];
2196 if (Item::exists($condition)) {
2200 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2201 'verb' => $item["verb"], 'thr-parent' => $item["parent-uri"]];
2202 if (Item::exists($condition)) {
2206 // The owner of an activity must be the author
2207 $item["owner-name"] = $item["author-name"];
2208 $item["owner-link"] = $item["author-link"];
2209 $item["owner-avatar"] = $item["author-avatar"];
2210 $item["owner-id"] = $item["author-id"];
2215 if (($item["verb"] == Activity::TAG) && ($item["object-type"] == Activity\ObjectType::TAGTERM)) {
2216 $xo = XML::parseString($item["object"]);
2217 $xt = XML::parseString($item["target"]);
2219 if ($xt->type == Activity\ObjectType::NOTE) {
2220 $item_tag = Item::selectFirst(['id', 'uri-id', 'tag'], ['uri' => $xt->id, 'uid' => $importer["importer_uid"]]);
2222 if (!DBA::isResult($item_tag)) {
2223 Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
2227 // extract tag, if not duplicate, add to parent item
2229 Tag::store($item_tag['uri-id'], Tag::HASHTAG, $xo->content);
2238 * Processes the link elements
2240 * @param object $links link elements
2241 * @param array $item the item record
2243 * @todo set proper type-hints
2245 private static function parseLinks($links, &$item)
2252 foreach ($links as $link) {
2253 foreach ($link->attributes as $attributes) {
2254 switch ($attributes->name) {
2255 case "href" : $href = $attributes->textContent; break;
2256 case "rel" : $rel = $attributes->textContent; break;
2257 case "type" : $type = $attributes->textContent; break;
2258 case "length": $length = $attributes->textContent; break;
2259 case "title" : $title = $attributes->textContent; break;
2262 if (($rel != "") && ($href != "")) {
2265 $item["plink"] = $href;
2268 if (!empty($item["attach"])) {
2269 $item["attach"] .= ",";
2271 $item["attach"] = "";
2274 $item["attach"] .= '[attach]href="' . $href . '" length="' . $length . '" type="' . $type . '" title="' . $title . '"[/attach]';
2282 * Processes the entry elements which contain the items and comments
2284 * @param array $header Array of the header elements that always stay the same
2285 * @param object $xpath XPath object
2286 * @param object $entry entry elements
2287 * @param array $importer Record of the importer user mixed with contact of the content
2288 * @param string $xml xml
2290 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2291 * @throws \ImagickException
2292 * @todo Add type-hints
2294 private static function processEntry($header, $xpath, $entry, $importer, $xml)
2296 Logger::log("Processing entries");
2300 $item["protocol"] = Conversation::PARCEL_DFRN;
2302 $item["source"] = $xml;
2305 $item["uri"] = XML::getFirstNodeValue($xpath, "atom:id/text()", $entry);
2307 $item["edited"] = XML::getFirstNodeValue($xpath, "atom:updated/text()", $entry);
2309 $current = Item::selectFirst(['id', 'uid', 'edited', 'body'],
2310 ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]]
2312 // Is there an existing item?
2313 if (DBA::isResult($current) && !self::isEditedTimestampNewer($current, $item)) {
2314 Logger::log("Item ".$item["uri"]." (".$item['edited'].") already existed.", Logger::DEBUG);
2319 $owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true, $xml);
2321 $owner_unknown = (isset($owner["contact-unknown"]) && $owner["contact-unknown"]);
2323 $item["owner-name"] = $owner["name"];
2324 $item["owner-link"] = $owner["link"];
2325 $item["owner-avatar"] = $owner["avatar"];
2326 $item["owner-id"] = Contact::getIdForURL($owner["link"], 0);
2329 $author = self::fetchauthor($xpath, $entry, $importer, "atom:author", true, $xml);
2331 $item["author-name"] = $author["name"];
2332 $item["author-link"] = $author["link"];
2333 $item["author-avatar"] = $author["avatar"];
2334 $item["author-id"] = Contact::getIdForURL($author["link"], 0);
2336 $item["title"] = XML::getFirstNodeValue($xpath, "atom:title/text()", $entry);
2338 $item["created"] = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2340 $item["body"] = XML::getFirstNodeValue($xpath, "dfrn:env/text()", $entry);
2341 $item["body"] = str_replace([' ',"\t","\r","\n"], ['','','',''], $item["body"]);
2343 $item["body"] = Strings::base64UrlDecode($item["body"]);
2345 $item["body"] = BBCode::limitBodySize($item["body"]);
2347 /// @todo We should check for a repeated post and if we know the repeated author.
2349 // We don't need the content element since "dfrn:env" is always present
2350 //$item["body"] = $xpath->query("atom:content/text()", $entry)->item(0)->nodeValue;
2352 $item["location"] = XML::getFirstNodeValue($xpath, "dfrn:location/text()", $entry);
2354 $item["coord"] = XML::getFirstNodeValue($xpath, "georss:point", $entry);
2356 $item["private"] = XML::getFirstNodeValue($xpath, "dfrn:private/text()", $entry);
2358 $unlisted = XML::getFirstNodeValue($xpath, "dfrn:unlisted/text()", $entry);
2359 if (!empty($unlisted) && ($item['private'] != Item::PRIVATE)) {
2360 $item['private'] = Item::UNLISTED;
2363 $item["extid"] = XML::getFirstNodeValue($xpath, "dfrn:extid/text()", $entry);
2365 if (XML::getFirstNodeValue($xpath, "dfrn:bookmark/text()", $entry) == "true") {
2366 $item["post-type"] = Item::PT_PAGE;
2369 $notice_info = $xpath->query("statusnet:notice_info", $entry);
2370 if ($notice_info && ($notice_info->length > 0)) {
2371 foreach ($notice_info->item(0)->attributes as $attributes) {
2372 if ($attributes->name == "source") {
2373 $item["app"] = strip_tags($attributes->textContent);
2378 $item["guid"] = XML::getFirstNodeValue($xpath, "dfrn:diaspora_guid/text()", $entry);
2380 $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
2382 Tag::storeFromBody($item['uri-id'], $item["body"]);
2384 // We store the data from "dfrn:diaspora_signature" in a different table, this is done in "Item::insert"
2385 $dsprsig = XML::unescape(XML::getFirstNodeValue($xpath, "dfrn:diaspora_signature/text()", $entry));
2386 if ($dsprsig != "") {
2387 $signature = json_decode(base64_decode($dsprsig));
2388 // We don't store the old style signatures anymore that also contained the "signature" and "signer"
2389 if (!empty($signature->signed_text) && empty($signature->signature) && empty($signature->signer)) {
2390 $item["diaspora_signed_text"] = $signature->signed_text;
2394 $item["verb"] = XML::getFirstNodeValue($xpath, "activity:verb/text()", $entry);
2396 if (XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry) != "") {
2397 $item["object-type"] = XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry);
2400 $object = $xpath->query("activity:object", $entry)->item(0);
2401 $item["object"] = self::transformActivity($xpath, $object, "object");
2403 if (trim($item["object"]) != "") {
2404 $r = XML::parseString($item["object"]);
2405 if (isset($r->type)) {
2406 $item["object-type"] = $r->type;
2410 $target = $xpath->query("activity:target", $entry)->item(0);
2411 $item["target"] = self::transformActivity($xpath, $target, "target");
2413 $categories = $xpath->query("atom:category", $entry);
2415 foreach ($categories as $category) {
2418 foreach ($category->attributes as $attributes) {
2419 if ($attributes->name == "term") {
2420 $term = $attributes->textContent;
2423 if ($attributes->name == "scheme") {
2424 $scheme = $attributes->textContent;
2428 if (($term != "") && ($scheme != "")) {
2429 $parts = explode(":", $scheme);
2430 if ((count($parts) >= 4) && (array_shift($parts) == "X-DFRN")) {
2431 $termurl = implode(":", $parts);
2432 Tag::store($item['uri-id'], Tag::IMPLICIT_MENTION, $term, $termurl);
2438 $links = $xpath->query("atom:link", $entry);
2440 self::parseLinks($links, $item);
2443 $item['conversation-uri'] = XML::getFirstNodeValue($xpath, 'ostatus:conversation/text()', $entry);
2445 $conv = $xpath->query('ostatus:conversation', $entry);
2446 if (is_object($conv->item(0))) {
2447 foreach ($conv->item(0)->attributes as $attributes) {
2448 if ($attributes->name == "ref") {
2449 $item['conversation-uri'] = $attributes->textContent;
2451 if ($attributes->name == "href") {
2452 $item['conversation-href'] = $attributes->textContent;
2457 // Is it a reply or a top level posting?
2458 $item["parent-uri"] = $item["uri"];
2460 $inreplyto = $xpath->query("thr:in-reply-to", $entry);
2461 if (is_object($inreplyto->item(0))) {
2462 foreach ($inreplyto->item(0)->attributes as $attributes) {
2463 if ($attributes->name == "ref") {
2464 $item["parent-uri"] = $attributes->textContent;
2469 // Get the type of the item (Top level post, reply or remote reply)
2470 $entrytype = self::getEntryType($importer, $item);
2472 // Now assign the rest of the values that depend on the type of the message
2473 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2474 if (!isset($item["object-type"])) {
2475 $item["object-type"] = Activity\ObjectType::COMMENT;
2478 if ($item["contact-id"] != $owner["contact-id"]) {
2479 $item["contact-id"] = $owner["contact-id"];
2482 if (($item["network"] != $owner["network"]) && ($owner["network"] != "")) {
2483 $item["network"] = $owner["network"];
2486 if ($item["contact-id"] != $author["contact-id"]) {
2487 $item["contact-id"] = $author["contact-id"];
2490 if (($item["network"] != $author["network"]) && ($author["network"] != "")) {
2491 $item["network"] = $author["network"];
2495 // Ensure to have the correct share data
2496 $item = Item::addShareDataFromOriginal($item);
2498 if ($entrytype == DFRN::REPLY_RC) {
2500 } elseif ($entrytype == DFRN::TOP_LEVEL) {
2501 if (!isset($item["object-type"])) {
2502 $item["object-type"] = Activity\ObjectType::NOTE;
2506 if (($item["object-type"] == Activity\ObjectType::EVENT) && !$owner_unknown) {
2507 Logger::log("Item ".$item["uri"]." seems to contain an event.", Logger::DEBUG);
2508 $ev = Event::fromBBCode($item["body"]);
2509 if ((!empty($ev['desc']) || !empty($ev['summary'])) && !empty($ev['start'])) {
2510 Logger::log("Event in item ".$item["uri"]." was found.", Logger::DEBUG);
2511 $ev["cid"] = $importer["id"];
2512 $ev["uid"] = $importer["importer_uid"];
2513 $ev["uri"] = $item["uri"];
2514 $ev["edited"] = $item["edited"];
2515 $ev["private"] = $item["private"];
2516 $ev["guid"] = $item["guid"];
2517 $ev["plink"] = $item["plink"];
2519 $condition = ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]];
2520 $event = DBA::selectFirst('event', ['id'], $condition);
2521 if (DBA::isResult($event)) {
2522 $ev["id"] = $event["id"];
2525 $event_id = Event::store($ev);
2526 Logger::log("Event ".$event_id." was stored", Logger::DEBUG);
2532 if (!self::processVerbs($entrytype, $importer, $item, $is_like)) {
2533 Logger::log("Exiting because 'processVerbs' told us so", Logger::DEBUG);
2537 // This check is done here to be able to receive connection requests in "processVerbs"
2538 if (($entrytype == DFRN::TOP_LEVEL) && $owner_unknown) {
2539 Logger::log("Item won't be stored because user " . $importer["importer_uid"] . " doesn't follow " . $item["owner-link"] . ".", Logger::DEBUG);
2544 // Update content if 'updated' changes
2545 if (DBA::isResult($current)) {
2546 if (self::updateContent($current, $item, $importer, $entrytype)) {
2547 Logger::log("Item ".$item["uri"]." was updated.", Logger::DEBUG);
2549 Logger::log("Item " . $item["uri"] . " already existed.", Logger::DEBUG);
2554 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2555 $posted_id = Item::insert($item);
2557 Logger::log("Reply from contact ".$item["contact-id"]." was stored with id ".$posted_id, Logger::DEBUG);
2559 if ($item['uid'] == 0) {
2560 Item::distribute($posted_id);
2565 } else { // $entrytype == DFRN::TOP_LEVEL
2566 if (($importer["uid"] == 0) && ($importer["importer_uid"] != 0)) {
2567 Logger::log("Contact ".$importer["id"]." isn't known to user ".$importer["importer_uid"].". The post will be ignored.", Logger::DEBUG);
2570 if (!Strings::compareLink($item["owner-link"], $importer["url"])) {
2572 * The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2573 * but otherwise there's a possible data mixup on the sender's system.
2574 * the tgroup delivery code called from Item::insert will correct it if it's a forum,
2575 * but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2577 Logger::log('Correcting item owner.', Logger::DEBUG);
2578 $item["owner-link"] = $importer["url"];
2579 $item["owner-id"] = Contact::getIdForURL($importer["url"], 0);
2582 if (($importer["rel"] == Contact::FOLLOWER) && (!self::tgroupCheck($importer["importer_uid"], $item))) {
2583 Logger::log("Contact ".$importer["id"]." is only follower and tgroup check was negative.", Logger::DEBUG);
2587 // This is my contact on another system, but it's really me.
2588 // Turn this into a wall post.
2589 $notify = Item::isRemoteSelf($importer, $item);
2591 $posted_id = Item::insert($item, $notify);
2594 $posted_id = $notify;
2597 Logger::log("Item was stored with id ".$posted_id, Logger::DEBUG);
2599 if ($item['uid'] == 0) {
2600 Item::distribute($posted_id);
2603 if (stristr($item["verb"], Activity::POKE)) {
2604 $item['id'] = $posted_id;
2605 self::doPoke($item, $importer);
2613 * @param object $xpath XPath object
2614 * @param object $deletion deletion elements
2615 * @param array $importer Record of the importer user mixed with contact of the content
2617 * @throws \Exception
2618 * @todo set proper type-hints
2620 private static function processDeletion($xpath, $deletion, $importer)
2622 Logger::log("Processing deletions");
2625 foreach ($deletion->attributes as $attributes) {
2626 if ($attributes->name == "ref") {
2627 $uri = $attributes->textContent;
2631 if (!$uri || !$importer["id"]) {
2635 $condition = ['uri' => $uri, 'uid' => $importer["importer_uid"]];
2636 $item = Item::selectFirst(['id', 'parent', 'contact-id', 'file', 'deleted'], $condition);
2637 if (!DBA::isResult($item)) {
2638 Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " wasn't found.", Logger::DEBUG);
2642 if (strstr($item['file'], '[')) {
2643 Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " is filed. So it won't be deleted.", Logger::DEBUG);
2647 // When it is a starting post it has to belong to the person that wants to delete it
2648 if (($item['id'] == $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2649 Logger::log("Item with uri " . $uri . " don't belong to contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2653 // Comments can be deleted by the thread owner or comment owner
2654 if (($item['id'] != $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2655 $condition = ['id' => $item['parent'], 'contact-id' => $importer["id"]];
2656 if (!Item::exists($condition)) {
2657 Logger::log("Item with uri " . $uri . " wasn't found or mustn't be deleted by contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2662 if ($item["deleted"]) {
2666 Logger::log('deleting item '.$item['id'].' uri='.$uri, Logger::DEBUG);
2668 Item::markForDeletion(['id' => $item['id']]);
2672 * Imports a DFRN message
2674 * @param string $xml The DFRN message
2675 * @param array $importer Record of the importer user mixed with contact of the content
2676 * @param bool $sort_by_date Is used when feeds are polled
2677 * @return integer Import status
2678 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2679 * @throws \ImagickException
2680 * @todo set proper type-hints
2682 public static function import($xml, $importer, $sort_by_date = false)
2688 $doc = new DOMDocument();
2689 @$doc->loadXML($xml);
2691 $xpath = new DOMXPath($doc);
2692 $xpath->registerNamespace("atom", ActivityNamespace::ATOM1);
2693 $xpath->registerNamespace("thr", ActivityNamespace::THREAD);
2694 $xpath->registerNamespace("at", ActivityNamespace::TOMB);
2695 $xpath->registerNamespace("media", ActivityNamespace::MEDIA);
2696 $xpath->registerNamespace("dfrn", ActivityNamespace::DFRN);
2697 $xpath->registerNamespace("activity", ActivityNamespace::ACTIVITY);
2698 $xpath->registerNamespace("georss", ActivityNamespace::GEORSS);
2699 $xpath->registerNamespace("poco", ActivityNamespace::POCO);
2700 $xpath->registerNamespace("ostatus", ActivityNamespace::OSTATUS);
2701 $xpath->registerNamespace("statusnet", ActivityNamespace::STATUSNET);
2704 $header["uid"] = $importer["importer_uid"];
2705 $header["network"] = Protocol::DFRN;
2706 $header["wall"] = 0;
2707 $header["origin"] = 0;
2708 $header["contact-id"] = $importer["id"];
2710 // Update the contact table if the data has changed
2712 // The "atom:author" is only present in feeds
2713 if ($xpath->query("/atom:feed/atom:author")->length > 0) {
2714 self::fetchauthor($xpath, $doc->firstChild, $importer, "atom:author", false, $xml);
2717 // Only the "dfrn:owner" in the head section contains all data
2718 if ($xpath->query("/atom:feed/dfrn:owner")->length > 0) {
2719 self::fetchauthor($xpath, $doc->firstChild, $importer, "dfrn:owner", false, $xml);
2722 Logger::log("Import DFRN message for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2724 // is it a public forum? Private forums aren't exposed with this method
2725 $forum = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:community/text()"));
2727 // The account type is new since 3.5.1
2728 if ($xpath->query("/atom:feed/dfrn:account_type")->length > 0) {
2729 // Hint: We are using separate update calls for uid=0 and uid!=0 since a combined call is bad for the database performance
2731 $accounttype = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:account_type/text()"));
2733 if ($accounttype != $importer["contact-type"]) {
2734 DBA::update('contact', ['contact-type' => $accounttype], ['id' => $importer['id']]);
2736 // Updating the public contact as well
2737 DBA::update('contact', ['contact-type' => $accounttype], ['uid' => 0, 'nurl' => $importer['nurl']]);
2739 // A forum contact can either have set "forum" or "prv" - but not both
2740 if ($accounttype == User::ACCOUNT_TYPE_COMMUNITY) {
2741 // It's a forum, so either set the public or private forum flag
2742 $condition = ['(`forum` != ? OR `prv` != ?) AND `id` = ?', $forum, !$forum, $importer['id']];
2743 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2745 // Updating the public contact as well
2746 $condition = ['(`forum` != ? OR `prv` != ?) AND `uid` = 0 AND `nurl` = ?', $forum, !$forum, $importer['nurl']];
2747 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2749 // It's not a forum, so remove the flags
2750 $condition = ['(`forum` OR `prv`) AND `id` = ?', $importer['id']];
2751 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2753 // Updating the public contact as well
2754 $condition = ['(`forum` OR `prv`) AND `uid` = 0 AND `nurl` = ?', $importer['nurl']];
2755 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2757 } elseif ($forum != $importer["forum"]) { // Deprecated since 3.5.1
2758 $condition = ['`forum` != ? AND `id` = ?', $forum, $importer["id"]];
2759 DBA::update('contact', ['forum' => $forum], $condition);
2761 // Updating the public contact as well
2762 $condition = ['`forum` != ? AND `uid` = 0 AND `nurl` = ?', $forum, $importer['nurl']];
2763 DBA::update('contact', ['forum' => $forum], $condition);
2767 // We are processing relocations even if we are ignoring a contact
2768 $relocations = $xpath->query("/atom:feed/dfrn:relocate");
2769 foreach ($relocations as $relocation) {
2770 self::processRelocation($xpath, $relocation, $importer);
2773 if (($importer["uid"] != 0) && !$importer["readonly"]) {
2774 $mails = $xpath->query("/atom:feed/dfrn:mail");
2775 foreach ($mails as $mail) {
2776 self::processMail($xpath, $mail, $importer);
2779 $suggestions = $xpath->query("/atom:feed/dfrn:suggest");
2780 foreach ($suggestions as $suggestion) {
2781 self::processSuggestion($xpath, $suggestion, $importer);
2785 $deletions = $xpath->query("/atom:feed/at:deleted-entry");
2786 foreach ($deletions as $deletion) {
2787 self::processDeletion($xpath, $deletion, $importer);
2790 if (!$sort_by_date) {
2791 $entries = $xpath->query("/atom:feed/atom:entry");
2792 foreach ($entries as $entry) {
2793 self::processEntry($header, $xpath, $entry, $importer, $xml);
2797 $entries = $xpath->query("/atom:feed/atom:entry");
2798 foreach ($entries as $entry) {
2799 $created = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2800 $newentries[strtotime($created)] = $entry;
2803 // Now sort after the publishing date
2806 foreach ($newentries as $entry) {
2807 self::processEntry($header, $xpath, $entry, $importer, $xml);
2810 Logger::log("Import done for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2815 * Returns the activity verb
2817 * @param array $item Item array
2819 * @return string activity verb
2821 private static function constructVerb(array $item)
2823 if ($item['verb']) {
2824 return $item['verb'];
2826 return Activity::POST;
2829 private static function tgroupCheck($uid, $item)
2833 // check that the message originated elsewhere and is a top-level post
2835 if ($item['wall'] || $item['origin'] || ($item['uri'] != $item['parent-uri'])) {
2839 $user = DBA::selectFirst('user', ['page-flags', 'nickname'], ['uid' => $uid]);
2840 if (!DBA::isResult($user)) {
2844 $community_page = ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY);
2845 $prvgroup = ($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP);
2847 $link = Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']);
2850 * Diaspora uses their own hardwired link URL in @-tags
2851 * instead of the one we supply with webfinger
2853 $dlink = Strings::normaliseLink(DI::baseUrl() . '/u/' . $user['nickname']);
2855 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
2857 foreach ($matches as $mtch) {
2858 if (Strings::compareLink($link, $mtch[1]) || Strings::compareLink($dlink, $mtch[1])) {
2860 Logger::log('mention found: ' . $mtch[2]);
2869 return $community_page || $prvgroup;
2873 * This function returns true if $update has an edited timestamp newer
2874 * than $existing, i.e. $update contains new data which should override
2875 * what's already there. If there is no timestamp yet, the update is
2876 * assumed to be newer. If the update has no timestamp, the existing
2877 * item is assumed to be up-to-date. If the timestamps are equal it
2878 * assumes the update has been seen before and should be ignored.
2883 * @throws \Exception
2885 private static function isEditedTimestampNewer($existing, $update)
2887 if (empty($existing['edited'])) {
2890 if (empty($update['edited'])) {
2894 $existing_edited = DateTimeFormat::utc($existing['edited']);
2895 $update_edited = DateTimeFormat::utc($update['edited']);
2897 return (strcmp($existing_edited, $update_edited) < 0);
2901 * Checks if the given contact url does support DFRN
2903 * @param string $url profile url
2904 * @param boolean $update Update the profile
2906 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2907 * @throws \ImagickException
2909 public static function isSupportedByContactUrl($url, $update = false)
2911 $probe = Probe::uri($url, Protocol::DFRN, 0, !$update);
2912 return $probe['network'] == Protocol::DFRN;