3 * @file include/diaspora.php
4 * @brief The implementation of the diaspora protocol
13 * - send status retraction
14 * - send comment retraction on own post
15 * - send like retraction on own post
16 * - send comment retraction on diaspora post
17 * - send like retraction on diaspora post
22 * - receive connect request
23 * - receive profile data
25 * - receive comment retraction
26 * - receive like retraction
29 * - relay comment retraction from diaspora
30 * - relay comment retraction from friendica
31 * - relay like retraction from diaspora
32 * - relay like retraction from friendica
36 * - receive account deletion
42 require_once("include/items.php");
43 require_once("include/bb2diaspora.php");
44 require_once("include/Scrape.php");
45 require_once("include/Contact.php");
46 require_once("include/Photo.php");
47 require_once("include/socgraph.php");
48 require_once("include/group.php");
49 require_once("include/xml.php");
50 require_once("include/datetime.php");
51 require_once("include/queue_fn.php");
54 * @brief This class contain functions to create and send Diaspora XML files
60 * @brief Return a list of relay servers
62 * This is an experimental Diaspora feature.
64 * @return array of relay servers
66 public static function relay_list() {
68 $serverdata = get_config("system", "relay_server");
69 if ($serverdata == "")
74 $servers = explode(",", $serverdata);
76 foreach($servers AS $server) {
77 $server = trim($server);
78 $batch = $server."/receive/public";
80 $relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch));
83 $addr = "relay@".str_replace("http://", "", normalise_link($server));
85 $r = q("INSERT INTO `contact` (`uid`, `created`, `name`, `nick`, `addr`, `url`, `nurl`, `batch`, `network`, `rel`, `blocked`, `pending`, `writable`, `name-date`, `uri-date`, `avatar-date`)
86 VALUES (0, '%s', '%s', 'relay', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, '%s', '%s', '%s')",
91 dbesc(normalise_link($server)),
93 dbesc(NETWORK_DIASPORA),
94 intval(CONTACT_IS_FOLLOWER),
95 dbesc(datetime_convert()),
96 dbesc(datetime_convert()),
97 dbesc(datetime_convert())
100 $relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch));
102 $relay[] = $relais[0];
104 $relay[] = $relais[0];
111 * @brief repairs a signature that was double encoded
113 * The function is unused at the moment. It was copied from the old implementation.
115 * @param string $signature The signature
116 * @param string $handle The handle of the signature owner
117 * @param integer $level This value is only set inside this function to avoid endless loops
119 * @return string the repaired signature
121 private function repair_signature($signature, $handle = "", $level = 1) {
123 if ($signature == "")
126 if (base64_encode(base64_decode(base64_decode($signature))) == base64_decode($signature)) {
127 $signature = base64_decode($signature);
128 logger("Repaired double encoded signature from Diaspora/Hubzilla handle ".$handle." - level ".$level, LOGGER_DEBUG);
130 // Do a recursive call to be able to fix even multiple levels
132 $signature = self::repair_signature($signature, $handle, ++$level);
139 * @brief: Decodes incoming Diaspora message
141 * @param array $importer Array of the importer user
142 * @param string $xml urldecoded Diaspora salmon
145 * 'message' -> decoded Diaspora XML message
146 * 'author' -> author diaspora handle
147 * 'key' -> author public key (converted to pkcs#8)
149 public static function decode($importer, $xml) {
152 $basedom = parse_xml_string($xml);
154 if (!is_object($basedom))
157 $children = $basedom->children('https://joindiaspora.com/protocol');
159 if($children->header) {
161 $author_link = str_replace('acct:','',$children->header->author_id);
164 $encrypted_header = json_decode(base64_decode($children->encrypted_header));
166 $encrypted_aes_key_bundle = base64_decode($encrypted_header->aes_key);
167 $ciphertext = base64_decode($encrypted_header->ciphertext);
169 $outer_key_bundle = '';
170 openssl_private_decrypt($encrypted_aes_key_bundle,$outer_key_bundle,$importer['prvkey']);
172 $j_outer_key_bundle = json_decode($outer_key_bundle);
174 $outer_iv = base64_decode($j_outer_key_bundle->iv);
175 $outer_key = base64_decode($j_outer_key_bundle->key);
177 $decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $outer_key, $ciphertext, MCRYPT_MODE_CBC, $outer_iv);
180 $decrypted = pkcs5_unpad($decrypted);
182 logger('decrypted: '.$decrypted, LOGGER_DEBUG);
183 $idom = parse_xml_string($decrypted,false);
185 $inner_iv = base64_decode($idom->iv);
186 $inner_aes_key = base64_decode($idom->aes_key);
188 $author_link = str_replace('acct:','',$idom->author_id);
191 $dom = $basedom->children(NAMESPACE_SALMON_ME);
193 // figure out where in the DOM tree our data is hiding
195 if($dom->provenance->data)
196 $base = $dom->provenance;
197 elseif($dom->env->data)
203 logger('unable to locate salmon data in xml');
204 http_status_exit(400);
208 // Stash the signature away for now. We have to find their key or it won't be good for anything.
209 $signature = base64url_decode($base->sig);
213 // strip whitespace so our data element will return to one big base64 blob
214 $data = str_replace(array(" ","\t","\r","\n"),array("","","",""),$base->data);
217 // stash away some other stuff for later
219 $type = $base->data[0]->attributes()->type[0];
220 $keyhash = $base->sig[0]->attributes()->keyhash[0];
221 $encoding = $base->encoding;
225 $signed_data = $data.'.'.base64url_encode($type).'.'.base64url_encode($encoding).'.'.base64url_encode($alg);
229 $data = base64url_decode($data);
233 $inner_decrypted = $data;
236 // Decode the encrypted blob
238 $inner_encrypted = base64_decode($data);
239 $inner_decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $inner_encrypted, MCRYPT_MODE_CBC, $inner_iv);
240 $inner_decrypted = pkcs5_unpad($inner_decrypted);
244 logger('Could not retrieve author URI.');
245 http_status_exit(400);
247 // Once we have the author URI, go to the web and try to find their public key
248 // (first this will look it up locally if it is in the fcontact cache)
249 // This will also convert diaspora public key from pkcs#1 to pkcs#8
251 logger('Fetching key for '.$author_link);
252 $key = self::key($author_link);
255 logger('Could not retrieve author key.');
256 http_status_exit(400);
259 $verify = rsa_verify($signed_data,$signature,$key);
262 logger('Message did not verify. Discarding.');
263 http_status_exit(400);
266 logger('Message verified.');
268 return array('message' => (string)$inner_decrypted,
269 'author' => unxmlify($author_link),
270 'key' => (string)$key);
276 * @brief Dispatches public messages and find the fitting receivers
278 * @param array $msg The post that will be dispatched
280 * @return int The message id of the generated message, "true" or "false" if there was an error
282 public static function dispatch_public($msg) {
284 $enabled = intval(get_config("system", "diaspora_enabled"));
286 logger("diaspora is disabled");
290 // Use a dummy importer to import the data for the public copy
291 $importer = array("uid" => 0, "page-flags" => PAGE_FREELOVE);
292 $message_id = self::dispatch($importer,$msg);
294 // Now distribute it to the followers
295 $r = q("SELECT `user`.* FROM `user` WHERE `user`.`uid` IN
296 (SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s')
297 AND NOT `account_expired` AND NOT `account_removed`",
298 dbesc(NETWORK_DIASPORA),
299 dbesc($msg["author"])
303 logger("delivering to: ".$rr["username"]);
304 self::dispatch($rr,$msg);
307 logger("No subscribers for ".$msg["author"]." ".print_r($msg, true));
313 * @brief Dispatches the different message types to the different functions
315 * @param array $importer Array of the importer user
316 * @param array $msg The post that will be dispatched
318 * @return int The message id of the generated message, "true" or "false" if there was an error
320 public static function dispatch($importer, $msg) {
322 // The sender is the handle of the contact that sent the message.
323 // This will often be different with relayed messages (for example "like" and "comment")
324 $sender = $msg["author"];
326 if (!diaspora::valid_posting($msg, $fields)) {
327 logger("Invalid posting");
331 $type = $fields->getName();
333 logger("Received message type ".$type." from ".$sender." for user ".$importer["uid"], LOGGER_DEBUG);
336 case "account_deletion":
337 return self::receive_account_deletion($importer, $fields);
340 return self::receive_comment($importer, $sender, $fields, $msg["message"]);
343 return self::receive_contact_request($importer, $fields);
346 return self::receive_conversation($importer, $msg, $fields);
349 return self::receive_like($importer, $sender, $fields);
352 return self::receive_message($importer, $fields);
354 case "participation": // Not implemented
355 return self::receive_participation($importer, $fields);
357 case "photo": // Not implemented
358 return self::receive_photo($importer, $fields);
360 case "poll_participation": // Not implemented
361 return self::receive_poll_participation($importer, $fields);
364 return self::receive_profile($importer, $fields);
367 return self::receive_reshare($importer, $fields, $msg["message"]);
370 return self::receive_retraction($importer, $sender, $fields);
372 case "status_message":
373 return self::receive_status_message($importer, $fields, $msg["message"]);
376 logger("Unknown message type ".$type);
384 * @brief Checks if a posting is valid and fetches the data fields.
386 * This function does not only check the signature.
387 * It also does the conversion between the old and the new diaspora format.
389 * @param array $msg Array with the XML, the sender handle and the sender signature
390 * @param object $fields SimpleXML object that contains the posting when it is valid
392 * @return bool Is the posting valid?
394 private function valid_posting($msg, &$fields) {
396 $data = parse_xml_string($msg["message"], false);
398 if (!is_object($data))
401 $first_child = $data->getName();
403 // Is this the new or the old version?
404 if ($data->getName() == "XML") {
406 foreach ($data->post->children() as $child)
413 $type = $element->getName();
416 // All retractions are handled identically from now on.
417 // In the new version there will only be "retraction".
418 if (in_array($type, array("signed_retraction", "relayable_retraction")))
419 $type = "retraction";
421 if ($type == "request")
424 $fields = new SimpleXMLElement("<".$type."/>");
428 foreach ($element->children() AS $fieldname => $entry) {
430 // Translation for the old XML structure
431 if ($fieldname == "diaspora_handle")
432 $fieldname = "author";
434 if ($fieldname == "participant_handles")
435 $fieldname = "participants";
437 if (in_array($type, array("like", "participation"))) {
438 if ($fieldname == "target_type")
439 $fieldname = "parent_type";
442 if ($fieldname == "sender_handle")
443 $fieldname = "author";
445 if ($fieldname == "recipient_handle")
446 $fieldname = "recipient";
448 if ($fieldname == "root_diaspora_id")
449 $fieldname = "root_author";
451 if ($type == "retraction") {
452 if ($fieldname == "post_guid")
453 $fieldname = "target_guid";
455 if ($fieldname == "type")
456 $fieldname = "target_type";
460 if ($fieldname == "author_signature")
461 $author_signature = base64_decode($entry);
462 elseif ($fieldname == "parent_author_signature")
463 $parent_author_signature = base64_decode($entry);
464 elseif ($fieldname != "target_author_signature") {
465 if ($signed_data != "") {
467 $signed_data_parent .= ";";
470 $signed_data .= $entry;
472 if (!in_array($fieldname, array("parent_author_signature", "target_author_signature")) OR
473 ($orig_type == "relayable_retraction"))
474 xml::copy($entry, $fields, $fieldname);
477 // This is something that shouldn't happen at all.
478 if (in_array($type, array("status_message", "reshare", "profile")))
479 if ($msg["author"] != $fields->author) {
480 logger("Message handle is not the same as envelope sender. Quitting this message.");
484 // Only some message types have signatures. So we quit here for the other types.
485 if (!in_array($type, array("comment", "message", "like")))
488 // No author_signature? This is a must, so we quit.
489 if (!isset($author_signature))
492 if (isset($parent_author_signature)) {
493 $key = self::key($msg["author"]);
495 if (!rsa_verify($signed_data, $parent_author_signature, $key, "sha256"))
499 $key = self::key($fields->author);
501 return rsa_verify($signed_data, $author_signature, $key, "sha256");
505 * @brief Fetches the public key for a given handle
507 * @param string $handle The handle
509 * @return string The public key
511 private function key($handle) {
512 $handle = strval($handle);
514 logger("Fetching diaspora key for: ".$handle);
516 $r = self::person_by_handle($handle);
524 * @brief Fetches data for a given handle
526 * @param string $handle The handle
528 * @return array the queried data
530 private function person_by_handle($handle) {
532 $r = q("SELECT * FROM `fcontact` WHERE `network` = '%s' AND `addr` = '%s' LIMIT 1",
533 dbesc(NETWORK_DIASPORA),
538 logger("In cache ".print_r($r,true), LOGGER_DEBUG);
540 // update record occasionally so it doesn't get stale
541 $d = strtotime($person["updated"]." +00:00");
542 if ($d < strtotime("now - 14 days"))
546 if (!$person OR $update) {
547 logger("create or refresh", LOGGER_DEBUG);
548 $r = probe_url($handle, PROBE_DIASPORA);
550 // Note that Friendica contacts will return a "Diaspora person"
551 // if Diaspora connectivity is enabled on their server
552 if ($r AND ($r["network"] === NETWORK_DIASPORA)) {
553 self::add_fcontact($r, $update);
561 * @brief Updates the fcontact table
563 * @param array $arr The fcontact data
564 * @param bool $update Update or insert?
566 * @return string The id of the fcontact entry
568 private function add_fcontact($arr, $update = false) {
571 $r = q("UPDATE `fcontact` SET
584 WHERE `url` = '%s' AND `network` = '%s'",
586 dbesc($arr["photo"]),
587 dbesc($arr["request"]),
590 dbesc($arr["batch"]),
591 dbesc($arr["notify"]),
593 dbesc($arr["confirm"]),
594 dbesc($arr["alias"]),
595 dbesc($arr["pubkey"]),
596 dbesc(datetime_convert()),
598 dbesc($arr["network"])
601 $r = q("INSERT INTO `fcontact` (`url`,`name`,`photo`,`request`,`nick`,`addr`,
602 `batch`, `notify`,`poll`,`confirm`,`network`,`alias`,`pubkey`,`updated`)
603 VALUES ('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
606 dbesc($arr["photo"]),
607 dbesc($arr["request"]),
610 dbesc($arr["batch"]),
611 dbesc($arr["notify"]),
613 dbesc($arr["confirm"]),
614 dbesc($arr["network"]),
615 dbesc($arr["alias"]),
616 dbesc($arr["pubkey"]),
617 dbesc(datetime_convert())
625 * @brief get a handle (user@domain.tld) from a given contact id or gcontact id
627 * @param int $contact_id The id in the contact table
628 * @param int $gcontact_id The id in the gcontact table
630 * @return string the handle
632 public static function handle_from_contact($contact_id, $gcontact_id = 0) {
635 logger("contact id is ".$contact_id." - gcontact id is ".$gcontact_id, LOGGER_DEBUG);
637 if ($gcontact_id != 0) {
638 $r = q("SELECT `addr` FROM `gcontact` WHERE `id` = %d AND `addr` != ''",
639 intval($gcontact_id));
641 return $r[0]["addr"];
644 $r = q("SELECT `network`, `addr`, `self`, `url`, `nick` FROM `contact` WHERE `id` = %d",
645 intval($contact_id));
649 logger("contact 'self' = ".$contact['self']." 'url' = ".$contact['url'], LOGGER_DEBUG);
651 if($contact['addr'] != "")
652 $handle = $contact['addr'];
654 $baseurl_start = strpos($contact['url'],'://') + 3;
655 $baseurl_length = strpos($contact['url'],'/profile') - $baseurl_start; // allows installations in a subdirectory--not sure how Diaspora will handle
656 $baseurl = substr($contact['url'], $baseurl_start, $baseurl_length);
657 $handle = $contact['nick'].'@'.$baseurl;
665 * @brief Get a contact id for a given handle
667 * @param int $uid The user id
668 * @param string $handle The handle in the format user@domain.tld
670 * @return The contact id
672 private function contact_by_handle($uid, $handle) {
673 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
681 $handle_parts = explode("@", $handle);
682 $nurl_sql = "%%://".$handle_parts[1]."%%/profile/".$handle_parts[0];
683 $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` LIKE '%s' LIMIT 1",
695 * @brief Check if posting is allowed for this contact
697 * @param array $importer Array of the importer user
698 * @param array $contact The contact that is checked
699 * @param bool $is_comment Is the check for a comment?
701 * @return bool is the contact allowed to post?
703 private function post_allow($importer, $contact, $is_comment = false) {
705 // perhaps we were already sharing with this person. Now they're sharing with us.
706 // That makes us friends.
707 // Normally this should have handled by getting a request - but this could get lost
708 if($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
709 q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
710 intval(CONTACT_IS_FRIEND),
711 intval($contact["id"]),
712 intval($importer["uid"])
714 $contact["rel"] = CONTACT_IS_FRIEND;
715 logger("defining user ".$contact["nick"]." as friend");
718 if(($contact["blocked"]) || ($contact["readonly"]) || ($contact["archive"]))
720 if($contact["rel"] == CONTACT_IS_SHARING || $contact["rel"] == CONTACT_IS_FRIEND)
722 if($contact["rel"] == CONTACT_IS_FOLLOWER)
723 if(($importer["page-flags"] == PAGE_COMMUNITY) OR $is_comment)
726 // Messages for the global users are always accepted
727 if ($importer["uid"] == 0)
734 * @brief Fetches the contact id for a handle and checks if posting is allowed
736 * @param array $importer Array of the importer user
737 * @param string $handle The checked handle in the format user@domain.tld
738 * @param bool $is_comment Is the check for a comment?
740 * @return array The contact data
742 private function allowed_contact_by_handle($importer, $handle, $is_comment = false) {
743 $contact = self::contact_by_handle($importer["uid"], $handle);
745 logger("A Contact for handle ".$handle." and user ".$importer["uid"]." was not found");
749 if (!self::post_allow($importer, $contact, $is_comment)) {
750 logger("The handle: ".$handle." is not allowed to post to user ".$importer["uid"]);
757 * @brief Does the message already exists on the system?
759 * @param int $uid The user id
760 * @param string $guid The guid of the message
762 * @return int|bool message id if the message already was stored into the system - or false.
764 private function message_exists($uid, $guid) {
765 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
771 logger("message ".$guid." already exists for user ".$uid);
779 * @brief Checks for links to posts in a message
781 * @param array $item The item array
783 private function fetch_guid($item) {
784 preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
785 function ($match) use ($item){
786 return(self::fetch_guid_sub($match, $item));
791 * @brief sub function of "fetch_guid" which checks for links in messages
793 * @param array $match array containing a link that has to be checked for a message link
794 * @param array $item The item array
796 private function fetch_guid_sub($match, $item) {
797 if (!self::store_by_guid($match[1], $item["author-link"]))
798 self::store_by_guid($match[1], $item["owner-link"]);
802 * @brief Fetches an item with a given guid from a given server
804 * @param string $guid the message guid
805 * @param string $server The server address
806 * @param int $uid The user id of the user
808 * @return int the message id of the stored message or false
810 private function store_by_guid($guid, $server, $uid = 0) {
811 $serverparts = parse_url($server);
812 $server = $serverparts["scheme"]."://".$serverparts["host"];
814 logger("Trying to fetch item ".$guid." from ".$server, LOGGER_DEBUG);
816 $msg = self::message($guid, $server);
821 logger("Successfully fetched item ".$guid." from ".$server, LOGGER_DEBUG);
823 // Now call the dispatcher
824 return self::dispatch_public($msg);
828 * @brief Fetches a message from a server
830 * @param string $guid message guid
831 * @param string $server The url of the server
832 * @param int $level Endless loop prevention
835 * 'message' => The message XML
836 * 'author' => The author handle
837 * 'key' => The public key of the author
839 private function message($guid, $server, $level = 0) {
844 // This will work for Diaspora and newer Friendica servers
845 $source_url = $server."/p/".$guid.".xml";
846 $x = fetch_url($source_url);
850 $source_xml = parse_xml_string($x, false);
852 if (!is_object($source_xml))
855 if ($source_xml->post->reshare) {
856 // Reshare of a reshare - old Diaspora version
857 return self::message($source_xml->post->reshare->root_guid, $server, ++$level);
858 } elseif ($source_xml->getName() == "reshare") {
859 // Reshare of a reshare - new Diaspora version
860 return self::message($source_xml->root_guid, $server, ++$level);
865 // Fetch the author - for the old and the new Diaspora version
866 if ($source_xml->post->status_message->diaspora_handle)
867 $author = (string)$source_xml->post->status_message->diaspora_handle;
868 elseif ($source_xml->author AND ($source_xml->getName() == "status_message"))
869 $author = (string)$source_xml->author;
871 // If this isn't a "status_message" then quit
875 $msg = array("message" => $x, "author" => $author);
877 $msg["key"] = self::key($msg["author"]);
883 * @brief Fetches the item record of a given guid
885 * @param int $uid The user id
886 * @param string $guid message guid
887 * @param string $author The handle of the item
888 * @param array $contact The contact of the item owner
890 * @return array the item record
892 private function parent_item($uid, $guid, $author, $contact) {
893 $r = q("SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
894 `author-name`, `author-link`, `author-avatar`,
895 `owner-name`, `owner-link`, `owner-avatar`
896 FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
897 intval($uid), dbesc($guid));
900 $result = self::store_by_guid($guid, $contact["url"], $uid);
903 $person = self::person_by_handle($author);
904 $result = self::store_by_guid($guid, $person["url"], $uid);
908 logger("Fetched missing item ".$guid." - result: ".$result, LOGGER_DEBUG);
910 $r = q("SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
911 `author-name`, `author-link`, `author-avatar`,
912 `owner-name`, `owner-link`, `owner-avatar`
913 FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
914 intval($uid), dbesc($guid));
919 logger("parent item not found: parent: ".$guid." - user: ".$uid);
922 logger("parent item found: parent: ".$guid." - user: ".$uid);
928 * @brief returns contact details
930 * @param array $contact The default contact if the person isn't found
931 * @param array $person The record of the person
932 * @param int $uid The user id
935 * 'cid' => contact id
936 * 'network' => network type
938 private function author_contact_by_url($contact, $person, $uid) {
940 $r = q("SELECT `id`, `network` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
941 dbesc(normalise_link($person["url"])), intval($uid));
944 $network = $r[0]["network"];
946 $cid = $contact["id"];
947 $network = NETWORK_DIASPORA;
950 return (array("cid" => $cid, "network" => $network));
954 * @brief Is the profile a hubzilla profile?
956 * @param string $url The profile link
958 * @return bool is it a hubzilla server?
960 public static function is_redmatrix($url) {
961 return(strstr($url, "/channel/"));
965 * @brief Generate a post link with a given handle and message guid
967 * @param string $addr The user handle
968 * @param string $guid message guid
970 * @return string the post link
972 private function plink($addr, $guid) {
973 $r = q("SELECT `url`, `nick`, `network` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", dbesc($addr));
977 return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
979 // Friendica contacts are often detected as Diaspora contacts in the "fcontact" table
980 // So we try another way as well.
981 $s = q("SELECT `network` FROM `gcontact` WHERE `nurl`='%s' LIMIT 1", dbesc(normalise_link($r[0]["url"])));
983 $r[0]["network"] = $s[0]["network"];
985 if ($r[0]["network"] == NETWORK_DFRN)
986 return(str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/"));
988 if (self::is_redmatrix($r[0]["url"]))
989 return $r[0]["url"]."/?f=&mid=".$guid;
991 return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
995 * @brief Processes an account deletion
997 * @param array $importer Array of the importer user
998 * @param object $data The message object
1000 * @return bool Success
1002 private function receive_account_deletion($importer, $data) {
1004 /// @todo Account deletion should remove the contact from the global contacts as well
1006 $author = notags(unxmlify($data->author));
1008 $contact = self::contact_by_handle($importer["uid"], $author);
1010 logger("cannot find contact for author: ".$author);
1014 // We now remove the contact
1015 contact_remove($contact["id"]);
1020 * @brief Processes an incoming comment
1022 * @param array $importer Array of the importer user
1023 * @param string $sender The sender of the message
1024 * @param object $data The message object
1025 * @param string $xml The original XML of the message
1027 * @return int The message id of the generated comment or "false" if there was an error
1029 private function receive_comment($importer, $sender, $data, $xml) {
1030 $guid = notags(unxmlify($data->guid));
1031 $parent_guid = notags(unxmlify($data->parent_guid));
1032 $text = unxmlify($data->text);
1033 $author = notags(unxmlify($data->author));
1035 $contact = self::allowed_contact_by_handle($importer, $sender, true);
1039 $message_id = self::message_exists($importer["uid"], $guid);
1043 $parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact);
1047 $person = self::person_by_handle($author);
1048 if (!is_array($person)) {
1049 logger("unable to find author details");
1053 // Fetch the contact id - if we know this contact
1054 $author_contact = self::author_contact_by_url($contact, $person, $importer["uid"]);
1056 $datarray = array();
1058 $datarray["uid"] = $importer["uid"];
1059 $datarray["contact-id"] = $author_contact["cid"];
1060 $datarray["network"] = $author_contact["network"];
1062 $datarray["author-name"] = $person["name"];
1063 $datarray["author-link"] = $person["url"];
1064 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
1066 $datarray["owner-name"] = $contact["name"];
1067 $datarray["owner-link"] = $contact["url"];
1068 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1070 $datarray["guid"] = $guid;
1071 $datarray["uri"] = $author.":".$guid;
1073 $datarray["type"] = "remote-comment";
1074 $datarray["verb"] = ACTIVITY_POST;
1075 $datarray["gravity"] = GRAVITY_COMMENT;
1076 $datarray["parent-uri"] = $parent_item["uri"];
1078 $datarray["object-type"] = ACTIVITY_OBJ_COMMENT;
1079 $datarray["object"] = $xml;
1081 $datarray["body"] = diaspora2bb($text);
1083 self::fetch_guid($datarray);
1085 $message_id = item_store($datarray);
1088 logger("Stored comment ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
1090 // If we are the origin of the parent we store the original data and notify our followers
1091 if($message_id AND $parent_item["origin"]) {
1093 // Formerly we stored the signed text, the signature and the author in different fields.
1094 // We now store the raw data so that we are more flexible.
1095 q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
1096 intval($message_id),
1097 dbesc(json_encode($data))
1101 proc_run("php", "include/notifier.php", "comment-import", $message_id);
1108 * @brief processes and stores private messages
1110 * @param array $importer Array of the importer user
1111 * @param array $contact The contact of the message
1112 * @param object $data The message object
1113 * @param array $msg Array of the processed message, author handle and key
1114 * @param object $mesg The private message
1115 * @param array $conversation The conversation record to which this message belongs
1117 * @return bool "true" if it was successful
1119 private function receive_conversation_message($importer, $contact, $data, $msg, $mesg, $conversation) {
1120 $guid = notags(unxmlify($data->guid));
1121 $subject = notags(unxmlify($data->subject));
1122 $author = notags(unxmlify($data->author));
1126 $msg_guid = notags(unxmlify($mesg->guid));
1127 $msg_parent_guid = notags(unxmlify($mesg->parent_guid));
1128 $msg_parent_author_signature = notags(unxmlify($mesg->parent_author_signature));
1129 $msg_author_signature = notags(unxmlify($mesg->author_signature));
1130 $msg_text = unxmlify($mesg->text);
1131 $msg_created_at = datetime_convert("UTC", "UTC", notags(unxmlify($mesg->created_at)));
1133 // "diaspora_handle" is the element name from the old version
1134 // "author" is the element name from the new version
1136 $msg_author = notags(unxmlify($mesg->author));
1137 elseif ($mesg->diaspora_handle)
1138 $msg_author = notags(unxmlify($mesg->diaspora_handle));
1142 $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
1144 if($msg_conversation_guid != $guid) {
1145 logger("message conversation guid does not belong to the current conversation.");
1149 $body = diaspora2bb($msg_text);
1150 $message_uri = $msg_author.":".$msg_guid;
1152 $author_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
1154 $author_signature = base64_decode($msg_author_signature);
1156 if(strcasecmp($msg_author,$msg["author"]) == 0) {
1160 $person = self::person_by_handle($msg_author);
1162 if (is_array($person) && x($person, "pubkey"))
1163 $key = $person["pubkey"];
1165 logger("unable to find author details");
1170 if (!rsa_verify($author_signed_data, $author_signature, $key, "sha256")) {
1171 logger("verification failed.");
1175 if($msg_parent_author_signature) {
1176 $owner_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
1178 $parent_author_signature = base64_decode($msg_parent_author_signature);
1182 if (!rsa_verify($owner_signed_data, $parent_author_signature, $key, "sha256")) {
1183 logger("owner verification failed.");
1188 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' LIMIT 1",
1192 logger("duplicate message already delivered.", LOGGER_DEBUG);
1196 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1197 VALUES (%d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1198 intval($importer["uid"]),
1200 intval($conversation["id"]),
1201 dbesc($person["name"]),
1202 dbesc($person["photo"]),
1203 dbesc($person["url"]),
1204 intval($contact["id"]),
1209 dbesc($message_uri),
1210 dbesc($author.":".$guid),
1211 dbesc($msg_created_at)
1214 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
1215 dbesc(datetime_convert()),
1216 intval($conversation["id"])
1220 "type" => NOTIFY_MAIL,
1221 "notify_flags" => $importer["notify-flags"],
1222 "language" => $importer["language"],
1223 "to_name" => $importer["username"],
1224 "to_email" => $importer["email"],
1225 "uid" =>$importer["uid"],
1226 "item" => array("subject" => $subject, "body" => $body),
1227 "source_name" => $person["name"],
1228 "source_link" => $person["url"],
1229 "source_photo" => $person["thumb"],
1230 "verb" => ACTIVITY_POST,
1237 * @brief Processes new private messages (answers to private messages are processed elsewhere)
1239 * @param array $importer Array of the importer user
1240 * @param array $msg Array of the processed message, author handle and key
1241 * @param object $data The message object
1243 * @return bool Success
1245 private function receive_conversation($importer, $msg, $data) {
1246 $guid = notags(unxmlify($data->guid));
1247 $subject = notags(unxmlify($data->subject));
1248 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1249 $author = notags(unxmlify($data->author));
1250 $participants = notags(unxmlify($data->participants));
1252 $messages = $data->message;
1254 if (!count($messages)) {
1255 logger("empty conversation");
1259 $contact = self::allowed_contact_by_handle($importer, $msg["author"], true);
1263 $conversation = null;
1265 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1266 intval($importer["uid"]),
1270 $conversation = $c[0];
1272 $r = q("INSERT INTO `conv` (`uid`, `guid`, `creator`, `created`, `updated`, `subject`, `recips`)
1273 VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s')",
1274 intval($importer["uid"]),
1277 dbesc(datetime_convert("UTC", "UTC", $created_at)),
1278 dbesc(datetime_convert()),
1280 dbesc($participants)
1283 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1284 intval($importer["uid"]),
1289 $conversation = $c[0];
1291 if (!$conversation) {
1292 logger("unable to create conversation.");
1296 foreach($messages as $mesg)
1297 self::receive_conversation_message($importer, $contact, $data, $msg, $mesg, $conversation);
1303 * @brief Creates the body for a "like" message
1305 * @param array $contact The contact that send us the "like"
1306 * @param array $parent_item The item array of the parent item
1307 * @param string $guid message guid
1309 * @return string the body
1311 private function construct_like_body($contact, $parent_item, $guid) {
1312 $bodyverb = t('%1$s likes %2$s\'s %3$s');
1314 $ulink = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
1315 $alink = "[url=".$parent_item["author-link"]."]".$parent_item["author-name"]."[/url]";
1316 $plink = "[url=".App::get_baseurl()."/display/".urlencode($guid)."]".t("status")."[/url]";
1318 return sprintf($bodyverb, $ulink, $alink, $plink);
1322 * @brief Creates a XML object for a "like"
1324 * @param array $importer Array of the importer user
1325 * @param array $parent_item The item array of the parent item
1327 * @return string The XML
1329 private function construct_like_object($importer, $parent_item) {
1330 $objtype = ACTIVITY_OBJ_NOTE;
1331 $link = '<link rel="alternate" type="text/html" href="'.App::get_baseurl()."/display/".$importer["nickname"]."/".$parent_item["id"].'" />';
1332 $parent_body = $parent_item["body"];
1334 $xmldata = array("object" => array("type" => $objtype,
1336 "id" => $parent_item["uri"],
1339 "content" => $parent_body));
1341 return xml::from_array($xmldata, $xml, true);
1345 * @brief Processes "like" messages
1347 * @param array $importer Array of the importer user
1348 * @param string $sender The sender of the message
1349 * @param object $data The message object
1351 * @return int The message id of the generated like or "false" if there was an error
1353 private function receive_like($importer, $sender, $data) {
1354 $positive = notags(unxmlify($data->positive));
1355 $guid = notags(unxmlify($data->guid));
1356 $parent_type = notags(unxmlify($data->parent_type));
1357 $parent_guid = notags(unxmlify($data->parent_guid));
1358 $author = notags(unxmlify($data->author));
1360 // likes on comments aren't supported by Diaspora - only on posts
1361 // But maybe this will be supported in the future, so we will accept it.
1362 if (!in_array($parent_type, array("Post", "Comment")))
1365 $contact = self::allowed_contact_by_handle($importer, $sender, true);
1369 $message_id = self::message_exists($importer["uid"], $guid);
1373 $parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact);
1377 $person = self::person_by_handle($author);
1378 if (!is_array($person)) {
1379 logger("unable to find author details");
1383 // Fetch the contact id - if we know this contact
1384 $author_contact = self::author_contact_by_url($contact, $person, $importer["uid"]);
1386 // "positive" = "false" would be a Dislike - wich isn't currently supported by Diaspora
1387 // We would accept this anyhow.
1388 if ($positive == "true")
1389 $verb = ACTIVITY_LIKE;
1391 $verb = ACTIVITY_DISLIKE;
1393 $datarray = array();
1395 $datarray["uid"] = $importer["uid"];
1396 $datarray["contact-id"] = $author_contact["cid"];
1397 $datarray["network"] = $author_contact["network"];
1399 $datarray["author-name"] = $person["name"];
1400 $datarray["author-link"] = $person["url"];
1401 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
1403 $datarray["owner-name"] = $contact["name"];
1404 $datarray["owner-link"] = $contact["url"];
1405 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1407 $datarray["guid"] = $guid;
1408 $datarray["uri"] = $author.":".$guid;
1410 $datarray["type"] = "activity";
1411 $datarray["verb"] = $verb;
1412 $datarray["gravity"] = GRAVITY_LIKE;
1413 $datarray["parent-uri"] = $parent_item["uri"];
1415 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
1416 $datarray["object"] = self::construct_like_object($importer, $parent_item);
1418 $datarray["body"] = self::construct_like_body($contact, $parent_item, $guid);
1420 $message_id = item_store($datarray);
1423 logger("Stored like ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
1425 // If we are the origin of the parent we store the original data and notify our followers
1426 if($message_id AND $parent_item["origin"]) {
1428 // Formerly we stored the signed text, the signature and the author in different fields.
1429 // We now store the raw data so that we are more flexible.
1430 q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
1431 intval($message_id),
1432 dbesc(json_encode($data))
1436 proc_run("php", "include/notifier.php", "comment-import", $message_id);
1443 * @brief Processes private messages
1445 * @param array $importer Array of the importer user
1446 * @param object $data The message object
1448 * @return bool Success?
1450 private function receive_message($importer, $data) {
1451 $guid = notags(unxmlify($data->guid));
1452 $parent_guid = notags(unxmlify($data->parent_guid));
1453 $text = unxmlify($data->text);
1454 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1455 $author = notags(unxmlify($data->author));
1456 $conversation_guid = notags(unxmlify($data->conversation_guid));
1458 $contact = self::allowed_contact_by_handle($importer, $author, true);
1462 $conversation = null;
1464 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1465 intval($importer["uid"]),
1466 dbesc($conversation_guid)
1469 $conversation = $c[0];
1471 logger("conversation not available.");
1477 $body = diaspora2bb($text);
1478 $message_uri = $author.":".$guid;
1480 $person = self::person_by_handle($author);
1482 logger("unable to find author details");
1486 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1487 dbesc($message_uri),
1488 intval($importer["uid"])
1491 logger("duplicate message already delivered.", LOGGER_DEBUG);
1495 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1496 VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1497 intval($importer["uid"]),
1499 intval($conversation["id"]),
1500 dbesc($person["name"]),
1501 dbesc($person["photo"]),
1502 dbesc($person["url"]),
1503 intval($contact["id"]),
1504 dbesc($conversation["subject"]),
1508 dbesc($message_uri),
1509 dbesc($author.":".$parent_guid),
1513 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
1514 dbesc(datetime_convert()),
1515 intval($conversation["id"])
1522 * @brief Processes participations - unsupported by now
1524 * @param array $importer Array of the importer user
1525 * @param object $data The message object
1527 * @return bool always true
1529 private function receive_participation($importer, $data) {
1530 // I'm not sure if we can fully support this message type
1535 * @brief Processes photos - unneeded
1537 * @param array $importer Array of the importer user
1538 * @param object $data The message object
1540 * @return bool always true
1542 private function receive_photo($importer, $data) {
1543 // There doesn't seem to be a reason for this function, since the photo data is transmitted in the status message as well
1548 * @brief Processes poll participations - unssupported
1550 * @param array $importer Array of the importer user
1551 * @param object $data The message object
1553 * @return bool always true
1555 private function receive_poll_participation($importer, $data) {
1556 // We don't support polls by now
1561 * @brief Processes incoming profile updates
1563 * @param array $importer Array of the importer user
1564 * @param object $data The message object
1566 * @return bool Success
1568 private function receive_profile($importer, $data) {
1569 $author = notags(unxmlify($data->author));
1571 $contact = self::contact_by_handle($importer["uid"], $author);
1575 $name = unxmlify($data->first_name).((strlen($data->last_name)) ? " ".unxmlify($data->last_name) : "");
1576 $image_url = unxmlify($data->image_url);
1577 $birthday = unxmlify($data->birthday);
1578 $location = diaspora2bb(unxmlify($data->location));
1579 $about = diaspora2bb(unxmlify($data->bio));
1580 $gender = unxmlify($data->gender);
1581 $searchable = (unxmlify($data->searchable) == "true");
1582 $nsfw = (unxmlify($data->nsfw) == "true");
1583 $tags = unxmlify($data->tag_string);
1585 $tags = explode("#", $tags);
1587 $keywords = array();
1588 foreach ($tags as $tag) {
1589 $tag = trim(strtolower($tag));
1594 $keywords = implode(", ", $keywords);
1596 $handle_parts = explode("@", $author);
1597 $nick = $handle_parts[0];
1600 $name = $handle_parts[0];
1602 if( preg_match("|^https?://|", $image_url) === 0)
1603 $image_url = "http://".$handle_parts[1].$image_url;
1605 update_contact_avatar($image_url, $importer["uid"], $contact["id"]);
1607 // Generic birthday. We don't know the timezone. The year is irrelevant.
1609 $birthday = str_replace("1000", "1901", $birthday);
1611 if ($birthday != "")
1612 $birthday = datetime_convert("UTC", "UTC", $birthday, "Y-m-d");
1614 // this is to prevent multiple birthday notifications in a single year
1615 // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year
1617 if(substr($birthday,5) === substr($contact["bd"],5))
1618 $birthday = $contact["bd"];
1620 $r = q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `name-date` = '%s', `bd` = '%s',
1621 `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d AND `uid` = %d",
1625 dbesc(datetime_convert()),
1631 intval($contact["id"]),
1632 intval($importer["uid"])
1636 poco_check($contact["url"], $name, NETWORK_DIASPORA, $image_url, $about, $location, $gender, $keywords, "",
1637 datetime_convert(), 2, $contact["id"], $importer["uid"]);
1640 $gcontact = array("url" => $contact["url"], "network" => NETWORK_DIASPORA, "generation" => 2,
1641 "photo" => $image_url, "name" => $name, "location" => $location,
1642 "about" => $about, "birthday" => $birthday, "gender" => $gender,
1643 "addr" => $author, "nick" => $nick, "keywords" => $keywords,
1644 "hide" => !$searchable, "nsfw" => $nsfw);
1646 update_gcontact($gcontact);
1648 logger("Profile of contact ".$contact["id"]." stored for user ".$importer["uid"], LOGGER_DEBUG);
1654 * @brief Processes incoming friend requests
1656 * @param array $importer Array of the importer user
1657 * @param array $contact The contact that send the request
1659 private function receive_request_make_friend($importer, $contact) {
1663 if($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
1664 q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
1665 intval(CONTACT_IS_FRIEND),
1666 intval($contact["id"]),
1667 intval($importer["uid"])
1670 // send notification
1672 $r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
1673 intval($importer["uid"])
1676 if($r && !$r[0]["hide-friends"] && !$contact["hidden"] && intval(get_pconfig($importer["uid"], "system", "post_newfriend"))) {
1678 $self = q("SELECT * FROM `contact` WHERE `self` AND `uid` = %d LIMIT 1",
1679 intval($importer["uid"])
1682 // they are not CONTACT_IS_FOLLOWER anymore but that's what we have in the array
1684 if($self && $contact["rel"] == CONTACT_IS_FOLLOWER) {
1687 $arr["uri"] = $arr["parent-uri"] = item_new_uri($a->get_hostname(), $importer["uid"]);
1688 $arr["uid"] = $importer["uid"];
1689 $arr["contact-id"] = $self[0]["id"];
1691 $arr["type"] = 'wall';
1692 $arr["gravity"] = 0;
1694 $arr["author-name"] = $arr["owner-name"] = $self[0]["name"];
1695 $arr["author-link"] = $arr["owner-link"] = $self[0]["url"];
1696 $arr["author-avatar"] = $arr["owner-avatar"] = $self[0]["thumb"];
1697 $arr["verb"] = ACTIVITY_FRIEND;
1698 $arr["object-type"] = ACTIVITY_OBJ_PERSON;
1700 $A = "[url=".$self[0]["url"]."]".$self[0]["name"]."[/url]";
1701 $B = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
1702 $BPhoto = "[url=".$contact["url"]."][img]".$contact["thumb"]."[/img][/url]";
1703 $arr["body"] = sprintf(t("%1$s is now friends with %2$s"), $A, $B)."\n\n\n".$Bphoto;
1705 $arr["object"] = self::construct_new_friend_object($contact);
1707 $arr["last-child"] = 1;
1709 $arr["allow_cid"] = $user[0]["allow_cid"];
1710 $arr["allow_gid"] = $user[0]["allow_gid"];
1711 $arr["deny_cid"] = $user[0]["deny_cid"];
1712 $arr["deny_gid"] = $user[0]["deny_gid"];
1714 $i = item_store($arr);
1716 proc_run("php", "include/notifier.php", "activity", $i);
1722 * @brief Creates a XML object for a "new friend" message
1724 * @param array $contact Array of the contact
1726 * @return string The XML
1728 private function construct_new_friend_object($contact) {
1729 $objtype = ACTIVITY_OBJ_PERSON;
1730 $link = '<link rel="alternate" type="text/html" href="'.$contact["url"].'" />'."\n".
1731 '<link rel="photo" type="image/jpeg" href="'.$contact["thumb"].'" />'."\n";
1733 $xmldata = array("object" => array("type" => $objtype,
1734 "title" => $contact["name"],
1735 "id" => $contact["url"]."/".$contact["name"],
1738 return xml::from_array($xmldata, $xml, true);
1742 * @brief Processes incoming sharing notification
1744 * @param array $importer Array of the importer user
1745 * @param object $data The message object
1747 * @return bool Success
1749 private function receive_contact_request($importer, $data) {
1750 $author = unxmlify($data->author);
1751 $recipient = unxmlify($data->recipient);
1753 if (!$author || !$recipient)
1756 // the current protocol version doesn't know these fields
1757 // That means that we will assume their existance
1758 if (isset($data->following))
1759 $following = (unxmlify($data->following) == "true");
1763 if (isset($data->sharing))
1764 $sharing = (unxmlify($data->sharing) == "true");
1768 $contact = self::contact_by_handle($importer["uid"],$author);
1770 // perhaps we were already sharing with this person. Now they're sharing with us.
1771 // That makes us friends.
1773 if ($following AND $sharing) {
1774 self::receive_request_make_friend($importer, $contact);
1776 } else /// @todo Handle all possible variations of adding and retracting of permissions
1780 if (!$following AND $sharing AND in_array($importer["page-flags"], array(PAGE_SOAPBOX, PAGE_NORMAL))) {
1781 logger("Author ".$author." wants to share with us - but doesn't want to listen. Request is ignored.", LOGGER_DEBUG);
1783 } elseif (!$following AND !$sharing) {
1784 logger("Author ".$author." doesn't want anything - and we don't know the author. Request is ignored.", LOGGER_DEBUG);
1788 $ret = self::person_by_handle($author);
1790 if (!$ret || ($ret["network"] != NETWORK_DIASPORA)) {
1791 logger("Cannot resolve diaspora handle ".$author." for ".$recipient);
1795 $batch = (($ret["batch"]) ? $ret["batch"] : implode("/", array_slice(explode("/", $ret["url"]), 0, 3))."/receive/public");
1797 $r = q("INSERT INTO `contact` (`uid`, `network`,`addr`,`created`,`url`,`nurl`,`batch`,`name`,`nick`,`photo`,`pubkey`,`notify`,`poll`,`blocked`,`priority`)
1798 VALUES (%d, '%s', '%s', '%s', '%s','%s','%s','%s','%s','%s','%s','%s','%s',%d,%d)",
1799 intval($importer["uid"]),
1800 dbesc($ret["network"]),
1801 dbesc($ret["addr"]),
1804 dbesc(normalise_link($ret["url"])),
1806 dbesc($ret["name"]),
1807 dbesc($ret["nick"]),
1808 dbesc($ret["photo"]),
1809 dbesc($ret["pubkey"]),
1810 dbesc($ret["notify"]),
1811 dbesc($ret["poll"]),
1816 // find the contact record we just created
1818 $contact_record = self::contact_by_handle($importer["uid"],$author);
1820 if (!$contact_record) {
1821 logger("unable to locate newly created contact record.");
1825 $def_gid = get_default_group($importer['uid'], $ret["network"]);
1827 if(intval($def_gid))
1828 group_add_member($importer["uid"], "", $contact_record["id"], $def_gid);
1830 if($importer["page-flags"] == PAGE_NORMAL) {
1832 $hash = random_string().(string)time(); // Generate a confirm_key
1834 $ret = q("INSERT INTO `intro` (`uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
1835 VALUES (%d, %d, %d, %d, '%s', '%s', '%s')",
1836 intval($importer["uid"]),
1837 intval($contact_record["id"]),
1840 dbesc(t("Sharing notification from Diaspora network")),
1842 dbesc(datetime_convert())
1846 // automatic friend approval
1848 update_contact_avatar($contact_record["photo"],$importer["uid"],$contact_record["id"]);
1850 // technically they are sharing with us (CONTACT_IS_SHARING),
1851 // but if our page-type is PAGE_COMMUNITY or PAGE_SOAPBOX
1852 // we are going to change the relationship and make them a follower.
1854 if (($importer["page-flags"] == PAGE_FREELOVE) AND $sharing AND $following)
1855 $new_relation = CONTACT_IS_FRIEND;
1856 elseif (($importer["page-flags"] == PAGE_FREELOVE) AND $sharing)
1857 $new_relation = CONTACT_IS_SHARING;
1859 $new_relation = CONTACT_IS_FOLLOWER;
1861 $r = q("UPDATE `contact` SET `rel` = %d,
1869 intval($new_relation),
1870 dbesc(datetime_convert()),
1871 dbesc(datetime_convert()),
1872 intval($contact_record["id"])
1875 $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
1877 $ret = self::send_share($u[0], $contact_record);
1884 * @brief Fetches a message with a given guid
1886 * @param string $guid message guid
1887 * @param string $orig_author handle of the original post
1888 * @param string $author handle of the sharer
1890 * @return array The fetched item
1892 private function original_item($guid, $orig_author, $author) {
1894 // Do we already have this item?
1895 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
1896 `author-name`, `author-link`, `author-avatar`
1897 FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
1901 logger("reshared message ".$guid." already exists on system.");
1903 // Maybe it is already a reshared item?
1904 // Then refetch the content, if it is a reshare from a reshare.
1905 // If it is a reshared post from another network then reformat to avoid display problems with two share elements
1906 if (self::is_reshare($r[0]["body"], true))
1908 elseif (self::is_reshare($r[0]["body"], false)) {
1909 $r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"]));
1911 // Add OEmbed and other information to the body
1912 $r[0]["body"] = add_page_info_to_body($r[0]["body"], false, true);
1920 $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1);
1921 logger("1st try: reshared message ".$guid." will be fetched from original server: ".$server);
1922 $item_id = self::store_by_guid($guid, $server);
1925 $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1);
1926 logger("2nd try: reshared message ".$guid." will be fetched from original server: ".$server);
1927 $item_id = self::store_by_guid($guid, $server);
1930 // Deactivated by now since there is a risk that someone could manipulate postings through this method
1932 $server = "https://".substr($author, strpos($author, "@") + 1);
1933 logger("3rd try: reshared message ".$guid." will be fetched from sharer's server: ".$server);
1934 $item_id = self::store_by_guid($guid, $server);
1937 $server = "http://".substr($author, strpos($author, "@") + 1);
1938 logger("4th try: reshared message ".$guid." will be fetched from sharer's server: ".$server);
1939 $item_id = self::store_by_guid($guid, $server);
1943 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
1944 `author-name`, `author-link`, `author-avatar`
1945 FROM `item` WHERE `id` = %d AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
1957 * @brief Processes a reshare message
1959 * @param array $importer Array of the importer user
1960 * @param object $data The message object
1961 * @param string $xml The original XML of the message
1963 * @return int the message id
1965 private function receive_reshare($importer, $data, $xml) {
1966 $root_author = notags(unxmlify($data->root_author));
1967 $root_guid = notags(unxmlify($data->root_guid));
1968 $guid = notags(unxmlify($data->guid));
1969 $author = notags(unxmlify($data->author));
1970 $public = notags(unxmlify($data->public));
1971 $created_at = notags(unxmlify($data->created_at));
1973 $contact = self::allowed_contact_by_handle($importer, $author, false);
1977 $message_id = self::message_exists($importer["uid"], $guid);
1981 $original_item = self::original_item($root_guid, $root_author, $author);
1982 if (!$original_item)
1985 $orig_url = App::get_baseurl()."/display/".$original_item["guid"];
1987 $datarray = array();
1989 $datarray["uid"] = $importer["uid"];
1990 $datarray["contact-id"] = $contact["id"];
1991 $datarray["network"] = NETWORK_DIASPORA;
1993 $datarray["author-name"] = $contact["name"];
1994 $datarray["author-link"] = $contact["url"];
1995 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1997 $datarray["owner-name"] = $datarray["author-name"];
1998 $datarray["owner-link"] = $datarray["author-link"];
1999 $datarray["owner-avatar"] = $datarray["author-avatar"];
2001 $datarray["guid"] = $guid;
2002 $datarray["uri"] = $datarray["parent-uri"] = $author.":".$guid;
2004 $datarray["verb"] = ACTIVITY_POST;
2005 $datarray["gravity"] = GRAVITY_PARENT;
2007 $datarray["object"] = $xml;
2009 $prefix = share_header($original_item["author-name"], $original_item["author-link"], $original_item["author-avatar"],
2010 $original_item["guid"], $original_item["created"], $orig_url);
2011 $datarray["body"] = $prefix.$original_item["body"]."[/share]";
2013 $datarray["tag"] = $original_item["tag"];
2014 $datarray["app"] = $original_item["app"];
2016 $datarray["plink"] = self::plink($author, $guid);
2017 $datarray["private"] = (($public == "false") ? 1 : 0);
2018 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = datetime_convert("UTC", "UTC", $created_at);
2020 $datarray["object-type"] = $original_item["object-type"];
2022 self::fetch_guid($datarray);
2023 $message_id = item_store($datarray);
2026 logger("Stored reshare ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2032 * @brief Processes retractions
2034 * @param array $importer Array of the importer user
2035 * @param array $contact The contact of the item owner
2036 * @param object $data The message object
2038 * @return bool success
2040 private function item_retraction($importer, $contact, $data) {
2041 $target_type = notags(unxmlify($data->target_type));
2042 $target_guid = notags(unxmlify($data->target_guid));
2043 $author = notags(unxmlify($data->author));
2045 $person = self::person_by_handle($author);
2046 if (!is_array($person)) {
2047 logger("unable to find author detail for ".$author);
2051 $r = q("SELECT `id`, `parent`, `parent-uri`, `author-link` FROM `item` WHERE `guid` = '%s' AND `uid` = %d AND NOT `file` LIKE '%%[%%' LIMIT 1",
2052 dbesc($target_guid),
2053 intval($importer["uid"])
2058 // Only delete it if the author really fits
2059 if (!link_compare($r[0]["author-link"], $person["url"])) {
2060 logger("Item author ".$r[0]["author-link"]." doesn't fit to expected contact ".$person["url"], LOGGER_DEBUG);
2064 // Check if the sender is the thread owner
2065 $p = q("SELECT `id`, `author-link`, `origin` FROM `item` WHERE `id` = %d",
2066 intval($r[0]["parent"]));
2068 // Only delete it if the parent author really fits
2069 if (!link_compare($p[0]["author-link"], $contact["url"]) AND !link_compare($r[0]["author-link"], $contact["url"])) {
2070 logger("Thread author ".$p[0]["author-link"]." and item author ".$r[0]["author-link"]." don't fit to expected contact ".$contact["url"], LOGGER_DEBUG);
2074 // 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
2075 q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = '' WHERE `id` = %d",
2076 dbesc(datetime_convert()),
2077 dbesc(datetime_convert()),
2080 delete_thread($r[0]["id"], $r[0]["parent-uri"]);
2082 logger("Deleted target ".$target_guid." (".$r[0]["id"].") from user ".$importer["uid"]." parent: ".$p[0]["id"], LOGGER_DEBUG);
2084 // Now check if the retraction needs to be relayed by us
2085 if($p[0]["origin"]) {
2087 proc_run("php", "include/notifier.php", "drop", $r[0]["id"]);
2094 * @brief Receives retraction messages
2096 * @param array $importer Array of the importer user
2097 * @param string $sender The sender of the message
2098 * @param object $data The message object
2100 * @return bool Success
2102 private function receive_retraction($importer, $sender, $data) {
2103 $target_type = notags(unxmlify($data->target_type));
2105 $contact = self::contact_by_handle($importer["uid"], $sender);
2107 logger("cannot find contact for sender: ".$sender." and user ".$importer["uid"]);
2111 logger("Got retraction for ".$target_type.", sender ".$sender." and user ".$importer["uid"], LOGGER_DEBUG);
2113 switch ($target_type) {
2116 case "Post": // "Post" will be supported in a future version
2118 case "StatusMessage":
2119 return self::item_retraction($importer, $contact, $data);;
2123 /// @todo What should we do with an "unshare"?
2124 // Removing the contact isn't correct since we still can read the public items
2125 contact_remove($contact["id"]);
2129 logger("Unknown target type ".$target_type);
2136 * @brief Receives status messages
2138 * @param array $importer Array of the importer user
2139 * @param object $data The message object
2140 * @param string $xml The original XML of the message
2142 * @return int The message id of the newly created item
2144 private function receive_status_message($importer, $data, $xml) {
2146 $raw_message = unxmlify($data->raw_message);
2147 $guid = notags(unxmlify($data->guid));
2148 $author = notags(unxmlify($data->author));
2149 $public = notags(unxmlify($data->public));
2150 $created_at = notags(unxmlify($data->created_at));
2151 $provider_display_name = notags(unxmlify($data->provider_display_name));
2153 /// @todo enable support for polls
2154 //if ($data->poll) {
2155 // foreach ($data->poll AS $poll)
2159 $contact = self::allowed_contact_by_handle($importer, $author, false);
2163 $message_id = self::message_exists($importer["uid"], $guid);
2168 if ($data->location)
2169 foreach ($data->location->children() AS $fieldname => $data)
2170 $address[$fieldname] = notags(unxmlify($data));
2172 $body = diaspora2bb($raw_message);
2174 $datarray = array();
2176 // Attach embedded pictures to the body
2178 foreach ($data->photo AS $photo)
2179 $body = "[img]".unxmlify($photo->remote_photo_path).
2180 unxmlify($photo->remote_photo_name)."[/img]\n".$body;
2182 $datarray["object-type"] = ACTIVITY_OBJ_PHOTO;
2184 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
2186 // Add OEmbed and other information to the body
2187 if (!self::is_redmatrix($contact["url"]))
2188 $body = add_page_info_to_body($body, false, true);
2191 $datarray["uid"] = $importer["uid"];
2192 $datarray["contact-id"] = $contact["id"];
2193 $datarray["network"] = NETWORK_DIASPORA;
2195 $datarray["author-name"] = $contact["name"];
2196 $datarray["author-link"] = $contact["url"];
2197 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
2199 $datarray["owner-name"] = $datarray["author-name"];
2200 $datarray["owner-link"] = $datarray["author-link"];
2201 $datarray["owner-avatar"] = $datarray["author-avatar"];
2203 $datarray["guid"] = $guid;
2204 $datarray["uri"] = $datarray["parent-uri"] = $author.":".$guid;
2206 $datarray["verb"] = ACTIVITY_POST;
2207 $datarray["gravity"] = GRAVITY_PARENT;
2209 $datarray["object"] = $xml;
2211 $datarray["body"] = $body;
2213 if ($provider_display_name != "")
2214 $datarray["app"] = $provider_display_name;
2216 $datarray["plink"] = self::plink($author, $guid);
2217 $datarray["private"] = (($public == "false") ? 1 : 0);
2218 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = datetime_convert("UTC", "UTC", $created_at);
2220 if (isset($address["address"]))
2221 $datarray["location"] = $address["address"];
2223 if (isset($address["lat"]) AND isset($address["lng"]))
2224 $datarray["coord"] = $address["lat"]." ".$address["lng"];
2226 self::fetch_guid($datarray);
2227 $message_id = item_store($datarray);
2230 logger("Stored item ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2235 /* ************************************************************************************** *
2236 * Here are all the functions that are needed to transmit data with the Diaspora protocol *
2237 * ************************************************************************************** */
2240 * @brief returnes the handle of a contact
2242 * @param array $me contact array
2244 * @return string the handle in the format user@domain.tld
2246 private function my_handle($contact) {
2247 if ($contact["addr"] != "")
2248 return $contact["addr"];
2250 // Normally we should have a filled "addr" field - but in the past this wasn't the case
2251 // So - just in case - we build the the address here.
2252 if ($contact["nickname"] != "")
2253 $nick = $contact["nickname"];
2255 $nick = $contact["nick"];
2257 return $nick."@".substr(App::get_baseurl(), strpos(App::get_baseurl(),"://") + 3);
2261 * @brief Creates the envelope for a public message
2263 * @param string $msg The message that is to be transmitted
2264 * @param array $user The record of the sender
2265 * @param array $contact Target of the communication
2266 * @param string $prvkey The private key of the sender
2267 * @param string $pubkey The public key of the receiver
2269 * @return string The envelope
2271 private function build_public_message($msg, $user, $contact, $prvkey, $pubkey) {
2273 logger("Message: ".$msg, LOGGER_DATA);
2275 $handle = self::my_handle($user);
2277 $b64url_data = base64url_encode($msg);
2279 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
2281 $type = "application/xml";
2282 $encoding = "base64url";
2283 $alg = "RSA-SHA256";
2285 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
2287 $signature = rsa_sign($signable_data,$prvkey);
2288 $sig = base64url_encode($signature);
2290 $xmldata = array("diaspora" => array("header" => array("author_id" => $handle),
2291 "me:env" => array("me:encoding" => "base64url",
2292 "me:alg" => "RSA-SHA256",
2294 "@attributes" => array("type" => "application/xml"),
2295 "me:sig" => $sig)));
2297 $namespaces = array("" => "https://joindiaspora.com/protocol",
2298 "me" => "http://salmon-protocol.org/ns/magic-env");
2300 $magic_env = xml::from_array($xmldata, $xml, false, $namespaces);
2302 logger("magic_env: ".$magic_env, LOGGER_DATA);
2307 * @brief Creates the envelope for a private message
2309 * @param string $msg The message that is to be transmitted
2310 * @param array $user The record of the sender
2311 * @param array $contact Target of the communication
2312 * @param string $prvkey The private key of the sender
2313 * @param string $pubkey The public key of the receiver
2315 * @return string The envelope
2317 private function build_private_message($msg, $user, $contact, $prvkey, $pubkey) {
2319 logger("Message: ".$msg, LOGGER_DATA);
2321 // without a public key nothing will work
2324 logger("pubkey missing: contact id: ".$contact["id"]);
2328 $inner_aes_key = random_string(32);
2329 $b_inner_aes_key = base64_encode($inner_aes_key);
2330 $inner_iv = random_string(16);
2331 $b_inner_iv = base64_encode($inner_iv);
2333 $outer_aes_key = random_string(32);
2334 $b_outer_aes_key = base64_encode($outer_aes_key);
2335 $outer_iv = random_string(16);
2336 $b_outer_iv = base64_encode($outer_iv);
2338 $handle = self::my_handle($user);
2340 $padded_data = pkcs5_pad($msg,16);
2341 $inner_encrypted = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $padded_data, MCRYPT_MODE_CBC, $inner_iv);
2343 $b64_data = base64_encode($inner_encrypted);
2346 $b64url_data = base64url_encode($b64_data);
2347 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
2349 $type = "application/xml";
2350 $encoding = "base64url";
2351 $alg = "RSA-SHA256";
2353 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
2355 $signature = rsa_sign($signable_data,$prvkey);
2356 $sig = base64url_encode($signature);
2358 $xmldata = array("decrypted_header" => array("iv" => $b_inner_iv,
2359 "aes_key" => $b_inner_aes_key,
2360 "author_id" => $handle));
2362 $decrypted_header = xml::from_array($xmldata, $xml, true);
2363 $decrypted_header = pkcs5_pad($decrypted_header,16);
2365 $ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $outer_aes_key, $decrypted_header, MCRYPT_MODE_CBC, $outer_iv);
2367 $outer_json = json_encode(array("iv" => $b_outer_iv, "key" => $b_outer_aes_key));
2369 $encrypted_outer_key_bundle = "";
2370 openssl_public_encrypt($outer_json, $encrypted_outer_key_bundle, $pubkey);
2372 $b64_encrypted_outer_key_bundle = base64_encode($encrypted_outer_key_bundle);
2374 logger("outer_bundle: ".$b64_encrypted_outer_key_bundle." key: ".$pubkey, LOGGER_DATA);
2376 $encrypted_header_json_object = json_encode(array("aes_key" => base64_encode($encrypted_outer_key_bundle),
2377 "ciphertext" => base64_encode($ciphertext)));
2378 $cipher_json = base64_encode($encrypted_header_json_object);
2380 $xmldata = array("diaspora" => array("encrypted_header" => $cipher_json,
2381 "me:env" => array("me:encoding" => "base64url",
2382 "me:alg" => "RSA-SHA256",
2384 "@attributes" => array("type" => "application/xml"),
2385 "me:sig" => $sig)));
2387 $namespaces = array("" => "https://joindiaspora.com/protocol",
2388 "me" => "http://salmon-protocol.org/ns/magic-env");
2390 $magic_env = xml::from_array($xmldata, $xml, false, $namespaces);
2392 logger("magic_env: ".$magic_env, LOGGER_DATA);
2397 * @brief Create the envelope for a message
2399 * @param string $msg The message that is to be transmitted
2400 * @param array $user The record of the sender
2401 * @param array $contact Target of the communication
2402 * @param string $prvkey The private key of the sender
2403 * @param string $pubkey The public key of the receiver
2404 * @param bool $public Is the message public?
2406 * @return string The message that will be transmitted to other servers
2408 private function build_message($msg, $user, $contact, $prvkey, $pubkey, $public = false) {
2411 $magic_env = self::build_public_message($msg,$user,$contact,$prvkey,$pubkey);
2413 $magic_env = self::build_private_message($msg,$user,$contact,$prvkey,$pubkey);
2415 // The data that will be transmitted is double encoded via "urlencode", strange ...
2416 $slap = "xml=".urlencode(urlencode($magic_env));
2421 * @brief Creates a signature for a message
2423 * @param array $owner the array of the owner of the message
2424 * @param array $message The message that is to be signed
2426 * @return string The signature
2428 private function signature($owner, $message) {
2430 unset($sigmsg["author_signature"]);
2431 unset($sigmsg["parent_author_signature"]);
2433 $signed_text = implode(";", $sigmsg);
2435 return base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
2439 * @brief Transmit a message to a target server
2441 * @param array $owner the array of the item owner
2442 * @param array $contact Target of the communication
2443 * @param string $slap The message that is to be transmitted
2444 * @param bool $public_batch Is it a public post?
2445 * @param bool $queue_run Is the transmission called from the queue?
2446 * @param string $guid message guid
2448 * @return int Result of the transmission
2450 public static function transmit($owner, $contact, $slap, $public_batch, $queue_run=false, $guid = "") {
2454 $enabled = intval(get_config("system", "diaspora_enabled"));
2458 $logid = random_string(4);
2459 $dest_url = (($public_batch) ? $contact["batch"] : $contact["notify"]);
2461 logger("no url for contact: ".$contact["id"]." batch mode =".$public_batch);
2465 logger("transmit: ".$logid."-".$guid." ".$dest_url);
2467 if (!$queue_run && was_recently_delayed($contact["id"])) {
2470 if (!intval(get_config("system", "diaspora_test"))) {
2471 post_url($dest_url."/", $slap);
2472 $return_code = $a->get_curl_code();
2474 logger("test_mode");
2479 logger("transmit: ".$logid."-".$guid." returns: ".$return_code);
2481 if(!$return_code || (($return_code == 503) && (stristr($a->get_curl_headers(), "retry-after")))) {
2482 logger("queue message");
2484 $r = q("SELECT `id` FROM `queue` WHERE `cid` = %d AND `network` = '%s' AND `content` = '%s' AND `batch` = %d LIMIT 1",
2485 intval($contact["id"]),
2486 dbesc(NETWORK_DIASPORA),
2488 intval($public_batch)
2491 logger("add_to_queue ignored - identical item already in queue");
2493 // queue message for redelivery
2494 add_to_queue($contact["id"], NETWORK_DIASPORA, $slap, $public_batch);
2498 return(($return_code) ? $return_code : (-1));
2503 * @brief Builds and transmit messages
2505 * @param array $owner the array of the item owner
2506 * @param array $contact Target of the communication
2507 * @param string $type The message type
2508 * @param array $message The message data
2509 * @param bool $public_batch Is it a public post?
2510 * @param string $guid message guid
2511 * @param bool $spool Should the transmission be spooled or transmitted?
2513 * @return int Result of the transmission
2515 private function build_and_transmit($owner, $contact, $type, $message, $public_batch = false, $guid = "", $spool = false) {
2517 $data = array("XML" => array("post" => array($type => $message)));
2519 $msg = xml::from_array($data, $xml);
2521 logger('message: '.$msg, LOGGER_DATA);
2522 logger('send guid '.$guid, LOGGER_DEBUG);
2524 $slap = self::build_message($msg, $owner, $contact, $owner['uprvkey'], $contact['pubkey'], $public_batch);
2527 add_to_queue($contact['id'], NETWORK_DIASPORA, $slap, $public_batch);
2530 $return_code = self::transmit($owner, $contact, $slap, $public_batch, false, $guid);
2532 logger("guid: ".$item["guid"]." result ".$return_code, LOGGER_DEBUG);
2534 return $return_code;
2538 * @brief Sends a "share" message
2540 * @param array $owner the array of the item owner
2541 * @param array $contact Target of the communication
2543 * @return int The result of the transmission
2545 public static function send_share($owner,$contact) {
2547 $message = array("sender_handle" => self::my_handle($owner),
2548 "recipient_handle" => $contact["addr"]);
2550 return self::build_and_transmit($owner, $contact, "request", $message);
2554 * @brief sends an "unshare"
2556 * @param array $owner the array of the item owner
2557 * @param array $contact Target of the communication
2559 * @return int The result of the transmission
2561 public static function send_unshare($owner,$contact) {
2563 $message = array("post_guid" => $owner["guid"],
2564 "diaspora_handle" => self::my_handle($owner),
2565 "type" => "Person");
2567 return self::build_and_transmit($owner, $contact, "retraction", $message);
2571 * @brief Checks a message body if it is a reshare
2573 * @param string $body The message body that is to be check
2574 * @param bool $complete Should it be a complete check or a simple check?
2576 * @return array|bool Reshare details or "false" if no reshare
2578 public static function is_reshare($body, $complete = true) {
2579 $body = trim($body);
2581 // Skip if it isn't a pure repeated messages
2582 // Does it start with a share?
2583 if (strpos($body, "[share") > 0)
2586 // Does it end with a share?
2587 if (strlen($body) > (strrpos($body, "[/share]") + 8))
2590 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
2591 // Skip if there is no shared message in there
2592 if ($body == $attributes)
2595 // If we don't do the complete check we quit here
2600 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
2601 if ($matches[1] != "")
2602 $guid = $matches[1];
2604 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
2605 if ($matches[1] != "")
2606 $guid = $matches[1];
2609 $r = q("SELECT `contact-id` FROM `item` WHERE `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1",
2610 dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA);
2613 $ret["root_handle"] = self::handle_from_contact($r[0]["contact-id"]);
2614 $ret["root_guid"] = $guid;
2620 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
2621 if ($matches[1] != "")
2622 $profile = $matches[1];
2624 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
2625 if ($matches[1] != "")
2626 $profile = $matches[1];
2630 $ret["root_handle"] = preg_replace("=https?://(.*)/u/(.*)=ism", "$2@$1", $profile);
2631 if (($ret["root_handle"] == $profile) OR ($ret["root_handle"] == ""))
2635 preg_match("/link='(.*?)'/ism", $attributes, $matches);
2636 if ($matches[1] != "")
2637 $link = $matches[1];
2639 preg_match('/link="(.*?)"/ism', $attributes, $matches);
2640 if ($matches[1] != "")
2641 $link = $matches[1];
2643 $ret["root_guid"] = preg_replace("=https?://(.*)/posts/(.*)=ism", "$2", $link);
2644 if (($ret["root_guid"] == $link) OR (trim($ret["root_guid"]) == ""))
2651 * @brief Sends a post
2653 * @param array $item The item that will be exported
2654 * @param array $owner the array of the item owner
2655 * @param array $contact Target of the communication
2656 * @param bool $public_batch Is it a public post?
2658 * @return int The result of the transmission
2660 public static function send_status($item, $owner, $contact, $public_batch = false) {
2662 $myaddr = self::my_handle($owner);
2664 $public = (($item["private"]) ? "false" : "true");
2666 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d H:i:s \U\T\C');
2668 // Detect a share element and do a reshare
2669 if (!$item['private'] AND ($ret = self::is_reshare($item["body"]))) {
2670 $message = array("root_diaspora_id" => $ret["root_handle"],
2671 "root_guid" => $ret["root_guid"],
2672 "guid" => $item["guid"],
2673 "diaspora_handle" => $myaddr,
2674 "public" => $public,
2675 "created_at" => $created,
2676 "provider_display_name" => $item["app"]);
2680 $title = $item["title"];
2681 $body = $item["body"];
2683 // convert to markdown
2684 $body = html_entity_decode(bb2diaspora($body));
2688 $body = "## ".html_entity_decode($title)."\n\n".$body;
2690 if ($item["attach"]) {
2691 $cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism', $item["attach"], $matches, PREG_SET_ORDER);
2693 $body .= "\n".t("Attachments:")."\n";
2694 foreach($matches as $mtch)
2695 $body .= "[".$mtch[3]."](".$mtch[1].")\n";
2699 $location = array();
2701 if ($item["location"] != "")
2702 $location["address"] = $item["location"];
2704 if ($item["coord"] != "") {
2705 $coord = explode(" ", $item["coord"]);
2706 $location["lat"] = $coord[0];
2707 $location["lng"] = $coord[1];
2710 $message = array("raw_message" => $body,
2711 "location" => $location,
2712 "guid" => $item["guid"],
2713 "diaspora_handle" => $myaddr,
2714 "public" => $public,
2715 "created_at" => $created,
2716 "provider_display_name" => $item["app"]);
2718 if (count($location) == 0)
2719 unset($message["location"]);
2721 $type = "status_message";
2724 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
2728 * @brief Creates a "like" object
2730 * @param array $item The item that will be exported
2731 * @param array $owner the array of the item owner
2733 * @return array The data for a "like"
2735 private function construct_like($item, $owner) {
2737 $p = q("SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
2738 dbesc($item["thr-parent"]));
2744 $target_type = ($parent["uri"] === $parent["parent-uri"] ? "Post" : "Comment");
2747 return(array("positive" => $positive,
2748 "guid" => $item["guid"],
2749 "target_type" => $target_type,
2750 "parent_guid" => $parent["guid"],
2751 "author_signature" => "",
2752 "diaspora_handle" => self::my_handle($owner)));
2756 * @brief Creates the object for a comment
2758 * @param array $item The item that will be exported
2759 * @param array $owner the array of the item owner
2761 * @return array The data for a comment
2763 private function construct_comment($item, $owner) {
2765 $p = q("SELECT `guid` FROM `item` WHERE `parent` = %d AND `id` = %d LIMIT 1",
2766 intval($item["parent"]),
2767 intval($item["parent"])
2775 $text = html_entity_decode(bb2diaspora($item["body"]));
2777 return(array("guid" => $item["guid"],
2778 "parent_guid" => $parent["guid"],
2779 "author_signature" => "",
2781 "diaspora_handle" => self::my_handle($owner)));
2785 * @brief Send a like or a comment
2787 * @param array $item The item that will be exported
2788 * @param array $owner the array of the item owner
2789 * @param array $contact Target of the communication
2790 * @param bool $public_batch Is it a public post?
2792 * @return int The result of the transmission
2794 public static function send_followup($item,$owner,$contact,$public_batch = false) {
2796 if($item['verb'] === ACTIVITY_LIKE) {
2797 $message = self::construct_like($item, $owner);
2800 $message = self::construct_comment($item, $owner);
2807 $message["author_signature"] = self::signature($owner, $message);
2809 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
2813 * @brief Creates a message from a signature record entry
2815 * @param array $item The item that will be exported
2816 * @param array $signature The entry of the "sign" record
2818 * @return string The message
2820 private function message_from_signature($item, $signature) {
2822 // Split the signed text
2823 $signed_parts = explode(";", $signature['signed_text']);
2825 if ($item["deleted"])
2826 $message = array("parent_author_signature" => "",
2827 "target_guid" => $signed_parts[0],
2828 "target_type" => $signed_parts[1],
2829 "sender_handle" => $signature['signer'],
2830 "target_author_signature" => $signature['signature']);
2831 elseif ($item['verb'] === ACTIVITY_LIKE)
2832 $message = array("positive" => $signed_parts[0],
2833 "guid" => $signed_parts[1],
2834 "target_type" => $signed_parts[2],
2835 "parent_guid" => $signed_parts[3],
2836 "parent_author_signature" => "",
2837 "author_signature" => $signature['signature'],
2838 "diaspora_handle" => $signed_parts[4]);
2840 // Remove the comment guid
2841 $guid = array_shift($signed_parts);
2843 // Remove the parent guid
2844 $parent_guid = array_shift($signed_parts);
2846 // Remove the handle
2847 $handle = array_pop($signed_parts);
2849 // Glue the parts together
2850 $text = implode(";", $signed_parts);
2852 $message = array("guid" => $guid,
2853 "parent_guid" => $parent_guid,
2854 "parent_author_signature" => "",
2855 "author_signature" => $signature['signature'],
2856 "text" => implode(";", $signed_parts),
2857 "diaspora_handle" => $handle);
2863 * @brief Relays messages (like, comment, retraction) to other servers if we are the thread owner
2865 * @param array $item The item that will be exported
2866 * @param array $owner the array of the item owner
2867 * @param array $contact Target of the communication
2868 * @param bool $public_batch Is it a public post?
2870 * @return int The result of the transmission
2872 public static function send_relay($item, $owner, $contact, $public_batch = false) {
2874 if ($item["deleted"])
2875 return self::send_retraction($item, $owner, $contact, $public_batch, true);
2876 elseif ($item['verb'] === ACTIVITY_LIKE)
2881 logger("Got relayable data ".$type." for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
2883 // fetch the original signature
2885 $r = q("SELECT `signed_text`, `signature`, `signer` FROM `sign` WHERE `iid` = %d LIMIT 1",
2886 intval($item["id"]));
2889 logger("Couldn't fetch signatur for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
2895 // Old way - is used by the internal Friendica functions
2896 /// @todo Change all signatur storing functions to the new format
2897 if ($signature['signed_text'] AND $signature['signature'] AND $signature['signer'])
2898 $message = self::message_from_signature($item, $signature);
2900 $msg = json_decode($signature['signed_text'], true);
2903 if (is_array($msg)) {
2904 foreach ($msg AS $field => $data) {
2905 if (!$item["deleted"]) {
2906 if ($field == "author")
2907 $field = "diaspora_handle";
2908 if ($field == "parent_type")
2909 $field = "target_type";
2912 $message[$field] = $data;
2915 logger("Signature text for item ".$item["guid"]." (".$item["id"].") couldn't be extracted: ".$signature['signed_text'], LOGGER_DEBUG);
2918 $message["parent_author_signature"] = self::signature($owner, $message);
2920 logger("Relayed data ".print_r($message, true), LOGGER_DEBUG);
2922 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
2926 * @brief Sends a retraction (deletion) of a message, like or comment
2928 * @param array $item The item that will be exported
2929 * @param array $owner the array of the item owner
2930 * @param array $contact Target of the communication
2931 * @param bool $public_batch Is it a public post?
2932 * @param bool $relay Is the retraction transmitted from a relay?
2934 * @return int The result of the transmission
2936 public static function send_retraction($item, $owner, $contact, $public_batch = false, $relay = false) {
2938 $itemaddr = self::handle_from_contact($item["contact-id"], $item["gcontact-id"]);
2940 // Check whether the retraction is for a top-level post or whether it's a relayable
2941 if ($item["uri"] !== $item["parent-uri"]) {
2942 $msg_type = "relayable_retraction";
2943 $target_type = (($item["verb"] === ACTIVITY_LIKE) ? "Like" : "Comment");
2945 $msg_type = "signed_retraction";
2946 $target_type = "StatusMessage";
2949 if ($relay AND ($item["uri"] !== $item["parent-uri"]))
2950 $signature = "parent_author_signature";
2952 $signature = "target_author_signature";
2954 $signed_text = $item["guid"].";".$target_type;
2956 $message = array("target_guid" => $item['guid'],
2957 "target_type" => $target_type,
2958 "sender_handle" => $itemaddr,
2959 $signature => base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256')));
2961 logger("Got message ".print_r($message, true), LOGGER_DEBUG);
2963 return self::build_and_transmit($owner, $contact, $msg_type, $message, $public_batch, $item["guid"]);
2967 * @brief Sends a mail
2969 * @param array $item The item that will be exported
2970 * @param array $owner The owner
2971 * @param array $contact Target of the communication
2973 * @return int The result of the transmission
2975 public static function send_mail($item, $owner, $contact) {
2977 $myaddr = self::my_handle($owner);
2979 $r = q("SELECT * FROM `conv` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2980 intval($item["convid"]),
2981 intval($item["uid"])
2985 logger("conversation not found.");
2991 "guid" => $cnv["guid"],
2992 "subject" => $cnv["subject"],
2993 "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d H:i:s \U\T\C'),
2994 "diaspora_handle" => $cnv["creator"],
2995 "participant_handles" => $cnv["recips"]
2998 $body = bb2diaspora($item["body"]);
2999 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d H:i:s \U\T\C');
3001 $signed_text = $item["guid"].";".$cnv["guid"].";".$body.";".$created.";".$myaddr.";".$cnv['guid'];
3002 $sig = base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
3005 "guid" => $item["guid"],
3006 "parent_guid" => $cnv["guid"],
3007 "parent_author_signature" => $sig,
3008 "author_signature" => $sig,
3010 "created_at" => $created,
3011 "diaspora_handle" => $myaddr,
3012 "conversation_guid" => $cnv["guid"]
3015 if ($item["reply"]) {
3019 $message = array("guid" => $cnv["guid"],
3020 "subject" => $cnv["subject"],
3021 "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d H:i:s \U\T\C'),
3023 "diaspora_handle" => $cnv["creator"],
3024 "participant_handles" => $cnv["recips"]);
3026 $type = "conversation";
3029 return self::build_and_transmit($owner, $contact, $type, $message, false, $item["guid"]);
3033 * @brief Sends profile data
3035 * @param int $uid The user id
3037 public static function send_profile($uid) {
3042 $recips = q("SELECT `id`,`name`,`network`,`pubkey`,`notify` FROM `contact` WHERE `network` = '%s'
3043 AND `uid` = %d AND `rel` != %d",
3044 dbesc(NETWORK_DIASPORA),
3046 intval(CONTACT_IS_SHARING)
3051 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.*, `user`.`prvkey` AS `uprvkey`, `contact`.`addr`
3053 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
3054 INNER JOIN `contact` ON `profile`.`uid` = `contact`.`uid`
3055 WHERE `user`.`uid` = %d AND `profile`.`is-default` AND `contact`.`self` LIMIT 1",
3064 $handle = $profile["addr"];
3065 $first = ((strpos($profile['name'],' ')
3066 ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']));
3067 $last = (($first === $profile['name']) ? '' : trim(substr($profile['name'], strlen($first))));
3068 $large = App::get_baseurl().'/photo/custom/300/'.$profile['uid'].'.jpg';
3069 $medium = App::get_baseurl().'/photo/custom/100/'.$profile['uid'].'.jpg';
3070 $small = App::get_baseurl().'/photo/custom/50/' .$profile['uid'].'.jpg';
3071 $searchable = (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false');
3073 if ($searchable === 'true') {
3074 $dob = '1000-00-00';
3076 if (($profile['dob']) && ($profile['dob'] != '0000-00-00'))
3077 $dob = ((intval($profile['dob'])) ? intval($profile['dob']) : '1000') .'-'. datetime_convert('UTC','UTC',$profile['dob'],'m-d');
3079 $about = $profile['about'];
3080 $about = strip_tags(bbcode($about));
3082 $location = formatted_location($profile);
3084 if ($profile['pub_keywords']) {
3085 $kw = str_replace(',',' ',$profile['pub_keywords']);
3086 $kw = str_replace(' ',' ',$kw);
3087 $arr = explode(' ',$profile['pub_keywords']);
3089 for($x = 0; $x < 5; $x ++) {
3091 $tags .= '#'. trim($arr[$x]) .' ';
3095 $tags = trim($tags);
3098 $message = array("diaspora_handle" => $handle,
3099 "first_name" => $first,
3100 "last_name" => $last,
3101 "image_url" => $large,
3102 "image_url_medium" => $medium,
3103 "image_url_small" => $small,
3105 "gender" => $profile['gender'],
3107 "location" => $location,
3108 "searchable" => $searchable,
3109 "tag_string" => $tags);
3111 foreach($recips as $recip)
3112 self::build_and_transmit($profile, $recip, "profile", $message, false, "", true);
3116 * @brief Stores the signature for likes that are created on our system
3118 * @param array $contact The contact array of the "like"
3119 * @param int $post_id The post id of the "like"
3121 * @return bool Success
3123 public static function store_like_signature($contact, $post_id) {
3125 // Is the contact the owner? Then fetch the private key
3126 if (!$contact['self'] OR ($contact['uid'] == 0)) {
3127 logger("No owner post, so not storing signature", LOGGER_DEBUG);
3131 $r = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($contact['uid']));
3135 $contact["uprvkey"] = $r[0]['prvkey'];
3137 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", intval($post_id));
3141 if (!in_array($r[0]["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE)))
3144 $message = self::construct_like($r[0], $contact);
3145 $message["author_signature"] = self::signature($contact, $message);
3147 // In the future we will store the signature more flexible to support new fields.
3148 // Right now we cannot change this since old Friendica versions (prior to 3.5) can only handle this format.
3149 // (We are transmitting this data here via DFRN)
3151 $signed_text = $message["positive"].";".$message["guid"].";".$message["target_type"].";".
3152 $message["parent_guid"].";".$message["diaspora_handle"];
3154 q("INSERT INTO `sign` (`iid`,`signed_text`,`signature`,`signer`) VALUES (%d,'%s','%s','%s')",
3156 dbesc($signed_text),
3157 dbesc($message["author_signature"]),
3158 dbesc($message["diaspora_handle"])
3161 // This here will replace the lines above, once Diaspora changed its protocol
3162 //q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
3163 // intval($message_id),
3164 // dbesc(json_encode($message))
3167 logger('Stored diaspora like signature');
3172 * @brief Stores the signature for comments that are created on our system
3174 * @param array $item The item array of the comment
3175 * @param array $contact The contact array of the item owner
3176 * @param string $uprvkey The private key of the sender
3177 * @param int $message_id The message id of the comment
3179 * @return bool Success
3181 public static function store_comment_signature($item, $contact, $uprvkey, $message_id) {
3183 if ($uprvkey == "") {
3184 logger('No private key, so not storing comment signature', LOGGER_DEBUG);
3188 $contact["uprvkey"] = $uprvkey;
3190 $message = self::construct_comment($item, $contact);
3191 $message["author_signature"] = self::signature($contact, $message);
3193 // In the future we will store the signature more flexible to support new fields.
3194 // Right now we cannot change this since old Friendica versions (prior to 3.5) can only handle this format.
3195 // (We are transmitting this data here via DFRN)
3196 $signed_text = $message["guid"].";".$message["parent_guid"].";".
3197 $message["text"].";".$message["diaspora_handle"];
3199 q("INSERT INTO `sign` (`iid`,`signed_text`,`signature`,`signer`) VALUES (%d,'%s','%s','%s')",
3200 intval($message_id),
3201 dbesc($signed_text),
3202 dbesc($message["author_signature"]),
3203 dbesc($message["diaspora_handle"])
3206 // This here will replace the lines above, once Diaspora changed its protocol
3207 //q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
3208 // intval($message_id),
3209 // dbesc(json_encode($message))
3212 logger('Stored diaspora comment signature');