3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Protocol;
26 use Friendica\App\BaseURL;
27 use Friendica\Content\Text\BBCode;
28 use Friendica\Core\Hook;
29 use Friendica\Core\Logger;
30 use Friendica\Core\Protocol;
31 use Friendica\Database\DBA;
33 use Friendica\Model\Contact;
34 use Friendica\Model\Conversation;
35 use Friendica\Model\Event;
36 use Friendica\Model\GContact;
37 use Friendica\Model\Item;
38 use Friendica\Model\ItemURI;
39 use Friendica\Model\Mail;
40 use Friendica\Model\Notify\Type;
41 use Friendica\Model\PermissionSet;
42 use Friendica\Model\Profile;
43 use Friendica\Model\Tag;
44 use Friendica\Model\Term;
45 use Friendica\Model\User;
46 use Friendica\Network\Probe;
47 use Friendica\Util\Crypto;
48 use Friendica\Util\DateTimeFormat;
49 use Friendica\Util\Images;
50 use Friendica\Util\Network;
51 use Friendica\Util\Strings;
52 use Friendica\Util\XML;
55 * This class contain functions to create and send DFRN XML files
60 const TOP_LEVEL = 0; // Top level posting
61 const REPLY = 1; // Regular reply that is stored locally
62 const REPLY_RC = 2; // Reply that will be relayed
65 * Generates an array of contact and user for DFRN imports
67 * This array contains not only the receiver but also the sender of the message.
69 * @param integer $cid Contact id
70 * @param integer $uid User id
72 * @return array importer
75 public static function getImporter($cid, $uid = 0)
77 $condition = ['id' => $cid, 'blocked' => false, 'pending' => false];
78 $contact = DBA::selectFirst('contact', [], $condition);
79 if (!DBA::isResult($contact)) {
83 $contact['cpubkey'] = $contact['pubkey'];
84 $contact['cprvkey'] = $contact['prvkey'];
85 $contact['senderName'] = $contact['name'];
88 $condition = ['uid' => $uid, 'account_expired' => false, 'account_removed' => false];
89 $user = DBA::selectFirst('user', [], $condition);
90 if (!DBA::isResult($user)) {
94 $user['importer_uid'] = $user['uid'];
95 $user['uprvkey'] = $user['prvkey'];
97 $user = ['importer_uid' => 0, 'uprvkey' => '', 'timezone' => 'UTC',
98 'nickname' => '', 'sprvkey' => '', 'spubkey' => '',
99 'page-flags' => 0, 'account-type' => 0, 'prvnets' => 0];
102 return array_merge($contact, $user);
106 * Generates the atom entries for delivery.php
108 * This function is used whenever content is transmitted via DFRN.
110 * @param array $items Item elements
111 * @param array $owner Owner record
113 * @return string DFRN entries
114 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
115 * @throws \ImagickException
116 * @todo Find proper type-hints
118 public static function entries($items, $owner)
120 $doc = new DOMDocument('1.0', 'utf-8');
121 $doc->formatOutput = true;
123 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
125 if (! count($items)) {
126 return trim($doc->saveXML());
129 foreach ($items as $item) {
130 // These values aren't sent when sending from the queue.
131 /// @todo Check if we can set these values from the queue or if they are needed at all.
132 $item["entry:comment-allow"] = ($item["entry:comment-allow"] ?? '') ?: true;
133 $item["entry:cid"] = $item["entry:cid"] ?? 0;
135 $entry = self::entry($doc, "text", $item, $owner, $item["entry:comment-allow"], $item["entry:cid"]);
137 $root->appendChild($entry);
141 return trim($doc->saveXML());
145 * Generate an atom feed for the given user
147 * This function is called when another server is pulling data from the user feed.
149 * @param string $dfrn_id DFRN ID from the requesting party
150 * @param string $owner_nick Owner nick name
151 * @param string $last_update Date of the last update
152 * @param int $direction Can be -1, 0 or 1.
153 * @param boolean $onlyheader Output only the header without content? (Default is "no")
155 * @return string DFRN feed entries
156 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
157 * @throws \ImagickException
159 public static function feed($dfrn_id, $owner_nick, $last_update, $direction = 0, $onlyheader = false)
163 $sitefeed = ((strlen($owner_nick)) ? false : true); // not yet implemented, need to rewrite huge chunks of following logic
164 $public_feed = (($dfrn_id) ? false : true);
165 $starred = false; // not yet implemented, possible security issues
168 if ($public_feed && $a->argc > 2) {
169 for ($x = 2; $x < $a->argc; $x++) {
170 if ($a->argv[$x] == 'converse') {
173 if ($a->argv[$x] == 'starred') {
176 if ($a->argv[$x] == 'category' && $a->argc > ($x + 1) && strlen($a->argv[$x+1])) {
177 $category = $a->argv[$x+1];
182 // default permissions - anonymous user
184 $sql_extra = sprintf(" AND `item`.`private` != %s ", Item::PRIVATE);
187 "SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`, `user`.`account-type`
188 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
189 WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
190 DBA::escape($owner_nick)
193 if (! DBA::isResult($r)) {
194 Logger::log(sprintf('No contact found for nickname=%d', $owner_nick), Logger::WARNING);
199 $owner_id = $owner['uid'];
201 $sql_post_table = "";
203 if (! $public_feed) {
204 switch ($direction) {
206 $sql_extra = sprintf(" AND `issued-id` = '%s' ", DBA::escape($dfrn_id));
209 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", DBA::escape($dfrn_id));
212 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", DBA::escape($dfrn_id));
220 "SELECT * FROM `contact` WHERE NOT `blocked` AND `contact`.`uid` = %d $sql_extra LIMIT 1",
224 if (! DBA::isResult($r)) {
225 Logger::log(sprintf('No contact found for uid=%d', $owner_id), Logger::WARNING);
231 $set = PermissionSet::get($owner_id, $contact['id']);
234 $sql_extra = " AND `item`.`psid` IN (" . implode(',', $set) .")";
236 $sql_extra = sprintf(" AND `item`.`private` != %s", Item::PRIVATE);
246 if (! strlen($last_update)) {
247 $last_update = 'now -30 days';
250 if (isset($category)) {
251 $sql_post_table = sprintf(
252 "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` ",
253 DBA::escape(Strings::protectSprintf($category)),
254 intval(Term::OBJECT_TYPE_POST),
255 intval(Term::CATEGORY),
260 if ($public_feed && ! $converse) {
261 $sql_extra .= " AND `contact`.`self` = 1 ";
264 $check_date = DateTimeFormat::utc($last_update);
268 FROM `item` USE INDEX (`uid_wall_changed`) $sql_post_table
269 STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
270 WHERE `item`.`uid` = %d AND `item`.`wall` AND `item`.`changed` > '%s'
271 AND `item`.`visible` $sql_extra
272 ORDER BY `item`.`parent` ".$sort.", `item`.`received` ASC LIMIT 0, 300",
274 DBA::escape($check_date),
279 foreach ($r as $item) {
280 $ids[] = $item['id'];
284 $ret = Item::select(Item::DELIVER_FIELDLIST, ['id' => $ids]);
285 $items = Item::inArray($ret);
291 * Will check further below if this actually returned results.
292 * We will provide an empty feed if that is the case.
295 $doc = new DOMDocument('1.0', 'utf-8');
296 $doc->formatOutput = true;
298 $alternatelink = $owner['url'];
300 if (isset($category)) {
301 $alternatelink .= "/category/".$category;
305 $author = "dfrn:owner";
310 $root = self::addHeader($doc, $owner, $author, $alternatelink, true);
312 /// @TODO This hook can't work anymore
313 // \Friendica\Core\Hook::callAll('atom_feed', $atom);
315 if (!DBA::isResult($items) || $onlyheader) {
316 $atom = trim($doc->saveXML());
318 Hook::callAll('atom_feed_end', $atom);
323 foreach ($items as $item) {
324 // prevent private email from leaking.
325 if ($item['network'] == Protocol::MAIL) {
329 // public feeds get html, our own nodes use bbcode
333 // catch any email that's in a public conversation and make sure it doesn't leak
334 if ($item['private'] == Item::PRIVATE) {
341 $entry = self::entry($doc, $type, $item, $owner, true);
343 $root->appendChild($entry);
347 $atom = trim($doc->saveXML());
349 Hook::callAll('atom_feed_end', $atom);
355 * Generate an atom entry for a given item id
357 * @param int $item_id The item id
358 * @param boolean $conversation Show the conversation. If false show the single post.
360 * @return string DFRN feed entry
361 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
362 * @throws \ImagickException
364 public static function itemFeed($item_id, $conversation = false)
367 $condition = ['parent' => $item_id];
369 $condition = ['id' => $item_id];
372 $ret = Item::select(Item::DELIVER_FIELDLIST, $condition);
373 $items = Item::inArray($ret);
374 if (!DBA::isResult($items)) {
380 if ($item['uid'] != 0) {
381 $owner = User::getOwnerDataById($item['uid']);
386 $owner = ['uid' => 0, 'nick' => 'feed-item'];
389 $doc = new DOMDocument('1.0', 'utf-8');
390 $doc->formatOutput = true;
394 $root = $doc->createElementNS(ActivityNamespace::ATOM1, 'feed');
395 $doc->appendChild($root);
397 $root->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
398 $root->setAttribute("xmlns:at", ActivityNamespace::TOMB);
399 $root->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
400 $root->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
401 $root->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
402 $root->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
403 $root->setAttribute("xmlns:poco", ActivityNamespace::POCO);
404 $root->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
405 $root->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
407 //$root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
409 foreach ($items as $item) {
410 $entry = self::entry($doc, $type, $item, $owner, true, 0);
412 $root->appendChild($entry);
416 self::entry($doc, $type, $item, $owner, true, 0, true);
419 $atom = trim($doc->saveXML());
424 * Create XML text for DFRN mails
426 * @param array $item message elements
427 * @param array $owner Owner record
429 * @return string DFRN mail
430 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
431 * @todo Find proper type-hints
433 public static function mail($item, $owner)
435 $doc = new DOMDocument('1.0', 'utf-8');
436 $doc->formatOutput = true;
438 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
440 $mail = $doc->createElement("dfrn:mail");
441 $sender = $doc->createElement("dfrn:sender");
443 XML::addElement($doc, $sender, "dfrn:name", $owner['name']);
444 XML::addElement($doc, $sender, "dfrn:uri", $owner['url']);
445 XML::addElement($doc, $sender, "dfrn:avatar", $owner['thumb']);
447 $mail->appendChild($sender);
449 XML::addElement($doc, $mail, "dfrn:id", $item['uri']);
450 XML::addElement($doc, $mail, "dfrn:in-reply-to", $item['parent-uri']);
451 XML::addElement($doc, $mail, "dfrn:sentdate", DateTimeFormat::utc($item['created'] . '+00:00', DateTimeFormat::ATOM));
452 XML::addElement($doc, $mail, "dfrn:subject", $item['title']);
453 XML::addElement($doc, $mail, "dfrn:content", $item['body']);
455 $root->appendChild($mail);
457 return trim($doc->saveXML());
461 * Create XML text for DFRN friend suggestions
463 * @param array $item suggestion elements
464 * @param array $owner Owner record
466 * @return string DFRN suggestions
467 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
468 * @todo Find proper type-hints
470 public static function fsuggest($item, $owner)
472 $doc = new DOMDocument('1.0', 'utf-8');
473 $doc->formatOutput = true;
475 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
477 $suggest = $doc->createElement("dfrn:suggest");
479 XML::addElement($doc, $suggest, "dfrn:url", $item['url']);
480 XML::addElement($doc, $suggest, "dfrn:name", $item['name']);
481 XML::addElement($doc, $suggest, "dfrn:photo", $item['photo']);
482 XML::addElement($doc, $suggest, "dfrn:request", $item['request']);
483 XML::addElement($doc, $suggest, "dfrn:note", $item['note']);
485 $root->appendChild($suggest);
487 return trim($doc->saveXML());
491 * Create XML text for DFRN relocations
493 * @param array $owner Owner record
494 * @param int $uid User ID
496 * @return string DFRN relocations
497 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
498 * @todo Find proper type-hints
500 public static function relocate($owner, $uid)
503 /* get site pubkey. this could be a new installation with no site keys*/
504 $pubkey = DI::config()->get('system', 'site_pubkey');
506 $res = Crypto::newKeypair(1024);
507 DI::config()->set('system', 'site_prvkey', $res['prvkey']);
508 DI::config()->set('system', 'site_pubkey', $res['pubkey']);
512 "SELECT `resource-id` , `scale`, type FROM `photo`
513 WHERE `profile` = 1 AND `uid` = %d ORDER BY scale;",
517 $ext = Images::supportedTypes();
519 foreach ($rp as $p) {
520 $photos[$p['scale']] = DI::baseUrl().'/photo/'.$p['resource-id'].'-'.$p['scale'].'.'.$ext[$p['type']];
524 $doc = new DOMDocument('1.0', 'utf-8');
525 $doc->formatOutput = true;
527 $root = self::addHeader($doc, $owner, "dfrn:owner", "", false);
529 $relocate = $doc->createElement("dfrn:relocate");
531 XML::addElement($doc, $relocate, "dfrn:url", $owner['url']);
532 XML::addElement($doc, $relocate, "dfrn:name", $owner['name']);
533 XML::addElement($doc, $relocate, "dfrn:addr", $owner['addr']);
534 XML::addElement($doc, $relocate, "dfrn:avatar", $owner['avatar']);
535 XML::addElement($doc, $relocate, "dfrn:photo", $photos[4]);
536 XML::addElement($doc, $relocate, "dfrn:thumb", $photos[5]);
537 XML::addElement($doc, $relocate, "dfrn:micro", $photos[6]);
538 XML::addElement($doc, $relocate, "dfrn:request", $owner['request']);
539 XML::addElement($doc, $relocate, "dfrn:confirm", $owner['confirm']);
540 XML::addElement($doc, $relocate, "dfrn:notify", $owner['notify']);
541 XML::addElement($doc, $relocate, "dfrn:poll", $owner['poll']);
542 XML::addElement($doc, $relocate, "dfrn:sitepubkey", DI::config()->get('system', 'site_pubkey'));
544 $root->appendChild($relocate);
546 return trim($doc->saveXML());
550 * Adds the header elements for the DFRN protocol
552 * @param DOMDocument $doc XML document
553 * @param array $owner Owner record
554 * @param string $authorelement Element name for the author
555 * @param string $alternatelink link to profile or category
556 * @param bool $public Is it a header for public posts?
558 * @return object XML root object
559 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
560 * @todo Find proper type-hints
562 private static function addHeader(DOMDocument $doc, $owner, $authorelement, $alternatelink = "", $public = false)
565 if ($alternatelink == "") {
566 $alternatelink = $owner['url'];
569 $root = $doc->createElementNS(ActivityNamespace::ATOM1, 'feed');
570 $doc->appendChild($root);
572 $root->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
573 $root->setAttribute("xmlns:at", ActivityNamespace::TOMB);
574 $root->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
575 $root->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
576 $root->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
577 $root->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
578 $root->setAttribute("xmlns:poco", ActivityNamespace::POCO);
579 $root->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
580 $root->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
582 XML::addElement($doc, $root, "id", DI::baseUrl()."/profile/".$owner["nick"]);
583 XML::addElement($doc, $root, "title", $owner["name"]);
585 $attributes = ["uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION];
586 XML::addElement($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
588 $attributes = ["rel" => "license", "href" => "http://creativecommons.org/licenses/by/3.0/"];
589 XML::addElement($doc, $root, "link", "", $attributes);
591 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $alternatelink];
592 XML::addElement($doc, $root, "link", "", $attributes);
596 // DFRN itself doesn't uses this. But maybe someone else wants to subscribe to the public feed.
597 OStatus::hublinks($doc, $root, $owner["nick"]);
599 $attributes = ["rel" => "salmon", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
600 XML::addElement($doc, $root, "link", "", $attributes);
602 $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-replies", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
603 XML::addElement($doc, $root, "link", "", $attributes);
605 $attributes = ["rel" => "http://salmon-protocol.org/ns/salmon-mention", "href" => DI::baseUrl()."/salmon/".$owner["nick"]];
606 XML::addElement($doc, $root, "link", "", $attributes);
609 // For backward compatibility we keep this element
610 if ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
611 XML::addElement($doc, $root, "dfrn:community", 1);
614 // The former element is replaced by this one
615 XML::addElement($doc, $root, "dfrn:account_type", $owner["account-type"]);
617 /// @todo We need a way to transmit the different page flags like "User::PAGE_FLAGS_PRVGROUP"
619 XML::addElement($doc, $root, "updated", DateTimeFormat::utcNow(DateTimeFormat::ATOM));
621 $author = self::addAuthor($doc, $owner, $authorelement, $public);
622 $root->appendChild($author);
628 * Adds the author element in the header for the DFRN protocol
630 * @param DOMDocument $doc XML document
631 * @param array $owner Owner record
632 * @param string $authorelement Element name for the author
633 * @param boolean $public boolean
635 * @return \DOMElement XML author object
636 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
637 * @todo Find proper type-hints
639 private static function addAuthor(DOMDocument $doc, array $owner, $authorelement, $public)
641 // Should the profile be "unsearchable" in the net? Then add the "hide" element
642 $hide = DBA::exists('profile', ['uid' => $owner['uid'], 'net-publish' => false]);
644 $author = $doc->createElement($authorelement);
646 $namdate = DateTimeFormat::utc($owner['name-date'].'+00:00', DateTimeFormat::ATOM);
647 $picdate = DateTimeFormat::utc($owner['avatar-date'].'+00:00', DateTimeFormat::ATOM);
651 if (!$public || !$hide) {
652 $attributes = ["dfrn:updated" => $namdate];
655 XML::addElement($doc, $author, "name", $owner["name"], $attributes);
656 XML::addElement($doc, $author, "uri", DI::baseUrl().'/profile/'.$owner["nickname"], $attributes);
657 XML::addElement($doc, $author, "dfrn:handle", $owner["addr"], $attributes);
659 $attributes = ["rel" => "photo", "type" => "image/jpeg",
660 "media:width" => 300, "media:height" => 300, "href" => $owner['photo']];
662 if (!$public || !$hide) {
663 $attributes["dfrn:updated"] = $picdate;
666 XML::addElement($doc, $author, "link", "", $attributes);
668 $attributes["rel"] = "avatar";
669 XML::addElement($doc, $author, "link", "", $attributes);
672 XML::addElement($doc, $author, "dfrn:hide", "true");
675 // The following fields will only be generated if the data isn't meant for a public feed
680 $birthday = feed_birthday($owner['uid'], $owner['timezone']);
683 XML::addElement($doc, $author, "dfrn:birthday", $birthday);
686 // Only show contact details when we are allowed to
688 "SELECT `profile`.`about`, `profile`.`name`, `profile`.`homepage`, `user`.`nickname`,
689 `user`.`timezone`, `profile`.`locality`, `profile`.`region`, `profile`.`country-name`,
690 `profile`.`pub_keywords`, `profile`.`xmpp`, `profile`.`dob`
692 INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
693 WHERE NOT `user`.`hidewall` AND `user`.`uid` = %d",
694 intval($owner['uid'])
696 if (DBA::isResult($r)) {
699 XML::addElement($doc, $author, "poco:displayName", $profile["name"]);
700 XML::addElement($doc, $author, "poco:updated", $namdate);
702 if (trim($profile["dob"]) > DBA::NULL_DATE) {
703 XML::addElement($doc, $author, "poco:birthday", "0000-".date("m-d", strtotime($profile["dob"])));
706 XML::addElement($doc, $author, "poco:note", $profile["about"]);
707 XML::addElement($doc, $author, "poco:preferredUsername", $profile["nickname"]);
709 $savetz = date_default_timezone_get();
710 date_default_timezone_set($profile["timezone"]);
711 XML::addElement($doc, $author, "poco:utcOffset", date("P"));
712 date_default_timezone_set($savetz);
714 if (trim($profile["homepage"]) != "") {
715 $urls = $doc->createElement("poco:urls");
716 XML::addElement($doc, $urls, "poco:type", "homepage");
717 XML::addElement($doc, $urls, "poco:value", $profile["homepage"]);
718 XML::addElement($doc, $urls, "poco:primary", "true");
719 $author->appendChild($urls);
722 if (trim($profile["pub_keywords"]) != "") {
723 $keywords = explode(",", $profile["pub_keywords"]);
725 foreach ($keywords as $keyword) {
726 XML::addElement($doc, $author, "poco:tags", trim($keyword));
730 if (trim($profile["xmpp"]) != "") {
731 $ims = $doc->createElement("poco:ims");
732 XML::addElement($doc, $ims, "poco:type", "xmpp");
733 XML::addElement($doc, $ims, "poco:value", $profile["xmpp"]);
734 XML::addElement($doc, $ims, "poco:primary", "true");
735 $author->appendChild($ims);
738 if (trim($profile["locality"].$profile["region"].$profile["country-name"]) != "") {
739 $element = $doc->createElement("poco:address");
741 XML::addElement($doc, $element, "poco:formatted", Profile::formatLocation($profile));
743 if (trim($profile["locality"]) != "") {
744 XML::addElement($doc, $element, "poco:locality", $profile["locality"]);
747 if (trim($profile["region"]) != "") {
748 XML::addElement($doc, $element, "poco:region", $profile["region"]);
751 if (trim($profile["country-name"]) != "") {
752 XML::addElement($doc, $element, "poco:country", $profile["country-name"]);
755 $author->appendChild($element);
763 * Adds the author elements in the "entry" elements of the DFRN protocol
765 * @param DOMDocument $doc XML document
766 * @param string $element Element name for the author
767 * @param string $contact_url Link of the contact
768 * @param array $item Item elements
770 * @return \DOMElement XML author object
771 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
772 * @todo Find proper type-hints
774 private static function addEntryAuthor(DOMDocument $doc, $element, $contact_url, $item)
776 $author = $doc->createElement($element);
778 $contact = Contact::getDetailsByURL($contact_url, $item["uid"]);
779 if (!empty($contact)) {
780 XML::addElement($doc, $author, "name", $contact["name"]);
781 XML::addElement($doc, $author, "uri", $contact["url"]);
782 XML::addElement($doc, $author, "dfrn:handle", $contact["addr"]);
785 /// - Check real image type and image size
786 /// - Check which of these boths elements we should use
789 "type" => "image/jpeg",
791 "media:height" => 80,
792 "href" => $contact["photo"]];
793 XML::addElement($doc, $author, "link", "", $attributes);
797 "type" => "image/jpeg",
799 "media:height" => 80,
800 "href" => $contact["photo"]];
801 XML::addElement($doc, $author, "link", "", $attributes);
808 * Adds the activity elements
810 * @param DOMDocument $doc XML document
811 * @param string $element Element name for the activity
812 * @param string $activity activity value
814 * @return \DOMElement XML activity object
815 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
816 * @todo Find proper type-hints
818 private static function createActivity(DOMDocument $doc, $element, $activity)
821 $entry = $doc->createElement($element);
823 $r = XML::parseString($activity, false);
829 XML::addElement($doc, $entry, "activity:object-type", $r->type);
833 XML::addElement($doc, $entry, "id", $r->id);
837 XML::addElement($doc, $entry, "title", $r->title);
841 if (substr($r->link, 0, 1) == '<') {
842 if (strstr($r->link, '&') && (! strstr($r->link, '&'))) {
843 $r->link = str_replace('&', '&', $r->link);
846 $r->link = preg_replace('/\<link(.*?)\"\>/', '<link$1"/>', $r->link);
848 // XML does need a single element as root element so we add a dummy element here
849 $data = XML::parseString("<dummy>" . $r->link . "</dummy>", false);
850 if (is_object($data)) {
851 foreach ($data->link as $link) {
853 foreach ($link->attributes() as $parameter => $value) {
854 $attributes[$parameter] = $value;
856 XML::addElement($doc, $entry, "link", "", $attributes);
860 $attributes = ["rel" => "alternate", "type" => "text/html", "href" => $r->link];
861 XML::addElement($doc, $entry, "link", "", $attributes);
865 XML::addElement($doc, $entry, "content", BBCode::convert($r->content), ["type" => "html"]);
875 * Adds the elements for attachments
877 * @param object $doc XML document
878 * @param object $root XML root
879 * @param array $item Item element
881 * @return void XML attachment object
882 * @todo Find proper type-hints
884 private static function getAttachment($doc, $root, $item)
886 $arr = explode('[/attach],', $item['attach']);
888 foreach ($arr as $r) {
890 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|', $r, $matches);
892 $attributes = ["rel" => "enclosure",
893 "href" => $matches[1],
894 "type" => $matches[3]];
896 if (intval($matches[2])) {
897 $attributes["length"] = intval($matches[2]);
900 if (trim($matches[4]) != "") {
901 $attributes["title"] = trim($matches[4]);
904 XML::addElement($doc, $root, "link", "", $attributes);
911 * Adds the "entry" elements for the DFRN protocol
913 * @param DOMDocument $doc XML document
914 * @param string $type "text" or "html"
915 * @param array $item Item element
916 * @param array $owner Owner record
917 * @param bool $comment Trigger the sending of the "comment" element
918 * @param int $cid Contact ID of the recipient
919 * @param bool $single If set, the entry is created as an XML document with a single "entry" element
921 * @return null|\DOMElement XML entry object
922 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
923 * @throws \ImagickException
924 * @todo Find proper type-hints
926 private static function entry(DOMDocument $doc, $type, array $item, array $owner, $comment = false, $cid = 0, $single = false)
930 if (!$item['parent']) {
931 Logger::notice('Item without parent found.', ['type' => $type, 'item' => $item]);
935 if ($item['deleted']) {
936 $attributes = ["ref" => $item['uri'], "when" => DateTimeFormat::utc($item['edited'] . '+00:00', DateTimeFormat::ATOM)];
937 return XML::createElement($doc, "at:deleted-entry", "", $attributes);
941 $entry = $doc->createElement("entry");
943 $entry = $doc->createElementNS(ActivityNamespace::ATOM1, 'entry');
944 $doc->appendChild($entry);
946 $entry->setAttribute("xmlns:thr", ActivityNamespace::THREAD);
947 $entry->setAttribute("xmlns:at", ActivityNamespace::TOMB);
948 $entry->setAttribute("xmlns:media", ActivityNamespace::MEDIA);
949 $entry->setAttribute("xmlns:dfrn", ActivityNamespace::DFRN);
950 $entry->setAttribute("xmlns:activity", ActivityNamespace::ACTIVITY);
951 $entry->setAttribute("xmlns:georss", ActivityNamespace::GEORSS);
952 $entry->setAttribute("xmlns:poco", ActivityNamespace::POCO);
953 $entry->setAttribute("xmlns:ostatus", ActivityNamespace::OSTATUS);
954 $entry->setAttribute("xmlns:statusnet", ActivityNamespace::STATUSNET);
957 if ($item['private'] == Item::PRIVATE) {
958 $body = Item::fixPrivatePhotos($item['body'], $owner['uid'], $item, $cid);
960 $body = $item['body'];
963 // Remove the abstract element. It is only locally important.
964 $body = BBCode::stripAbstract($body);
967 if ($type == 'html') {
970 if ($item['title'] != "") {
971 $htmlbody = "[b]" . $item['title'] . "[/b]\n\n" . $htmlbody;
974 $htmlbody = BBCode::convert($htmlbody, false, 7);
977 $author = self::addEntryAuthor($doc, "author", $item["author-link"], $item);
978 $entry->appendChild($author);
980 $dfrnowner = self::addEntryAuthor($doc, "dfrn:owner", $item["owner-link"], $item);
981 $entry->appendChild($dfrnowner);
983 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
984 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
985 $parent = Item::selectFirst(['guid', 'plink'], ['uri' => $parent_item, 'uid' => $item['uid']]);
986 $attributes = ["ref" => $parent_item, "type" => "text/html",
987 "href" => $parent['plink'],
988 "dfrn:diaspora_guid" => $parent['guid']];
989 XML::addElement($doc, $entry, "thr:in-reply-to", "", $attributes);
992 // Add conversation data. This is used for OStatus
993 $conversation_href = DI::baseUrl()."/display/".$item["parent-guid"];
994 $conversation_uri = $conversation_href;
996 if (isset($parent_item)) {
997 $conversation = DBA::selectFirst('conversation', ['conversation-uri', 'conversation-href'], ['item-uri' => $item['parent-uri']]);
998 if (DBA::isResult($conversation)) {
999 if ($conversation['conversation-uri'] != '') {
1000 $conversation_uri = $conversation['conversation-uri'];
1002 if ($conversation['conversation-href'] != '') {
1003 $conversation_href = $conversation['conversation-href'];
1009 "href" => $conversation_href,
1010 "ref" => $conversation_uri];
1012 XML::addElement($doc, $entry, "ostatus:conversation", $conversation_uri, $attributes);
1014 XML::addElement($doc, $entry, "id", $item["uri"]);
1015 XML::addElement($doc, $entry, "title", $item["title"]);
1017 XML::addElement($doc, $entry, "published", DateTimeFormat::utc($item["created"] . "+00:00", DateTimeFormat::ATOM));
1018 XML::addElement($doc, $entry, "updated", DateTimeFormat::utc($item["edited"] . "+00:00", DateTimeFormat::ATOM));
1020 // "dfrn:env" is used to read the content
1021 XML::addElement($doc, $entry, "dfrn:env", Strings::base64UrlEncode($body, true));
1023 // The "content" field is not read by the receiver. We could remove it when the type is "text"
1024 // We keep it at the moment, maybe there is some old version that doesn't read "dfrn:env"
1025 XML::addElement($doc, $entry, "content", (($type == 'html') ? $htmlbody : $body), ["type" => $type]);
1027 // We save this value in "plink". Maybe we should read it from there as well?
1033 ["rel" => "alternate", "type" => "text/html",
1034 "href" => DI::baseUrl() . "/display/" . $item["guid"]]
1037 // "comment-allow" is some old fashioned stuff for old Friendica versions.
1038 // It is included in the rewritten code for completeness
1040 XML::addElement($doc, $entry, "dfrn:comment-allow", 1);
1043 if ($item['location']) {
1044 XML::addElement($doc, $entry, "dfrn:location", $item['location']);
1047 if ($item['coord']) {
1048 XML::addElement($doc, $entry, "georss:point", $item['coord']);
1051 if ($item['private']) {
1052 // Friendica versions prior to 2020.3 can't handle "unlisted" properly. So we can only transmit public and private
1053 XML::addElement($doc, $entry, "dfrn:private", ($item['private'] == Item::PRIVATE ? Item::PRIVATE : Item::PUBLIC));
1054 XML::addElement($doc, $entry, "dfrn:unlisted", $item['private'] == Item::UNLISTED);
1057 if ($item['extid']) {
1058 XML::addElement($doc, $entry, "dfrn:extid", $item['extid']);
1061 if ($item['post-type'] == Item::PT_PAGE) {
1062 XML::addElement($doc, $entry, "dfrn:bookmark", "true");
1066 XML::addElement($doc, $entry, "statusnet:notice_info", "", ["local_id" => $item['id'], "source" => $item['app']]);
1069 XML::addElement($doc, $entry, "dfrn:diaspora_guid", $item["guid"]);
1071 // The signed text contains the content in Markdown, the sender handle and the signatur for the content
1072 // It is needed for relayed comments to Diaspora.
1073 if ($item['signed_text']) {
1074 $sign = base64_encode(json_encode(['signed_text' => $item['signed_text'],'signature' => '','signer' => '']));
1075 XML::addElement($doc, $entry, "dfrn:diaspora_signature", $sign);
1078 XML::addElement($doc, $entry, "activity:verb", self::constructVerb($item));
1080 if ($item['object-type'] != "") {
1081 XML::addElement($doc, $entry, "activity:object-type", $item['object-type']);
1082 } elseif ($item['id'] == $item['parent']) {
1083 XML::addElement($doc, $entry, "activity:object-type", Activity\ObjectType::NOTE);
1085 XML::addElement($doc, $entry, "activity:object-type", Activity\ObjectType::COMMENT);
1088 $actobj = self::createActivity($doc, "activity:object", $item['object']);
1090 $entry->appendChild($actobj);
1093 $actarg = self::createActivity($doc, "activity:target", $item['target']);
1095 $entry->appendChild($actarg);
1098 $tags = Item::getFeedTags($item);
1100 /// @TODO Combine this with similar below if() block?
1102 foreach ($tags as $t) {
1103 if (($type != 'html') || ($t[0] != "@")) {
1104 XML::addElement($doc, $entry, "category", "", ["scheme" => "X-DFRN:".$t[0].":".$t[1], "term" => $t[2]]);
1110 foreach ($tags as $t) {
1112 $mentioned[$t[1]] = $t[1];
1117 foreach ($mentioned as $mention) {
1118 $condition = ['uid' => $owner["uid"], 'nurl' => Strings::normaliseLink($mention)];
1119 $contact = DBA::selectFirst('contact', ['forum', 'prv'], $condition);
1121 if (DBA::isResult($contact) && ($contact["forum"] || $contact["prv"])) {
1127 ["rel" => "mentioned",
1128 "ostatus:object-type" => Activity\ObjectType::GROUP,
1137 ["rel" => "mentioned",
1138 "ostatus:object-type" => Activity\ObjectType::PERSON,
1144 self::getAttachment($doc, $entry, $item);
1150 * encrypts data via AES
1152 * @param string $data The data that is to be encrypted
1153 * @param string $key The AES key
1155 * @return string encrypted data
1157 private static function aesEncrypt($data, $key)
1159 return openssl_encrypt($data, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1163 * decrypts data via AES
1165 * @param string $encrypted The encrypted data
1166 * @param string $key The AES key
1168 * @return string decrypted data
1170 public static function aesDecrypt($encrypted, $key)
1172 return openssl_decrypt($encrypted, 'aes-128-ecb', $key, OPENSSL_RAW_DATA);
1176 * Delivers the atom content to the contacts
1178 * @param array $owner Owner record
1179 * @param array $contact Contact record of the receiver
1180 * @param string $atom Content that will be transmitted
1181 * @param bool $dissolve (to be documented)
1183 * @return int Deliver status. Negative values mean an error.
1184 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1185 * @throws \ImagickException
1186 * @todo Add array type-hint for $owner, $contact
1188 public static function deliver($owner, $contact, $atom, $dissolve = false)
1190 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
1192 if ($contact['duplex'] && $contact['dfrn-id']) {
1193 $idtosend = '0:' . $orig_id;
1195 if ($contact['duplex'] && $contact['issued-id']) {
1196 $idtosend = '1:' . $orig_id;
1199 $rino = DI::config()->get('system', 'rino_encrypt');
1200 $rino = intval($rino);
1202 Logger::log("Local rino version: ". $rino, Logger::DEBUG);
1204 $ssl_val = intval(DI::config()->get('system', 'ssl_policy'));
1207 case BaseURL::SSL_POLICY_FULL:
1208 $ssl_policy = 'full';
1210 case BaseURL::SSL_POLICY_SELFSIGN:
1211 $ssl_policy = 'self';
1213 case BaseURL::SSL_POLICY_NONE:
1215 $ssl_policy = 'none';
1219 $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino='.$rino : '');
1221 Logger::log('dfrn_deliver: ' . $url);
1223 $curlResult = Network::curl($url);
1225 if ($curlResult->isTimeout()) {
1226 return -2; // timed out
1229 $xml = $curlResult->getBody();
1231 $curl_stat = $curlResult->getReturnCode();
1232 if (empty($curl_stat)) {
1233 return -3; // timed out
1236 Logger::log('dfrn_deliver: ' . $xml, Logger::DATA);
1242 if (strpos($xml, '<?xml') === false) {
1243 Logger::log('dfrn_deliver: no valid XML returned');
1244 Logger::log('dfrn_deliver: returned XML: ' . $xml, Logger::DATA);
1248 $res = XML::parseString($xml);
1250 if (!is_object($res) || (intval($res->status) != 0) || !strlen($res->challenge) || !strlen($res->dfrn_id)) {
1251 if (empty($res->status)) {
1254 $status = $res->status;
1261 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
1262 $challenge = hex2bin((string) $res->challenge);
1263 $perm = (($res->perm) ? $res->perm : null);
1264 $dfrn_version = floatval($res->dfrn_version ?: 2.0);
1265 $rino_remote_version = intval($res->rino);
1266 $page = (($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? 1 : 0);
1268 Logger::log("Remote rino version: ".$rino_remote_version." for ".$contact["url"], Logger::DEBUG);
1270 if ($owner['page-flags'] == User::PAGE_FLAGS_PRVGROUP) {
1274 $final_dfrn_id = '';
1277 if ((($perm == 'rw') && !intval($contact['writable']))
1278 || (($perm == 'r') && intval($contact['writable']))
1280 DBA::update('contact', ['writable' => ($perm == 'rw')], ['id' => $contact['id']]);
1282 $contact['writable'] = (string) 1 - intval($contact['writable']);
1286 if (($contact['duplex'] && strlen($contact['pubkey']))
1287 || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1288 || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1290 openssl_public_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['pubkey']);
1291 openssl_public_decrypt($challenge, $postvars['challenge'], $contact['pubkey']);
1293 openssl_private_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['prvkey']);
1294 openssl_private_decrypt($challenge, $postvars['challenge'], $contact['prvkey']);
1297 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
1299 if (strpos($final_dfrn_id, ':') == 1) {
1300 $final_dfrn_id = substr($final_dfrn_id, 2);
1303 if ($final_dfrn_id != $orig_id) {
1304 Logger::log('dfrn_deliver: wrong dfrn_id.');
1305 // did not decode properly - cannot trust this site
1309 $postvars['dfrn_id'] = $idtosend;
1310 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
1312 $postvars['dissolve'] = '1';
1315 if ((($contact['rel']) && ($contact['rel'] != Contact::SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1316 $postvars['data'] = $atom;
1317 $postvars['perm'] = 'rw';
1319 $postvars['data'] = str_replace('<dfrn:comment-allow>1', '<dfrn:comment-allow>0', $atom);
1320 $postvars['perm'] = 'r';
1323 $postvars['ssl_policy'] = $ssl_policy;
1326 $postvars['page'] = $page;
1330 if ($rino > 0 && $rino_remote_version > 0 && (! $dissolve)) {
1331 Logger::log('rino version: '. $rino_remote_version);
1333 switch ($rino_remote_version) {
1335 $key = openssl_random_pseudo_bytes(16);
1336 $data = self::aesEncrypt($postvars['data'], $key);
1340 Logger::log("rino: invalid requested version '$rino_remote_version'");
1344 $postvars['rino'] = $rino_remote_version;
1345 $postvars['data'] = bin2hex($data);
1347 if ($dfrn_version >= 2.1) {
1348 if (($contact['duplex'] && strlen($contact['pubkey']))
1349 || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY && strlen($contact['pubkey']))
1350 || ($contact['rel'] == Contact::SHARING && strlen($contact['pubkey']))
1352 openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1354 openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1357 if (($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
1358 openssl_private_encrypt($key, $postvars['key'], $contact['prvkey']);
1360 openssl_public_encrypt($key, $postvars['key'], $contact['pubkey']);
1364 Logger::log('md5 rawkey ' . md5($postvars['key']));
1366 $postvars['key'] = bin2hex($postvars['key']);
1370 Logger::log('dfrn_deliver: ' . "SENDING: " . print_r($postvars, true), Logger::DATA);
1372 $postResult = Network::post($contact['notify'], $postvars);
1374 $xml = $postResult->getBody();
1376 Logger::log('dfrn_deliver: ' . "RECEIVED: " . $xml, Logger::DATA);
1378 $curl_stat = $postResult->getReturnCode();
1379 if (empty($curl_stat) || empty($xml)) {
1380 return -9; // timed out
1383 if (($curl_stat == 503) && stristr($postResult->getHeader(), 'retry-after')) {
1387 if (strpos($xml, '<?xml') === false) {
1388 Logger::log('dfrn_deliver: phase 2: no valid XML returned');
1389 Logger::log('dfrn_deliver: phase 2: returned XML: ' . $xml, Logger::DATA);
1393 $res = XML::parseString($xml);
1395 if (!isset($res->status)) {
1399 // Possibly old servers had returned an empty value when everything was okay
1400 if (empty($res->status)) {
1404 if (!empty($res->message)) {
1405 Logger::log('Delivery returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1408 return intval($res->status);
1412 * Transmits atom content to the contacts via the Diaspora transport layer
1414 * @param array $owner Owner record
1415 * @param array $contact Contact record of the receiver
1416 * @param string $atom Content that will be transmitted
1418 * @param bool $public_batch
1419 * @return int Deliver status. Negative values mean an error.
1420 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1421 * @throws \ImagickException
1423 public static function transmit($owner, $contact, $atom, $public_batch = false)
1425 if (!$public_batch) {
1426 if (empty($contact['addr'])) {
1427 Logger::log('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.');
1428 if (Contact::updateFromProbe($contact['id'])) {
1429 $new_contact = DBA::selectFirst('contact', ['addr'], ['id' => $contact['id']]);
1430 $contact['addr'] = $new_contact['addr'];
1433 if (empty($contact['addr'])) {
1434 Logger::log('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
1439 $fcontact = Diaspora::personByHandle($contact['addr']);
1440 if (empty($fcontact)) {
1441 Logger::log('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
1444 $pubkey = $fcontact['pubkey'];
1449 $envelope = Diaspora::buildMessage($atom, $owner, $contact, $owner['uprvkey'], $pubkey, $public_batch);
1451 // Create the endpoint for public posts. This is some WIP and should later be added to the probing
1452 if ($public_batch && empty($contact["batch"])) {
1453 $parts = parse_url($contact["notify"]);
1454 $path_parts = explode('/', $parts['path']);
1455 array_pop($path_parts);
1456 $parts['path'] = implode('/', $path_parts);
1457 $contact["batch"] = Network::unparseURL($parts);
1460 $dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
1462 if (empty($dest_url)) {
1463 Logger::info('Empty destination', ['public' => $public_batch, 'contact' => $contact]);
1467 $content_type = ($public_batch ? "application/magic-envelope+xml" : "application/json");
1469 $postResult = Network::post($dest_url, $envelope, ["Content-Type: ".$content_type]);
1470 $xml = $postResult->getBody();
1472 $curl_stat = $postResult->getReturnCode();
1473 if (empty($curl_stat) || empty($xml)) {
1474 Logger::log('Empty answer from ' . $contact['id'] . ' - ' . $dest_url);
1475 return -9; // timed out
1478 if (($curl_stat == 503) && (stristr($postResult->getHeader(), 'retry-after'))) {
1482 if (strpos($xml, '<?xml') === false) {
1483 Logger::log('No valid XML returned from ' . $contact['id'] . ' - ' . $dest_url);
1484 Logger::log('Returned XML: ' . $xml, Logger::DATA);
1488 $res = XML::parseString($xml);
1490 if (empty($res->status)) {
1494 if (!empty($res->message)) {
1495 Logger::log('Transmit to ' . $dest_url . ' returned status '.$res->status.' - '.$res->message, Logger::DEBUG);
1498 return intval($res->status);
1502 * Fetch the author data from head or entry items
1504 * @param object $xpath XPath object
1505 * @param object $context In which context should the data be searched
1506 * @param array $importer Record of the importer user mixed with contact of the content
1507 * @param string $element Element name from which the data is fetched
1508 * @param bool $onlyfetch Should the data only be fetched or should it update the contact record as well
1509 * @param string $xml optional, default empty
1511 * @return array Relevant data of the author
1512 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1513 * @throws \ImagickException
1514 * @todo Find good type-hints for all parameter
1516 private static function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "")
1519 $author["name"] = XML::getFirstNodeValue($xpath, $element."/atom:name/text()", $context);
1520 $author["link"] = XML::getFirstNodeValue($xpath, $element."/atom:uri/text()", $context);
1522 $fields = ['id', 'uid', 'url', 'network', 'avatar-date', 'avatar', 'name-date', 'uri-date', 'addr',
1523 'name', 'nick', 'about', 'location', 'keywords', 'xmpp', 'bdyear', 'bd', 'hidden', 'contact-type'];
1524 $condition = ["`uid` = ? AND `nurl` = ? AND `network` != ?",
1525 $importer["importer_uid"], Strings::normaliseLink($author["link"]), Protocol::STATUSNET];
1526 $contact_old = DBA::selectFirst('contact', $fields, $condition);
1528 if (DBA::isResult($contact_old)) {
1529 $author["contact-id"] = $contact_old["id"];
1530 $author["network"] = $contact_old["network"];
1533 Logger::debug("Contact ".$author["link"]." wasn't found for user ".$importer["importer_uid"]." XML: ".$xml);
1536 $author["contact-unknown"] = true;
1537 $author["contact-id"] = $importer["id"];
1538 $author["network"] = $importer["network"];
1542 // Until now we aren't serving different sizes - but maybe later
1544 /// @todo check if "avatar" or "photo" would be the best field in the specification
1545 $avatars = $xpath->query($element . "/atom:link[@rel='avatar']", $context);
1546 foreach ($avatars as $avatar) {
1549 foreach ($avatar->attributes as $attributes) {
1550 /// @TODO Rewrite these similar if() to one switch
1551 if ($attributes->name == "href") {
1552 $href = $attributes->textContent;
1554 if ($attributes->name == "width") {
1555 $width = $attributes->textContent;
1557 if ($attributes->name == "updated") {
1558 $author["avatar-date"] = $attributes->textContent;
1561 if (($width > 0) && ($href != "")) {
1562 $avatarlist[$width] = $href;
1566 if (count($avatarlist) > 0) {
1567 krsort($avatarlist);
1568 $author["avatar"] = current($avatarlist);
1571 if (empty($author['avatar']) && !empty($author['link'])) {
1572 $cid = Contact::getIdForURL($author['link'], 0);
1574 $contact = DBA::selectFirst('contact', ['avatar'], ['id' => $cid]);
1575 if (DBA::isResult($contact)) {
1576 $author['avatar'] = $contact['avatar'];
1581 if (empty($author['avatar'])) {
1582 Logger::log('Empty author: ' . $xml);
1583 $author['avatar'] = '';
1586 if (DBA::isResult($contact_old) && !$onlyfetch) {
1587 Logger::log("Check if contact details for contact " . $contact_old["id"] . " (" . $contact_old["nick"] . ") have to be updated.", Logger::DEBUG);
1589 $poco = ["url" => $contact_old["url"]];
1591 // When was the last change to name or uri?
1592 $name_element = $xpath->query($element . "/atom:name", $context)->item(0);
1593 foreach ($name_element->attributes as $attributes) {
1594 if ($attributes->name == "updated") {
1595 $poco["name-date"] = $attributes->textContent;
1599 $link_element = $xpath->query($element . "/atom:link", $context)->item(0);
1600 foreach ($link_element->attributes as $attributes) {
1601 if ($attributes->name == "updated") {
1602 $poco["uri-date"] = $attributes->textContent;
1606 // Update contact data
1607 $value = XML::getFirstNodeValue($xpath, $element . "/dfrn:handle/text()", $context);
1609 $poco["addr"] = $value;
1612 $value = XML::getFirstNodeValue($xpath, $element . "/poco:displayName/text()", $context);
1614 $poco["name"] = $value;
1617 $value = XML::getFirstNodeValue($xpath, $element . "/poco:preferredUsername/text()", $context);
1619 $poco["nick"] = $value;
1622 $value = XML::getFirstNodeValue($xpath, $element . "/poco:note/text()", $context);
1624 $poco["about"] = $value;
1627 $value = XML::getFirstNodeValue($xpath, $element . "/poco:address/poco:formatted/text()", $context);
1629 $poco["location"] = $value;
1632 /// @todo Only search for elements with "poco:type" = "xmpp"
1633 $value = XML::getFirstNodeValue($xpath, $element . "/poco:ims/poco:value/text()", $context);
1635 $poco["xmpp"] = $value;
1638 /// @todo Add support for the following fields that we don't support by now in the contact table:
1639 /// - poco:utcOffset
1645 // If the "hide" element is present then the profile isn't searchable.
1646 $hide = intval(XML::getFirstNodeValue($xpath, $element . "/dfrn:hide/text()", $context) == "true");
1648 Logger::log("Hidden status for contact " . $contact_old["url"] . ": " . $hide, Logger::DEBUG);
1650 // If the contact isn't searchable then set the contact to "hidden".
1651 // Problem: This can be manually overridden by the user.
1653 $contact_old["hidden"] = true;
1656 // Save the keywords into the contact table
1658 $tagelements = $xpath->evaluate($element . "/poco:tags/text()", $context);
1659 foreach ($tagelements as $tag) {
1660 $tags[$tag->nodeValue] = $tag->nodeValue;
1664 $poco["keywords"] = implode(", ", $tags);
1667 // "dfrn:birthday" contains the birthday converted to UTC
1668 $birthday = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1670 if (strtotime($birthday) > time()) {
1671 $bd_timestamp = strtotime($birthday);
1673 $poco["bdyear"] = date("Y", $bd_timestamp);
1676 // "poco:birthday" is the birthday in the format "yyyy-mm-dd"
1677 $value = XML::getFirstNodeValue($xpath, $element . "/poco:birthday/text()", $context);
1679 if (!in_array($value, ["", "0000-00-00", DBA::NULL_DATE])) {
1680 $bdyear = date("Y");
1681 $value = str_replace(["0000", "0001"], $bdyear, $value);
1683 if (strtotime($value) < time()) {
1684 $value = str_replace($bdyear, $bdyear + 1, $value);
1687 $poco["bd"] = $value;
1690 $contact = array_merge($contact_old, $poco);
1692 if ($contact_old["bdyear"] != $contact["bdyear"]) {
1693 Event::createBirthday($contact, $birthday);
1696 $fields = ['name' => $contact['name'], 'nick' => $contact['nick'], 'about' => $contact['about'],
1697 'location' => $contact['location'], 'addr' => $contact['addr'], 'keywords' => $contact['keywords'],
1698 'bdyear' => $contact['bdyear'], 'bd' => $contact['bd'], 'hidden' => $contact['hidden'],
1699 'xmpp' => $contact['xmpp'], 'name-date' => DateTimeFormat::utc($contact['name-date']),
1700 'unsearchable' => $contact['hidden'], 'uri-date' => DateTimeFormat::utc($contact['uri-date'])];
1702 DBA::update('contact', $fields, ['id' => $contact['id'], 'network' => $contact['network']], $contact_old);
1704 // Update the public contact. Don't set the "hidden" value, this is used differently for public contacts
1705 unset($fields['hidden']);
1706 $condition = ['uid' => 0, 'nurl' => Strings::normaliseLink($contact_old['url'])];
1707 DBA::update('contact', $fields, $condition, true);
1709 Contact::updateAvatar($author['avatar'], $importer['importer_uid'], $contact['id']);
1711 $pcid = Contact::getIdForURL($contact_old['url']);
1712 if (!empty($pcid)) {
1713 Contact::updateAvatar($author['avatar'], 0, $pcid);
1717 * The generation is a sign for the reliability of the provided data.
1718 * It is used in the socgraph.php to prevent that old contact data
1719 * that was relayed over several servers can overwrite contact
1720 * data that we received directly.
1723 $poco["generation"] = 2;
1724 $poco["photo"] = $author["avatar"];
1725 $poco["hide"] = $hide;
1726 $poco["contact-type"] = $contact["contact-type"];
1727 $gcid = GContact::update($poco);
1729 GContact::link($gcid, $importer["importer_uid"], $contact["id"]);
1736 * Transforms activity objects into an XML string
1738 * @param object $xpath XPath object
1739 * @param object $activity Activity object
1740 * @param string $element element name
1742 * @return string XML string
1743 * @todo Find good type-hints for all parameter
1745 private static function transformActivity($xpath, $activity, $element)
1747 if (!is_object($activity)) {
1751 $obj_doc = new DOMDocument("1.0", "utf-8");
1752 $obj_doc->formatOutput = true;
1754 $obj_element = $obj_doc->createElementNS( ActivityNamespace::ATOM1, $element);
1756 $activity_type = $xpath->query("activity:object-type/text()", $activity)->item(0)->nodeValue;
1757 XML::addElement($obj_doc, $obj_element, "type", $activity_type);
1759 $id = $xpath->query("atom:id", $activity)->item(0);
1760 if (is_object($id)) {
1761 $obj_element->appendChild($obj_doc->importNode($id, true));
1764 $title = $xpath->query("atom:title", $activity)->item(0);
1765 if (is_object($title)) {
1766 $obj_element->appendChild($obj_doc->importNode($title, true));
1769 $links = $xpath->query("atom:link", $activity);
1770 if (is_object($links)) {
1771 foreach ($links as $link) {
1772 $obj_element->appendChild($obj_doc->importNode($link, true));
1776 $content = $xpath->query("atom:content", $activity)->item(0);
1777 if (is_object($content)) {
1778 $obj_element->appendChild($obj_doc->importNode($content, true));
1781 $obj_doc->appendChild($obj_element);
1783 $objxml = $obj_doc->saveXML($obj_element);
1785 /// @todo This isn't totally clean. We should find a way to transform the namespaces
1786 $objxml = str_replace("<".$element.' xmlns="http://www.w3.org/2005/Atom">', "<".$element.">", $objxml);
1791 * Processes the mail elements
1793 * @param object $xpath XPath object
1794 * @param object $mail mail elements
1795 * @param array $importer Record of the importer user mixed with contact of the content
1797 * @throws \Exception
1798 * @todo Find good type-hints for all parameter
1800 private static function processMail($xpath, $mail, $importer)
1802 Logger::log("Processing mails");
1805 $msg["uid"] = $importer["importer_uid"];
1806 $msg["from-name"] = $xpath->query("dfrn:sender/dfrn:name/text()", $mail)->item(0)->nodeValue;
1807 $msg["from-url"] = $xpath->query("dfrn:sender/dfrn:uri/text()", $mail)->item(0)->nodeValue;
1808 $msg["from-photo"] = $xpath->query("dfrn:sender/dfrn:avatar/text()", $mail)->item(0)->nodeValue;
1809 $msg["contact-id"] = $importer["id"];
1810 $msg["uri"] = $xpath->query("dfrn:id/text()", $mail)->item(0)->nodeValue;
1811 $msg["parent-uri"] = $xpath->query("dfrn:in-reply-to/text()", $mail)->item(0)->nodeValue;
1812 $msg["created"] = DateTimeFormat::utc($xpath->query("dfrn:sentdate/text()", $mail)->item(0)->nodeValue);
1813 $msg["title"] = $xpath->query("dfrn:subject/text()", $mail)->item(0)->nodeValue;
1814 $msg["body"] = $xpath->query("dfrn:content/text()", $mail)->item(0)->nodeValue;
1820 * Processes the suggestion elements
1822 * @param object $xpath XPath object
1823 * @param object $suggestion suggestion elements
1824 * @param array $importer Record of the importer user mixed with contact of the content
1826 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1827 * @todo Find good type-hints for all parameter
1829 private static function processSuggestion($xpath, $suggestion, $importer)
1831 Logger::log('Processing suggestions');
1833 /// @TODO Rewrite this to one statement
1835 $suggest['uid'] = $importer['importer_uid'];
1836 $suggest['cid'] = $importer['id'];
1837 $suggest['url'] = $xpath->query('dfrn:url/text()', $suggestion)->item(0)->nodeValue;
1838 $suggest['name'] = $xpath->query('dfrn:name/text()', $suggestion)->item(0)->nodeValue;
1839 $suggest['photo'] = $xpath->query('dfrn:photo/text()', $suggestion)->item(0)->nodeValue;
1840 $suggest['request'] = $xpath->query('dfrn:request/text()', $suggestion)->item(0)->nodeValue;
1841 $suggest['body'] = $xpath->query('dfrn:note/text()', $suggestion)->item(0)->nodeValue;
1843 // Does our member already have a friend matching this description?
1846 * The valid result means the friend we're about to send a friend
1847 * suggestion already has them in their contact, which means no further
1848 * action is required.
1850 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1852 $condition = ['nurl' => Strings::normaliseLink($suggest['url']), 'uid' => $suggest['uid']];
1853 if (DBA::exists('contact', $condition)) {
1856 // Do we already have an fcontact record for this person?
1859 $fcontact = DBA::selectFirst('fcontact', ['id'], ['url' => $suggest['url']]);
1860 if (DBA::isResult($fcontact)) {
1861 $fid = $fcontact['id'];
1863 // OK, we do. Do we already have an introduction for this person?
1864 if (DBA::exists('intro', ['uid' => $suggest['uid'], 'fid' => $fid])) {
1866 * The valid result means the friend we're about to send a friend
1867 * suggestion already has them in their contact, which means no further
1868 * action is required.
1870 * @see https://github.com/friendica/friendica/pull/3254#discussion_r107315246
1877 $fields = ['name' => $suggest['name'], 'url' => $suggest['url'],
1878 'photo' => $suggest['photo'], 'request' => $suggest['request']];
1879 DBA::insert('fcontact', $fields);
1880 $fid = DBA::lastInsertId();
1884 * If no record in fcontact is found, below INSERT statement will not
1885 * link an introduction to it.
1888 // Database record did not get created. Quietly give up.
1892 $hash = Strings::getRandomHex();
1894 $fields = ['uid' => $suggest['uid'], 'fid' => $fid, 'contact-id' => $suggest['cid'],
1895 'note' => $suggest['body'], 'hash' => $hash, 'datetime' => DateTimeFormat::utcNow(), 'blocked' => false];
1896 DBA::insert('intro', $fields);
1900 'type' => Type::SUGGEST,
1901 'notify_flags' => $importer['notify-flags'],
1902 'language' => $importer['language'],
1903 'to_name' => $importer['username'],
1904 'to_email' => $importer['email'],
1905 'uid' => $importer['importer_uid'],
1907 'link' => DI::baseUrl().'/notifications/intros',
1908 'source_name' => $importer['name'],
1909 'source_link' => $importer['url'],
1910 'source_photo' => $importer['photo'],
1911 'verb' => Activity::REQ_FRIEND,
1919 * Processes the relocation elements
1921 * @param object $xpath XPath object
1922 * @param object $relocation relocation elements
1923 * @param array $importer Record of the importer user mixed with contact of the content
1925 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1926 * @throws \ImagickException
1927 * @todo Find good type-hints for all parameter
1929 private static function processRelocation($xpath, $relocation, $importer)
1931 Logger::log("Processing relocations");
1933 /// @TODO Rewrite this to one statement
1935 $relocate["uid"] = $importer["importer_uid"];
1936 $relocate["cid"] = $importer["id"];
1937 $relocate["url"] = $xpath->query("dfrn:url/text()", $relocation)->item(0)->nodeValue;
1938 $relocate["addr"] = $xpath->query("dfrn:addr/text()", $relocation)->item(0)->nodeValue;
1939 $relocate["name"] = $xpath->query("dfrn:name/text()", $relocation)->item(0)->nodeValue;
1940 $relocate["avatar"] = $xpath->query("dfrn:avatar/text()", $relocation)->item(0)->nodeValue;
1941 $relocate["photo"] = $xpath->query("dfrn:photo/text()", $relocation)->item(0)->nodeValue;
1942 $relocate["thumb"] = $xpath->query("dfrn:thumb/text()", $relocation)->item(0)->nodeValue;
1943 $relocate["micro"] = $xpath->query("dfrn:micro/text()", $relocation)->item(0)->nodeValue;
1944 $relocate["request"] = $xpath->query("dfrn:request/text()", $relocation)->item(0)->nodeValue;
1945 $relocate["confirm"] = $xpath->query("dfrn:confirm/text()", $relocation)->item(0)->nodeValue;
1946 $relocate["notify"] = $xpath->query("dfrn:notify/text()", $relocation)->item(0)->nodeValue;
1947 $relocate["poll"] = $xpath->query("dfrn:poll/text()", $relocation)->item(0)->nodeValue;
1948 $relocate["sitepubkey"] = $xpath->query("dfrn:sitepubkey/text()", $relocation)->item(0)->nodeValue;
1950 if (($relocate["avatar"] == "") && ($relocate["photo"] != "")) {
1951 $relocate["avatar"] = $relocate["photo"];
1954 if ($relocate["addr"] == "") {
1955 $relocate["addr"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$3@$2", $relocate["url"]);
1960 "SELECT `photo`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d",
1961 intval($importer["id"]),
1962 intval($importer["importer_uid"])
1965 if (!DBA::isResult($r)) {
1966 Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
1972 // Update the gcontact entry
1973 $relocate["server_url"] = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $relocate["url"]);
1975 $fields = ['name' => $relocate["name"], 'photo' => $relocate["avatar"],
1976 'url' => $relocate["url"], 'nurl' => Strings::normaliseLink($relocate["url"]),
1977 'addr' => $relocate["addr"], 'connect' => $relocate["addr"],
1978 'notify' => $relocate["notify"], 'server_url' => $relocate["server_url"]];
1979 DBA::update('gcontact', $fields, ['nurl' => Strings::normaliseLink($old["url"])]);
1981 // Update the contact table. We try to find every entry.
1982 $fields = ['name' => $relocate["name"], 'avatar' => $relocate["avatar"],
1983 'url' => $relocate["url"], 'nurl' => Strings::normaliseLink($relocate["url"]),
1984 'addr' => $relocate["addr"], 'request' => $relocate["request"],
1985 'confirm' => $relocate["confirm"], 'notify' => $relocate["notify"],
1986 'poll' => $relocate["poll"], 'site-pubkey' => $relocate["sitepubkey"]];
1987 $condition = ["(`id` = ?) OR (`nurl` = ?)", $importer["id"], Strings::normaliseLink($old["url"])];
1989 DBA::update('contact', $fields, $condition);
1991 Contact::updateAvatar($relocate["avatar"], $importer["importer_uid"], $importer["id"], true);
1993 Logger::log('Contacts are updated.');
1996 /// merge with current record, current contents have priority
1997 /// update record, set url-updated
1998 /// update profile photos
1999 /// schedule a scan?
2006 * @param array $current the current item record
2007 * @param array $item the new item record
2008 * @param array $importer Record of the importer user mixed with contact of the content
2009 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
2011 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2012 * @todo set proper type-hints (array?)
2014 private static function updateContent($current, $item, $importer, $entrytype)
2018 if (self::isEditedTimestampNewer($current, $item)) {
2019 // do not accept (ignore) an earlier edit than one we currently have.
2020 if (DateTimeFormat::utc($item["edited"]) < $current["edited"]) {
2024 $fields = ['title' => $item['title'] ?? '', 'body' => $item['body'] ?? '',
2025 'tag' => $item['tag'] ?? '', 'changed' => DateTimeFormat::utcNow(),
2026 'edited' => DateTimeFormat::utc($item["edited"])];
2028 $condition = ["`uri` = ? AND `uid` IN (0, ?)", $item["uri"], $importer["importer_uid"]];
2029 Item::update($fields, $condition);
2037 * Detects the entry type of the item
2039 * @param array $importer Record of the importer user mixed with contact of the content
2040 * @param array $item the new item record
2042 * @return int Is it a toplevel entry, a comment or a relayed comment?
2043 * @throws \Exception
2044 * @todo set proper type-hints (array?)
2046 private static function getEntryType($importer, $item)
2048 if ($item["parent-uri"] != $item["uri"]) {
2051 if ($importer["page-flags"] == User::PAGE_FLAGS_COMMUNITY || $importer["page-flags"] == User::PAGE_FLAGS_PRVGROUP) {
2054 Logger::log("possible community action");
2056 $sql_extra = " AND `contact`.`self` AND `item`.`wall` ";
2059 // was the top-level post for this action written by somebody on this site?
2060 // Specifically, the recipient?
2062 $is_a_remote_action = false;
2064 $parent = Item::selectFirst(['parent-uri'], ['uri' => $item["parent-uri"]]);
2065 if (DBA::isResult($parent)) {
2067 "SELECT `item`.`forum_mode`, `item`.`wall` FROM `item`
2068 INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
2069 WHERE `item`.`uri` = '%s' AND (`item`.`parent-uri` = '%s' OR `item`.`thr-parent` = '%s')
2070 AND `item`.`uid` = %d
2073 DBA::escape($parent["parent-uri"]),
2074 DBA::escape($parent["parent-uri"]),
2075 DBA::escape($parent["parent-uri"]),
2076 intval($importer["importer_uid"])
2078 if (DBA::isResult($r)) {
2079 $is_a_remote_action = true;
2084 * Does this have the characteristics of a community or private group action?
2085 * If it's an action to a wall post on a community/prvgroup page it's a
2086 * valid community action. Also forum_mode makes it valid for sure.
2087 * If neither, it's not.
2089 if ($is_a_remote_action && $community && (!$r[0]["forum_mode"]) && (!$r[0]["wall"])) {
2090 $is_a_remote_action = false;
2091 Logger::log("not a community action");
2094 if ($is_a_remote_action) {
2095 return DFRN::REPLY_RC;
2100 return DFRN::TOP_LEVEL;
2107 * @param array $item The new item record
2108 * @param array $importer Record of the importer user mixed with contact of the content
2110 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2111 * @todo set proper type-hints (array?)
2113 private static function doPoke(array $item, array $importer)
2115 $verb = urldecode(substr($item["verb"], strpos($item["verb"], "#")+1));
2119 $xo = XML::parseString($item["object"], false);
2121 if (($xo->type == Activity\ObjectType::PERSON) && ($xo->id)) {
2122 // somebody was poked/prodded. Was it me?
2124 foreach ($xo->link as $l) {
2125 $atts = $l->attributes();
2126 switch ($atts["rel"]) {
2128 $Blink = $atts["href"];
2135 if ($Blink && Strings::compareLink($Blink, DI::baseUrl() . "/profile/" . $importer["nickname"])) {
2136 $author = DBA::selectFirst('contact', ['name', 'thumb', 'url'], ['id' => $item['author-id']]);
2138 $parent = Item::selectFirst(['id'], ['uri' => $item['parent-uri'], 'uid' => $importer["importer_uid"]]);
2139 $item["parent"] = $parent['id'];
2141 // send a notification
2144 "type" => Type::POKE,
2145 "notify_flags" => $importer["notify-flags"],
2146 "language" => $importer["language"],
2147 "to_name" => $importer["username"],
2148 "to_email" => $importer["email"],
2149 "uid" => $importer["importer_uid"],
2151 "link" => DI::baseUrl()."/display/".urlencode($item['guid']),
2152 "source_name" => $author["name"],
2153 "source_link" => $author["url"],
2154 "source_photo" => $author["thumb"],
2155 "verb" => $item["verb"],
2156 "otype" => "person",
2157 "activity" => $verb,
2158 "parent" => $item["parent"]]
2165 * Processes several actions, depending on the verb
2167 * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
2168 * @param array $importer Record of the importer user mixed with contact of the content
2169 * @param array $item the new item record
2170 * @param bool $is_like Is the verb a "like"?
2172 * @return bool Should the processing of the entries be continued?
2173 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2174 * @todo set proper type-hints (array?)
2176 private static function processVerbs($entrytype, $importer, &$item, &$is_like)
2178 Logger::log("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, Logger::DEBUG);
2180 if (($entrytype == DFRN::TOP_LEVEL) && !empty($importer['id'])) {
2181 // The filling of the the "contact" variable is done for legcy reasons
2182 // The functions below are partly used by ostatus.php as well - where we have this variable
2183 $contact = Contact::selectFirst([], ['id' => $importer['id']]);
2185 $activity = DI::activity();
2187 // Big question: Do we need these functions? They were part of the "consume_feed" function.
2188 // This function once was responsible for DFRN and OStatus.
2189 if ($activity->match($item["verb"], Activity::FOLLOW)) {
2190 Logger::log("New follower");
2191 Contact::addRelationship($importer, $contact, $item);
2194 if ($activity->match($item["verb"], Activity::UNFOLLOW)) {
2195 Logger::log("Lost follower");
2196 Contact::removeFollower($importer, $contact, $item);
2199 if ($activity->match($item["verb"], Activity::REQ_FRIEND)) {
2200 Logger::log("New friend request");
2201 Contact::addRelationship($importer, $contact, $item, true);
2204 if ($activity->match($item["verb"], Activity::UNFRIEND)) {
2205 Logger::log("Lost sharer");
2206 Contact::removeSharer($importer, $contact, $item);
2210 if (($item["verb"] == Activity::LIKE)
2211 || ($item["verb"] == Activity::DISLIKE)
2212 || ($item["verb"] == Activity::ATTEND)
2213 || ($item["verb"] == Activity::ATTENDNO)
2214 || ($item["verb"] == Activity::ATTENDMAYBE)
2217 $item["gravity"] = GRAVITY_ACTIVITY;
2218 // only one like or dislike per person
2219 // splitted into two queries for performance issues
2220 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2221 'verb' => $item["verb"], 'parent-uri' => $item["parent-uri"]];
2222 if (Item::exists($condition)) {
2226 $condition = ['uid' => $item["uid"], 'author-id' => $item["author-id"], 'gravity' => GRAVITY_ACTIVITY,
2227 'verb' => $item["verb"], 'thr-parent' => $item["parent-uri"]];
2228 if (Item::exists($condition)) {
2232 // The owner of an activity must be the author
2233 $item["owner-name"] = $item["author-name"];
2234 $item["owner-link"] = $item["author-link"];
2235 $item["owner-avatar"] = $item["author-avatar"];
2236 $item["owner-id"] = $item["author-id"];
2241 if (($item["verb"] == Activity::TAG) && ($item["object-type"] == Activity\ObjectType::TAGTERM)) {
2242 $xo = XML::parseString($item["object"], false);
2243 $xt = XML::parseString($item["target"], false);
2245 if ($xt->type == Activity\ObjectType::NOTE) {
2246 $item_tag = Item::selectFirst(['id', 'tag'], ['uri' => $xt->id, 'uid' => $importer["importer_uid"]]);
2248 if (!DBA::isResult($item_tag)) {
2249 Logger::log("Query failed to execute, no result returned in " . __FUNCTION__);
2253 // extract tag, if not duplicate, add to parent item
2255 if (!stristr($item_tag["tag"], trim($xo->content))) {
2256 $tag = $item_tag["tag"] . (strlen($item_tag["tag"]) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
2257 Item::update(['tag' => $tag], ['id' => $item_tag["id"]]);
2267 * Processes the link elements
2269 * @param object $links link elements
2270 * @param array $item the item record
2272 * @todo set proper type-hints
2274 private static function parseLinks($links, &$item)
2281 foreach ($links as $link) {
2282 foreach ($link->attributes as $attributes) {
2283 switch ($attributes->name) {
2284 case "href" : $href = $attributes->textContent; break;
2285 case "rel" : $rel = $attributes->textContent; break;
2286 case "type" : $type = $attributes->textContent; break;
2287 case "length": $length = $attributes->textContent; break;
2288 case "title" : $title = $attributes->textContent; break;
2291 if (($rel != "") && ($href != "")) {
2294 $item["plink"] = $href;
2297 if (!empty($item["attach"])) {
2298 $item["attach"] .= ",";
2300 $item["attach"] = "";
2303 $item["attach"] .= '[attach]href="' . $href . '" length="' . $length . '" type="' . $type . '" title="' . $title . '"[/attach]';
2311 * Processes the entry elements which contain the items and comments
2313 * @param array $header Array of the header elements that always stay the same
2314 * @param object $xpath XPath object
2315 * @param object $entry entry elements
2316 * @param array $importer Record of the importer user mixed with contact of the content
2317 * @param string $xml xml
2319 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2320 * @throws \ImagickException
2321 * @todo Add type-hints
2323 private static function processEntry($header, $xpath, $entry, $importer, $xml)
2325 Logger::log("Processing entries");
2329 $item["protocol"] = Conversation::PARCEL_DFRN;
2331 $item["source"] = $xml;
2334 $item["uri"] = XML::getFirstNodeValue($xpath, "atom:id/text()", $entry);
2336 $item["edited"] = XML::getFirstNodeValue($xpath, "atom:updated/text()", $entry);
2338 $current = Item::selectFirst(['id', 'uid', 'edited', 'body'],
2339 ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]]
2341 // Is there an existing item?
2342 if (DBA::isResult($current) && !self::isEditedTimestampNewer($current, $item)) {
2343 Logger::log("Item ".$item["uri"]." (".$item['edited'].") already existed.", Logger::DEBUG);
2348 $owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true, $xml);
2350 $owner_unknown = (isset($owner["contact-unknown"]) && $owner["contact-unknown"]);
2352 $item["owner-name"] = $owner["name"];
2353 $item["owner-link"] = $owner["link"];
2354 $item["owner-avatar"] = $owner["avatar"];
2355 $item["owner-id"] = Contact::getIdForURL($owner["link"], 0);
2358 $author = self::fetchauthor($xpath, $entry, $importer, "atom:author", true, $xml);
2360 $item["author-name"] = $author["name"];
2361 $item["author-link"] = $author["link"];
2362 $item["author-avatar"] = $author["avatar"];
2363 $item["author-id"] = Contact::getIdForURL($author["link"], 0);
2365 $item["title"] = XML::getFirstNodeValue($xpath, "atom:title/text()", $entry);
2367 $item["created"] = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2369 $item["body"] = XML::getFirstNodeValue($xpath, "dfrn:env/text()", $entry);
2370 $item["body"] = str_replace([' ',"\t","\r","\n"], ['','','',''], $item["body"]);
2372 $item["body"] = Strings::base64UrlDecode($item["body"]);
2374 $item["body"] = BBCode::limitBodySize($item["body"]);
2376 /// @todo We should check for a repeated post and if we know the repeated author.
2378 // We don't need the content element since "dfrn:env" is always present
2379 //$item["body"] = $xpath->query("atom:content/text()", $entry)->item(0)->nodeValue;
2381 $item["location"] = XML::getFirstNodeValue($xpath, "dfrn:location/text()", $entry);
2383 $item["coord"] = XML::getFirstNodeValue($xpath, "georss:point", $entry);
2385 $item["private"] = XML::getFirstNodeValue($xpath, "dfrn:private/text()", $entry);
2387 $unlisted = XML::getFirstNodeValue($xpath, "dfrn:unlisted/text()", $entry);
2388 if (!empty($unlisted) && ($item['private'] != Item::PRIVATE)) {
2389 $item['private'] = Item::UNLISTED;
2392 $item["extid"] = XML::getFirstNodeValue($xpath, "dfrn:extid/text()", $entry);
2394 if (XML::getFirstNodeValue($xpath, "dfrn:bookmark/text()", $entry) == "true") {
2395 $item["post-type"] = Item::PT_PAGE;
2398 $notice_info = $xpath->query("statusnet:notice_info", $entry);
2399 if ($notice_info && ($notice_info->length > 0)) {
2400 foreach ($notice_info->item(0)->attributes as $attributes) {
2401 if ($attributes->name == "source") {
2402 $item["app"] = strip_tags($attributes->textContent);
2407 $item["guid"] = XML::getFirstNodeValue($xpath, "dfrn:diaspora_guid/text()", $entry);
2409 $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
2411 Tag::storeFromBody($item['uri-id'], $item["body"]);
2413 // We store the data from "dfrn:diaspora_signature" in a different table, this is done in "Item::insert"
2414 $dsprsig = XML::unescape(XML::getFirstNodeValue($xpath, "dfrn:diaspora_signature/text()", $entry));
2415 if ($dsprsig != "") {
2416 $item["dsprsig"] = $dsprsig;
2419 $item["verb"] = XML::getFirstNodeValue($xpath, "activity:verb/text()", $entry);
2421 if (XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry) != "") {
2422 $item["object-type"] = XML::getFirstNodeValue($xpath, "activity:object-type/text()", $entry);
2425 $object = $xpath->query("activity:object", $entry)->item(0);
2426 $item["object"] = self::transformActivity($xpath, $object, "object");
2428 if (trim($item["object"]) != "") {
2429 $r = XML::parseString($item["object"], false);
2430 if (isset($r->type)) {
2431 $item["object-type"] = $r->type;
2435 $target = $xpath->query("activity:target", $entry)->item(0);
2436 $item["target"] = self::transformActivity($xpath, $target, "target");
2438 $categories = $xpath->query("atom:category", $entry);
2440 foreach ($categories as $category) {
2443 foreach ($category->attributes as $attributes) {
2444 if ($attributes->name == "term") {
2445 $term = $attributes->textContent;
2448 if ($attributes->name == "scheme") {
2449 $scheme = $attributes->textContent;
2453 if (($term != "") && ($scheme != "")) {
2454 $parts = explode(":", $scheme);
2455 if ((count($parts) >= 4) && (array_shift($parts) == "X-DFRN")) {
2456 $termhash = array_shift($parts);
2457 $termurl = implode(":", $parts);
2459 if (!empty($item["tag"])) {
2460 $item["tag"] .= ",";
2465 $item["tag"] .= $termhash . "[url=" . $termurl . "]" . $term . "[/url]";
2467 // Store the hashtag/mention
2468 $fields = ['uri-id' => $item['uri-id'], 'name' => substr($term, 0, 64)];
2470 if ($termhash == Term::TAG_CHARACTER[Term::MENTION]) {
2471 $fields['type'] = Term::MENTION;
2472 } elseif ($termhash == Term::TAG_CHARACTER[Term::EXCLUSIVE_MENTION]) {
2473 $fields['type'] = Term::EXCLUSIVE_MENTION;
2474 } elseif ($termhash == Term::TAG_CHARACTER[Term::IMPLICIT_MENTION]) {
2475 $fields['type'] = Term::IMPLICIT_MENTION;
2476 } elseif ($termhash == Term::TAG_CHARACTER[Term::HASHTAG]) {
2477 $fields['type'] = Term::HASHTAG;
2480 if (!empty($termurl)) {
2481 $fields['url'] = $termurl;
2484 DBA::insert('tag', $fields, true);
2486 Logger::info('Stored tag/mention', ['uri-id' => $item['uri-id'], 'tag' => $term, 'url' => $termurl, 'hash' => $termhash, 'fields' => $fields]);
2492 $links = $xpath->query("atom:link", $entry);
2494 self::parseLinks($links, $item);
2497 $item['conversation-uri'] = XML::getFirstNodeValue($xpath, 'ostatus:conversation/text()', $entry);
2499 $conv = $xpath->query('ostatus:conversation', $entry);
2500 if (is_object($conv->item(0))) {
2501 foreach ($conv->item(0)->attributes as $attributes) {
2502 if ($attributes->name == "ref") {
2503 $item['conversation-uri'] = $attributes->textContent;
2505 if ($attributes->name == "href") {
2506 $item['conversation-href'] = $attributes->textContent;
2511 // Is it a reply or a top level posting?
2512 $item["parent-uri"] = $item["uri"];
2514 $inreplyto = $xpath->query("thr:in-reply-to", $entry);
2515 if (is_object($inreplyto->item(0))) {
2516 foreach ($inreplyto->item(0)->attributes as $attributes) {
2517 if ($attributes->name == "ref") {
2518 $item["parent-uri"] = $attributes->textContent;
2523 // Get the type of the item (Top level post, reply or remote reply)
2524 $entrytype = self::getEntryType($importer, $item);
2526 // Now assign the rest of the values that depend on the type of the message
2527 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2528 if (!isset($item["object-type"])) {
2529 $item["object-type"] = Activity\ObjectType::COMMENT;
2532 if ($item["contact-id"] != $owner["contact-id"]) {
2533 $item["contact-id"] = $owner["contact-id"];
2536 if (($item["network"] != $owner["network"]) && ($owner["network"] != "")) {
2537 $item["network"] = $owner["network"];
2540 if ($item["contact-id"] != $author["contact-id"]) {
2541 $item["contact-id"] = $author["contact-id"];
2544 if (($item["network"] != $author["network"]) && ($author["network"] != "")) {
2545 $item["network"] = $author["network"];
2549 // Ensure to have the correct share data
2550 $item = Item::addShareDataFromOriginal($item);
2552 if ($entrytype == DFRN::REPLY_RC) {
2554 } elseif ($entrytype == DFRN::TOP_LEVEL) {
2555 if (!isset($item["object-type"])) {
2556 $item["object-type"] = Activity\ObjectType::NOTE;
2560 if (($item["object-type"] == Activity\ObjectType::EVENT) && !$owner_unknown) {
2561 Logger::log("Item ".$item["uri"]." seems to contain an event.", Logger::DEBUG);
2562 $ev = Event::fromBBCode($item["body"]);
2563 if ((!empty($ev['desc']) || !empty($ev['summary'])) && !empty($ev['start'])) {
2564 Logger::log("Event in item ".$item["uri"]." was found.", Logger::DEBUG);
2565 $ev["cid"] = $importer["id"];
2566 $ev["uid"] = $importer["importer_uid"];
2567 $ev["uri"] = $item["uri"];
2568 $ev["edited"] = $item["edited"];
2569 $ev["private"] = $item["private"];
2570 $ev["guid"] = $item["guid"];
2571 $ev["plink"] = $item["plink"];
2573 $condition = ['uri' => $item["uri"], 'uid' => $importer["importer_uid"]];
2574 $event = DBA::selectFirst('event', ['id'], $condition);
2575 if (DBA::isResult($event)) {
2576 $ev["id"] = $event["id"];
2579 $event_id = Event::store($ev);
2580 Logger::log("Event ".$event_id." was stored", Logger::DEBUG);
2586 if (!self::processVerbs($entrytype, $importer, $item, $is_like)) {
2587 Logger::log("Exiting because 'processVerbs' told us so", Logger::DEBUG);
2591 // This check is done here to be able to receive connection requests in "processVerbs"
2592 if (($entrytype == DFRN::TOP_LEVEL) && $owner_unknown) {
2593 Logger::log("Item won't be stored because user " . $importer["importer_uid"] . " doesn't follow " . $item["owner-link"] . ".", Logger::DEBUG);
2598 // Update content if 'updated' changes
2599 if (DBA::isResult($current)) {
2600 if (self::updateContent($current, $item, $importer, $entrytype)) {
2601 Logger::log("Item ".$item["uri"]." was updated.", Logger::DEBUG);
2603 Logger::log("Item " . $item["uri"] . " already existed.", Logger::DEBUG);
2608 if (in_array($entrytype, [DFRN::REPLY, DFRN::REPLY_RC])) {
2609 $posted_id = Item::insert($item);
2611 Logger::log("Reply from contact ".$item["contact-id"]." was stored with id ".$posted_id, Logger::DEBUG);
2613 if ($item['uid'] == 0) {
2614 Item::distribute($posted_id);
2619 } else { // $entrytype == DFRN::TOP_LEVEL
2620 if (($importer["uid"] == 0) && ($importer["importer_uid"] != 0)) {
2621 Logger::log("Contact ".$importer["id"]." isn't known to user ".$importer["importer_uid"].". The post will be ignored.", Logger::DEBUG);
2624 if (!Strings::compareLink($item["owner-link"], $importer["url"])) {
2626 * The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
2627 * but otherwise there's a possible data mixup on the sender's system.
2628 * the tgroup delivery code called from Item::insert will correct it if it's a forum,
2629 * but we're going to unconditionally correct it here so that the post will always be owned by our contact.
2631 Logger::log('Correcting item owner.', Logger::DEBUG);
2632 $item["owner-link"] = $importer["url"];
2633 $item["owner-id"] = Contact::getIdForURL($importer["url"], 0);
2636 if (($importer["rel"] == Contact::FOLLOWER) && (!self::tgroupCheck($importer["importer_uid"], $item))) {
2637 Logger::log("Contact ".$importer["id"]." is only follower and tgroup check was negative.", Logger::DEBUG);
2641 // This is my contact on another system, but it's really me.
2642 // Turn this into a wall post.
2643 $notify = Item::isRemoteSelf($importer, $item);
2645 $posted_id = Item::insert($item, false, $notify);
2648 $posted_id = $notify;
2651 Logger::log("Item was stored with id ".$posted_id, Logger::DEBUG);
2653 if ($item['uid'] == 0) {
2654 Item::distribute($posted_id);
2657 if (stristr($item["verb"], Activity::POKE)) {
2658 $item['id'] = $posted_id;
2659 self::doPoke($item, $importer);
2667 * @param object $xpath XPath object
2668 * @param object $deletion deletion elements
2669 * @param array $importer Record of the importer user mixed with contact of the content
2671 * @throws \Exception
2672 * @todo set proper type-hints
2674 private static function processDeletion($xpath, $deletion, $importer)
2676 Logger::log("Processing deletions");
2679 foreach ($deletion->attributes as $attributes) {
2680 if ($attributes->name == "ref") {
2681 $uri = $attributes->textContent;
2685 if (!$uri || !$importer["id"]) {
2689 $condition = ['uri' => $uri, 'uid' => $importer["importer_uid"]];
2690 $item = Item::selectFirst(['id', 'parent', 'contact-id', 'file', 'deleted'], $condition);
2691 if (!DBA::isResult($item)) {
2692 Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " wasn't found.", Logger::DEBUG);
2696 if (strstr($item['file'], '[')) {
2697 Logger::log("Item with uri " . $uri . " for user " . $importer["importer_uid"] . " is filed. So it won't be deleted.", Logger::DEBUG);
2701 // When it is a starting post it has to belong to the person that wants to delete it
2702 if (($item['id'] == $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2703 Logger::log("Item with uri " . $uri . " don't belong to contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2707 // Comments can be deleted by the thread owner or comment owner
2708 if (($item['id'] != $item['parent']) && ($item['contact-id'] != $importer["id"])) {
2709 $condition = ['id' => $item['parent'], 'contact-id' => $importer["id"]];
2710 if (!Item::exists($condition)) {
2711 Logger::log("Item with uri " . $uri . " wasn't found or mustn't be deleted by contact " . $importer["id"] . " - ignoring deletion.", Logger::DEBUG);
2716 if ($item["deleted"]) {
2720 Logger::log('deleting item '.$item['id'].' uri='.$uri, Logger::DEBUG);
2722 Item::markForDeletion(['id' => $item['id']]);
2726 * Imports a DFRN message
2728 * @param string $xml The DFRN message
2729 * @param array $importer Record of the importer user mixed with contact of the content
2730 * @param bool $sort_by_date Is used when feeds are polled
2731 * @return integer Import status
2732 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2733 * @throws \ImagickException
2734 * @todo set proper type-hints
2736 public static function import($xml, $importer, $sort_by_date = false)
2742 $doc = new DOMDocument();
2743 @$doc->loadXML($xml);
2745 $xpath = new DOMXPath($doc);
2746 $xpath->registerNamespace("atom", ActivityNamespace::ATOM1);
2747 $xpath->registerNamespace("thr", ActivityNamespace::THREAD);
2748 $xpath->registerNamespace("at", ActivityNamespace::TOMB);
2749 $xpath->registerNamespace("media", ActivityNamespace::MEDIA);
2750 $xpath->registerNamespace("dfrn", ActivityNamespace::DFRN);
2751 $xpath->registerNamespace("activity", ActivityNamespace::ACTIVITY);
2752 $xpath->registerNamespace("georss", ActivityNamespace::GEORSS);
2753 $xpath->registerNamespace("poco", ActivityNamespace::POCO);
2754 $xpath->registerNamespace("ostatus", ActivityNamespace::OSTATUS);
2755 $xpath->registerNamespace("statusnet", ActivityNamespace::STATUSNET);
2758 $header["uid"] = $importer["importer_uid"];
2759 $header["network"] = Protocol::DFRN;
2760 $header["wall"] = 0;
2761 $header["origin"] = 0;
2762 $header["contact-id"] = $importer["id"];
2764 // Update the contact table if the data has changed
2766 // The "atom:author" is only present in feeds
2767 if ($xpath->query("/atom:feed/atom:author")->length > 0) {
2768 self::fetchauthor($xpath, $doc->firstChild, $importer, "atom:author", false, $xml);
2771 // Only the "dfrn:owner" in the head section contains all data
2772 if ($xpath->query("/atom:feed/dfrn:owner")->length > 0) {
2773 self::fetchauthor($xpath, $doc->firstChild, $importer, "dfrn:owner", false, $xml);
2776 Logger::log("Import DFRN message for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2778 // is it a public forum? Private forums aren't exposed with this method
2779 $forum = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:community/text()"));
2781 // The account type is new since 3.5.1
2782 if ($xpath->query("/atom:feed/dfrn:account_type")->length > 0) {
2783 // Hint: We are using separate update calls for uid=0 and uid!=0 since a combined call is bad for the database performance
2785 $accounttype = intval(XML::getFirstNodeValue($xpath, "/atom:feed/dfrn:account_type/text()"));
2787 if ($accounttype != $importer["contact-type"]) {
2788 DBA::update('contact', ['contact-type' => $accounttype], ['id' => $importer['id']]);
2790 // Updating the public contact as well
2791 DBA::update('contact', ['contact-type' => $accounttype], ['uid' => 0, 'nurl' => $importer['nurl']]);
2793 // A forum contact can either have set "forum" or "prv" - but not both
2794 if ($accounttype == User::ACCOUNT_TYPE_COMMUNITY) {
2795 // It's a forum, so either set the public or private forum flag
2796 $condition = ['(`forum` != ? OR `prv` != ?) AND `id` = ?', $forum, !$forum, $importer['id']];
2797 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2799 // Updating the public contact as well
2800 $condition = ['(`forum` != ? OR `prv` != ?) AND `uid` = 0 AND `nurl` = ?', $forum, !$forum, $importer['nurl']];
2801 DBA::update('contact', ['forum' => $forum, 'prv' => !$forum], $condition);
2803 // It's not a forum, so remove the flags
2804 $condition = ['(`forum` OR `prv`) AND `id` = ?', $importer['id']];
2805 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2807 // Updating the public contact as well
2808 $condition = ['(`forum` OR `prv`) AND `uid` = 0 AND `nurl` = ?', $importer['nurl']];
2809 DBA::update('contact', ['forum' => false, 'prv' => false], $condition);
2811 } elseif ($forum != $importer["forum"]) { // Deprecated since 3.5.1
2812 $condition = ['`forum` != ? AND `id` = ?', $forum, $importer["id"]];
2813 DBA::update('contact', ['forum' => $forum], $condition);
2815 // Updating the public contact as well
2816 $condition = ['`forum` != ? AND `uid` = 0 AND `nurl` = ?', $forum, $importer['nurl']];
2817 DBA::update('contact', ['forum' => $forum], $condition);
2821 // We are processing relocations even if we are ignoring a contact
2822 $relocations = $xpath->query("/atom:feed/dfrn:relocate");
2823 foreach ($relocations as $relocation) {
2824 self::processRelocation($xpath, $relocation, $importer);
2827 if (($importer["uid"] != 0) && !$importer["readonly"]) {
2828 $mails = $xpath->query("/atom:feed/dfrn:mail");
2829 foreach ($mails as $mail) {
2830 self::processMail($xpath, $mail, $importer);
2833 $suggestions = $xpath->query("/atom:feed/dfrn:suggest");
2834 foreach ($suggestions as $suggestion) {
2835 self::processSuggestion($xpath, $suggestion, $importer);
2839 $deletions = $xpath->query("/atom:feed/at:deleted-entry");
2840 foreach ($deletions as $deletion) {
2841 self::processDeletion($xpath, $deletion, $importer);
2844 if (!$sort_by_date) {
2845 $entries = $xpath->query("/atom:feed/atom:entry");
2846 foreach ($entries as $entry) {
2847 self::processEntry($header, $xpath, $entry, $importer, $xml);
2851 $entries = $xpath->query("/atom:feed/atom:entry");
2852 foreach ($entries as $entry) {
2853 $created = XML::getFirstNodeValue($xpath, "atom:published/text()", $entry);
2854 $newentries[strtotime($created)] = $entry;
2857 // Now sort after the publishing date
2860 foreach ($newentries as $entry) {
2861 self::processEntry($header, $xpath, $entry, $importer, $xml);
2864 Logger::log("Import done for user " . $importer["importer_uid"] . " from contact " . $importer["id"], Logger::DEBUG);
2869 * Returns the activity verb
2871 * @param array $item Item array
2873 * @return string activity verb
2875 private static function constructVerb(array $item)
2877 if ($item['verb']) {
2878 return $item['verb'];
2880 return Activity::POST;
2883 private static function tgroupCheck($uid, $item)
2887 // check that the message originated elsewhere and is a top-level post
2889 if ($item['wall'] || $item['origin'] || ($item['uri'] != $item['parent-uri'])) {
2893 $user = DBA::selectFirst('user', ['page-flags', 'nickname'], ['uid' => $uid]);
2894 if (!DBA::isResult($user)) {
2898 $community_page = ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY);
2899 $prvgroup = ($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP);
2901 $link = Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']);
2904 * Diaspora uses their own hardwired link URL in @-tags
2905 * instead of the one we supply with webfinger
2907 $dlink = Strings::normaliseLink(DI::baseUrl() . '/u/' . $user['nickname']);
2909 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
2911 foreach ($matches as $mtch) {
2912 if (Strings::compareLink($link, $mtch[1]) || Strings::compareLink($dlink, $mtch[1])) {
2914 Logger::log('mention found: ' . $mtch[2]);
2923 return $community_page || $prvgroup;
2927 * This function returns true if $update has an edited timestamp newer
2928 * than $existing, i.e. $update contains new data which should override
2929 * what's already there. If there is no timestamp yet, the update is
2930 * assumed to be newer. If the update has no timestamp, the existing
2931 * item is assumed to be up-to-date. If the timestamps are equal it
2932 * assumes the update has been seen before and should be ignored.
2937 * @throws \Exception
2939 private static function isEditedTimestampNewer($existing, $update)
2941 if (empty($existing['edited'])) {
2944 if (empty($update['edited'])) {
2948 $existing_edited = DateTimeFormat::utc($existing['edited']);
2949 $update_edited = DateTimeFormat::utc($update['edited']);
2951 return (strcmp($existing_edited, $update_edited) < 0);
2955 * Checks if the given contact url does support DFRN
2957 * @param string $url profile url
2958 * @param boolean $update Update the profile
2960 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2961 * @throws \ImagickException
2963 public static function isSupportedByContactUrl($url, $update = false)
2965 $probe = Probe::uri($url, Protocol::DFRN, 0, !$update);
2966 return $probe['network'] == Protocol::DFRN;