3 * @file include/diaspora.php
4 * @brief The implementation of the diaspora protocol
7 require_once("include/items.php");
8 require_once("include/bb2diaspora.php");
9 require_once("include/Scrape.php");
10 require_once("include/Contact.php");
11 require_once("include/Photo.php");
12 require_once("include/socgraph.php");
13 require_once("include/group.php");
14 require_once("include/xml.php");
15 require_once("include/datetime.php");
18 * @brief This class contain functions to create and send Diaspora XML files
23 public static function fetch_relay() {
25 $serverdata = get_config("system", "relay_server");
26 if ($serverdata == "")
31 $servers = explode(",", $serverdata);
33 foreach($servers AS $server) {
34 $server = trim($server);
35 $batch = $server."/receive/public";
37 $relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch));
40 $addr = "relay@".str_replace("http://", "", normalise_link($server));
42 $r = q("INSERT INTO `contact` (`uid`, `created`, `name`, `nick`, `addr`, `url`, `nurl`, `batch`, `network`, `rel`, `blocked`, `pending`, `writable`, `name-date`, `uri-date`, `avatar-date`)
43 VALUES (0, '%s', '%s', 'relay', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, '%s', '%s', '%s')",
48 dbesc(normalise_link($server)),
50 dbesc(NETWORK_DIASPORA),
51 intval(CONTACT_IS_FOLLOWER),
52 dbesc(datetime_convert()),
53 dbesc(datetime_convert()),
54 dbesc(datetime_convert())
57 $relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch));
59 $relay[] = $relais[0];
61 $relay[] = $relais[0];
68 * @brief Dispatches public messages and find the fitting receivers
70 * @param array $msg The post that will be dispatched
72 * @return bool Was the message accepted?
74 public static function dispatch_public($msg) {
76 $enabled = intval(get_config("system", "diaspora_enabled"));
78 logger("diaspora is disabled");
82 // Use a dummy importer to import the data for the public copy
83 $importer = array("uid" => 0, "page-flags" => PAGE_FREELOVE);
84 $item_id = self::dispatch($importer,$msg);
86 // Now distribute it to the followers
87 $r = q("SELECT `user`.* FROM `user` WHERE `user`.`uid` IN
88 (SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s')
89 AND NOT `account_expired` AND NOT `account_removed`",
90 dbesc(NETWORK_DIASPORA),
95 logger("delivering to: ".$rr["username"]);
96 self::dispatch($rr,$msg);
99 logger("No subscribers for ".$msg["author"]." ".print_r($msg, true));
105 * @brief Dispatches the different message types to the different functions
107 * @param array $importer Array of the importer user
108 * @param array $msg The post that will be dispatched
110 * @return bool Was the message accepted?
112 public static function dispatch($importer, $msg) {
114 // The sender is the handle of the contact that sent the message.
115 // This will often be different with relayed messages (for example "like" and "comment")
116 $sender = $msg["author"];
118 if (!diaspora::valid_posting($msg, $fields)) {
119 logger("Invalid posting");
123 $type = $fields->getName();
126 case "account_deletion":
127 return self::receive_account_deletion($importer, $fields);
130 return self::receive_comment($importer, $sender, $fields);
133 return self::receive_conversation($importer, $msg, $fields);
136 return self::receive_like($importer, $sender, $fields);
139 return self::receive_message($importer, $fields);
141 case "participation": // Not implemented
142 return self::receive_participation($importer, $fields);
144 case "photo": // Not implemented
145 return self::receive_photo($importer, $fields);
147 case "poll_participation": // Not implemented
148 return self::receive_poll_participation($importer, $fields);
151 return self::receive_profile($importer, $fields);
154 return self::receive_request($importer, $fields);
157 return self::receive_reshare($importer, $fields);
160 return self::receive_retraction($importer, $sender, $fields);
162 case "status_message":
163 return self::receive_status_message($importer, $fields);
166 logger("Unknown message type ".$type);
174 * @brief Checks if a posting is valid and fetches the data fields.
176 * This function does not only check the signature.
177 * It also does the conversion between the old and the new diaspora format.
179 * @param array $msg Array with the XML, the sender handle and the sender signature
180 * @param object $fields SimpleXML object that contains the posting when it is valid
182 * @return bool Is the posting valid?
184 private function valid_posting($msg, &$fields) {
186 $data = parse_xml_string($msg["message"], false);
188 if (!is_object($data))
191 $first_child = $data->getName();
193 // Is this the new or the old version?
194 if ($data->getName() == "XML") {
196 foreach ($data->post->children() as $child)
203 $type = $element->getName();
206 // All retractions are handled identically from now on.
207 // In the new version there will only be "retraction".
208 if (in_array($type, array("signed_retraction", "relayable_retraction")))
209 $type = "retraction";
211 $fields = new SimpleXMLElement("<".$type."/>");
215 foreach ($element->children() AS $fieldname => $entry) {
217 // Translation for the old XML structure
218 if ($fieldname == "diaspora_handle")
219 $fieldname = "author";
221 if ($fieldname == "participant_handles")
222 $fieldname = "participants";
224 if (in_array($type, array("like", "participation"))) {
225 if ($fieldname == "target_type")
226 $fieldname = "parent_type";
229 if ($fieldname == "sender_handle")
230 $fieldname = "author";
232 if ($fieldname == "recipient_handle")
233 $fieldname = "recipient";
235 if ($fieldname == "root_diaspora_id")
236 $fieldname = "root_author";
238 if ($type == "retraction") {
239 if ($fieldname == "post_guid")
240 $fieldname = "target_guid";
242 if ($fieldname == "type")
243 $fieldname = "target_type";
247 if ($fieldname == "author_signature")
248 $author_signature = base64_decode($entry);
249 elseif ($fieldname == "parent_author_signature")
250 $parent_author_signature = base64_decode($entry);
251 elseif ($fieldname != "target_author_signature") {
252 if ($signed_data != "") {
254 $signed_data_parent .= ";";
257 $signed_data .= $entry;
259 if (!in_array($fieldname, array("parent_author_signature", "target_author_signature")) OR
260 ($orig_type == "relayable_retraction"))
261 xml::copy($entry, $fields, $fieldname);
264 // This is something that shouldn't happen at all.
265 if (in_array($type, array("status_message", "reshare", "profile")))
266 if ($msg["author"] != $fields->author) {
267 logger("Message handle is not the same as envelope sender. Quitting this message.");
271 // Only some message types have signatures. So we quit here for the other types.
272 if (!in_array($type, array("comment", "message", "like")))
275 // No author_signature? This is a must, so we quit.
276 if (!isset($author_signature))
279 if (isset($parent_author_signature)) {
280 $key = self::get_key($msg["author"]);
282 if (!rsa_verify($signed_data, $parent_author_signature, $key, "sha256"))
286 $key = self::get_key($fields->author);
288 return rsa_verify($signed_data, $author_signature, $key, "sha256");
292 * @brief Fetches the public key for a given handle
294 * @param string $handle The handle
296 * @return string The public key
298 private function get_key($handle) {
299 logger("Fetching diaspora key for: ".$handle);
301 $r = self::get_person_by_handle($handle);
309 * @brief Fetches data for a given handle
311 * @param string $handle The handle
313 * @return array the queried data
315 private function get_person_by_handle($handle) {
317 $r = q("SELECT * FROM `fcontact` WHERE `network` = '%s' AND `addr` = '%s' LIMIT 1",
318 dbesc(NETWORK_DIASPORA),
323 logger("In cache ".print_r($r,true), LOGGER_DEBUG);
325 // update record occasionally so it doesn't get stale
326 $d = strtotime($person["updated"]." +00:00");
327 if ($d < strtotime("now - 14 days"))
331 if (!$person OR $update) {
332 logger("create or refresh", LOGGER_DEBUG);
333 $r = probe_url($handle, PROBE_DIASPORA);
335 // Note that Friendica contacts will return a "Diaspora person"
336 // if Diaspora connectivity is enabled on their server
337 if ($r AND ($r["network"] === NETWORK_DIASPORA)) {
338 self::add_fcontact($r, $update);
346 * @brief Updates the fcontact table
348 * @param array $arr The fcontact data
349 * @param bool $update Update or insert?
351 * @return string The id of the fcontact entry
353 private function add_fcontact($arr, $update = false) {
354 /// @todo Remove this function from include/network.php
357 $r = q("UPDATE `fcontact` SET
370 WHERE `url` = '%s' AND `network` = '%s'",
372 dbesc($arr["photo"]),
373 dbesc($arr["request"]),
376 dbesc($arr["batch"]),
377 dbesc($arr["notify"]),
379 dbesc($arr["confirm"]),
380 dbesc($arr["alias"]),
381 dbesc($arr["pubkey"]),
382 dbesc(datetime_convert()),
384 dbesc($arr["network"])
387 $r = q("INSERT INTO `fcontact` (`url`,`name`,`photo`,`request`,`nick`,`addr`,
388 `batch`, `notify`,`poll`,`confirm`,`network`,`alias`,`pubkey`,`updated`)
389 VALUES ('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
392 dbesc($arr["photo"]),
393 dbesc($arr["request"]),
396 dbesc($arr["batch"]),
397 dbesc($arr["notify"]),
399 dbesc($arr["confirm"]),
400 dbesc($arr["network"]),
401 dbesc($arr["alias"]),
402 dbesc($arr["pubkey"]),
403 dbesc(datetime_convert())
410 private function get_contact_by_handle($uid, $handle) {
411 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
419 $handle_parts = explode("@", $handle);
420 $nurl_sql = "%%://".$handle_parts[1]."%%/profile/".$handle_parts[0];
421 $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` LIKE '%s' LIMIT 1",
432 private function post_allow($importer, $contact, $is_comment = false) {
434 // perhaps we were already sharing with this person. Now they're sharing with us.
435 // That makes us friends.
436 // Normally this should have handled by getting a request - but this could get lost
437 if($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
438 q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
439 intval(CONTACT_IS_FRIEND),
440 intval($contact["id"]),
441 intval($importer["uid"])
443 $contact["rel"] = CONTACT_IS_FRIEND;
444 logger("defining user ".$contact["nick"]." as friend");
447 if(($contact["blocked"]) || ($contact["readonly"]) || ($contact["archive"]))
449 if($contact["rel"] == CONTACT_IS_SHARING || $contact["rel"] == CONTACT_IS_FRIEND)
451 if($contact["rel"] == CONTACT_IS_FOLLOWER)
452 if(($importer["page-flags"] == PAGE_COMMUNITY) OR $is_comment)
455 // Messages for the global users are always accepted
456 if ($importer["uid"] == 0)
462 private function get_allowed_contact_by_handle($importer, $handle, $is_comment = false) {
463 $contact = self::get_contact_by_handle($importer["uid"], $handle);
465 logger("A Contact for handle ".$handle." and user ".$importer["uid"]." was not found");
469 if (!self::post_allow($importer, $contact, false)) {
470 logger("The handle: ".$handle." is not allowed to post to user ".$importer["uid"]);
476 private function message_exists($uid, $guid) {
477 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
483 logger("message ".$guid." already exists for user ".$uid);
490 private function fetch_guid($item) {
491 preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
492 function ($match) use ($item){
493 return(self::fetch_guid_sub($match, $item));
497 private function fetch_guid_sub($match, $item) {
498 if (!self::store_by_guid($match[1], $item["author-link"]))
499 self::store_by_guid($match[1], $item["owner-link"]);
502 private function store_by_guid($guid, $server, $uid = 0) {
503 $serverparts = parse_url($server);
504 $server = $serverparts["scheme"]."://".$serverparts["host"];
506 logger("Trying to fetch item ".$guid." from ".$server, LOGGER_DEBUG);
508 $msg = self::fetch_message($guid, $server);
513 logger("Successfully fetched item ".$guid." from ".$server, LOGGER_DEBUG);
515 // Now call the dispatcher
516 return self::dispatch_public($msg);
519 private function fetch_message($guid, $server, $level = 0) {
524 // This will work for Diaspora and newer Friendica servers
525 $source_url = $server."/p/".$guid.".xml";
526 $x = fetch_url($source_url);
530 $source_xml = parse_xml_string($x, false);
532 if (!is_object($source_xml))
535 if ($source_xml->post->reshare) {
536 // Reshare of a reshare - old Diaspora version
537 return self::fetch_message($source_xml->post->reshare->root_guid, $server, ++$level);
538 } elseif ($source_xml->getName() == "reshare") {
539 // Reshare of a reshare - new Diaspora version
540 return self::fetch_message($source_xml->root_guid, $server, ++$level);
545 // Fetch the author - for the old and the new Diaspora version
546 if ($source_xml->post->status_message->diaspora_handle)
547 $author = (string)$source_xml->post->status_message->diaspora_handle;
548 elseif ($source_xml->author AND ($source_xml->getName() == "status_message"))
549 $author = (string)$source_xml->author;
551 // If this isn't a "status_message" then quit
555 $msg = array("message" => $x, "author" => $author);
557 $msg["key"] = self::get_key($msg["author"]);
562 private function fetch_parent_item($uid, $guid, $author, $contact) {
563 $r = q("SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
564 `author-name`, `author-link`, `author-avatar`,
565 `owner-name`, `owner-link`, `owner-avatar`
566 FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
567 intval($uid), dbesc($guid));
570 $result = self::store_by_guid($guid, $contact["url"], $uid);
573 $person = self::get_person_by_handle($author);
574 $result = self::store_by_guid($guid, $person["url"], $uid);
578 logger("Fetched missing item ".$guid." - result: ".$result, LOGGER_DEBUG);
580 $r = q("SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
581 `author-name`, `author-link`, `author-avatar`,
582 `owner-name`, `owner-link`, `owner-avatar`
583 FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
584 intval($uid), dbesc($guid));
589 logger("parent item not found: parent: ".$guid." item: ".$guid);
595 private function get_author_contact_by_url($contact, $person, $uid) {
597 $r = q("SELECT `id`, `network` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
598 dbesc(normalise_link($person["url"])), intval($uid));
601 $network = $r[0]["network"];
603 $cid = $contact["id"];
604 $network = NETWORK_DIASPORA;
607 return (array("cid" => $cid, "network" => $network));
610 public static function is_redmatrix($url) {
611 return(strstr($url, "/channel/"));
614 private function plink($addr, $guid) {
615 $r = q("SELECT `url`, `nick`, `network` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", dbesc($addr));
619 return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
621 // Friendica contacts are often detected as Diaspora contacts in the "fcontact" table
622 // So we try another way as well.
623 $s = q("SELECT `network` FROM `gcontact` WHERE `nurl`='%s' LIMIT 1", dbesc(normalise_link($r[0]["url"])));
625 $r[0]["network"] = $s[0]["network"];
627 if ($r[0]["network"] == NETWORK_DFRN)
628 return(str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/"));
630 if (self::is_redmatrix($r[0]["url"]))
631 return $r[0]["url"]."/?f=&mid=".$guid;
633 return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
636 private function receive_account_deletion($importer, $data) {
637 $author = notags(unxmlify($data->author));
639 $contact = self::get_contact_by_handle($importer["uid"], $author);
641 logger("cannot find contact for author: ".$author);
645 // We now remove the contact
646 contact_remove($contact["id"]);
650 private function receive_comment($importer, $sender, $data) {
651 $guid = notags(unxmlify($data->guid));
652 $parent_guid = notags(unxmlify($data->parent_guid));
653 $text = unxmlify($data->text);
654 $author = notags(unxmlify($data->author));
656 $contact = self::get_allowed_contact_by_handle($importer, $sender, true);
660 if (self::message_exists($importer["uid"], $guid))
663 $parent_item = self::fetch_parent_item($importer["uid"], $parent_guid, $author, $contact);
667 $person = self::get_person_by_handle($author);
668 if (!is_array($person)) {
669 logger("unable to find author details");
673 // Fetch the contact id - if we know this contact
674 $author_contact = self::get_author_contact_by_url($contact, $person, $importer["uid"]);
678 $datarray["uid"] = $importer["uid"];
679 $datarray["contact-id"] = $author_contact["cid"];
680 $datarray["network"] = $author_contact["network"];
682 $datarray["author-name"] = $person["name"];
683 $datarray["author-link"] = $person["url"];
684 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
686 $datarray["owner-name"] = $contact["name"];
687 $datarray["owner-link"] = $contact["url"];
688 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
690 $datarray["guid"] = $guid;
691 $datarray["uri"] = $author.":".$guid;
693 $datarray["type"] = "remote-comment";
694 $datarray["verb"] = ACTIVITY_POST;
695 $datarray["gravity"] = GRAVITY_COMMENT;
696 $datarray["parent-uri"] = $parent_item["uri"];
698 $datarray["object-type"] = ACTIVITY_OBJ_COMMENT;
699 $datarray["object"] = json_encode($data);
701 $datarray["body"] = diaspora2bb($text);
703 self::fetch_guid($datarray);
705 $message_id = item_store($datarray);
706 // print_r($datarray);
708 // If we are the origin of the parent we store the original data and notify our followers
709 if($message_id AND $parent_item["origin"]) {
711 // Formerly we stored the signed text, the signature and the author in different fields.
712 // We now store the raw data so that we are more flexible.
713 q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
715 dbesc(json_encode($data))
719 proc_run("php", "include/notifier.php", "comment-import", $message_id);
725 private function receive_conversation_message($importer, $contact, $data, $msg, $mesg) {
726 $guid = notags(unxmlify($data->guid));
727 $subject = notags(unxmlify($data->subject));
728 $author = notags(unxmlify($data->author));
732 $msg_guid = notags(unxmlify($mesg->guid));
733 $msg_parent_guid = notags(unxmlify($mesg->parent_guid));
734 $msg_parent_author_signature = notags(unxmlify($mesg->parent_author_signature));
735 $msg_author_signature = notags(unxmlify($mesg->author_signature));
736 $msg_text = unxmlify($mesg->text);
737 $msg_created_at = datetime_convert("UTC", "UTC", notags(unxmlify($mesg->created_at)));
739 // "diaspora_handle" is the element name from the old version
740 // "author" is the element name from the new version
742 $msg_author = notags(unxmlify($mesg->author));
743 elseif ($mesg->diaspora_handle)
744 $msg_author = notags(unxmlify($mesg->diaspora_handle));
748 $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
750 if($msg_conversation_guid != $guid) {
751 logger("message conversation guid does not belong to the current conversation.");
755 $body = diaspora2bb($msg_text);
756 $message_uri = $msg_author.":".$msg_guid;
758 $author_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
760 $author_signature = base64_decode($msg_author_signature);
762 if(strcasecmp($msg_author,$msg["author"]) == 0) {
766 $person = self::get_person_by_handle($msg_author);
768 if (is_array($person) && x($person, "pubkey"))
769 $key = $person["pubkey"];
771 logger("unable to find author details");
776 if (!rsa_verify($author_signed_data, $author_signature, $key, "sha256")) {
777 logger("verification failed.");
781 if($msg_parent_author_signature) {
782 $owner_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
784 $parent_author_signature = base64_decode($msg_parent_author_signature);
788 if (!rsa_verify($owner_signed_data, $parent_author_signature, $key, "sha256")) {
789 logger("owner verification failed.");
794 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' LIMIT 1",
798 logger("duplicate message already delivered.", LOGGER_DEBUG);
802 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
803 VALUES (%d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
804 intval($importer["uid"]),
806 intval($conversation["id"]),
807 dbesc($person["name"]),
808 dbesc($person["photo"]),
809 dbesc($person["url"]),
810 intval($contact["id"]),
816 dbesc($author.":".$guid),
817 dbesc($msg_created_at)
820 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
821 dbesc(datetime_convert()),
822 intval($conversation["id"])
826 "type" => NOTIFY_MAIL,
827 "notify_flags" => $importer["notify-flags"],
828 "language" => $importer["language"],
829 "to_name" => $importer["username"],
830 "to_email" => $importer["email"],
831 "uid" =>$importer["uid"],
832 "item" => array("subject" => $subject, "body" => $body),
833 "source_name" => $person["name"],
834 "source_link" => $person["url"],
835 "source_photo" => $person["thumb"],
836 "verb" => ACTIVITY_POST,
841 private function receive_conversation($importer, $msg, $data) {
842 $guid = notags(unxmlify($data->guid));
843 $subject = notags(unxmlify($data->subject));
844 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
845 $author = notags(unxmlify($data->author));
846 $participants = notags(unxmlify($data->participants));
848 $messages = $data->message;
850 if (!count($messages)) {
851 logger("empty conversation");
855 $contact = self::get_allowed_contact_by_handle($importer, $msg["author"], true);
859 $conversation = null;
861 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
862 intval($importer["uid"]),
866 $conversation = $c[0];
868 $r = q("INSERT INTO `conv` (`uid`, `guid`, `creator`, `created`, `updated`, `subject`, `recips`)
869 VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s')",
870 intval($importer["uid"]),
873 dbesc(datetime_convert("UTC", "UTC", $created_at)),
874 dbesc(datetime_convert()),
879 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
880 intval($importer["uid"]),
885 $conversation = $c[0];
887 if (!$conversation) {
888 logger("unable to create conversation.");
892 foreach($messages as $mesg)
893 self::receive_conversation_message($importer, $contact, $data, $msg, $mesg);
898 private function construct_like_body($contact, $parent_item, $guid) {
899 $bodyverb = t('%1$s likes %2$s\'s %3$s');
901 $ulink = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
902 $alink = "[url=".$parent_item["author-link"]."]".$parent_item["author-name"]."[/url]";
903 $plink = "[url=".App::get_baseurl()."/display/".urlencode($guid)."]".t("status")."[/url]";
905 return sprintf($bodyverb, $ulink, $alink, $plink);
908 private function construct_like_object($importer, $parent_item) {
909 $objtype = ACTIVITY_OBJ_NOTE;
910 $link = xmlify('<link rel="alternate" type="text/html" href="'.App::get_baseurl()."/display/".$importer["nickname"]."/".$parent_item["id"].'" />'."\n") ;
911 $parent_body = $parent_item["body"];
916 <type>$objtype</type>
918 <id>{$parent_item["uri"]}</id>
921 <content>$parent_body</content>
928 private function receive_like($importer, $sender, $data) {
929 $positive = notags(unxmlify($data->positive));
930 $guid = notags(unxmlify($data->guid));
931 $parent_type = notags(unxmlify($data->parent_type));
932 $parent_guid = notags(unxmlify($data->parent_guid));
933 $author = notags(unxmlify($data->author));
935 // likes on comments aren't supported by Diaspora - only on posts
936 // But maybe this will be supported in the future, so we will accept it.
937 if (!in_array($parent_type, array("Post", "Comment")))
940 $contact = self::get_allowed_contact_by_handle($importer, $sender, true);
944 if (self::message_exists($importer["uid"], $guid))
947 $parent_item = self::fetch_parent_item($importer["uid"], $parent_guid, $author, $contact);
951 $person = self::get_person_by_handle($author);
952 if (!is_array($person)) {
953 logger("unable to find author details");
957 // Fetch the contact id - if we know this contact
958 $author_contact = self::get_author_contact_by_url($contact, $person, $importer["uid"]);
960 // "positive" = "false" would be a Dislike - wich isn't currently supported by Diaspora
961 // We would accept this anyhow.
962 if ($positive === "true")
963 $verb = ACTIVITY_LIKE;
965 $verb = ACTIVITY_DISLIKE;
969 $datarray["uid"] = $importer["uid"];
970 $datarray["contact-id"] = $author_contact["cid"];
971 $datarray["network"] = $author_contact["network"];
973 $datarray["author-name"] = $person["name"];
974 $datarray["author-link"] = $person["url"];
975 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
977 $datarray["owner-name"] = $contact["name"];
978 $datarray["owner-link"] = $contact["url"];
979 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
981 $datarray["guid"] = $guid;
982 $datarray["uri"] = $author.":".$guid;
984 $datarray["type"] = "activity";
985 $datarray["verb"] = $verb;
986 $datarray["gravity"] = GRAVITY_LIKE;
987 $datarray["parent-uri"] = $parent_item["uri"];
989 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
990 $datarray["object"] = self::construct_like_object($importer, $parent_item);
992 $datarray["body"] = self::construct_like_body($contact, $parent_item, $guid);
994 $message_id = item_store($datarray);
995 // print_r($datarray);
997 // If we are the origin of the parent we store the original data and notify our followers
998 if($message_id AND $parent_item["origin"]) {
1000 // Formerly we stored the signed text, the signature and the author in different fields.
1001 // We now store the raw data so that we are more flexible.
1002 q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
1003 intval($message_id),
1004 dbesc(json_encode($data))
1008 proc_run("php", "include/notifier.php", "comment-import", $message_id);
1014 private function receive_message($importer, $data) {
1015 $guid = notags(unxmlify($data->guid));
1016 $parent_guid = notags(unxmlify($data->parent_guid));
1017 $text = unxmlify($data->text);
1018 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1019 $author = notags(unxmlify($data->author));
1020 $conversation_guid = notags(unxmlify($data->conversation_guid));
1022 $contact = self::get_allowed_contact_by_handle($importer, $author, true);
1026 $conversation = null;
1028 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1029 intval($importer["uid"]),
1030 dbesc($conversation_guid)
1033 $conversation = $c[0];
1035 logger("conversation not available.");
1041 $body = diaspora2bb($text);
1042 $message_uri = $author.":".$guid;
1044 $person = self::get_person_by_handle($author);
1046 logger("unable to find author details");
1050 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1051 dbesc($message_uri),
1052 intval($importer["uid"])
1055 logger("duplicate message already delivered.", LOGGER_DEBUG);
1059 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1060 VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1061 intval($importer["uid"]),
1063 intval($conversation["id"]),
1064 dbesc($person["name"]),
1065 dbesc($person["photo"]),
1066 dbesc($person["url"]),
1067 intval($contact["id"]),
1068 dbesc($conversation["subject"]),
1072 dbesc($message_uri),
1073 dbesc($author.":".$parent_guid),
1077 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
1078 dbesc(datetime_convert()),
1079 intval($conversation["id"])
1085 private function receive_participation($importer, $data) {
1086 // I'm not sure if we can fully support this message type
1090 private function receive_photo($importer, $data) {
1091 // There doesn't seem to be a reason for this function, since the photo data is transmitted in the status message as well
1095 private function receive_poll_participation($importer, $data) {
1096 // We don't support polls by now
1100 private function receive_profile($importer, $data) {
1101 $author = notags(unxmlify($data->author));
1103 $contact = self::get_contact_by_handle($importer["uid"], $author);
1107 $name = unxmlify($data->first_name).((strlen($data->last_name)) ? " ".unxmlify($data->last_name) : "");
1108 $image_url = unxmlify($data->image_url);
1109 $birthday = unxmlify($data->birthday);
1110 $location = diaspora2bb(unxmlify($data->location));
1111 $about = diaspora2bb(unxmlify($data->bio));
1112 $gender = unxmlify($data->gender);
1113 $searchable = (unxmlify($data->searchable) == "true");
1114 $nsfw = (unxmlify($data->nsfw) == "true");
1115 $tags = unxmlify($data->tag_string);
1117 $tags = explode("#", $tags);
1119 $keywords = array();
1120 foreach ($tags as $tag) {
1121 $tag = trim(strtolower($tag));
1126 $keywords = implode(", ", $keywords);
1128 $handle_parts = explode("@", $author);
1129 $nick = $handle_parts[0];
1132 $name = $handle_parts[0];
1134 if( preg_match("|^https?://|", $image_url) === 0)
1135 $image_url = "http://".$handle_parts[1].$image_url;
1137 update_contact_avatar($image_url, $importer["uid"], $contact["id"]);
1139 // Generic birthday. We don't know the timezone. The year is irrelevant.
1141 $birthday = str_replace("1000", "1901", $birthday);
1143 if ($birthday != "")
1144 $birthday = datetime_convert("UTC", "UTC", $birthday, "Y-m-d");
1146 // this is to prevent multiple birthday notifications in a single year
1147 // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year
1149 if(substr($birthday,5) === substr($contact["bd"],5))
1150 $birthday = $contact["bd"];
1152 $r = q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `name-date` = '%s', `bd` = '%s',
1153 `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d AND `uid` = %d",
1157 dbesc(datetime_convert()),
1163 intval($contact["id"]),
1164 intval($importer["uid"])
1168 poco_check($contact["url"], $name, NETWORK_DIASPORA, $image_url, $about, $location, $gender, $keywords, "",
1169 datetime_convert(), 2, $contact["id"], $importer["uid"]);
1172 $gcontact = array("url" => $contact["url"], "network" => NETWORK_DIASPORA, "generation" => 2,
1173 "photo" => $image_url, "name" => $name, "location" => $location,
1174 "about" => $about, "birthday" => $birthday, "gender" => $gender,
1175 "addr" => $author, "nick" => $nick, "keywords" => $keywords,
1176 "hide" => !$searchable, "nsfw" => $nsfw);
1178 update_gcontact($gcontact);
1183 private function receive_request_make_friend($importer, $contact) {
1187 if($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
1188 q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
1189 intval(CONTACT_IS_FRIEND),
1190 intval($contact["id"]),
1191 intval($importer["uid"])
1194 // send notification
1196 $r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
1197 intval($importer["uid"])
1200 if($r && !$r[0]["hide-friends"] && !$contact["hidden"] && intval(get_pconfig($importer["uid"], "system", "post_newfriend"))) {
1202 $self = q("SELECT * FROM `contact` WHERE `self` AND `uid` = %d LIMIT 1",
1203 intval($importer["uid"])
1206 // they are not CONTACT_IS_FOLLOWER anymore but that's what we have in the array
1208 if($self && $contact["rel"] == CONTACT_IS_FOLLOWER) {
1211 $arr["uri"] = $arr["parent-uri"] = item_new_uri($a->get_hostname(), $importer["uid"]);
1212 $arr["uid"] = $importer["uid"];
1213 $arr["contact-id"] = $self[0]["id"];
1215 $arr["type"] = 'wall';
1216 $arr["gravity"] = 0;
1218 $arr["author-name"] = $arr["owner-name"] = $self[0]["name"];
1219 $arr["author-link"] = $arr["owner-link"] = $self[0]["url"];
1220 $arr["author-avatar"] = $arr["owner-avatar"] = $self[0]["thumb"];
1221 $arr["verb"] = ACTIVITY_FRIEND;
1222 $arr["object-type"] = ACTIVITY_OBJ_PERSON;
1224 $A = "[url=".$self[0]["url"]."]".$self[0]["name"]."[/url]";
1225 $B = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
1226 $BPhoto = "[url=".$contact["url"]."][img]".$contact["thumb"]."[/img][/url]";
1227 $arr["body"] = sprintf(t("%1$s is now friends with %2$s"), $A, $B)."\n\n\n".$Bphoto;
1229 $arr["object"] = "<object><type>".ACTIVITY_OBJ_PERSON."</type><title>".$contact["name"]."</title>"
1230 ."<id>".$contact["url"]."/".$contact["name"]."</id>";
1231 $arr["object"] .= "<link>".xmlify('<link rel="alternate" type="text/html" href="'.$contact["url"].'" />'."\n");
1232 $arr["object"] .= xmlify('<link rel="photo" type="image/jpeg" href="'.$contact["thumb"].'" />'."\n");
1233 $arr["object"] .= "</link></object>\n";
1234 $arr["last-child"] = 1;
1236 $arr["allow_cid"] = $user[0]["allow_cid"];
1237 $arr["allow_gid"] = $user[0]["allow_gid"];
1238 $arr["deny_cid"] = $user[0]["deny_cid"];
1239 $arr["deny_gid"] = $user[0]["deny_gid"];
1241 $i = item_store($arr);
1243 proc_run("php", "include/notifier.php", "activity", $i);
1250 private function receive_request($importer, $data) {
1251 $author = unxmlify($data->author);
1252 $recipient = unxmlify($data->recipient);
1254 if (!$author || !$recipient)
1257 $contact = self::get_contact_by_handle($importer["uid"],$author);
1261 // perhaps we were already sharing with this person. Now they're sharing with us.
1262 // That makes us friends.
1264 self::receive_request_make_friend($importer, $contact);
1268 $ret = self::get_person_by_handle($author);
1270 if (!$ret || ($ret["network"] != NETWORK_DIASPORA)) {
1271 logger("Cannot resolve diaspora handle ".$author ." for ".$recipient);
1275 $batch = (($ret["batch"]) ? $ret["batch"] : implode("/", array_slice(explode("/", $ret["url"]), 0, 3))."/receive/public");
1277 $r = q("INSERT INTO `contact` (`uid`, `network`,`addr`,`created`,`url`,`nurl`,`batch`,`name`,`nick`,`photo`,`pubkey`,`notify`,`poll`,`blocked`,`priority`)
1278 VALUES (%d, '%s', '%s', '%s', '%s','%s','%s','%s','%s','%s','%s','%s','%s',%d,%d)",
1279 intval($importer["uid"]),
1280 dbesc($ret["network"]),
1281 dbesc($ret["addr"]),
1284 dbesc(normalise_link($ret["url"])),
1286 dbesc($ret["name"]),
1287 dbesc($ret["nick"]),
1288 dbesc($ret["photo"]),
1289 dbesc($ret["pubkey"]),
1290 dbesc($ret["notify"]),
1291 dbesc($ret["poll"]),
1296 // find the contact record we just created
1298 $contact_record = self::get_contact_by_handle($importer["uid"],$author);
1300 if (!$contact_record) {
1301 logger("unable to locate newly created contact record.");
1305 $g = q("SELECT `def_gid` FROM `user` WHERE `uid` = %d LIMIT 1",
1306 intval($importer["uid"])
1309 if($g && intval($g[0]["def_gid"]))
1310 group_add_member($importer["uid"], "", $contact_record["id"], $g[0]["def_gid"]);
1312 if($importer["page-flags"] == PAGE_NORMAL) {
1314 $hash = random_string().(string)time(); // Generate a confirm_key
1316 $ret = q("INSERT INTO `intro` (`uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
1317 VALUES (%d, %d, %d, %d, '%s', '%s', '%s')",
1318 intval($importer["uid"]),
1319 intval($contact_record["id"]),
1322 dbesc(t("Sharing notification from Diaspora network")),
1324 dbesc(datetime_convert())
1328 // automatic friend approval
1330 update_contact_avatar($contact_record["photo"],$importer["uid"],$contact_record["id"]);
1332 // technically they are sharing with us (CONTACT_IS_SHARING),
1333 // but if our page-type is PAGE_COMMUNITY or PAGE_SOAPBOX
1334 // we are going to change the relationship and make them a follower.
1336 if($importer["page-flags"] == PAGE_FREELOVE)
1337 $new_relation = CONTACT_IS_FRIEND;
1339 $new_relation = CONTACT_IS_FOLLOWER;
1341 $r = q("UPDATE `contact` SET `rel` = %d,
1349 intval($new_relation),
1350 dbesc(datetime_convert()),
1351 dbesc(datetime_convert()),
1352 intval($contact_record["id"])
1355 $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
1357 $ret = self::send_share($u[0], $contact_record);
1363 private function get_original_item($guid, $orig_author, $author) {
1365 // Do we already have this item?
1366 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
1367 `author-name`, `author-link`, `author-avatar`
1368 FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
1372 logger("reshared message ".$guid." already exists on system.");
1374 // Maybe it is already a reshared item?
1375 // Then refetch the content, since there can be many side effects with reshared posts from other networks or reshares from reshares
1376 if (self::is_reshare($r[0]["body"]))
1383 $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1);
1384 logger("1st try: reshared message ".$guid." will be fetched from original server: ".$server);
1385 $item_id = self::store_by_guid($guid, $server);
1388 $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1);
1389 logger("2nd try: reshared message ".$guid." will be fetched from original server: ".$server);
1390 $item_id = self::store_by_guid($guid, $server);
1393 // Deactivated by now since there is a risk that someone could manipulate postings through this method
1395 $server = "https://".substr($author, strpos($author, "@") + 1);
1396 logger("3rd try: reshared message ".$guid." will be fetched from sharer's server: ".$server);
1397 $item_id = self::store_by_guid($guid, $server);
1400 $server = "http://".substr($author, strpos($author, "@") + 1);
1401 logger("4th try: reshared message ".$guid." will be fetched from sharer's server: ".$server);
1402 $item_id = self::store_by_guid($guid, $server);
1406 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
1407 `author-name`, `author-link`, `author-avatar`
1408 FROM `item` WHERE `id` = %d AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
1419 private function receive_reshare($importer, $data) {
1420 $root_author = notags(unxmlify($data->root_author));
1421 $root_guid = notags(unxmlify($data->root_guid));
1422 $guid = notags(unxmlify($data->guid));
1423 $author = notags(unxmlify($data->author));
1424 $public = notags(unxmlify($data->public));
1425 $created_at = notags(unxmlify($data->created_at));
1427 $contact = self::get_allowed_contact_by_handle($importer, $author, false);
1431 if (self::message_exists($importer["uid"], $guid))
1434 $original_item = self::get_original_item($root_guid, $root_author, $author);
1435 if (!$original_item)
1438 $datarray = array();
1440 $datarray["uid"] = $importer["uid"];
1441 $datarray["contact-id"] = $contact["id"];
1442 $datarray["network"] = NETWORK_DIASPORA;
1444 $datarray["author-name"] = $contact["name"];
1445 $datarray["author-link"] = $contact["url"];
1446 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1448 $datarray["owner-name"] = $datarray["author-name"];
1449 $datarray["owner-link"] = $datarray["author-link"];
1450 $datarray["owner-avatar"] = $datarray["author-avatar"];
1452 $datarray["guid"] = $guid;
1453 $datarray["uri"] = $datarray["parent-uri"] = $author.":".$guid;
1455 $datarray["verb"] = ACTIVITY_POST;
1456 $datarray["gravity"] = GRAVITY_PARENT;
1458 $datarray["object"] = json_encode($data);
1460 $prefix = share_header($original_item["author-name"], $original_item["author-link"], $original_item["author-avatar"],
1461 $original_item["guid"], $original_item["created"], $original_item["uri"]);
1462 $datarray["body"] = $prefix.$original_item["body"]."[/share]";
1464 $datarray["tag"] = $original_item["tag"];
1465 $datarray["app"] = $original_item["app"];
1467 $datarray["plink"] = self::plink($author, $guid);
1468 $datarray["private"] = (($public == "false") ? 1 : 0);
1469 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = datetime_convert("UTC", "UTC", $created_at);
1471 $datarray["object-type"] = $original_item["object-type"];
1473 self::fetch_guid($datarray);
1474 $message_id = item_store($datarray);
1475 // print_r($datarray);
1480 private function item_retraction($importer, $contact, $data) {
1481 $target_type = notags(unxmlify($data->target_type));
1482 $target_guid = notags(unxmlify($data->target_guid));
1483 $author = notags(unxmlify($data->author));
1485 $person = self::get_person_by_handle($author);
1486 if (!is_array($person)) {
1487 logger("unable to find author detail for ".$author);
1491 $r = q("SELECT `id`, `parent`, `parent-uri`, `author-link` FROM `item` WHERE `guid` = '%s' AND `uid` = %d AND NOT `file` LIKE '%%[%%' LIMIT 1",
1492 dbesc($target_guid),
1493 intval($importer["uid"])
1498 // Only delete it if the author really fits
1499 if (!link_compare($r[0]["author-link"],$person["url"]))
1502 // Check if the sender is the thread owner
1503 $p = q("SELECT `author-link`, `origin` FROM `item` WHERE `id` = %d",
1504 intval($r[0]["parent"]));
1506 // Only delete it if the parent author really fits
1507 if (!link_compare($p[0]["author-link"], $contact["url"]))
1510 // Currently we don't have a central deletion function that we could use in this case. The function "item_drop" doesn't work for that case
1511 q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = '' WHERE `id` = %d",
1512 dbesc(datetime_convert()),
1513 dbesc(datetime_convert()),
1516 delete_thread($r[0]["id"], $r[0]["parent-uri"]);
1518 // Now check if the retraction needs to be relayed by us
1519 if($p[0]["origin"]) {
1521 // Formerly we stored the signed text, the signature and the author in different fields.
1522 // We now store the raw data so that we are more flexible.
1523 q("INSERT INTO `sign` (`retract_iid`,`signed_text`) VALUES (%d,'%s')",
1524 intval($r[0]["id"]),
1525 dbesc(json_encode($data))
1529 proc_run("php", "include/notifier.php", "drop", $r[0]["id"]);
1533 private function receive_retraction($importer, $sender, $data) {
1534 $target_type = notags(unxmlify($data->target_type));
1536 $contact = self::get_contact_by_handle($importer["uid"], $sender);
1538 logger("cannot find contact for sender: ".$sender." and user ".$importer["uid"]);
1542 switch ($target_type) {
1545 case "Post": // "Post" will be supported in a future version
1547 case "StatusMessage":
1548 return self::item_retraction($importer, $contact, $data);;
1551 /// @todo What should we do with an "unshare"?
1552 // Removing the contact isn't correct since we still can read the public items
1553 //contact_remove($contact["id"]);
1557 logger("Unknown target type ".$target_type);
1563 private function receive_status_message($importer, $data) {
1565 $raw_message = unxmlify($data->raw_message);
1566 $guid = notags(unxmlify($data->guid));
1567 $author = notags(unxmlify($data->author));
1568 $public = notags(unxmlify($data->public));
1569 $created_at = notags(unxmlify($data->created_at));
1570 $provider_display_name = notags(unxmlify($data->provider_display_name));
1572 /// @todo enable support for polls
1573 //if ($data->poll) {
1574 // foreach ($data->poll AS $poll)
1578 $contact = self::get_allowed_contact_by_handle($importer, $author, false);
1582 if (self::message_exists($importer["uid"], $guid))
1586 if ($data->location)
1587 foreach ($data->location->children() AS $fieldname => $data)
1588 $address[$fieldname] = notags(unxmlify($data));
1590 $body = diaspora2bb($raw_message);
1592 $datarray = array();
1595 foreach ($data->photo AS $photo)
1596 $body = "[img]".$photo->remote_photo_path.$photo->remote_photo_name."[/img]\n".$body;
1598 $datarray["object-type"] = ACTIVITY_OBJ_PHOTO;
1600 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
1602 // Add OEmbed and other information to the body
1603 if (!self::is_redmatrix($contact["url"]))
1604 $body = add_page_info_to_body($body, false, true);
1607 $datarray["uid"] = $importer["uid"];
1608 $datarray["contact-id"] = $contact["id"];
1609 $datarray["network"] = NETWORK_DIASPORA;
1611 $datarray["author-name"] = $contact["name"];
1612 $datarray["author-link"] = $contact["url"];
1613 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1615 $datarray["owner-name"] = $datarray["author-name"];
1616 $datarray["owner-link"] = $datarray["author-link"];
1617 $datarray["owner-avatar"] = $datarray["author-avatar"];
1619 $datarray["guid"] = $guid;
1620 $datarray["uri"] = $datarray["parent-uri"] = $author.":".$guid;
1622 $datarray["verb"] = ACTIVITY_POST;
1623 $datarray["gravity"] = GRAVITY_PARENT;
1625 $datarray["object"] = json_encode($data);
1627 $datarray["body"] = $body;
1629 if ($provider_display_name != "")
1630 $datarray["app"] = $provider_display_name;
1632 $datarray["plink"] = self::plink($author, $guid);
1633 $datarray["private"] = (($public == "false") ? 1 : 0);
1634 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = datetime_convert("UTC", "UTC", $created_at);
1636 if (isset($address["address"]))
1637 $datarray["location"] = $address["address"];
1639 if (isset($address["lat"]) AND isset($address["lng"]))
1640 $datarray["coord"] = $address["lat"]." ".$address["lng"];
1642 self::fetch_guid($datarray);
1643 $message_id = item_store($datarray);
1644 // print_r($datarray);
1646 logger("Stored item with message id ".$message_id, LOGGER_DEBUG);
1651 /*******************************************************************************************
1652 * Here come all the functions that are needed to transmit data with the Diaspora protocol *
1653 *******************************************************************************************/
1655 private function get_my_handle($me) {
1656 if ($contact["addr"] != "")
1657 return $contact["addr"];
1659 // Normally we should have a filled "addr" field - but in the past this wasn't the case
1660 // So - just in case - we build the the address here.
1661 return $me["nickname"]."@".substr(App::get_baseurl(), strpos(App::get_baseurl(),"://") + 3);
1664 private function build_public_message($msg, $user, $contact, $prvkey, $pubkey) {
1666 logger("Message: ".$msg, LOGGER_DATA);
1668 $handle = self::get_my_handle($user);
1670 $b64url_data = base64url_encode($msg);
1672 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
1674 $type = "application/xml";
1675 $encoding = "base64url";
1676 $alg = "RSA-SHA256";
1678 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
1680 $signature = rsa_sign($signable_data,$prvkey);
1681 $sig = base64url_encode($signature);
1683 $magic_env = <<< EOT
1684 <?xml version='1.0' encoding='UTF-8'?>
1685 <diaspora xmlns="https://joindiaspora.com/protocol" xmlns:me="http://salmon-protocol.org/ns/magic-env" >
1687 <author_id>$handle</author_id>
1690 <me:encoding>base64url</me:encoding>
1691 <me:alg>RSA-SHA256</me:alg>
1692 <me:data type="application/xml">$data</me:data>
1693 <me:sig>$sig</me:sig>
1698 logger("magic_env: ".$magic_env, LOGGER_DATA);
1702 private function build_private_message($msg, $user, $contact, $prvkey, $pubkey) {
1704 logger("Message: ".$msg, LOGGER_DATA);
1706 // without a public key nothing will work
1709 logger("pubkey missing: contact id: ".$contact["id"]);
1713 $inner_aes_key = random_string(32);
1714 $b_inner_aes_key = base64_encode($inner_aes_key);
1715 $inner_iv = random_string(16);
1716 $b_inner_iv = base64_encode($inner_iv);
1718 $outer_aes_key = random_string(32);
1719 $b_outer_aes_key = base64_encode($outer_aes_key);
1720 $outer_iv = random_string(16);
1721 $b_outer_iv = base64_encode($outer_iv);
1723 $handle = self::get_my_handle($user);
1725 $padded_data = pkcs5_pad($msg,16);
1726 $inner_encrypted = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $padded_data, MCRYPT_MODE_CBC, $inner_iv);
1728 $b64_data = base64_encode($inner_encrypted);
1731 $b64url_data = base64url_encode($b64_data);
1732 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
1734 $type = "application/xml";
1735 $encoding = "base64url";
1736 $alg = "RSA-SHA256";
1738 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
1740 $signature = rsa_sign($signable_data,$prvkey);
1741 $sig = base64url_encode($signature);
1743 $decrypted_header = <<< EOT
1745 <iv>$b_inner_iv</iv>
1746 <aes_key>$b_inner_aes_key</aes_key>
1747 <author_id>$handle</author_id>
1751 $decrypted_header = pkcs5_pad($decrypted_header,16);
1753 $ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $outer_aes_key, $decrypted_header, MCRYPT_MODE_CBC, $outer_iv);
1755 $outer_json = json_encode(array("iv" => $b_outer_iv, "key" => $b_outer_aes_key));
1757 $encrypted_outer_key_bundle = "";
1758 openssl_public_encrypt($outer_json, $encrypted_outer_key_bundle, $pubkey);
1760 $b64_encrypted_outer_key_bundle = base64_encode($encrypted_outer_key_bundle);
1762 logger("outer_bundle: ".$b64_encrypted_outer_key_bundle." key: ".$pubkey, LOGGER_DATA);
1764 $encrypted_header_json_object = json_encode(array("aes_key" => base64_encode($encrypted_outer_key_bundle),
1765 "ciphertext" => base64_encode($ciphertext)));
1766 $cipher_json = base64_encode($encrypted_header_json_object);
1768 $encrypted_header = "<encrypted_header>".$cipher_json."</encrypted_header>";
1770 $magic_env = <<< EOT
1771 <?xml version='1.0' encoding='UTF-8'?>
1772 <diaspora xmlns="https://joindiaspora.com/protocol" xmlns:me="http://salmon-protocol.org/ns/magic-env" >
1775 <me:encoding>base64url</me:encoding>
1776 <me:alg>RSA-SHA256</me:alg>
1777 <me:data type="application/xml">$data</me:data>
1778 <me:sig>$sig</me:sig>
1783 logger("magic_env: ".$magic_env, LOGGER_DATA);
1787 private function build_message($msg, $user, $contact, $prvkey, $pubkey, $public = false) {
1790 $magic_env = self::build_public_message($msg,$user,$contact,$prvkey,$pubkey);
1792 $magic_env = self::build_private_message($msg,$user,$contact,$prvkey,$pubkey);
1794 // The data that will be transmitted is double encoded via "urlencode", strange ...
1795 $slap = "xml=".urlencode(urlencode($magic_env));
1799 private function get_signature($owner, $message) {
1801 unset($sigmsg["author_signature"]);
1802 unset($sigmsg["parent_author_signature"]);
1804 $signed_text = implode(";", $sigmsg);
1806 return base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
1809 private function transmit($owner, $contact, $slap, $public_batch, $queue_run=false, $guid = "") {
1813 $enabled = intval(get_config("system", "diaspora_enabled"));
1817 $logid = random_string(4);
1818 $dest_url = (($public_batch) ? $contact["batch"] : $contact["notify"]);
1820 logger("no url for contact: ".$contact["id"]." batch mode =".$public_batch);
1824 logger("transmit: ".$logid."-".$guid." ".$dest_url);
1826 if (!$queue_run && was_recently_delayed($contact["id"])) {
1829 if (!intval(get_config("system", "diaspora_test"))) {
1830 post_url($dest_url."/", $slap);
1831 $return_code = $a->get_curl_code();
1833 logger("test_mode");
1838 logger("transmit: ".$logid."-".$guid." returns: ".$return_code);
1840 if(!$return_code || (($return_code == 503) && (stristr($a->get_curl_headers(), "retry-after")))) {
1841 logger("queue message");
1843 $r = q("SELECT `id` FROM `queue` WHERE `cid` = %d AND `network` = '%s' AND `content` = '%s' AND `batch` = %d LIMIT 1",
1844 intval($contact["id"]),
1845 dbesc(NETWORK_DIASPORA),
1847 intval($public_batch)
1850 logger("add_to_queue ignored - identical item already in queue");
1852 // queue message for redelivery
1853 add_to_queue($contact["id"], NETWORK_DIASPORA, $slap, $public_batch);
1857 return(($return_code) ? $return_code : (-1));
1861 private function build_and_transmit($owner, $contact, $type, $message, $public_batch = false, $guid = "") {
1863 $data = array("XML" => array("post" => array($type => $message)));
1865 $msg = xml::from_array($data, $xml);
1867 logger('message: '.$msg, LOGGER_DATA);
1868 logger('send guid '.$guid, LOGGER_DEBUG);
1870 $slap = self::build_message($msg, $owner, $contact, $owner['uprvkey'], $contact['pubkey'], $public_batch);
1872 $return_code = self::transmit($owner, $contact, $slap, $public_batch, false, $guid);
1874 logger("guid: ".$item["guid"]." result ".$return_code, LOGGER_DEBUG);
1876 return $return_code;
1879 public static function send_share($owner,$contact) {
1881 $message = array("sender_handle" => self::get_my_handle($owner),
1882 "recipient_handle" => $contact["addr"]);
1884 return self::build_and_transmit($owner, $contact, "request", $message);
1887 public static function send_unshare($owner,$contact) {
1889 $message = array("post_guid" => $owner["guid"],
1890 "diaspora_handle" => self::get_my_handle($owner),
1891 "type" => "Person");
1893 return self::build_and_transmit($owner, $contact, "retraction", $message);
1896 private function is_reshare($body) {
1897 $body = trim($body);
1899 // Skip if it isn't a pure repeated messages
1900 // Does it start with a share?
1901 if (strpos($body, "[share") > 0)
1904 // Does it end with a share?
1905 if (strlen($body) > (strrpos($body, "[/share]") + 8))
1908 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
1909 // Skip if there is no shared message in there
1910 if ($body == $attributes)
1914 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
1915 if ($matches[1] != "")
1916 $guid = $matches[1];
1918 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
1919 if ($matches[1] != "")
1920 $guid = $matches[1];
1923 $r = q("SELECT `contact-id` FROM `item` WHERE `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1",
1924 dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA);
1927 $ret["root_handle"] = diaspora_handle_from_contact($r[0]["contact-id"]);
1928 $ret["root_guid"] = $guid;
1934 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
1935 if ($matches[1] != "")
1936 $profile = $matches[1];
1938 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
1939 if ($matches[1] != "")
1940 $profile = $matches[1];
1944 $ret["root_handle"] = preg_replace("=https?://(.*)/u/(.*)=ism", "$2@$1", $profile);
1945 if (($ret["root_handle"] == $profile) OR ($ret["root_handle"] == ""))
1949 preg_match("/link='(.*?)'/ism", $attributes, $matches);
1950 if ($matches[1] != "")
1951 $link = $matches[1];
1953 preg_match('/link="(.*?)"/ism', $attributes, $matches);
1954 if ($matches[1] != "")
1955 $link = $matches[1];
1957 $ret["root_guid"] = preg_replace("=https?://(.*)/posts/(.*)=ism", "$2", $link);
1958 if (($ret["root_guid"] == $link) OR ($ret["root_guid"] == ""))
1963 public static function send_status($item, $owner, $contact, $public_batch = false) {
1965 $myaddr = self::get_my_handle($owner);
1967 $public = (($item["private"]) ? "false" : "true");
1969 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d H:i:s \U\T\C');
1971 // Detect a share element and do a reshare
1972 if (!$item['private'] AND ($ret = self::is_reshare($item["body"]))) {
1973 $message = array("root_diaspora_id" => $ret["root_handle"],
1974 "root_guid" => $ret["root_guid"],
1975 "guid" => $item["guid"],
1976 "diaspora_handle" => $myaddr,
1977 "public" => $public,
1978 "created_at" => $created,
1979 "provider_display_name" => $item["app"]);
1983 $title = $item["title"];
1984 $body = $item["body"];
1986 // convert to markdown
1987 $body = html_entity_decode(bb2diaspora($body));
1991 $body = "## ".html_entity_decode($title)."\n\n".$body;
1993 if ($item["attach"]) {
1994 $cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism', $item["attach"], $matches, PREG_SET_ORDER);
1996 $body .= "\n".t("Attachments:")."\n";
1997 foreach($matches as $mtch)
1998 $body .= "[".$mtch[3]."](".$mtch[1].")\n";
2002 $location = array();
2004 if ($item["location"] != "")
2005 $location["address"] = $item["location"];
2007 if ($item["coord"] != "") {
2008 $coord = explode(" ", $item["coord"]);
2009 $location["lat"] = $coord[0];
2010 $location["lng"] = $coord[1];
2013 $message = array("raw_message" => $body,
2014 "location" => $location,
2015 "guid" => $item["guid"],
2016 "diaspora_handle" => $myaddr,
2017 "public" => $public,
2018 "created_at" => $created,
2019 "provider_display_name" => $item["app"]);
2021 if (count($location) == 0)
2022 unset($message["location"]);
2024 $type = "status_message";
2027 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
2030 private function construct_like($item, $owner) {
2032 $myaddr = self::get_my_handle($owner);
2034 $p = q("SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
2035 dbesc($item["thr-parent"]));
2041 $target_type = ($parent["uri"] === $parent["parent-uri"] ? "Post" : "Comment");
2044 return(array("positive" => $positive,
2045 "guid" => $item["guid"],
2046 "target_type" => $target_type,
2047 "parent_guid" => $parent["guid"],
2048 "author_signature" => $authorsig,
2049 "diaspora_handle" => $myaddr));
2052 private function construct_comment($item, $owner) {
2054 $myaddr = self::get_my_handle($owner);
2056 $p = q("SELECT `guid` FROM `item` WHERE `parent` = %d AND `id` = %d LIMIT 1",
2057 intval($item["parent"]),
2058 intval($item["parent"])
2066 $text = html_entity_decode(bb2diaspora($item["body"]));
2068 return(array("guid" => $item["guid"],
2069 "parent_guid" => $parent["guid"],
2070 "author_signature" => "",
2072 "diaspora_handle" => $myaddr));
2075 public static function send_followup($item,$owner,$contact,$public_batch = false) {
2077 if($item['verb'] === ACTIVITY_LIKE) {
2078 $message = self::construct_like($item, $owner);
2081 $message = self::construct_comment($item, $owner);
2088 $message["author_signature"] = self::get_signature($owner, $message);
2090 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
2093 function send_relay($item, $owner, $contact, $public_batch = false) {
2095 if ($item["deleted"]) {
2096 $sql_sign_id = "retract_iid";
2097 $type = "relayable_retraction";
2098 } elseif ($item['verb'] === ACTIVITY_LIKE) {
2099 $sql_sign_id = "iid";
2102 $sql_sign_id = "iid";
2106 // fetch the original signature if the relayable was created by a Diaspora
2109 $r = q("SELECT `signed_text`, `signature`, `signer` FROM `sign` WHERE `".$sql_sign_id."` = %d LIMIT 1",
2114 return self::send_followup($item, $owner, $contact, $public_batch);
2118 // Old way - can be removed for the master branch
2119 if ($orig_sign['signed_text'] AND $orig_sign['signature'] AND $orig_sign['signer']) {
2121 // Split the signed text
2122 $signed_parts = explode(";", $orig_sign['signed_text']);
2124 if ($item["deleted"])
2125 $message = array("parent_author_signature" => "",
2126 "target_guid" => $signed_parts[0],
2127 "target_type" => $signed_parts[1],
2128 "sender_handle" => $orig_sign['signer'],
2129 "target_author_signature" => $orig_sign['signature']);
2130 elseif ($item['verb'] === ACTIVITY_LIKE)
2131 $message = array("positive" => $signed_parts[0],
2132 "guid" => $signed_parts[1],
2133 "target_type" => $signed_parts[2],
2134 "parent_guid" => $signed_parts[3],
2135 "parent_author_signature" => "",
2136 "author_signature" => $orig_sign['signature'],
2137 "diaspora_handle" => $signed_parts[4]);
2139 // Remove the comment guid
2140 $guid = array_shift($signed_parts);
2142 // Remove the parent guid
2143 $parent_guid = array_shift($signed_parts);
2145 // Remove the handle
2146 $handle = array_pop($signed_parts);
2148 // Glue the parts together
2149 $text = implode(";", $signed_parts);
2151 $message = array("guid" => $guid,
2152 "parent_guid" => $parent_guid,
2153 "parent_author_signature" => "",
2154 "author_signature" => $orig_sign['signature'],
2155 "text" => implode(";", $signed_parts),
2156 "diaspora_handle" => $handle);
2159 $message = json_decode($orig_sign['signed_text']);
2162 if ($item["deleted"]) {
2163 $signed_text = $message["target_guid"].';'.$message["target_type"];
2164 $message["parent_author_signature"] = base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
2166 $message["parent_author_signature"] = self::get_signature($owner, $message);
2168 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
2171 public static function send_retraction($item, $owner, $contact, $public_batch = false) {
2173 $myaddr = self::get_my_handle($owner);
2175 // Check whether the retraction is for a top-level post or whether it's a relayable
2176 if ($item["uri"] !== $item["parent-uri"]) {
2177 $msg_type = "relayable_retraction";
2178 $target_type = (($item["verb"] === ACTIVITY_LIKE) ? "Like" : "Comment");
2180 $msg_type = "signed_retraction";
2181 $target_type = "StatusMessage";
2184 $signed_text = $item["guid"].";".$target_type;
2186 $message = array("target_guid" => $item['guid'],
2187 "target_type" => $target_type,
2188 "sender_handle" => $myaddr,
2189 "target_author_signature" => base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256')));
2191 return self::build_and_transmit($owner, $contact, $msg_type, $message, $public_batch, $item["guid"]);
2194 public static function send_mail($item, $owner, $contact) {
2196 $myaddr = self::get_my_handle($owner);
2198 $r = q("SELECT * FROM `conv` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2199 intval($item["convid"]),
2200 intval($item["uid"])
2204 logger("conversation not found.");
2210 "guid" => $cnv["guid"],
2211 "subject" => $cnv["subject"],
2212 "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d H:i:s \U\T\C'),
2213 "diaspora_handle" => $cnv["creator"],
2214 "participant_handles" => $cnv["recips"]
2217 $body = bb2diaspora($item["body"]);
2218 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d H:i:s \U\T\C');
2220 $signed_text = $item["guid"].";".$cnv["guid"].";".$body.";".$created.";".$myaddr.";".$cnv['guid'];
2221 $sig = base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
2224 "guid" => $item["guid"],
2225 "parent_guid" => $cnv["guid"],
2226 "parent_author_signature" => $sig,
2227 "author_signature" => $sig,
2229 "created_at" => $created,
2230 "diaspora_handle" => $myaddr,
2231 "conversation_guid" => $cnv["guid"]
2234 if ($item["reply"]) {
2238 $message = array("guid" => $cnv["guid"],
2239 "subject" => $cnv["subject"],
2240 "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d H:i:s \U\T\C'),
2242 "diaspora_handle" => $cnv["creator"],
2243 "participant_handles" => $cnv["recips"]);
2245 $type = "conversation";
2248 return self::build_and_transmit($owner, $contact, $type, $message, false, $item["guid"]);