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\OEmbed;
28 use Friendica\Content\Text\BBCode;
29 use Friendica\Content\Text\HTML;
30 use Friendica\Core\Hook;
31 use Friendica\Core\Logger;
32 use Friendica\Core\Protocol;
33 use Friendica\Database\DBA;
35 use Friendica\Model\Contact;
36 use Friendica\Model\Conversation;
37 use Friendica\Model\Event;
38 use Friendica\Model\GContact;
39 use Friendica\Model\Item;
40 use Friendica\Model\Mail;
41 use Friendica\Model\Notify\Type;
42 use Friendica\Model\PermissionSet;
43 use Friendica\Model\Profile;
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;
53 use HTMLPurifier_Config;
56 * This class contain functions to create and send DFRN XML files
61 const TOP_LEVEL = 0; // Top level posting
62 const REPLY = 1; // Regular reply that is stored locally
63 const REPLY_RC = 2; // Reply that will be relayed
66 * Generates an array of contact and user for DFRN imports
68 * This array contains not only the receiver but also the sender of the message.
70 * @param integer $cid Contact id
71 * @param integer $uid User id
73 * @return array importer
76 public static function getImporter($cid, $uid = 0)
78 $condition = ['id' => $cid, 'blocked' => false, 'pending' => false];
79 $contact = DBA::selectFirst('contact', [], $condition);
80 if (!DBA::isResult($contact)) {
84 $contact['cpubkey'] = $contact['pubkey'];
85 $contact['cprvkey'] = $contact['prvkey'];
86 $contact['senderName'] = $contact['name'];
89 $condition = ['uid' => $uid, 'account_expired' => false, 'account_removed' => false];
90 $user = DBA::selectFirst('user', [], $condition);
91 if (!DBA::isResult($user)) {
95 $user['importer_uid'] = $user['uid'];
96 $user['uprvkey'] = $user['prvkey'];
98 $user = ['importer_uid' => 0, 'uprvkey' => '', 'timezone' => 'UTC',
99 'nickname' => '', 'sprvkey' => '', 'spubkey' => '',
100 'page-flags' => 0, 'account-type' => 0, 'prvnets' => 0];
103 return array_merge($contact, $user);
107 * Generates the atom entries for delivery.php
109 * This function is used whenever content is transmitted via DFRN.
111 * @param array $items Item elements
112 * @param array $owner Owner record
114 * @return string DFRN entries
115 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
116 * @throws \ImagickException
117 * @todo Find proper type-hints
119 public static function entries($items, $owner)
121 $doc = new DOMDocument('1.0', 'utf-8');
122 $doc->formatOutput = true;
124 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
126 if (! count($items)) {
127 return trim($doc->saveXML());
130 foreach ($items as $item) {
131 // These values aren't sent when sending from the queue.
132 /// @todo Check if we can set these values from the queue or if they are needed at all.
133 $item["entry:comment-allow"] = ($item["entry:comment-allow"] ?? '') ?: true;
134 $item["entry:cid"] = $item["entry:cid"] ?? 0;
136 $entry = self::entry($doc, "text", $item, $owner, $item["entry:comment-allow"], $item["entry:cid"]);
138 $root->appendChild($entry);
142 return trim($doc->saveXML());
146 * Generate an atom feed for the given user
148 * This function is called when another server is pulling data from the user feed.
150 * @param string $dfrn_id DFRN ID from the requesting party
151 * @param string $owner_nick Owner nick name
152 * @param string $last_update Date of the last update
153 * @param int $direction Can be -1, 0 or 1.
154 * @param boolean $onlyheader Output only the header without content? (Default is "no")
156 * @return string DFRN feed entries
157 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
158 * @throws \ImagickException
160 public static function feed($dfrn_id, $owner_nick, $last_update, $direction = 0, $onlyheader = false)
164 $sitefeed = ((strlen($owner_nick)) ? false : true); // not yet implemented, need to rewrite huge chunks of following logic
165 $public_feed = (($dfrn_id) ? false : true);
166 $starred = false; // not yet implemented, possible security issues
169 if ($public_feed && $a->argc > 2) {
170 for ($x = 2; $x < $a->argc; $x++) {
171 if ($a->argv[$x] == 'converse') {
174 if ($a->argv[$x] == 'starred') {
177 if ($a->argv[$x] == 'category' && $a->argc > ($x + 1) && strlen($a->argv[$x+1])) {
178 $category = $a->argv[$x+1];
183 // default permissions - anonymous user
185 $sql_extra = sprintf(" AND `item`.`private` != %s ", Item::PRIVATE);
188 "SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`, `user`.`account-type`
189 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
190 WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
191 DBA::escape($owner_nick)
194 if (! DBA::isResult($r)) {
195 Logger::log(sprintf('No contact found for nickname=%d', $owner_nick), Logger::WARNING);
200 $owner_id = $owner['uid'];
202 $sql_post_table = "";
204 if (! $public_feed) {
205 switch ($direction) {
207 $sql_extra = sprintf(" AND `issued-id` = '%s' ", DBA::escape($dfrn_id));
210 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", DBA::escape($dfrn_id));
213 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", DBA::escape($dfrn_id));
221 "SELECT * FROM `contact` WHERE NOT `blocked` AND `contact`.`uid` = %d $sql_extra LIMIT 1",
225 if (! DBA::isResult($r)) {
226 Logger::log(sprintf('No contact found for uid=%d', $owner_id), Logger::WARNING);
232 $set = PermissionSet::get($owner_id, $contact['id']);
235 $sql_extra = " AND `item`.`psid` IN (" . implode(',', $set) .")";
237 $sql_extra = sprintf(" AND `item`.`private` != %s", Item::PRIVATE);
247 if (! strlen($last_update)) {
248 $last_update = 'now -30 days';
251 if (isset($category)) {
252 $sql_post_table = sprintf(
253 "INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
254 DBA::escape(Strings::protectSprintf($category)),
255 intval(TERM_OBJ_POST),
256 intval(TERM_CATEGORY),
261 if ($public_feed && ! $converse) {
262 $sql_extra .= " AND `contact`.`self` = 1 ";
265 $check_date = DateTimeFormat::utc($last_update);
269 FROM `item` USE INDEX (`uid_wall_changed`) $sql_post_table
270 STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
271 WHERE `item`.`uid` = %d AND `item`.`wall` AND `item`.`changed` > '%s'
272 AND `item`.`visible` $sql_extra
273 ORDER BY `item`.`parent` ".$sort.", `item`.`received` ASC LIMIT 0, 300",
275 DBA::escape($check_date),
280 foreach ($r as $item) {
281 $ids[] = $item['id'];
285 $ret = Item::select(Item::DELIVER_FIELDLIST, ['id' => $ids]);
286 $items = Item::inArray($ret);
292 * Will check further below if this actually returned results.
293 * We will provide an empty feed if that is the case.
296 $doc = new DOMDocument('1.0', 'utf-8');
297 $doc->formatOutput = true;
299 $alternatelink = $owner['url'];
301 if (isset($category)) {
302 $alternatelink .= "/category/".$category;
306 $author = "dfrn:owner";
311 $root = self::addHeader($doc, $owner, $author, $alternatelink, true);
313 /// @TODO This hook can't work anymore
314 // \Friendica\Core\Hook::callAll('atom_feed', $atom);
316 if (!DBA::isResult($items) || $onlyheader) {
317 $atom = trim($doc->saveXML());
319 Hook::callAll('atom_feed_end', $atom);
324 foreach ($items as $item) {
325 // prevent private email from leaking.
326 if ($item['network'] == Protocol::MAIL) {
330 // public feeds get html, our own nodes use bbcode
334 // catch any email that's in a public conversation and make sure it doesn't leak
335 if ($item['private'] == Item::PRIVATE) {
342 $entry = self::entry($doc, $type, $item, $owner, true);
344 $root->appendChild($entry);
348 $atom = trim($doc->saveXML());
350 Hook::callAll('atom_feed_end', $atom);
356 * Generate an atom entry for a given item id
358 * @param int $item_id The item id
359 * @param boolean $conversation Show the conversation. If false show the single post.
361 * @return string DFRN feed entry
362 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
363 * @throws \ImagickException
365 public static function itemFeed($item_id, $conversation = false)
368 $condition = ['parent' => $item_id];
370 $condition = ['id' => $item_id];
373 $ret = Item::select(Item::DELIVER_FIELDLIST, $condition);
374 $items = Item::inArray($ret);
375 if (!DBA::isResult($items)) {
381 if ($item['uid'] != 0) {
382 $owner = User::getOwnerDataById($item['uid']);
387 $owner = ['uid' => 0, 'nick' => 'feed-item'];
390 $doc = new DOMDocument('1.0', 'utf-8');
391 $doc->formatOutput = true;
395 $root = $doc->createElementNS(ActivityNamespace::ATOM1, 'feed');
396 $doc->appendChild($root);
398 $root->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
399 $root->setAttribute("xmlns:at", ActivityNamespace::TOMB);
400 $root->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
401 $root->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
402 $root->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
403 $root->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
404 $root->setAttribute("xmlns:poco", ActivityNamespace::POCO);
405 $root->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
406 $root->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
408 //$root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
410 foreach ($items as $item) {
411 $entry = self::entry($doc, $type, $item, $owner, true, 0);
413 $root->appendChild($entry);
417 self::entry($doc, $type, $item, $owner, true, 0, true);
420 $atom = trim($doc->saveXML());
425 * Create XML text for DFRN mails
427 * @param array $item message elements
428 * @param array $owner Owner record
430 * @return string DFRN mail
431 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
432 * @todo Find proper type-hints
434 public static function mail($item, $owner)
436 $doc = new DOMDocument('1.0', 'utf-8');
437 $doc->formatOutput = true;
439 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
441 $mail = $doc->createElement("dfrn:mail");
442 $sender = $doc->createElement("dfrn:sender");
444 XML::addElement($doc, $sender, "dfrn:name", $owner['name']);
445 XML::addElement($doc, $sender, "dfrn:uri", $owner['url']);
446 XML::addElement($doc, $sender, "dfrn:avatar", $owner['thumb']);
448 $mail->appendChild($sender);
450 XML::addElement($doc, $mail, "dfrn:id", $item['uri']);
451 XML::addElement($doc, $mail, "dfrn:in-reply-to", $item['parent-uri']);
452 XML::addElement($doc, $mail, "dfrn:sentdate", DateTimeFormat::utc($item['created'] . '+00:00', DateTimeFormat::ATOM));
453 XML::addElement($doc, $mail, "dfrn:subject", $item['title']);
454 XML::addElement($doc, $mail, "dfrn:content", $item['body']);
456 $root->appendChild($mail);
458 return trim($doc->saveXML());
462 * Create XML text for DFRN friend suggestions
464 * @param array $item suggestion elements
465 * @param array $owner Owner record
467 * @return string DFRN suggestions
468 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
469 * @todo Find proper type-hints
471 public static function fsuggest($item, $owner)
473 $doc = new DOMDocument('1.0', 'utf-8');
474 $doc->formatOutput = true;
476 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
478 $suggest = $doc->createElement("dfrn:suggest");
480 XML::addElement($doc, $suggest, "dfrn:url", $item['url']);
481 XML::addElement($doc, $suggest, "dfrn:name", $item['name']);
482 XML::addElement($doc, $suggest, "dfrn:photo", $item['photo']);
483 XML::addElement($doc, $suggest, "dfrn:request", $item['request']);
484 XML::addElement($doc, $suggest, "dfrn:note", $item['note']);
486 $root->appendChild($suggest);
488 return trim($doc->saveXML());
492 * Create XML text for DFRN relocations
494 * @param array $owner Owner record
495 * @param int $uid User ID
497 * @return string DFRN relocations
498 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
499 * @todo Find proper type-hints
501 public static function relocate($owner, $uid)
504 /* get site pubkey. this could be a new installation with no site keys*/
505 $pubkey = DI::config()->get('system', 'site_pubkey');
507 $res = Crypto::newKeypair(1024);
508 DI::config()->set('system', 'site_prvkey', $res['prvkey']);
509 DI::config()->set('system', 'site_pubkey', $res['pubkey']);
513 "SELECT `resource-id` , `scale`, type FROM `photo`
514 WHERE `profile` = 1 AND `uid` = %d ORDER BY scale;",
518 $ext = Images::supportedTypes();
520 foreach ($rp as $p) {
521 $photos[$p['scale']] = DI::baseUrl().'/photo/'.$p['resource-id'].'-'.$p['scale'].'.'.$ext[$p['type']];
525 $doc = new DOMDocument('1.0', 'utf-8');
526 $doc->formatOutput = true;
528 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
530 $relocate = $doc->createElement("dfrn:relocate");
532 XML::addElement($doc, $relocate, "dfrn:url", $owner['url']);
533 XML::addElement($doc, $relocate, "dfrn:name", $owner['name']);
534 XML::addElement($doc, $relocate, "dfrn:addr", $owner['addr']);
535 XML::addElement($doc, $relocate, "dfrn:avatar", $owner['avatar']);
536 XML::addElement($doc, $relocate, "dfrn:photo", $photos[4]);
537 XML::addElement($doc, $relocate, "dfrn:thumb", $photos[5]);
538 XML::addElement($doc, $relocate, "dfrn:micro", $photos[6]);
539 XML::addElement($doc, $relocate, "dfrn:request", $owner['request']);
540 XML::addElement($doc, $relocate, "dfrn:confirm", $owner['confirm']);
541 XML::addElement($doc, $relocate, "dfrn:notify", $owner['notify']);
542 XML::addElement($doc, $relocate, "dfrn:poll", $owner['poll']);
543 XML::addElement($doc, $relocate, "dfrn:sitepubkey", DI::config()->get('system', 'site_pubkey'));
545 $root->appendChild($relocate);
547 return trim($doc->saveXML());
551 * Adds the header elements for the DFRN protocol
553 * @param DOMDocument $doc XML document
554 * @param array $owner Owner record
555 * @param string $authorelement Element name for the author
556 * @param string $alternatelink link to profile or category
557 * @param bool $public Is it a header for public posts?
559 * @return object XML root object
560 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
561 * @todo Find proper type-hints
563 private static function addHeader(DOMDocument $doc, $owner, $authorelement, $alternatelink = "", $public = false)
566 if ($alternatelink == "") {
567 $alternatelink = $owner['url'];
570 $root = $doc->createElementNS(ActivityNamespace::ATOM1, 'feed');
571 $doc->appendChild($root);
573 $root->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
574 $root->setAttribute("xmlns:at", ActivityNamespace::TOMB);
575 $root->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
576 $root->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
577 $root->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
578 $root->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
579 $root->setAttribute("xmlns:poco", ActivityNamespace::POCO);
580 $root->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
581 $root->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
583 XML::addElement($doc, $root, "id", DI::baseUrl()."/profile/".$owner["nick"]);
584 XML::addElement($doc, $root, "title", $owner["name"]);
586 $attributes = ["uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION];
587 XML::addElement($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
589 $attributes = ["rel" => "license", "href" => "http://creativecommons.org/licenses/by/3.0/"];
590 XML::addElement($doc, $root, "link", "", $attributes);
592 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $alternatelink];
593 XML::addElement($doc, $root, "link", "", $attributes);
597 // DFRN itself doesn't uses this. But maybe someone else wants to subscribe to the public feed.
598 OStatus::hublinks($doc, $root, $owner["nick"]);
600 $attributes = ["rel" => "salmon", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
601 XML::addElement($doc, $root, "link", "", $attributes);
603 $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-replies", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
604 XML::addElement($doc, $root, "link", "", $attributes);
606 $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-mention", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
607 XML::addElement($doc, $root, "link", "", $attributes);
610 // For backward compatibility we keep this element
611 if ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
612 XML::addElement($doc, $root, "dfrn:community", 1);
615 // The former element is replaced by this one
616 XML::addElement($doc, $root, "dfrn:account_type", $owner["account-type"]);
618 /// @todo We need a way to transmit the different page flags like "User::PAGE_FLAGS_PRVGROUP"
620 XML::addElement($doc, $root, "updated", DateTimeFormat::utcNow(DateTimeFormat::ATOM));
622 $author = self::addAuthor($doc, $owner, $authorelement, $public);
623 $root->appendChild($author);
629 * Adds the author element in the header for the DFRN protocol
631 * @param DOMDocument $doc XML document
632 * @param array $owner Owner record
633 * @param string $authorelement Element name for the author
634 * @param boolean $public boolean
636 * @return \DOMElement XML author object
637 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
638 * @todo Find proper type-hints
640 private static function addAuthor(DOMDocument $doc, array $owner, $authorelement, $public)
642 // Should the profile be "unsearchable" in the net? Then add the "hide" element
643 $hide = DBA::exists('profile', ['uid' => $owner['uid'], 'net-publish' => false]);
645 $author = $doc->createElement($authorelement);
647 $namdate = DateTimeFormat::utc($owner['name-date'].'+00:00', DateTimeFormat::ATOM);
648 $picdate = DateTimeFormat::utc($owner['avatar-date'].'+00:00', DateTimeFormat::ATOM);
652 if (!$public || !$hide) {
653 $attributes = ["dfrn:updated" => $namdate];
656 XML::addElement($doc, $author, "name", $owner["name"], $attributes);
657 XML::addElement($doc, $author, "uri", DI::baseUrl().'/profile/'.$owner["nickname"], $attributes);
658 XML::addElement($doc, $author, "dfrn:handle", $owner["addr"], $attributes);
660 $attributes = ["rel" => "photo", "type" => "image/jpeg",
661 "media:width" => 300, "media:height" => 300, "href" => $owner['photo']];
663 if (!$public || !$hide) {
664 $attributes["dfrn:updated"] = $picdate;
667 XML::addElement($doc, $author, "link", "", $attributes);
669 $attributes["rel"] = "avatar";
670 XML::addElement($doc, $author, "link", "", $attributes);
673 XML::addElement($doc, $author, "dfrn:hide", "true");
676 // The following fields will only be generated if the data isn't meant for a public feed
681 $birthday = feed_birthday($owner['uid'], $owner['timezone']);
684 XML::addElement($doc, $author, "dfrn:birthday", $birthday);
687 // Only show contact details when we are allowed to
689 "SELECT `profile`.`about`, `profile`.`name`, `profile`.`homepage`, `user`.`nickname`,
690 `user`.`timezone`, `profile`.`locality`, `profile`.`region`, `profile`.`country-name`,
691 `profile`.`pub_keywords`, `profile`.`xmpp`, `profile`.`dob`
693 INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
694 WHERE NOT `user`.`hidewall` AND `user`.`uid` = %d",
695 intval($owner['uid'])
697 if (DBA::isResult($r)) {
700 XML::addElement($doc, $author, "poco:displayName", $profile["name"]);
701 XML::addElement($doc, $author, "poco:updated", $namdate);
703 if (trim($profile["dob"]) > DBA::NULL_DATE) {
704 XML::addElement($doc, $author, "poco:birthday", "0000-".date("m-d", strtotime($profile["dob"])));
707 XML::addElement($doc, $author, "poco:note", $profile["about"]);
708 XML::addElement($doc, $author, "poco:preferredUsername", $profile["nickname"]);
710 $savetz = date_default_timezone_get();
711 date_default_timezone_set($profile["timezone"]);
712 XML::addElement($doc, $author, "poco:utcOffset", date("P"));
713 date_default_timezone_set($savetz);
715 if (trim($profile["homepage"]) != "") {
716 $urls = $doc->createElement("poco:urls");
717 XML::addElement($doc, $urls, "poco:type", "homepage");
718 XML::addElement($doc, $urls, "poco:value", $profile["homepage"]);
719 XML::addElement($doc, $urls, "poco:primary", "true");
720 $author->appendChild($urls);
723 if (trim($profile["pub_keywords"]) != "") {
724 $keywords = explode(",", $profile["pub_keywords"]);
726 foreach ($keywords as $keyword) {
727 XML::addElement($doc, $author, "poco:tags", trim($keyword));
731 if (trim($profile["xmpp"]) != "") {
732 $ims = $doc->createElement("poco:ims");
733 XML::addElement($doc, $ims, "poco:type", "xmpp");
734 XML::addElement($doc, $ims, "poco:value", $profile["xmpp"]);
735 XML::addElement($doc, $ims, "poco:primary", "true");
736 $author->appendChild($ims);
739 if (trim($profile["locality"].$profile["region"].$profile["country-name"]) != "") {
740 $element = $doc->createElement("poco:address");
742 XML::addElement($doc, $element, "poco:formatted", Profile::formatLocation($profile));
744 if (trim($profile["locality"]) != "") {
745 XML::addElement($doc, $element, "poco:locality", $profile["locality"]);
748 if (trim($profile["region"]) != "") {
749 XML::addElement($doc, $element, "poco:region", $profile["region"]);
752 if (trim($profile["country-name"]) != "") {
753 XML::addElement($doc, $element, "poco:country", $profile["country-name"]);
756 $author->appendChild($element);
764 * Adds the author elements in the "entry" elements of the DFRN protocol
766 * @param DOMDocument $doc XML document
767 * @param string $element Element name for the author
768 * @param string $contact_url Link of the contact
769 * @param array $item Item elements
771 * @return \DOMElement XML author object
772 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
773 * @todo Find proper type-hints
775 private static function addEntryAuthor(DOMDocument $doc, $element, $contact_url, $item)
777 $author = $doc->createElement($element);
779 $contact = Contact::getDetailsByURL($contact_url, $item["uid"]);
780 if (!empty($contact)) {
781 XML::addElement($doc, $author, "name", $contact["name"]);
782 XML::addElement($doc, $author, "uri", $contact["url"]);
783 XML::addElement($doc, $author, "dfrn:handle", $contact["addr"]);
786 /// - Check real image type and image size
787 /// - Check which of these boths elements we should use
790 "type" => "image/jpeg",
792 "media:height" => 80,
793 "href" => $contact["photo"]];
794 XML::addElement($doc, $author, "link", "", $attributes);
798 "type" => "image/jpeg",
800 "media:height" => 80,
801 "href" => $contact["photo"]];
802 XML::addElement($doc, $author, "link", "", $attributes);
809 * Adds the activity elements
811 * @param DOMDocument $doc XML document
812 * @param string $element Element name for the activity
813 * @param string $activity activity value
815 * @return \DOMElement XML activity object
816 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
817 * @todo Find proper type-hints
819 private static function createActivity(DOMDocument $doc, $element, $activity)
822 $entry = $doc->createElement($element);
824 $r = XML::parseString($activity, false);
830 XML::addElement($doc, $entry, "activity:object-type", $r->type);
834 XML::addElement($doc, $entry, "id", $r->id);
838 XML::addElement($doc, $entry, "title", $r->title);
842 if (substr($r->link, 0, 1) == '<') {
843 if (strstr($r->link, '&') && (! strstr($r->link, '&'))) {
844 $r->link = str_replace('&', '&', $r->link);
847 $r->link = preg_replace('/\<link(.*?)\"\>/', '<link$1"/>', $r->link);
849 // XML does need a single element as root element so we add a dummy element here
850 $data = XML::parseString("<dummy>" . $r->link . "</dummy>", false);
851 if (is_object($data)) {
852 foreach ($data->link as $link) {
854 foreach ($link->attributes() as $parameter => $value) {
855 $attributes[$parameter] = $value;
857 XML::addElement($doc, $entry, "link", "", $attributes);
861 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $r->link];
862 XML::addElement($doc, $entry, "link", "", $attributes);
866 XML::addElement($doc, $entry, "content", BBCode::convert($r->content), ["type" => "html"]);
876 * Adds the elements for attachments
878 * @param object $doc XML document
879 * @param object $root XML root
880 * @param array $item Item element
882 * @return void XML attachment object
883 * @todo Find proper type-hints
885 private static function getAttachment($doc, $root, $item)
887 $arr = explode('[/attach],', $item['attach']);
889 foreach ($arr as $r) {
891 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|', $r, $matches);
893 $attributes = ["rel" => "enclosure",
894 "href" => $matches[1],
895 "type" => $matches[3]];
897 if (intval($matches[2])) {
898 $attributes["length"] = intval($matches[2]);
901 if (trim($matches[4]) != "") {
902 $attributes["title"] = trim($matches[4]);
905 XML::addElement($doc, $root, "link", "", $attributes);
912 * Adds the "entry" elements for the DFRN protocol
914 * @param DOMDocument $doc XML document
915 * @param string $type "text" or "html"
916 * @param array $item Item element
917 * @param array $owner Owner record
918 * @param bool $comment Trigger the sending of the "comment" element
919 * @param int $cid Contact ID of the recipient
920 * @param bool $single If set, the entry is created as an XML document with a single "entry" element
922 * @return null|\DOMElement XML entry object
923 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
924 * @throws \ImagickException
925 * @todo Find proper type-hints
927 private static function entry(DOMDocument $doc, $type, array $item, array $owner, $comment = false, $cid = 0, $single = false)
931 if (!$item['parent']) {
932 Logger::notice('Item without parent found.', ['type' => $type, 'item' => $item]);
936 if ($item['deleted']) {
937 $attributes = ["ref" => $item['uri'], "when" => DateTimeFormat::utc($item['edited'] . '+00:00', DateTimeFormat::ATOM)];
938 return XML::createElement($doc, "at:deleted-entry", "", $attributes);
942 $entry = $doc->createElement("entry");
944 $entry = $doc->createElementNS(ActivityNamespace::ATOM1, 'entry');
945 $doc->appendChild($entry);
947 $entry->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
948 $entry->setAttribute("xmlns:at", ActivityNamespace::TOMB);
949 $entry->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
950 $entry->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
951 $entry->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
952 $entry->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
953 $entry->setAttribute("xmlns:poco", ActivityNamespace::POCO);
954 $entry->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
955 $entry->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
958 if ($item['private'] == Item::PRIVATE) {
959 $body = Item::fixPrivatePhotos($item['body'], $owner['uid'], $item, $cid);
961 $body = $item['body'];
964 // Remove the abstract element. It is only locally important.
965 $body = BBCode::stripAbstract($body);
968 if ($type == 'html') {
971 if ($item['title'] != "") {
972 $htmlbody = "[b]" . $item['title'] . "[/b]\n\n" . $htmlbody;
975 $htmlbody = BBCode::convert($htmlbody, false, 7);
978 $author = self::addEntryAuthor($doc, "author", $item["author-link"], $item);
979 $entry->appendChild($author);
981 $dfrnowner = self::addEntryAuthor($doc, "dfrn:owner", $item["owner-link"], $item);
982 $entry->appendChild($dfrnowner);
984 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
985 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
986 $parent = Item::selectFirst(['guid', 'plink'], ['uri' => $parent_item, 'uid' => $item['uid']]);
987 $attributes = ["ref" => $parent_item, "type" => "text/html",
988 "href" => $parent['plink'],
989 "dfrn:diaspora_guid" => $parent['guid']];
990 XML::addElement($doc, $entry, "thr:in-reply-to", "", $attributes);
993 // Add conversation data. This is used for OStatus
994 $conversation_href = DI::baseUrl()."/display/".$item["parent-guid"];
995 $conversation_uri = $conversation_href;
997 if (isset($parent_item)) {
998 $conversation = DBA::selectFirst('conversation', ['conversation-uri', 'conversation-href'], ['item-uri' => $item['parent-uri']]);
999 if (DBA::isResult($conversation)) {
1000 if ($conversation['conversation-uri'] != '') {
1001 $conversation_uri = $conversation['conversation-uri'];
1003 if ($conversation['conversation-href'] != '') {
1004 $conversation_href = $conversation['conversation-href'];
1010 "href" => $conversation_href,
1011 "ref" => $conversation_uri];
1013 XML::addElement($doc, $entry, "ostatus:conversation", $conversation_uri, $attributes);
1015 XML::addElement($doc, $entry, "id", $item["uri"]);
1016 XML::addElement($doc, $entry, "title", $item["title"]);
1018 XML::addElement($doc, $entry, "published", DateTimeFormat::utc($item["created"] . "+00:00", DateTimeFormat::ATOM));
1019 XML::addElement($doc, $entry, "updated", DateTimeFormat::utc($item["edited"] . "+00:00", DateTimeFormat::ATOM));
1021 // "dfrn:env" is used to read the content
1022 XML::addElement($doc, $entry, "dfrn:env", Strings::base64UrlEncode($body, true));
1024 // The "content" field is not read by the receiver. We could remove it when the type is "text"
1025 // We keep it at the moment, maybe there is some old version that doesn't read "dfrn:env"
1026 XML::addElement($doc, $entry, "content", (($type == 'html') ? $htmlbody : $body), ["type" => $type]);
1028 // We save this value in "plink". Maybe we should read it from there as well?
1034 ["rel" => "alternate", "type" => "text/html",
1035 "href" => DI::baseUrl() . "/display/" . $item["guid"]]
1038 // "comment-allow" is some old fashioned stuff for old Friendica versions.
1039 // It is included in the rewritten code for completeness
1041 XML::addElement($doc, $entry, "dfrn:comment-allow", 1);
1044 if ($item['location']) {
1045 XML::addElement($doc, $entry, "dfrn:location", $item['location']);
1048 if ($item['coord']) {
1049 XML::addElement($doc, $entry, "georss:point", $item['coord']);
1052 if ($item['private']) {
1053 // Friendica versions prior to 2020.3 can't handle "unlisted" properly. So we can only transmit public and private
1054 XML::addElement($doc, $entry, "dfrn:private", ($item['private'] == Item::PRIVATE ? Item::PRIVATE : Item::PUBLIC));
1055 XML::addElement($doc, $entry, "dfrn:unlisted", $item['private'] == Item::UNLISTED);
1058 if ($item['extid']) {
1059 XML::addElement($doc, $entry, "dfrn:extid", $item['extid']);
1062 if ($item['post-type'] == Item::PT_PAGE) {
1063 XML::addElement($doc, $entry, "dfrn:bookmark", "true");
1067 XML::addElement($doc, $entry, "statusnet:notice_info", "", ["local_id" => $item['id'], "source" => $item['app']]);
1070 XML::addElement($doc, $entry, "dfrn:diaspora_guid", $item["guid"]);
1072 // The signed text contains the content in Markdown, the sender handle and the signatur for the content
1073 // It is needed for relayed comments to Diaspora.
1074 if ($item['signed_text']) {
1075 $sign = base64_encode(json_encode(['signed_text' => $item['signed_text'],'signature' => '','signer' => '']));
1076 XML::addElement($doc, $entry, "dfrn:diaspora_signature", $sign);
1079 XML::addElement($doc, $entry, "activity:verb", self::constructVerb($item));
1081 if ($item['object-type'] != "") {
1082 XML::addElement($doc, $entry, "activity:object-type", $item['object-type']);
1083 } elseif ($item['id'] == $item['parent']) {
1084 XML::addElement($doc, $entry, "activity:object-type", Activity\ObjectType::NOTE);
1086 XML::addElement($doc, $entry, "activity:object-type", Activity\ObjectType::COMMENT);
1089 $actobj = self::createActivity($doc, "activity:object", $item['object']);
1091 $entry->appendChild($actobj);
1094 $actarg = self::createActivity($doc, "activity:target", $item['target']);
1096 $entry->appendChild($actarg);
1099 $tags = Item::getFeedTags($item);
1101 /// @TODO Combine this with similar below if() block?
1103 foreach ($tags as $t) {
1104 if (($type != 'html') || ($t[0] != "@")) {
1105 XML::addElement($doc, $entry, "category", "", ["scheme" => "X-DFRN:".$t[0].":".$t[1], "term" => $t[2]]);
1111 foreach ($tags as $t) {
1113 $mentioned[$t[1]] = $t[1];
1118 foreach ($mentioned as $mention) {
1119 $condition = ['uid' => $owner["uid"], 'nurl' => Strings::normaliseLink($mention)];
1120 $contact = DBA::selectFirst('contact', ['forum', 'prv'], $condition);
1122 if (DBA::isResult($contact) && ($contact["forum"] || $contact["prv"])) {
1128 ["rel" => "mentioned",
1129 "ostatus:object-type" => Activity\ObjectType::GROUP,
1138 ["rel" => "mentioned",
1139 "ostatus:object-type" => Activity\ObjectType::PERSON,
1145 self::getAttachment($doc, $entry, $item);
1151 * encrypts data via AES
1153 * @param string $data The data that is to be encrypted
1154 * @param string $key The AES key
1156 * @return string encrypted data
1158 private static function aesEncrypt($data, $key)
1160 return openssl_encrypt($data, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1164 * decrypts data via AES
1166 * @param string $encrypted The encrypted data
1167 * @param string $key The AES key
1169 * @return string decrypted data
1171 public static function aesDecrypt($encrypted, $key)
1173 return openssl_decrypt($encrypted, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1177 * Delivers the atom content to the contacts
1179 * @param array $owner Owner record
1180 * @param array $contact Contact record of the receiver
1181 * @param string $atom Content that will be transmitted
1182 * @param bool $dissolve (to be documented)
1184 * @return int Deliver status. Negative values mean an error.
1185 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1186 * @throws \ImagickException
1187 * @todo Add array type-hint for $owner, $contact
1189 public static function deliver($owner, $contact, $atom, $dissolve = false)
1191 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
1193 if ($contact['duplex'] && $contact['dfrn-id']) {
1194 $idtosend = '0:' . $orig_id;
1196 if ($contact['duplex'] && $contact['issued-id']) {
1197 $idtosend = '1:' . $orig_id;
1200 $rino = DI::config()->get('system', 'rino_encrypt');
1201 $rino = intval($rino);
1203 Logger::log("Local rino version: ". $rino, Logger::DEBUG);
1205 $ssl_val = intval(DI::config()->get('system', 'ssl_policy'));
1208 case BaseURL::SSL_POLICY_FULL:
1209 $ssl_policy = 'full';
1211 case BaseURL::SSL_POLICY_SELFSIGN:
1212 $ssl_policy = 'self';
1214 case BaseURL::SSL_POLICY_NONE:
1216 $ssl_policy = 'none';
1220 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino='.$rino : '');
1222 Logger::log('dfrn_deliver: ' . $url);
1224 $curlResult = Network::curl($url);
1226 if ($curlResult->isTimeout()) {
1227 return -2; // timed out
1230 $xml = $curlResult->getBody();
1232 $curl_stat = $curlResult->getReturnCode();
1233 if (empty($curl_stat)) {
1234 return -3; // timed out
1237 Logger::log('dfrn_deliver: ' . $xml, Logger::DATA);
1243 if (strpos($xml, '<?xml') === false) {
1244 Logger::log('dfrn_deliver: no valid XML returned');
1245 Logger::log('dfrn_deliver: returned XML: ' . $xml, Logger::DATA);
1249 $res = XML::parseString($xml);
1251 if (!is_object($res) || (intval($res->status) != 0) || !strlen($res->challenge) || !strlen($res->dfrn_id)) {
1252 if (empty($res->status)) {
1255 $status = $res->status;
1262 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
1263 $challenge = hex2bin((string) $res->challenge);
1264 $perm = (($res->perm) ? $res->perm : null);
1265 $dfrn_version = floatval($res->dfrn_version ?: 2.0);
1266 $rino_remote_version = intval($res->rino);
1267 $page = (($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? 1 : 0);
1269 Logger::log("Remote rino version: ".$rino_remote_version." for ".$contact["url"], Logger::DEBUG);
1271 if ($owner['page-flags'] == User::PAGE_FLAGS_PRVGROUP) {
1275 $final_dfrn_id = '';
1278 if ((($perm == 'rw') && !intval($contact['writable']))
1279 || (($perm == 'r') && intval($contact['writable']))
1281 DBA::update('contact', ['writable' => ($perm == 'rw')], ['id' => $contact['id']]);
1283 $contact['writable'] = (string) 1 - intval($contact['writable']);
1287 if (($contact['duplex'] && strlen($contact['pubkey']))
1288 || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1289 || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1291 openssl_public_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['pubkey']);
1292 openssl_public_decrypt($challenge, $postvars['challenge'], $contact['pubkey']);
1294 openssl_private_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['prvkey']);
1295 openssl_private_decrypt($challenge, $postvars['challenge'], $contact['prvkey']);
1298 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
1300 if (strpos($final_dfrn_id, ':') == 1) {
1301 $final_dfrn_id = substr($final_dfrn_id, 2);
1304 if ($final_dfrn_id != $orig_id) {
1305 Logger::log('dfrn_deliver: wrong dfrn_id.');
1306 // did not decode properly - cannot trust this site
1310 $postvars['dfrn_id'] = $idtosend;
1311 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
1313 $postvars['dissolve'] = '1';
1316 if ((($contact['rel']) && ($contact['rel'] != Contact::SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1317 $postvars['data'] = $atom;
1318 $postvars['perm'] = 'rw';
1320 $postvars['data'] = str_replace('<dfrn:comment-allow>1', '<dfrn:comment-allow>0', $atom);
1321 $postvars['perm'] = 'r';
1324 $postvars['ssl_policy'] = $ssl_policy;
1327 $postvars['page'] = $page;
1331 if ($rino > 0 && $rino_remote_version > 0 && (! $dissolve)) {
1332 Logger::log('rino version: '. $rino_remote_version);
1334 switch ($rino_remote_version) {
1336 $key = openssl_random_pseudo_bytes(16);
1337 $data = self::aesEncrypt($postvars['data'], $key);
1341 Logger::log("rino: invalid requested version '$rino_remote_version'");
1345 $postvars['rino'] = $rino_remote_version;
1346 $postvars['data'] = bin2hex($data);
1348 if ($dfrn_version >= 2.1) {
1349 if (($contact['duplex'] && strlen($contact['pubkey']))
1350 || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1351 || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1353 openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1355 openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1358 if (($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1359 openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1361 openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1365 Logger::log('md5 rawkey ' . md5($postvars['key']));
1367 $postvars['key'] = bin2hex($postvars['key']);
1371 Logger::log('dfrn_deliver: ' . "SENDING: " . print_r($postvars, true), Logger::DATA);
1373 $postResult = Network::post($contact['notify'], $postvars);
1375 $xml = $postResult->getBody();
1377 Logger::log('dfrn_deliver: ' . "RECEIVED: " . $xml, Logger::DATA);
1379 $curl_stat = $postResult->getReturnCode();
1380 if (empty($curl_stat) || empty($xml)) {
1381 return -9; // timed out
1384 if (($curl_stat == 503) && stristr($postResult->getHeader(), 'retry-after')) {
1388 if (strpos($xml, '<?xml') === false) {
1389 Logger::log('dfrn_deliver: phase 2: no valid XML returned');
1390 Logger::log('dfrn_deliver: phase 2: returned XML: ' . $xml, Logger::DATA);
1394 $res = XML::parseString($xml);
1396 if (!isset($res->status)) {
1400 // Possibly old servers had returned an empty value when everything was okay
1401 if (empty($res->status)) {
1405 if (!empty($res->message)) {
1406 Logger::log('Delivery returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1409 return intval($res->status);
1413 * Transmits atom content to the contacts via the Diaspora transport layer
1415 * @param array $owner Owner record
1416 * @param array $contact Contact record of the receiver
1417 * @param string $atom Content that will be transmitted
1419 * @param bool $public_batch
1420 * @return int Deliver status. Negative values mean an error.
1421 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1422 * @throws \ImagickException
1424 public static function transmit($owner, $contact, $atom, $public_batch = false)
1426 if (!$public_batch) {
1427 if (empty($contact['addr'])) {
1428 Logger::log('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.');
1429 if (Contact::updateFromProbe($contact['id'])) {
1430 $new_contact = DBA::selectFirst('contact', ['addr'], ['id' => $contact['id']]);
1431 $contact['addr'] = $new_contact['addr'];
1434 if (empty($contact['addr'])) {
1435 Logger::log('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
1440 $fcontact = Diaspora::personByHandle($contact['addr']);
1441 if (empty($fcontact)) {
1442 Logger::log('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
1445 $pubkey = $fcontact['pubkey'];
1450 $envelope = Diaspora::buildMessage($atom, $owner, $contact, $owner['uprvkey'], $pubkey, $public_batch);
1452 // Create the endpoint for public posts. This is some WIP and should later be added to the probing
1453 if ($public_batch && empty($contact["batch"])) {
1454 $parts = parse_url($contact["notify"]);
1455 $path_parts = explode('/', $parts['path']);
1456 array_pop($path_parts);
1457 $parts['path'] = implode('/', $path_parts);
1458 $contact["batch"] = Network::unparseURL($parts);
1461 $dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
1463 if (empty($dest_url)) {
1464 Logger::info('Empty destination', ['public' => $public_batch, 'contact' => $contact]);
1468 $content_type = ($public_batch ? "application/magic-envelope+xml" : "application/json");
1470 $postResult = Network::post($dest_url, $envelope, ["Content-Type: ".$content_type]);
1471 $xml = $postResult->getBody();
1473 $curl_stat = $postResult->getReturnCode();
1474 if (empty($curl_stat) || empty($xml)) {
1475 Logger::log('Empty answer from ' . $contact['id'] . ' - ' . $dest_url);
1476 return -9; // timed out
1479 if (($curl_stat == 503) && (stristr($postResult->getHeader(), 'retry-after'))) {
1483 if (strpos($xml, '<?xml') === false) {
1484 Logger::log('No valid XML returned from ' . $contact['id'] . ' - ' . $dest_url);
1485 Logger::log('Returned XML: ' . $xml, Logger::DATA);
1489 $res = XML::parseString($xml);
1491 if (empty($res->status)) {
1495 if (!empty($res->message)) {
1496 Logger::log('Transmit to ' . $dest_url . ' returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1499 return intval($res->status);
1503 * Fetch the author data from head or entry items
1505 * @param object $xpath XPath object
1506 * @param object $context In which context should the data be searched
1507 * @param array $importer Record of the importer user mixed with contact of the content
1508 * @param string $element Element name from which the data is fetched
1509 * @param bool $onlyfetch Should the data only be fetched or should it update the contact record as well
1510 * @param string $xml optional, default empty
1512 * @return array Relevant data of the author
1513 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1514 * @throws \ImagickException
1515 * @todo Find good type-hints for all parameter
1517 private static function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "")
1520 $author["name"] = XML::getFirstNodeValue($xpath, $element."/atom:name/text()", $context);
1521 $author["link"] = XML::getFirstNodeValue($xpath, $element."/atom:uri/text()", $context);
1523 $fields = ['id', 'uid', 'url', 'network', 'avatar-date', 'avatar', 'name-date', 'uri-date', 'addr',
1524 'name', 'nick', 'about', 'location', 'keywords', 'xmpp', 'bdyear', 'bd', 'hidden', 'contact-type'];
1525 $condition = ["`uid` = ? AND `nurl` = ? AND `network` != ?",
1526 $importer["importer_uid"], Strings::normaliseLink($author["link"]), Protocol::STATUSNET];
1527 $contact_old = DBA::selectFirst('contact', $fields, $condition);
1529 if (DBA::isResult($contact_old)) {
1530 $author["contact-id"] = $contact_old["id"];
1531 $author["network"] = $contact_old["network"];
1534 Logger::debug("Contact ".$author["link"]." wasn't found for user ".$importer["importer_uid"]." XML: ".$xml);
1537 $author["contact-unknown"] = true;
1538 $author["contact-id"] = $importer["id"];
1539 $author["network"] = $importer["network"];
1543 // Until now we aren't serving different sizes - but maybe later
1545 /// @todo check if "avatar" or "photo" would be the best field in the specification
1546 $avatars = $xpath->query($element . "/atom:link[@rel='avatar']", $context);
1547 foreach ($avatars as $avatar) {
1550 foreach ($avatar->attributes as $attributes) {
1551 /// @TODO Rewrite these similar if() to one switch
1552 if ($attributes->name == "href") {
1553 $href = $attributes->textContent;
1555 if ($attributes->name == "width") {
1556 $width = $attributes->textContent;
1558 if ($attributes->name == "updated") {
1559 $author["avatar-date"] = $attributes->textContent;
1562 if (($width > 0) && ($href != "")) {
1563 $avatarlist[$width] = $href;
1567 if (count($avatarlist) > 0) {
1568 krsort($avatarlist);
1569 $author["avatar"] = current($avatarlist);
1572 if (empty($author['avatar']) && !empty($author['link'])) {
1573 $cid = Contact::getIdForURL($author['link'], 0);
1575 $contact = DBA::selectFirst('contact', ['avatar'], ['id' => $cid]);
1576 if (DBA::isResult($contact)) {
1577 $author['avatar'] = $contact['avatar'];
1582 if (empty($author['avatar'])) {
1583 Logger::log('Empty author: ' . $xml);
1584 $author['avatar'] = '';
1587 if (DBA::isResult($contact_old) && !$onlyfetch) {
1588 Logger::log("Check if contact details for contact " . $contact_old["id"] . " (" . $contact_old["nick"] . ") have to be updated.", Logger::DEBUG);
1590 $poco = ["url" => $contact_old["url"]];
1592 // When was the last change to name or uri?
1593 $name_element = $xpath->query($element . "/atom:name", $context)->item(0);
1594 foreach ($name_element->attributes as $attributes) {
1595 if ($attributes->name == "updated") {
1596 $poco["name-date"] = $attributes->textContent;
1600 $link_element = $xpath->query($element . "/atom:link", $context)->item(0);
1601 foreach ($link_element->attributes as $attributes) {
1602 if ($attributes->name == "updated") {
1603 $poco["uri-date"] = $attributes->textContent;
1607 // Update contact data
1608 $value = XML::getFirstNodeValue($xpath, $element . "/dfrn:handle/text()", $context);
1610 $poco["addr"] = $value;
1613 $value = XML::getFirstNodeValue($xpath, $element . "/poco:displayName/text()", $context);
1615 $poco["name"] = $value;
1618 $value = XML::getFirstNodeValue($xpath, $element . "/poco:preferredUsername/text()", $context);
1620 $poco["nick"] = $value;
1623 $value = XML::getFirstNodeValue($xpath, $element . "/poco:note/text()", $context);
1625 $poco["about"] = $value;
1628 $value = XML::getFirstNodeValue($xpath, $element . "/poco:address/poco:formatted/text()", $context);
1630 $poco["location"] = $value;
1633 /// @todo Only search for elements with "poco:type" = "xmpp"
1634 $value = XML::getFirstNodeValue($xpath, $element . "/poco:ims/poco:value/text()", $context);
1636 $poco["xmpp"] = $value;
1639 /// @todo Add support for the following fields that we don't support by now in the contact table:
1640 /// - poco:utcOffset
1646 // If the "hide" element is present then the profile isn't searchable.
1647 $hide = intval(XML::getFirstNodeValue($xpath, $element . "/dfrn:hide/text()", $context) == "true");
1649 Logger::log("Hidden status for contact " . $contact_old["url"] . ": " . $hide, Logger::DEBUG);
1651 // If the contact isn't searchable then set the contact to "hidden".
1652 // Problem: This can be manually overridden by the user.
1654 $contact_old["hidden"] = true;
1657 // Save the keywords into the contact table
1659 $tagelements = $xpath->evaluate($element . "/poco:tags/text()", $context);
1660 foreach ($tagelements as $tag) {
1661 $tags[$tag->nodeValue] = $tag->nodeValue;
1665 $poco["keywords"] = implode(", ", $tags);
1668 // "dfrn:birthday" contains the birthday converted to UTC
1669 $birthday = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1671 if (strtotime($birthday) > time()) {
1672 $bd_timestamp = strtotime($birthday);
1674 $poco["bdyear"] = date("Y", $bd_timestamp);
1677 // "poco:birthday" is the birthday in the format "yyyy-mm-dd"
1678 $value = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1680 if (!in_array($value, ["", "0000-00-00", DBA::NULL_DATE])) {
1681 $bdyear = date("Y");
1682 $value = str_replace(["0000", "0001"], $bdyear, $value);
1684 if (strtotime($value) < time()) {
1685 $value = str_replace($bdyear, $bdyear + 1, $value);
1688 $poco["bd"] = $value;
1691 $contact = array_merge($contact_old, $poco);
1693 if ($contact_old["bdyear"] != $contact["bdyear"]) {
1694 Event::createBirthday($contact, $birthday);
1697 $fields = ['name' => $contact['name'], 'nick' => $contact['nick'], 'about' => $contact['about'],
1698 'location' => $contact['location'], 'addr' => $contact['addr'], 'keywords' => $contact['keywords'],
1699 'bdyear' => $contact['bdyear'], 'bd' => $contact['bd'], 'hidden' => $contact['hidden'],
1700 'xmpp' => $contact['xmpp'], 'name-date' => DateTimeFormat::utc($contact['name-date']),
1701 'unsearchable' => $contact['hidden'], 'uri-date' => DateTimeFormat::utc($contact['uri-date'])];
1703 DBA::update('contact', $fields, ['id' => $contact['id'], 'network' => $contact['network']], $contact_old);
1705 // Update the public contact. Don't set the "hidden" value, this is used differently for public contacts
1706 unset($fields['hidden']);
1707 $condition = ['uid' => 0, 'nurl' => Strings::normaliseLink($contact_old['url'])];
1708 DBA::update('contact', $fields, $condition, true);
1710 Contact::updateAvatar($author['avatar'], $importer['importer_uid'], $contact['id']);
1712 $pcid = Contact::getIdForURL($contact_old['url']);
1713 if (!empty($pcid)) {
1714 Contact::updateAvatar($author['avatar'], 0, $pcid);
1718 * The generation is a sign for the reliability of the provided data.
1719 * It is used in the socgraph.php to prevent that old contact data
1720 * that was relayed over several servers can overwrite contact
1721 * data that we received directly.
1724 $poco["generation"] = 2;
1725 $poco["photo"] = $author["avatar"];
1726 $poco["hide"] = $hide;
1727 $poco["contact-type"] = $contact["contact-type"];
1728 $gcid = GContact::update($poco);
1730 GContact::link($gcid, $importer["importer_uid"], $contact["id"]);
1737 * Transforms activity objects into an XML string
1739 * @param object $xpath XPath object
1740 * @param object $activity Activity object
1741 * @param string $element element name
1743 * @return string XML string
1744 * @todo Find good type-hints for all parameter
1746 private static function transformActivity($xpath, $activity, $element)
1748 if (!is_object($activity)) {
1752 $obj_doc = new DOMDocument("1.0", "utf-8");
1753 $obj_doc->formatOutput = true;
1755 $obj_element = $obj_doc->createElementNS( ActivityNamespace::ATOM1, $element);
1757 $activity_type = $xpath->query("activity:object-type/text()", $activity)->item(0)->nodeValue;
1758 XML::addElement($obj_doc, $obj_element, "type", $activity_type);
1760 $id = $xpath->query("atom:id", $activity)->item(0);
1761 if (is_object($id)) {
1762 $obj_element->appendChild($obj_doc->importNode($id, true));
1765 $title = $xpath->query("atom:title", $activity)->item(0);
1766 if (is_object($title)) {
1767 $obj_element->appendChild($obj_doc->importNode($title, true));
1770 $links = $xpath->query("atom:link", $activity);
1771 if (is_object($links)) {
1772 foreach ($links as $link) {
1773 $obj_element->appendChild($obj_doc->importNode($link, true));
1777 $content = $xpath->query("atom:content", $activity)->item(0);
1778 if (is_object($content)) {
1779 $obj_element->appendChild($obj_doc->importNode($content, true));
1782 $obj_doc->appendChild($obj_element);
1784 $objxml = $obj_doc->saveXML($obj_element);
1786 /// @todo This isn't totally clean. We should find a way to transform the namespaces
1787 $objxml = str_replace("<".$element.' xmlns="http://www.w3.org/2005/Atom">', "<".$element.">", $objxml);
1792 * Processes the mail elements
1794 * @param object $xpath XPath object
1795 * @param object $mail mail elements
1796 * @param array $importer Record of the importer user mixed with contact of the content
1798 * @throws \Exception
1799 * @todo Find good type-hints for all parameter
1801 private static function processMail($xpath, $mail, $importer)
1803 Logger::log("Processing mails");
1806 $msg["uid"] = $importer["importer_uid"];
1807 $msg["from-name"] = $xpath->query("dfrn:sender/dfrn:name/text()", $mail)->item(0)->nodeValue;
1808 $msg["from-url"] = $xpath->query("dfrn:sender/dfrn:uri/text()", $mail)->item(0)->nodeValue;
1809 $msg["from-photo"] = $xpath->query("dfrn:sender/dfrn:avatar/text()", $mail)->item(0)->nodeValue;
1810 $msg["contact-id"] = $importer["id"];
1811 $msg["uri"] = $xpath->query("dfrn:id/text()", $mail)->item(0)->nodeValue;
1812 $msg["parent-uri"] = $xpath->query("dfrn:in-reply-to/text()", $mail)->item(0)->nodeValue;
1813 $msg["created"] = DateTimeFormat::utc($xpath->query("dfrn:sentdate/text()", $mail)->item(0)->nodeValue);
1814 $msg["title"] = $xpath->query("dfrn:subject/text()", $mail)->item(0)->nodeValue;
1815 $msg["body"] = $xpath->query("dfrn:content/text()", $mail)->item(0)->nodeValue;
1821 * Processes the suggestion elements
1823 * @param object $xpath XPath object
1824 * @param object $suggestion suggestion elements
1825 * @param array $importer Record of the importer user mixed with contact of the content
1827 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1828 * @todo Find good type-hints for all parameter
1830 private static function processSuggestion($xpath, $suggestion, $importer)
1832 Logger::log('Processing suggestions');
1834 /// @TODO Rewrite this to one statement
1836 $suggest['uid'] = $importer['importer_uid'];
1837 $suggest['cid'] = $importer['id'];
1838 $suggest['url'] = $xpath->query('dfrn:url/text()', $suggestion)->item(0)->nodeValue;
1839 $suggest['name'] = $xpath->query('dfrn:name/text()', $suggestion)->item(0)->nodeValue;
1840 $suggest['photo'] = $xpath->query('dfrn:photo/text()', $suggestion)->item(0)->nodeValue;
1841 $suggest['request'] = $xpath->query('dfrn:request/text()', $suggestion)->item(0)->nodeValue;
1842 $suggest['body'] = $xpath->query('dfrn:note/text()', $suggestion)->item(0)->nodeValue;
1844 // Does our member already have a friend matching this description?
1847 * The valid result means the friend we're about to send a friend
1848 * suggestion already has them in their contact, which means no further
1849 * action is required.
1851 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1853 $condition = ['nurl' => Strings::normaliseLink($suggest['url']), 'uid' => $suggest['uid']];
1854 if (DBA::exists('contact', $condition)) {
1857 // Do we already have an fcontact record for this person?
1860 $fcontact = DBA::selectFirst('fcontact', ['id'], ['url' => $suggest['url']]);
1861 if (DBA::isResult($fcontact)) {
1862 $fid = $fcontact['id'];
1864 // OK, we do. Do we already have an introduction for this person?
1865 if (DBA::exists('intro', ['uid' => $suggest['uid'], 'fid' => $fid])) {
1867 * The valid result means the friend we're about to send a friend
1868 * suggestion already has them in their contact, which means no further
1869 * action is required.
1871 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1878 $fields = ['name' => $suggest['name'], 'url' => $suggest['url'],
1879 'photo' => $suggest['photo'], 'request' => $suggest['request']];
1880 DBA::insert('fcontact', $fields);
1881 $fid = DBA::lastInsertId();
1885 * If no record in fcontact is found, below INSERT statement will not
1886 * link an introduction to it.
1889 // Database record did not get created. Quietly give up.
1893 $hash = Strings::getRandomHex();
1895 $fields = ['uid' => $suggest['uid'], 'fid' => $fid, 'contact-id' => $suggest['cid'],
1896 'note' => $suggest['body'], 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow(), 'blocked' => false];
1897 DBA::insert('intro', $fields);
1901 'type' => Type::SUGGEST,
1902 'notify_flags' => $importer['notify-flags'],
1903 'language' => $importer['language'],
1904 'to_name' => $importer['username'],
1905 'to_email' => $importer['email'],
1906 'uid' => $importer['importer_uid'],
1908 'link' => DI::baseUrl().'/notifications/intros',
1909 'source_name' => $importer['name'],
1910 'source_link' => $importer['url'],
1911 'source_photo' => $importer['photo'],
1912 'verb' => Activity::REQ_FRIEND,
1920 * Processes the relocation elements
1922 * @param object $xpath XPath object
1923 * @param object $relocation relocation elements
1924 * @param array $importer Record of the importer user mixed with contact of the content
1926 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1927 * @throws \ImagickException
1928 * @todo Find good type-hints for all parameter
1930 private static function processRelocation($xpath, $relocation, $importer)
1932 Logger::log("Processing relocations");
1934 /// @TODO Rewrite this to one statement
1936 $relocate["uid"] = $importer["importer_uid"];
1937 $relocate["cid"] = $importer["id"];
1938 $relocate["url"] = $xpath->query("dfrn:url/text()", $relocation)->item(0)->nodeValue;
1939 $relocate["addr"] = $xpath->query("dfrn:addr/text()", $relocation)->item(0)->nodeValue;
1940 $relocate["name"] = $xpath->query("dfrn:name/text()", $relocation)->item(0)->nodeValue;
1941 $relocate["avatar"] = $xpath->query("dfrn:avatar/text()", $relocation)->item(0)->nodeValue;
1942 $relocate["photo"] = $xpath->query("dfrn:photo/text()", $relocation)->item(0)->nodeValue;
1943 $relocate["thumb"] = $xpath->query("dfrn:thumb/text()", $relocation)->item(0)->nodeValue;
1944 $relocate["micro"] = $xpath->query("dfrn:micro/text()", $relocation)->item(0)->nodeValue;
1945 $relocate["request"] = $xpath->query("dfrn:request/text()", $relocation)->item(0)->nodeValue;
1946 $relocate["confirm"] = $xpath->query("dfrn:confirm/text()", $relocation)->item(0)->nodeValue;
1947 $relocate["notify"] = $xpath->query("dfrn:notify/text()", $relocation)->item(0)->nodeValue;
1948 $relocate["poll"] = $xpath->query("dfrn:poll/text()", $relocation)->item(0)->nodeValue;
1949 $relocate["sitepubkey"] = $xpath->query("dfrn:sitepubkey/text()", $relocation)->item(0)->nodeValue;
1951 if (($relocate["avatar"] == "") && ($relocate["photo"] != "")) {
1952 $relocate["avatar"] = $relocate["photo"];
1955 if ($relocate["addr"] == "") {
1956 $relocate["addr"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$3@$2", $relocate["url"]);
1961 "SELECT `photo`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d",
1962 intval($importer["id"]),
1963 intval($importer["importer_uid"])
1966 if (!DBA::isResult($r)) {
1967 Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
1973 // Update the gcontact entry
1974 $relocate["server_url"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $relocate["url"]);
1976 $fields = ['name' => $relocate["name"], 'photo' => $relocate["avatar"],
1977 'url' => $relocate["url"], 'nurl' => Strings::normaliseLink($relocate["url"]),
1978 'addr' => $relocate["addr"], 'connect' => $relocate["addr"],
1979 'notify' => $relocate["notify"], 'server_url' => $relocate["server_url"]];
1980 DBA::update('gcontact', $fields, ['nurl' => Strings::normaliseLink($old["url"])]);
1982 // Update the contact table. We try to find every entry.
1983 $fields = ['name' => $relocate["name"], 'avatar' => $relocate["avatar"],
1984 'url' => $relocate["url"], 'nurl' => Strings::normaliseLink($relocate["url"]),
1985 'addr' => $relocate["addr"], 'request' => $relocate["request"],
1986 'confirm' => $relocate["confirm"], 'notify' => $relocate["notify"],
1987 'poll' => $relocate["poll"], 'site-pubkey' => $relocate["sitepubkey"]];
1988 $condition = ["(`id` = ?) OR (`nurl` = ?)", $importer["id"], Strings::normaliseLink($old["url"])];
1990 DBA::update('contact', $fields, $condition);
1992 Contact::updateAvatar($relocate["avatar"], $importer["importer_uid"], $importer["id"], true);
1994 Logger::log('Contacts are updated.');
1997 /// merge with current record, current contents have priority
1998 /// update record, set url-updated
1999 /// update profile photos
2000 /// schedule a scan?
2007 * @param array $current the current item record
2008 * @param array $item the new item record
2009 * @param array $importer Record of the importer user mixed with contact of the content
2010 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
2012 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2013 * @todo set proper type-hints (array?)
2015 private static function updateContent($current, $item, $importer, $entrytype)
2019 if (self::isEditedTimestampNewer($current, $item)) {
2020 // do not accept (ignore) an earlier edit than one we currently have.
2021 if (DateTimeFormat::utc($item["edited"]) < $current["edited"]) {
2025 $fields = ['title' => $item['title'] ?? '', 'body' => $item['body'] ?? '',
2026 'tag' => $item['tag'] ?? '', 'changed' => DateTimeFormat::utcNow(),
2027 'edited' => DateTimeFormat::utc($item["edited"])];
2029 $condition = ["`uri` = ? AND `uid` IN (0, ?)", $item["uri"], $importer["importer_uid"]];
2030 Item::update($fields, $condition);
2038 * Detects the entry type of the item
2040 * @param array $importer Record of the importer user mixed with contact of the content
2041 * @param array $item the new item record
2043 * @return int Is it a toplevel entry, a comment or a relayed comment?
2044 * @throws \Exception
2045 * @todo set proper type-hints (array?)
2047 private static function getEntryType($importer, $item)
2049 if ($item["parent-uri"] != $item["uri"]) {
2052 if ($importer["page-flags"] == User::PAGE_FLAGS_COMMUNITY || $importer["page-flags"] == User::PAGE_FLAGS_PRVGROUP) {
2055 Logger::log("possible community action");
2057 $sql_extra = " AND `contact`.`self` AND `item`.`wall` ";
2060 // was the top-level post for this action written by somebody on this site?
2061 // Specifically, the recipient?
2063 $is_a_remote_action = false;
2065 $parent = Item::selectFirst(['parent-uri'], ['uri' => $item["parent-uri"]]);
2066 if (DBA::isResult($parent)) {
2068 "SELECT `item`.`forum_mode`, `item`.`wall` FROM `item`
2069 INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
2070 WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' OR `item`.`thr-parent` = '%s')
2071 AND `item`.`uid` = %d
2074 DBA::escape($parent["parent-uri"]),
2075 DBA::escape($parent["parent-uri"]),
2076 DBA::escape($parent["parent-uri"]),
2077 intval($importer["importer_uid"])
2079 if (DBA::isResult($r)) {
2080 $is_a_remote_action = true;
2085 * Does this have the characteristics of a community or private group action?
2086 * If it's an action to a wall post on a community/prvgroup page it's a
2087 * valid community action. Also forum_mode makes it valid for sure.
2088 * If neither, it's not.
2090 if ($is_a_remote_action && $community && (!$r[0]["forum_mode"]) && (!$r[0]["wall"])) {
2091 $is_a_remote_action = false;
2092 Logger::log("not a community action");
2095 if ($is_a_remote_action) {
2096 return DFRN::REPLY_RC;
2101 return DFRN::TOP_LEVEL;
2108 * @param array $item The new item record
2109 * @param array $importer Record of the importer user mixed with contact of the content
2111 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2112 * @todo set proper type-hints (array?)
2114 private static function doPoke(array $item, array $importer)
2116 $verb = urldecode(substr($item["verb"], strpos($item["verb"], "#")+1));
2120 $xo = XML::parseString($item["object"], false);
2122 if (($xo->type == Activity\ObjectType::PERSON) && ($xo->id)) {
2123 // somebody was poked/prodded. Was it me?
2125 foreach ($xo->link as $l) {
2126 $atts = $l->attributes();
2127 switch ($atts["rel"]) {
2129 $Blink = $atts["href"];
2136 if ($Blink && Strings::compareLink($Blink, DI::baseUrl() . "/profile/" . $importer["nickname"])) {
2137 $author = DBA::selectFirst('contact', ['name', 'thumb', 'url'], ['id' => $item['author-id']]);
2139 $parent = Item::selectFirst(['id'], ['uri' => $item['parent-uri'], 'uid' => $importer["importer_uid"]]);
2140 $item["parent"] = $parent['id'];
2142 // send a notification
2145 "type" => Type::POKE,
2146 "notify_flags" => $importer["notify-flags"],
2147 "language" => $importer["language"],
2148 "to_name" => $importer["username"],
2149 "to_email" => $importer["email"],
2150 "uid" => $importer["importer_uid"],
2152 "link" => DI::baseUrl()."/display/".urlencode($item['guid']),
2153 "source_name" => $author["name"],
2154 "source_link" => $author["url"],
2155 "source_photo" => $author["thumb"],
2156 "verb" => $item["verb"],
2157 "otype" => "person",
2158 "activity" => $verb,
2159 "parent" => $item["parent"]]
2166 * Processes several actions, depending on the verb
2168 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
2169 * @param array $importer Record of the importer user mixed with contact of the content
2170 * @param array $item the new item record
2171 * @param bool $is_like Is the verb a "like"?
2173 * @return bool Should the processing of the entries be continued?
2174 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2175 * @todo set proper type-hints (array?)
2177 private static function processVerbs($entrytype, $importer, &$item, &$is_like)
2179 Logger::log("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, Logger::DEBUG);
2181 if (($entrytype == DFRN::TOP_LEVEL) && !empty($importer['id'])) {
2182 // The filling of the the "contact" variable is done for legcy reasons
2183 // The functions below are partly used by ostatus.php as well - where we have this variable
2184 $contact = Contact::selectFirst([], ['id' => $importer['id']]);
2186 $activity = DI::activity();
2188 // Big question: Do we need these functions? They were part of the "consume_feed" function.
2189 // This function once was responsible for DFRN and OStatus.
2190 if ($activity->match($item["verb"], Activity::FOLLOW)) {
2191 Logger::log("New follower");
2192 Contact::addRelationship($importer, $contact, $item);
2195 if ($activity->match($item["verb"], Activity::UNFOLLOW)) {
2196 Logger::log("Lost follower");
2197 Contact::removeFollower($importer, $contact, $item);
2200 if ($activity->match($item["verb"], Activity::REQ_FRIEND)) {
2201 Logger::log("New friend request");
2202 Contact::addRelationship($importer, $contact, $item, true);
2205 if ($activity->match($item["verb"], Activity::UNFRIEND)) {
2206 Logger::log("Lost sharer");
2207 Contact::removeSharer($importer, $contact, $item);
2211 if (($item["verb"] == Activity::LIKE)
2212 || ($item["verb"] == Activity::DISLIKE)
2213 || ($item["verb"] == Activity::ATTEND)
2214 || ($item["verb"] == Activity::ATTENDNO)
2215 || ($item["verb"] == Activity::ATTENDMAYBE)
2218 $item["gravity"] = GRAVITY_ACTIVITY;
2219 // only one like or dislike per person
2220 // splitted into two queries for performance issues
2221 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2222 'verb' => $item["verb"], 'parent-uri' => $item["parent-uri"]];
2223 if (Item::exists($condition)) {
2227 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2228 'verb' => $item["verb"], 'thr-parent' => $item["parent-uri"]];
2229 if (Item::exists($condition)) {
2233 // The owner of an activity must be the author
2234 $item["owner-name"] = $item["author-name"];
2235 $item["owner-link"] = $item["author-link"];
2236 $item["owner-avatar"] = $item["author-avatar"];
2237 $item["owner-id"] = $item["author-id"];
2242 if (($item["verb"] == Activity::TAG) && ($item["object-type"] == Activity\ObjectType::TAGTERM)) {
2243 $xo = XML::parseString($item["object"], false);
2244 $xt = XML::parseString($item["target"], false);
2246 if ($xt->type == Activity\ObjectType::NOTE) {
2247 $item_tag = Item::selectFirst(['id', 'tag'], ['uri' => $xt->id, 'uid' => $importer["importer_uid"]]);
2249 if (!DBA::isResult($item_tag)) {
2250 Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
2254 // extract tag, if not duplicate, add to parent item
2256 if (!stristr($item_tag["tag"], trim($xo->content))) {
2257 $tag = $item_tag["tag"] . (strlen($item_tag["tag"]) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
2258 Item::update(['tag' => $tag], ['id' => $item_tag["id"]]);
2268 * Processes the link elements
2270 * @param object $links link elements
2271 * @param array $item the item record
2273 * @todo set proper type-hints
2275 private static function parseLinks($links, &$item)
2282 foreach ($links as $link) {
2283 foreach ($link->attributes as $attributes) {
2284 switch ($attributes->name) {
2285 case "href" : $href = $attributes->textContent; break;
2286 case "rel" : $rel = $attributes->textContent; break;
2287 case "type" : $type = $attributes->textContent; break;
2288 case "length": $length = $attributes->textContent; break;
2289 case "title" : $title = $attributes->textContent; break;
2292 if (($rel != "") && ($href != "")) {
2295 $item["plink"] = $href;
2298 if (!empty($item["attach"])) {
2299 $item["attach"] .= ",";
2301 $item["attach"] = "";
2304 $item["attach"] .= '[attach]href="' . $href . '" length="' . $length . '" type="' . $type . '" title="' . $title . '"[/attach]';
2312 * Processes the entry elements which contain the items and comments
2314 * @param array $header Array of the header elements that always stay the same
2315 * @param object $xpath XPath object
2316 * @param object $entry entry elements
2317 * @param array $importer Record of the importer user mixed with contact of the content
2318 * @param string $xml xml
2320 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2321 * @throws \ImagickException
2322 * @todo Add type-hints
2324 private static function processEntry($header, $xpath, $entry, $importer, $xml)
2326 Logger::log("Processing entries");
2330 $item["protocol"] = Conversation::PARCEL_DFRN;
2332 $item["source"] = $xml;
2335 $item["uri"] = XML::getFirstNodeValue($xpath, "atom:id/text()", $entry);
2337 $item["edited"] = XML::getFirstNodeValue($xpath, "atom:updated/text()", $entry);
2339 $current = Item::selectFirst(['id', 'uid', 'edited', 'body'],
2340 ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]]
2342 // Is there an existing item?
2343 if (DBA::isResult($current) && !self::isEditedTimestampNewer($current, $item)) {
2344 Logger::log("Item ".$item["uri"]." (".$item['edited'].") already existed.", Logger::DEBUG);
2349 $owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true, $xml);
2351 $owner_unknown = (isset($owner["contact-unknown"]) && $owner["contact-unknown"]);
2353 $item["owner-name"] = $owner["name"];
2354 $item["owner-link"] = $owner["link"];
2355 $item["owner-avatar"] = $owner["avatar"];
2356 $item["owner-id"] = Contact::getIdForURL($owner["link"], 0);
2359 $author = self::fetchauthor($xpath, $entry, $importer, "atom:author", true, $xml);
2361 $item["author-name"] = $author["name"];
2362 $item["author-link"] = $author["link"];
2363 $item["author-avatar"] = $author["avatar"];
2364 $item["author-id"] = Contact::getIdForURL($author["link"], 0);
2366 $item["title"] = XML::getFirstNodeValue($xpath, "atom:title/text()", $entry);
2368 $item["created"] = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2370 $item["body"] = XML::getFirstNodeValue($xpath, "dfrn:env/text()", $entry);
2371 $item["body"] = str_replace([' ',"\t","\r","\n"], ['','','',''], $item["body"]);
2373 $item["body"] = Strings::base64UrlDecode($item["body"]);
2375 $item["body"] = BBCode::limitBodySize($item["body"]);
2377 /// @todo We should check for a repeated post and if we know the repeated author.
2379 // We don't need the content element since "dfrn:env" is always present
2380 //$item["body"] = $xpath->query("atom:content/text()", $entry)->item(0)->nodeValue;
2382 $item["location"] = XML::getFirstNodeValue($xpath, "dfrn:location/text()", $entry);
2384 $item["coord"] = XML::getFirstNodeValue($xpath, "georss:point", $entry);
2386 $item["private"] = XML::getFirstNodeValue($xpath, "dfrn:private/text()", $entry);
2388 $unlisted = XML::getFirstNodeValue($xpath, "dfrn:unlisted/text()", $entry);
2389 if (!empty($unlisted) && ($item['private'] != Item::PRIVATE)) {
2390 $item['private'] = Item::UNLISTED;
2393 $item["extid"] = XML::getFirstNodeValue($xpath, "dfrn:extid/text()", $entry);
2395 if (XML::getFirstNodeValue($xpath, "dfrn:bookmark/text()", $entry) == "true") {
2396 $item["post-type"] = Item::PT_PAGE;
2399 $notice_info = $xpath->query("statusnet:notice_info", $entry);
2400 if ($notice_info && ($notice_info->length > 0)) {
2401 foreach ($notice_info->item(0)->attributes as $attributes) {
2402 if ($attributes->name == "source") {
2403 $item["app"] = strip_tags($attributes->textContent);
2408 $item["guid"] = XML::getFirstNodeValue($xpath, "dfrn:diaspora_guid/text()", $entry);
2410 // We store the data from "dfrn:diaspora_signature" in a different table, this is done in "Item::insert"
2411 $dsprsig = XML::unescape(XML::getFirstNodeValue($xpath, "dfrn:diaspora_signature/text()", $entry));
2412 if ($dsprsig != "") {
2413 $item["dsprsig"] = $dsprsig;
2416 $item["verb"] = XML::getFirstNodeValue($xpath, "activity:verb/text()", $entry);
2418 if (XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry) != "") {
2419 $item["object-type"] = XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry);
2422 $object = $xpath->query("activity:object", $entry)->item(0);
2423 $item["object"] = self::transformActivity($xpath, $object, "object");
2425 if (trim($item["object"]) != "") {
2426 $r = XML::parseString($item["object"], false);
2427 if (isset($r->type)) {
2428 $item["object-type"] = $r->type;
2432 $target = $xpath->query("activity:target", $entry)->item(0);
2433 $item["target"] = self::transformActivity($xpath, $target, "target");
2435 $categories = $xpath->query("atom:category", $entry);
2437 foreach ($categories as $category) {
2440 foreach ($category->attributes as $attributes) {
2441 if ($attributes->name == "term") {
2442 $term = $attributes->textContent;
2445 if ($attributes->name == "scheme") {
2446 $scheme = $attributes->textContent;
2450 if (($term != "") && ($scheme != "")) {
2451 $parts = explode(":", $scheme);
2452 if ((count($parts) >= 4) && (array_shift($parts) == "X-DFRN")) {
2453 $termhash = array_shift($parts);
2454 $termurl = implode(":", $parts);
2456 if (!empty($item["tag"])) {
2457 $item["tag"] .= ",";
2462 $item["tag"] .= $termhash . "[url=" . $termurl . "]" . $term . "[/url]";
2468 $links = $xpath->query("atom:link", $entry);
2470 self::parseLinks($links, $item);
2473 $item['conversation-uri'] = XML::getFirstNodeValue($xpath, 'ostatus:conversation/text()', $entry);
2475 $conv = $xpath->query('ostatus:conversation', $entry);
2476 if (is_object($conv->item(0))) {
2477 foreach ($conv->item(0)->attributes as $attributes) {
2478 if ($attributes->name == "ref") {
2479 $item['conversation-uri'] = $attributes->textContent;
2481 if ($attributes->name == "href") {
2482 $item['conversation-href'] = $attributes->textContent;
2487 // Is it a reply or a top level posting?
2488 $item["parent-uri"] = $item["uri"];
2490 $inreplyto = $xpath->query("thr:in-reply-to", $entry);
2491 if (is_object($inreplyto->item(0))) {
2492 foreach ($inreplyto->item(0)->attributes as $attributes) {
2493 if ($attributes->name == "ref") {
2494 $item["parent-uri"] = $attributes->textContent;
2499 // Get the type of the item (Top level post, reply or remote reply)
2500 $entrytype = self::getEntryType($importer, $item);
2502 // Now assign the rest of the values that depend on the type of the message
2503 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2504 if (!isset($item["object-type"])) {
2505 $item["object-type"] = Activity\ObjectType::COMMENT;
2508 if ($item["contact-id"] != $owner["contact-id"]) {
2509 $item["contact-id"] = $owner["contact-id"];
2512 if (($item["network"] != $owner["network"]) && ($owner["network"] != "")) {
2513 $item["network"] = $owner["network"];
2516 if ($item["contact-id"] != $author["contact-id"]) {
2517 $item["contact-id"] = $author["contact-id"];
2520 if (($item["network"] != $author["network"]) && ($author["network"] != "")) {
2521 $item["network"] = $author["network"];
2525 // Ensure to have the correct share data
2526 $item = Item::addShareDataFromOriginal($item);
2528 if ($entrytype == DFRN::REPLY_RC) {
2530 } elseif ($entrytype == DFRN::TOP_LEVEL) {
2531 if (!isset($item["object-type"])) {
2532 $item["object-type"] = Activity\ObjectType::NOTE;
2536 if (($item["object-type"] == Activity\ObjectType::EVENT) && !$owner_unknown) {
2537 Logger::log("Item ".$item["uri"]." seems to contain an event.", Logger::DEBUG);
2538 $ev = Event::fromBBCode($item["body"]);
2539 if ((!empty($ev['desc']) || !empty($ev['summary'])) && !empty($ev['start'])) {
2540 Logger::log("Event in item ".$item["uri"]." was found.", Logger::DEBUG);
2541 $ev["cid"] = $importer["id"];
2542 $ev["uid"] = $importer["importer_uid"];
2543 $ev["uri"] = $item["uri"];
2544 $ev["edited"] = $item["edited"];
2545 $ev["private"] = $item["private"];
2546 $ev["guid"] = $item["guid"];
2547 $ev["plink"] = $item["plink"];
2549 $condition = ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]];
2550 $event = DBA::selectFirst('event', ['id'], $condition);
2551 if (DBA::isResult($event)) {
2552 $ev["id"] = $event["id"];
2555 $event_id = Event::store($ev);
2556 Logger::log("Event ".$event_id." was stored", Logger::DEBUG);
2562 if (!self::processVerbs($entrytype, $importer, $item, $is_like)) {
2563 Logger::log("Exiting because 'processVerbs' told us so", Logger::DEBUG);
2567 // This check is done here to be able to receive connection requests in "processVerbs"
2568 if (($entrytype == DFRN::TOP_LEVEL) && $owner_unknown) {
2569 Logger::log("Item won't be stored because user " . $importer["importer_uid"] . " doesn't follow " . $item["owner-link"] . ".", Logger::DEBUG);
2574 // Update content if 'updated' changes
2575 if (DBA::isResult($current)) {
2576 if (self::updateContent($current, $item, $importer, $entrytype)) {
2577 Logger::log("Item ".$item["uri"]." was updated.", Logger::DEBUG);
2579 Logger::log("Item " . $item["uri"] . " already existed.", Logger::DEBUG);
2584 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2585 $posted_id = Item::insert($item);
2587 Logger::log("Reply from contact ".$item["contact-id"]." was stored with id ".$posted_id, Logger::DEBUG);
2589 if ($item['uid'] == 0) {
2590 Item::distribute($posted_id);
2595 } else { // $entrytype == DFRN::TOP_LEVEL
2596 if (($importer["uid"] == 0) && ($importer["importer_uid"] != 0)) {
2597 Logger::log("Contact ".$importer["id"]." isn't known to user ".$importer["importer_uid"].". The post will be ignored.", Logger::DEBUG);
2600 if (!Strings::compareLink($item["owner-link"], $importer["url"])) {
2602 * The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2603 * but otherwise there's a possible data mixup on the sender's system.
2604 * the tgroup delivery code called from Item::insert will correct it if it's a forum,
2605 * but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2607 Logger::log('Correcting item owner.', Logger::DEBUG);
2608 $item["owner-link"] = $importer["url"];
2609 $item["owner-id"] = Contact::getIdForURL($importer["url"], 0);
2612 if (($importer["rel"] == Contact::FOLLOWER) && (!self::tgroupCheck($importer["importer_uid"], $item))) {
2613 Logger::log("Contact ".$importer["id"]." is only follower and tgroup check was negative.", Logger::DEBUG);
2617 // This is my contact on another system, but it's really me.
2618 // Turn this into a wall post.
2619 $notify = Item::isRemoteSelf($importer, $item);
2621 $posted_id = Item::insert($item, false, $notify);
2624 $posted_id = $notify;
2627 Logger::log("Item was stored with id ".$posted_id, Logger::DEBUG);
2629 if ($item['uid'] == 0) {
2630 Item::distribute($posted_id);
2633 if (stristr($item["verb"], Activity::POKE)) {
2634 $item['id'] = $posted_id;
2635 self::doPoke($item, $importer);
2643 * @param object $xpath XPath object
2644 * @param object $deletion deletion elements
2645 * @param array $importer Record of the importer user mixed with contact of the content
2647 * @throws \Exception
2648 * @todo set proper type-hints
2650 private static function processDeletion($xpath, $deletion, $importer)
2652 Logger::log("Processing deletions");
2655 foreach ($deletion->attributes as $attributes) {
2656 if ($attributes->name == "ref") {
2657 $uri = $attributes->textContent;
2661 if (!$uri || !$importer["id"]) {
2665 $condition = ['uri' => $uri, 'uid' => $importer["importer_uid"]];
2666 $item = Item::selectFirst(['id', 'parent', 'contact-id', 'file', 'deleted'], $condition);
2667 if (!DBA::isResult($item)) {
2668 Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " wasn't found.", Logger::DEBUG);
2672 if (strstr($item['file'], '[')) {
2673 Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " is filed. So it won't be deleted.", Logger::DEBUG);
2677 // When it is a starting post it has to belong to the person that wants to delete it
2678 if (($item['id'] == $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2679 Logger::log("Item with uri " . $uri . " don't belong to contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2683 // Comments can be deleted by the thread owner or comment owner
2684 if (($item['id'] != $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2685 $condition = ['id' => $item['parent'], 'contact-id' => $importer["id"]];
2686 if (!Item::exists($condition)) {
2687 Logger::log("Item with uri " . $uri . " wasn't found or mustn't be deleted by contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2692 if ($item["deleted"]) {
2696 Logger::log('deleting item '.$item['id'].' uri='.$uri, Logger::DEBUG);
2698 Item::markForDeletion(['id' => $item['id']]);
2702 * Imports a DFRN message
2704 * @param string $xml The DFRN message
2705 * @param array $importer Record of the importer user mixed with contact of the content
2706 * @param bool $sort_by_date Is used when feeds are polled
2707 * @return integer Import status
2708 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2709 * @throws \ImagickException
2710 * @todo set proper type-hints
2712 public static function import($xml, $importer, $sort_by_date = false)
2718 $doc = new DOMDocument();
2719 @$doc->loadXML($xml);
2721 $xpath = new DOMXPath($doc);
2722 $xpath->registerNamespace("atom", ActivityNamespace::ATOM1);
2723 $xpath->registerNamespace("thr", ActivityNamespace::THREAD);
2724 $xpath->registerNamespace("at", ActivityNamespace::TOMB);
2725 $xpath->registerNamespace("media", ActivityNamespace::MEDIA);
2726 $xpath->registerNamespace("dfrn", ActivityNamespace::DFRN);
2727 $xpath->registerNamespace("activity", ActivityNamespace::ACTIVITY);
2728 $xpath->registerNamespace("georss", ActivityNamespace::GEORSS);
2729 $xpath->registerNamespace("poco", ActivityNamespace::POCO);
2730 $xpath->registerNamespace("ostatus", ActivityNamespace::OSTATUS);
2731 $xpath->registerNamespace("statusnet", ActivityNamespace::STATUSNET);
2734 $header["uid"] = $importer["importer_uid"];
2735 $header["network"] = Protocol::DFRN;
2736 $header["wall"] = 0;
2737 $header["origin"] = 0;
2738 $header["contact-id"] = $importer["id"];
2740 // Update the contact table if the data has changed
2742 // The "atom:author" is only present in feeds
2743 if ($xpath->query("/atom:feed/atom:author")->length > 0) {
2744 self::fetchauthor($xpath, $doc->firstChild, $importer, "atom:author", false, $xml);
2747 // Only the "dfrn:owner" in the head section contains all data
2748 if ($xpath->query("/atom:feed/dfrn:owner")->length > 0) {
2749 self::fetchauthor($xpath, $doc->firstChild, $importer, "dfrn:owner", false, $xml);
2752 Logger::log("Import DFRN message for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2754 // is it a public forum? Private forums aren't exposed with this method
2755 $forum = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:community/text()"));
2757 // The account type is new since 3.5.1
2758 if ($xpath->query("/atom:feed/dfrn:account_type")->length > 0) {
2759 // Hint: We are using separate update calls for uid=0 and uid!=0 since a combined call is bad for the database performance
2761 $accounttype = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:account_type/text()"));
2763 if ($accounttype != $importer["contact-type"]) {
2764 DBA::update('contact', ['contact-type' => $accounttype], ['id' => $importer['id']]);
2766 // Updating the public contact as well
2767 DBA::update('contact', ['contact-type' => $accounttype], ['uid' => 0, 'nurl' => $importer['nurl']]);
2769 // A forum contact can either have set "forum" or "prv" - but not both
2770 if ($accounttype == User::ACCOUNT_TYPE_COMMUNITY) {
2771 // It's a forum, so either set the public or private forum flag
2772 $condition = ['(`forum` != ? OR `prv` != ?) AND `id` = ?', $forum, !$forum, $importer['id']];
2773 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2775 // Updating the public contact as well
2776 $condition = ['(`forum` != ? OR `prv` != ?) AND `uid` = 0 AND `nurl` = ?', $forum, !$forum, $importer['nurl']];
2777 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2779 // It's not a forum, so remove the flags
2780 $condition = ['(`forum` OR `prv`) AND `id` = ?', $importer['id']];
2781 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2783 // Updating the public contact as well
2784 $condition = ['(`forum` OR `prv`) AND `uid` = 0 AND `nurl` = ?', $importer['nurl']];
2785 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2787 } elseif ($forum != $importer["forum"]) { // Deprecated since 3.5.1
2788 $condition = ['`forum` != ? AND `id` = ?', $forum, $importer["id"]];
2789 DBA::update('contact', ['forum' => $forum], $condition);
2791 // Updating the public contact as well
2792 $condition = ['`forum` != ? AND `uid` = 0 AND `nurl` = ?', $forum, $importer['nurl']];
2793 DBA::update('contact', ['forum' => $forum], $condition);
2797 // We are processing relocations even if we are ignoring a contact
2798 $relocations = $xpath->query("/atom:feed/dfrn:relocate");
2799 foreach ($relocations as $relocation) {
2800 self::processRelocation($xpath, $relocation, $importer);
2803 if (($importer["uid"] != 0) && !$importer["readonly"]) {
2804 $mails = $xpath->query("/atom:feed/dfrn:mail");
2805 foreach ($mails as $mail) {
2806 self::processMail($xpath, $mail, $importer);
2809 $suggestions = $xpath->query("/atom:feed/dfrn:suggest");
2810 foreach ($suggestions as $suggestion) {
2811 self::processSuggestion($xpath, $suggestion, $importer);
2815 $deletions = $xpath->query("/atom:feed/at:deleted-entry");
2816 foreach ($deletions as $deletion) {
2817 self::processDeletion($xpath, $deletion, $importer);
2820 if (!$sort_by_date) {
2821 $entries = $xpath->query("/atom:feed/atom:entry");
2822 foreach ($entries as $entry) {
2823 self::processEntry($header, $xpath, $entry, $importer, $xml);
2827 $entries = $xpath->query("/atom:feed/atom:entry");
2828 foreach ($entries as $entry) {
2829 $created = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2830 $newentries[strtotime($created)] = $entry;
2833 // Now sort after the publishing date
2836 foreach ($newentries as $entry) {
2837 self::processEntry($header, $xpath, $entry, $importer, $xml);
2840 Logger::log("Import done for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2845 * Returns the activity verb
2847 * @param array $item Item array
2849 * @return string activity verb
2851 private static function constructVerb(array $item)
2853 if ($item['verb']) {
2854 return $item['verb'];
2856 return Activity::POST;
2859 private static function tgroupCheck($uid, $item)
2863 // check that the message originated elsewhere and is a top-level post
2865 if ($item['wall'] || $item['origin'] || ($item['uri'] != $item['parent-uri'])) {
2869 $user = DBA::selectFirst('user', ['page-flags', 'nickname'], ['uid' => $uid]);
2870 if (!DBA::isResult($user)) {
2874 $community_page = ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY);
2875 $prvgroup = ($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP);
2877 $link = Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']);
2880 * Diaspora uses their own hardwired link URL in @-tags
2881 * instead of the one we supply with webfinger
2883 $dlink = Strings::normaliseLink(DI::baseUrl() . '/u/' . $user['nickname']);
2885 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
2887 foreach ($matches as $mtch) {
2888 if (Strings::compareLink($link, $mtch[1]) || Strings::compareLink($dlink, $mtch[1])) {
2890 Logger::log('mention found: ' . $mtch[2]);
2899 return $community_page || $prvgroup;
2903 * This function returns true if $update has an edited timestamp newer
2904 * than $existing, i.e. $update contains new data which should override
2905 * what's already there. If there is no timestamp yet, the update is
2906 * assumed to be newer. If the update has no timestamp, the existing
2907 * item is assumed to be up-to-date. If the timestamps are equal it
2908 * assumes the update has been seen before and should be ignored.
2913 * @throws \Exception
2915 private static function isEditedTimestampNewer($existing, $update)
2917 if (empty($existing['edited'])) {
2920 if (empty($update['edited'])) {
2924 $existing_edited = DateTimeFormat::utc($existing['edited']);
2925 $update_edited = DateTimeFormat::utc($update['edited']);
2927 return (strcmp($existing_edited, $update_edited) < 0);
2931 * Checks if the given contact url does support DFRN
2933 * @param string $url profile url
2934 * @param boolean $update Update the profile
2936 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2937 * @throws \ImagickException
2939 public static function isSupportedByContactUrl($url, $update = false)
2941 $probe = Probe::uri($url, Protocol::DFRN, 0, !$update);
2942 return $probe['network'] == Protocol::DFRN;