3 * @file include/diaspora.php
4 * @brief The implementation of the diaspora protocol
6 * The new protocol is described here: http://diaspora.github.io/diaspora_federation/index.html
7 * Currently this implementation here interprets the old and the new protocol and sends the old one.
8 * This will change in the future.
11 require_once("include/items.php");
12 require_once("include/bb2diaspora.php");
13 require_once("include/Scrape.php");
14 require_once("include/Contact.php");
15 require_once("include/Photo.php");
16 require_once("include/socgraph.php");
17 require_once("include/group.php");
18 require_once("include/xml.php");
19 require_once("include/datetime.php");
20 require_once("include/queue_fn.php");
23 * @brief This class contain functions to create and send Diaspora XML files
29 * @brief Return a list of relay servers
31 * This is an experimental Diaspora feature.
33 * @return array of relay servers
35 public static function relay_list() {
37 $serverdata = get_config("system", "relay_server");
38 if ($serverdata == "")
43 $servers = explode(",", $serverdata);
45 foreach($servers AS $server) {
46 $server = trim($server);
47 $batch = $server."/receive/public";
49 $relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch));
52 $addr = "relay@".str_replace("http://", "", normalise_link($server));
54 $r = q("INSERT INTO `contact` (`uid`, `created`, `name`, `nick`, `addr`, `url`, `nurl`, `batch`, `network`, `rel`, `blocked`, `pending`, `writable`, `name-date`, `uri-date`, `avatar-date`)
55 VALUES (0, '%s', '%s', 'relay', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, '%s', '%s', '%s')",
60 dbesc(normalise_link($server)),
62 dbesc(NETWORK_DIASPORA),
63 intval(CONTACT_IS_FOLLOWER),
64 dbesc(datetime_convert()),
65 dbesc(datetime_convert()),
66 dbesc(datetime_convert())
69 $relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch));
71 $relay[] = $relais[0];
73 $relay[] = $relais[0];
80 * @brief repairs a signature that was double encoded
82 * The function is unused at the moment. It was copied from the old implementation.
84 * @param string $signature The signature
85 * @param string $handle The handle of the signature owner
86 * @param integer $level This value is only set inside this function to avoid endless loops
88 * @return string the repaired signature
90 private function repair_signature($signature, $handle = "", $level = 1) {
95 if (base64_encode(base64_decode(base64_decode($signature))) == base64_decode($signature)) {
96 $signature = base64_decode($signature);
97 logger("Repaired double encoded signature from Diaspora/Hubzilla handle ".$handle." - level ".$level, LOGGER_DEBUG);
99 // Do a recursive call to be able to fix even multiple levels
101 $signature = self::repair_signature($signature, $handle, ++$level);
108 * @brief verify the envelope and return the verified data
110 * @param string $envelope The magic envelope
112 * @return string verified data
114 private function verify_magic_envelope($envelope) {
116 $basedom = parse_xml_string($envelope, false);
118 if (!is_object($basedom)) {
119 logger("Envelope is no XML file");
123 $children = $basedom->children('http://salmon-protocol.org/ns/magic-env');
125 if (sizeof($children) == 0) {
126 logger("XML has no children");
132 $data = base64url_decode($children->data);
133 $type = $children->data->attributes()->type[0];
135 $encoding = $children->encoding;
137 $alg = $children->alg;
139 $sig = base64url_decode($children->sig);
140 $key_id = $children->sig->attributes()->key_id[0];
142 $handle = base64url_decode($key_id);
144 $b64url_data = base64url_encode($data);
145 $msg = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
147 $signable_data = $msg.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
149 $key = self::key($handle);
151 $verify = rsa_verify($signable_data, $sig, $key);
153 logger('Message did not verify. Discarding.');
161 * @brief: Decodes incoming Diaspora message
163 * @param array $importer Array of the importer user
164 * @param string $xml urldecoded Diaspora salmon
167 * 'message' -> decoded Diaspora XML message
168 * 'author' -> author diaspora handle
169 * 'key' -> author public key (converted to pkcs#8)
171 public static function decode($importer, $xml) {
174 $basedom = parse_xml_string($xml);
176 if (!is_object($basedom))
179 $children = $basedom->children('https://joindiaspora.com/protocol');
181 if($children->header) {
183 $author_link = str_replace('acct:','',$children->header->author_id);
186 $encrypted_header = json_decode(base64_decode($children->encrypted_header));
188 $encrypted_aes_key_bundle = base64_decode($encrypted_header->aes_key);
189 $ciphertext = base64_decode($encrypted_header->ciphertext);
191 $outer_key_bundle = '';
192 openssl_private_decrypt($encrypted_aes_key_bundle,$outer_key_bundle,$importer['prvkey']);
194 $j_outer_key_bundle = json_decode($outer_key_bundle);
196 $outer_iv = base64_decode($j_outer_key_bundle->iv);
197 $outer_key = base64_decode($j_outer_key_bundle->key);
199 $decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $outer_key, $ciphertext, MCRYPT_MODE_CBC, $outer_iv);
202 $decrypted = pkcs5_unpad($decrypted);
204 logger('decrypted: '.$decrypted, LOGGER_DEBUG);
205 $idom = parse_xml_string($decrypted,false);
207 $inner_iv = base64_decode($idom->iv);
208 $inner_aes_key = base64_decode($idom->aes_key);
210 $author_link = str_replace('acct:','',$idom->author_id);
213 $dom = $basedom->children(NAMESPACE_SALMON_ME);
215 // figure out where in the DOM tree our data is hiding
217 if($dom->provenance->data)
218 $base = $dom->provenance;
219 elseif($dom->env->data)
225 logger('unable to locate salmon data in xml');
226 http_status_exit(400);
230 // Stash the signature away for now. We have to find their key or it won't be good for anything.
231 $signature = base64url_decode($base->sig);
235 // strip whitespace so our data element will return to one big base64 blob
236 $data = str_replace(array(" ","\t","\r","\n"),array("","","",""),$base->data);
239 // stash away some other stuff for later
241 $type = $base->data[0]->attributes()->type[0];
242 $keyhash = $base->sig[0]->attributes()->keyhash[0];
243 $encoding = $base->encoding;
247 $signed_data = $data.'.'.base64url_encode($type).'.'.base64url_encode($encoding).'.'.base64url_encode($alg);
251 $data = base64url_decode($data);
255 $inner_decrypted = $data;
258 // Decode the encrypted blob
260 $inner_encrypted = base64_decode($data);
261 $inner_decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $inner_encrypted, MCRYPT_MODE_CBC, $inner_iv);
262 $inner_decrypted = pkcs5_unpad($inner_decrypted);
266 logger('Could not retrieve author URI.');
267 http_status_exit(400);
269 // Once we have the author URI, go to the web and try to find their public key
270 // (first this will look it up locally if it is in the fcontact cache)
271 // This will also convert diaspora public key from pkcs#1 to pkcs#8
273 logger('Fetching key for '.$author_link);
274 $key = self::key($author_link);
277 logger('Could not retrieve author key.');
278 http_status_exit(400);
281 $verify = rsa_verify($signed_data,$signature,$key);
284 logger('Message did not verify. Discarding.');
285 http_status_exit(400);
288 logger('Message verified.');
290 return array('message' => (string)$inner_decrypted,
291 'author' => unxmlify($author_link),
292 'key' => (string)$key);
297 * @brief Dispatches public messages and find the fitting receivers
299 * @param array $msg The post that will be dispatched
301 * @return int The message id of the generated message, "true" or "false" if there was an error
303 public static function dispatch_public($msg) {
305 $enabled = intval(get_config("system", "diaspora_enabled"));
307 logger("diaspora is disabled");
311 // Use a dummy importer to import the data for the public copy
312 $importer = array("uid" => 0, "page-flags" => PAGE_FREELOVE);
313 $message_id = self::dispatch($importer,$msg);
315 // Now distribute it to the followers
316 $r = q("SELECT `user`.* FROM `user` WHERE `user`.`uid` IN
317 (SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s')
318 AND NOT `account_expired` AND NOT `account_removed`",
319 dbesc(NETWORK_DIASPORA),
320 dbesc($msg["author"])
324 logger("delivering to: ".$rr["username"]);
325 self::dispatch($rr,$msg);
328 logger("No subscribers for ".$msg["author"]." ".print_r($msg, true));
334 * @brief Dispatches the different message types to the different functions
336 * @param array $importer Array of the importer user
337 * @param array $msg The post that will be dispatched
339 * @return int The message id of the generated message, "true" or "false" if there was an error
341 public static function dispatch($importer, $msg) {
343 // The sender is the handle of the contact that sent the message.
344 // This will often be different with relayed messages (for example "like" and "comment")
345 $sender = $msg["author"];
347 if (!diaspora::valid_posting($msg, $fields)) {
348 logger("Invalid posting");
352 $type = $fields->getName();
354 logger("Received message type ".$type." from ".$sender." for user ".$importer["uid"], LOGGER_DEBUG);
357 case "account_deletion":
358 return self::receive_account_deletion($importer, $fields);
361 return self::receive_comment($importer, $sender, $fields, $msg["message"]);
364 return self::receive_contact_request($importer, $fields);
367 return self::receive_conversation($importer, $msg, $fields);
370 return self::receive_like($importer, $sender, $fields);
373 return self::receive_message($importer, $fields);
375 case "participation": // Not implemented
376 return self::receive_participation($importer, $fields);
378 case "photo": // Not implemented
379 return self::receive_photo($importer, $fields);
381 case "poll_participation": // Not implemented
382 return self::receive_poll_participation($importer, $fields);
385 return self::receive_profile($importer, $fields);
388 return self::receive_reshare($importer, $fields, $msg["message"]);
391 return self::receive_retraction($importer, $sender, $fields);
393 case "status_message":
394 return self::receive_status_message($importer, $fields, $msg["message"]);
397 logger("Unknown message type ".$type);
405 * @brief Checks if a posting is valid and fetches the data fields.
407 * This function does not only check the signature.
408 * It also does the conversion between the old and the new diaspora format.
410 * @param array $msg Array with the XML, the sender handle and the sender signature
411 * @param object $fields SimpleXML object that contains the posting when it is valid
413 * @return bool Is the posting valid?
415 private function valid_posting($msg, &$fields) {
417 $data = parse_xml_string($msg["message"], false);
419 if (!is_object($data)) {
420 logger("No valid XML ".$msg["message"], LOGGER_DEBUG);
424 $first_child = $data->getName();
426 // Is this the new or the old version?
427 if ($data->getName() == "XML") {
429 foreach ($data->post->children() as $child)
436 $type = $element->getName();
439 logger("Got message type ".$type.": ".$msg["message"], LOGGER_DATA);
441 // All retractions are handled identically from now on.
442 // In the new version there will only be "retraction".
443 if (in_array($type, array("signed_retraction", "relayable_retraction")))
444 $type = "retraction";
446 if ($type == "request")
449 $fields = new SimpleXMLElement("<".$type."/>");
453 foreach ($element->children() AS $fieldname => $entry) {
455 // Translation for the old XML structure
456 if ($fieldname == "diaspora_handle")
457 $fieldname = "author";
459 if ($fieldname == "participant_handles")
460 $fieldname = "participants";
462 if (in_array($type, array("like", "participation"))) {
463 if ($fieldname == "target_type")
464 $fieldname = "parent_type";
467 if ($fieldname == "sender_handle")
468 $fieldname = "author";
470 if ($fieldname == "recipient_handle")
471 $fieldname = "recipient";
473 if ($fieldname == "root_diaspora_id")
474 $fieldname = "root_author";
476 if ($type == "retraction") {
477 if ($fieldname == "post_guid")
478 $fieldname = "target_guid";
480 if ($fieldname == "type")
481 $fieldname = "target_type";
485 if (($fieldname == "author_signature") AND ($entry != ""))
486 $author_signature = base64_decode($entry);
487 elseif (($fieldname == "parent_author_signature") AND ($entry != ""))
488 $parent_author_signature = base64_decode($entry);
489 elseif (!in_array($fieldname, array("author_signature", "parent_author_signature", "target_author_signature"))) {
490 if ($signed_data != "") {
492 $signed_data_parent .= ";";
495 $signed_data .= $entry;
497 if (!in_array($fieldname, array("parent_author_signature", "target_author_signature")) OR
498 ($orig_type == "relayable_retraction"))
499 xml::copy($entry, $fields, $fieldname);
502 // This is something that shouldn't happen at all.
503 if (in_array($type, array("status_message", "reshare", "profile")))
504 if ($msg["author"] != $fields->author) {
505 logger("Message handle is not the same as envelope sender. Quitting this message.");
509 // Only some message types have signatures. So we quit here for the other types.
510 if (!in_array($type, array("comment", "message", "like")))
513 // No author_signature? This is a must, so we quit.
514 if (!isset($author_signature)) {
515 logger("No author signature for type ".$type." - Message: ".$msg["message"], LOGGER_DEBUG);
519 if (isset($parent_author_signature)) {
520 $key = self::key($msg["author"]);
522 if (!rsa_verify($signed_data, $parent_author_signature, $key, "sha256")) {
523 logger("No valid parent author signature for author ".$msg["author"]. " in type ".$type." - signed data: ".$signed_data." - Message: ".$msg["message"]." - Signature ".$parent_author_signature, LOGGER_DEBUG);
528 $key = self::key($fields->author);
530 if (!rsa_verify($signed_data, $author_signature, $key, "sha256")) {
531 logger("No valid author signature for author ".$msg["author"]. " in type ".$type." - signed data: ".$signed_data." - Message: ".$msg["message"]." - Signature ".$author_signature, LOGGER_DEBUG);
538 * @brief Fetches the public key for a given handle
540 * @param string $handle The handle
542 * @return string The public key
544 private function key($handle) {
545 $handle = strval($handle);
547 logger("Fetching diaspora key for: ".$handle);
549 $r = self::person_by_handle($handle);
557 * @brief Fetches data for a given handle
559 * @param string $handle The handle
561 * @return array the queried data
563 private function person_by_handle($handle) {
565 $r = q("SELECT * FROM `fcontact` WHERE `network` = '%s' AND `addr` = '%s' LIMIT 1",
566 dbesc(NETWORK_DIASPORA),
571 logger("In cache ".print_r($r,true), LOGGER_DEBUG);
573 // update record occasionally so it doesn't get stale
574 $d = strtotime($person["updated"]." +00:00");
575 if ($d < strtotime("now - 14 days"))
578 if ($person["guid"] == "")
582 if (!$person OR $update) {
583 logger("create or refresh", LOGGER_DEBUG);
584 $r = probe_url($handle, PROBE_DIASPORA);
586 // Note that Friendica contacts will return a "Diaspora person"
587 // if Diaspora connectivity is enabled on their server
588 if ($r AND ($r["network"] === NETWORK_DIASPORA)) {
589 self::add_fcontact($r, $update);
597 * @brief Updates the fcontact table
599 * @param array $arr The fcontact data
600 * @param bool $update Update or insert?
602 * @return string The id of the fcontact entry
604 private function add_fcontact($arr, $update = false) {
607 $r = q("UPDATE `fcontact` SET
621 WHERE `url` = '%s' AND `network` = '%s'",
623 dbesc($arr["photo"]),
624 dbesc($arr["request"]),
626 dbesc(strtolower($arr["addr"])),
628 dbesc($arr["batch"]),
629 dbesc($arr["notify"]),
631 dbesc($arr["confirm"]),
632 dbesc($arr["alias"]),
633 dbesc($arr["pubkey"]),
634 dbesc(datetime_convert()),
636 dbesc($arr["network"])
639 $r = q("INSERT INTO `fcontact` (`url`,`name`,`photo`,`request`,`nick`,`addr`, `guid`,
640 `batch`, `notify`,`poll`,`confirm`,`network`,`alias`,`pubkey`,`updated`)
641 VALUES ('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
644 dbesc($arr["photo"]),
645 dbesc($arr["request"]),
649 dbesc($arr["batch"]),
650 dbesc($arr["notify"]),
652 dbesc($arr["confirm"]),
653 dbesc($arr["network"]),
654 dbesc($arr["alias"]),
655 dbesc($arr["pubkey"]),
656 dbesc(datetime_convert())
664 * @brief get a handle (user@domain.tld) from a given contact id or gcontact id
666 * @param int $contact_id The id in the contact table
667 * @param int $gcontact_id The id in the gcontact table
669 * @return string the handle
671 public static function handle_from_contact($contact_id, $gcontact_id = 0) {
674 logger("contact id is ".$contact_id." - gcontact id is ".$gcontact_id, LOGGER_DEBUG);
676 if ($gcontact_id != 0) {
677 $r = q("SELECT `addr` FROM `gcontact` WHERE `id` = %d AND `addr` != ''",
678 intval($gcontact_id));
680 return strtolower($r[0]["addr"]);
683 $r = q("SELECT `network`, `addr`, `self`, `url`, `nick` FROM `contact` WHERE `id` = %d",
684 intval($contact_id));
688 logger("contact 'self' = ".$contact['self']." 'url' = ".$contact['url'], LOGGER_DEBUG);
690 if($contact['addr'] != "")
691 $handle = $contact['addr'];
693 $baseurl_start = strpos($contact['url'],'://') + 3;
694 $baseurl_length = strpos($contact['url'],'/profile') - $baseurl_start; // allows installations in a subdirectory--not sure how Diaspora will handle
695 $baseurl = substr($contact['url'], $baseurl_start, $baseurl_length);
696 $handle = $contact['nick'].'@'.$baseurl;
700 return strtolower($handle);
704 * @brief Get a contact id for a given handle
706 * @param int $uid The user id
707 * @param string $handle The handle in the format user@domain.tld
709 * @return The contact id
711 private function contact_by_handle($uid, $handle) {
712 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
720 $handle_parts = explode("@", $handle);
721 $nurl_sql = "%%://".$handle_parts[1]."%%/profile/".$handle_parts[0];
722 $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` LIKE '%s' LIMIT 1",
734 * @brief Check if posting is allowed for this contact
736 * @param array $importer Array of the importer user
737 * @param array $contact The contact that is checked
738 * @param bool $is_comment Is the check for a comment?
740 * @return bool is the contact allowed to post?
742 private function post_allow($importer, $contact, $is_comment = false) {
744 // perhaps we were already sharing with this person. Now they're sharing with us.
745 // That makes us friends.
746 // Normally this should have handled by getting a request - but this could get lost
747 if($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
748 q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
749 intval(CONTACT_IS_FRIEND),
750 intval($contact["id"]),
751 intval($importer["uid"])
753 $contact["rel"] = CONTACT_IS_FRIEND;
754 logger("defining user ".$contact["nick"]." as friend");
757 if(($contact["blocked"]) || ($contact["readonly"]) || ($contact["archive"]))
759 if($contact["rel"] == CONTACT_IS_SHARING || $contact["rel"] == CONTACT_IS_FRIEND)
761 if($contact["rel"] == CONTACT_IS_FOLLOWER)
762 if(($importer["page-flags"] == PAGE_COMMUNITY) OR $is_comment)
765 // Messages for the global users are always accepted
766 if ($importer["uid"] == 0)
773 * @brief Fetches the contact id for a handle and checks if posting is allowed
775 * @param array $importer Array of the importer user
776 * @param string $handle The checked handle in the format user@domain.tld
777 * @param bool $is_comment Is the check for a comment?
779 * @return array The contact data
781 private function allowed_contact_by_handle($importer, $handle, $is_comment = false) {
782 $contact = self::contact_by_handle($importer["uid"], $handle);
784 logger("A Contact for handle ".$handle." and user ".$importer["uid"]." was not found");
788 if (!self::post_allow($importer, $contact, $is_comment)) {
789 logger("The handle: ".$handle." is not allowed to post to user ".$importer["uid"]);
796 * @brief Does the message already exists on the system?
798 * @param int $uid The user id
799 * @param string $guid The guid of the message
801 * @return int|bool message id if the message already was stored into the system - or false.
803 private function message_exists($uid, $guid) {
804 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
810 logger("message ".$guid." already exists for user ".$uid);
818 * @brief Checks for links to posts in a message
820 * @param array $item The item array
822 private function fetch_guid($item) {
823 preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
824 function ($match) use ($item){
825 return(self::fetch_guid_sub($match, $item));
830 * @brief sub function of "fetch_guid" which checks for links in messages
832 * @param array $match array containing a link that has to be checked for a message link
833 * @param array $item The item array
835 private function fetch_guid_sub($match, $item) {
836 if (!self::store_by_guid($match[1], $item["author-link"]))
837 self::store_by_guid($match[1], $item["owner-link"]);
841 * @brief Fetches an item with a given guid from a given server
843 * @param string $guid the message guid
844 * @param string $server The server address
845 * @param int $uid The user id of the user
847 * @return int the message id of the stored message or false
849 private function store_by_guid($guid, $server, $uid = 0) {
850 $serverparts = parse_url($server);
851 $server = $serverparts["scheme"]."://".$serverparts["host"];
853 logger("Trying to fetch item ".$guid." from ".$server, LOGGER_DEBUG);
855 $msg = self::message($guid, $server);
860 logger("Successfully fetched item ".$guid." from ".$server, LOGGER_DEBUG);
862 // Now call the dispatcher
863 return self::dispatch_public($msg);
867 * @brief Fetches a message from a server
869 * @param string $guid message guid
870 * @param string $server The url of the server
871 * @param int $level Endless loop prevention
874 * 'message' => The message XML
875 * 'author' => The author handle
876 * 'key' => The public key of the author
878 private function message($guid, $server, $level = 0) {
883 // This will work for new Diaspora servers and Friendica servers from 3.5
884 $source_url = $server."/fetch/post/".$guid;
885 logger("Fetch post from ".$source_url, LOGGER_DEBUG);
887 $envelope = fetch_url($source_url);
889 logger("Envelope was fetched.", LOGGER_DEBUG);
890 $x = self::verify_magic_envelope($envelope);
892 logger("Envelope could not be verified.", LOGGER_DEBUG);
894 logger("Envelope was verified.", LOGGER_DEBUG);
898 // This will work for older Diaspora and Friendica servers
900 $source_url = $server."/p/".$guid.".xml";
901 logger("Fetch post from ".$source_url, LOGGER_DEBUG);
903 $x = fetch_url($source_url);
908 $source_xml = parse_xml_string($x, false);
910 if (!is_object($source_xml))
913 if ($source_xml->post->reshare) {
914 // Reshare of a reshare - old Diaspora version
915 logger("Message is a reshare", LOGGER_DEBUG);
916 return self::message($source_xml->post->reshare->root_guid, $server, ++$level);
917 } elseif ($source_xml->getName() == "reshare") {
918 // Reshare of a reshare - new Diaspora version
919 logger("Message is a new reshare", LOGGER_DEBUG);
920 return self::message($source_xml->root_guid, $server, ++$level);
925 // Fetch the author - for the old and the new Diaspora version
926 if ($source_xml->post->status_message->diaspora_handle)
927 $author = (string)$source_xml->post->status_message->diaspora_handle;
928 elseif ($source_xml->author AND ($source_xml->getName() == "status_message"))
929 $author = (string)$source_xml->author;
931 // If this isn't a "status_message" then quit
933 logger("Message doesn't seem to be a status message", LOGGER_DEBUG);
937 $msg = array("message" => $x, "author" => $author);
939 $msg["key"] = self::key($msg["author"]);
945 * @brief Fetches the item record of a given guid
947 * @param int $uid The user id
948 * @param string $guid message guid
949 * @param string $author The handle of the item
950 * @param array $contact The contact of the item owner
952 * @return array the item record
954 private function parent_item($uid, $guid, $author, $contact) {
955 $r = q("SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
956 `author-name`, `author-link`, `author-avatar`,
957 `owner-name`, `owner-link`, `owner-avatar`
958 FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
959 intval($uid), dbesc($guid));
962 $result = self::store_by_guid($guid, $contact["url"], $uid);
965 $person = self::person_by_handle($author);
966 $result = self::store_by_guid($guid, $person["url"], $uid);
970 logger("Fetched missing item ".$guid." - result: ".$result, LOGGER_DEBUG);
972 $r = q("SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
973 `author-name`, `author-link`, `author-avatar`,
974 `owner-name`, `owner-link`, `owner-avatar`
975 FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
976 intval($uid), dbesc($guid));
981 logger("parent item not found: parent: ".$guid." - user: ".$uid);
984 logger("parent item found: parent: ".$guid." - user: ".$uid);
990 * @brief returns contact details
992 * @param array $contact The default contact if the person isn't found
993 * @param array $person The record of the person
994 * @param int $uid The user id
997 * 'cid' => contact id
998 * 'network' => network type
1000 private function author_contact_by_url($contact, $person, $uid) {
1002 $r = q("SELECT `id`, `network`, `url` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
1003 dbesc(normalise_link($person["url"])), intval($uid));
1006 $network = $r[0]["network"];
1008 // We are receiving content from a user that is about to be terminated
1009 // This means the user is vital, so we remove a possible termination date.
1010 unmark_for_death($contact);
1012 $cid = $contact["id"];
1013 $network = NETWORK_DIASPORA;
1016 return array("cid" => $cid, "network" => $network);
1020 * @brief Is the profile a hubzilla profile?
1022 * @param string $url The profile link
1024 * @return bool is it a hubzilla server?
1026 public static function is_redmatrix($url) {
1027 return(strstr($url, "/channel/"));
1031 * @brief Generate a post link with a given handle and message guid
1033 * @param string $addr The user handle
1034 * @param string $guid message guid
1036 * @return string the post link
1038 private function plink($addr, $guid) {
1039 $r = q("SELECT `url`, `nick`, `network` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", dbesc($addr));
1043 return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
1045 // Friendica contacts are often detected as Diaspora contacts in the "fcontact" table
1046 // So we try another way as well.
1047 $s = q("SELECT `network` FROM `gcontact` WHERE `nurl`='%s' LIMIT 1", dbesc(normalise_link($r[0]["url"])));
1049 $r[0]["network"] = $s[0]["network"];
1051 if ($r[0]["network"] == NETWORK_DFRN)
1052 return(str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/"));
1054 if (self::is_redmatrix($r[0]["url"]))
1055 return $r[0]["url"]."/?f=&mid=".$guid;
1057 return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
1061 * @brief Processes an account deletion
1063 * @param array $importer Array of the importer user
1064 * @param object $data The message object
1066 * @return bool Success
1068 private function receive_account_deletion($importer, $data) {
1070 /// @todo Account deletion should remove the contact from the global contacts as well
1072 $author = notags(unxmlify($data->author));
1074 $contact = self::contact_by_handle($importer["uid"], $author);
1076 logger("cannot find contact for author: ".$author);
1080 // We now remove the contact
1081 contact_remove($contact["id"]);
1086 * @brief Fetch the uri from our database if we already have this item (maybe from ourselves)
1088 * @param string $author Author handle
1089 * @param string $guid Message guid
1091 * @return string The constructed uri or the one from our database
1093 private function get_uri_from_guid($author, $guid) {
1095 $r = q("SELECT `uri` FROM `item` WHERE `guid` = '%s' LIMIT 1", dbesc($guid));
1097 return $r[0]["uri"];
1099 return $author.":".$guid;
1103 * @brief Processes an incoming comment
1105 * @param array $importer Array of the importer user
1106 * @param string $sender The sender of the message
1107 * @param object $data The message object
1108 * @param string $xml The original XML of the message
1110 * @return int The message id of the generated comment or "false" if there was an error
1112 private function receive_comment($importer, $sender, $data, $xml) {
1113 $guid = notags(unxmlify($data->guid));
1114 $parent_guid = notags(unxmlify($data->parent_guid));
1115 $text = unxmlify($data->text);
1116 $author = notags(unxmlify($data->author));
1118 if (isset($data->created_at))
1119 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1121 $created_at = datetime_convert();
1123 $contact = self::allowed_contact_by_handle($importer, $sender, true);
1127 $message_id = self::message_exists($importer["uid"], $guid);
1131 $parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact);
1135 $person = self::person_by_handle($author);
1136 if (!is_array($person)) {
1137 logger("unable to find author details");
1141 // Fetch the contact id - if we know this contact
1142 $author_contact = self::author_contact_by_url($contact, $person, $importer["uid"]);
1144 $datarray = array();
1146 $datarray["uid"] = $importer["uid"];
1147 $datarray["contact-id"] = $author_contact["cid"];
1148 $datarray["network"] = $author_contact["network"];
1150 $datarray["author-name"] = $person["name"];
1151 $datarray["author-link"] = $person["url"];
1152 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
1154 $datarray["owner-name"] = $contact["name"];
1155 $datarray["owner-link"] = $contact["url"];
1156 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1158 $datarray["guid"] = $guid;
1159 $datarray["uri"] = self::get_uri_from_guid($author, $guid);
1161 $datarray["type"] = "remote-comment";
1162 $datarray["verb"] = ACTIVITY_POST;
1163 $datarray["gravity"] = GRAVITY_COMMENT;
1164 $datarray["parent-uri"] = $parent_item["uri"];
1166 $datarray["object-type"] = ACTIVITY_OBJ_COMMENT;
1167 $datarray["object"] = $xml;
1169 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
1171 $datarray["body"] = diaspora2bb($text);
1173 self::fetch_guid($datarray);
1175 $message_id = item_store($datarray);
1178 logger("Stored comment ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
1180 // If we are the origin of the parent we store the original data and notify our followers
1181 if($message_id AND $parent_item["origin"]) {
1183 // Formerly we stored the signed text, the signature and the author in different fields.
1184 // We now store the raw data so that we are more flexible.
1185 q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
1186 intval($message_id),
1187 dbesc(json_encode($data))
1191 proc_run(PRIORITY_HIGH, "include/notifier.php", "comment-import", $message_id);
1198 * @brief processes and stores private messages
1200 * @param array $importer Array of the importer user
1201 * @param array $contact The contact of the message
1202 * @param object $data The message object
1203 * @param array $msg Array of the processed message, author handle and key
1204 * @param object $mesg The private message
1205 * @param array $conversation The conversation record to which this message belongs
1207 * @return bool "true" if it was successful
1209 private function receive_conversation_message($importer, $contact, $data, $msg, $mesg, $conversation) {
1210 $guid = notags(unxmlify($data->guid));
1211 $subject = notags(unxmlify($data->subject));
1212 $author = notags(unxmlify($data->author));
1216 $msg_guid = notags(unxmlify($mesg->guid));
1217 $msg_parent_guid = notags(unxmlify($mesg->parent_guid));
1218 $msg_parent_author_signature = notags(unxmlify($mesg->parent_author_signature));
1219 $msg_author_signature = notags(unxmlify($mesg->author_signature));
1220 $msg_text = unxmlify($mesg->text);
1221 $msg_created_at = datetime_convert("UTC", "UTC", notags(unxmlify($mesg->created_at)));
1223 // "diaspora_handle" is the element name from the old version
1224 // "author" is the element name from the new version
1226 $msg_author = notags(unxmlify($mesg->author));
1227 elseif ($mesg->diaspora_handle)
1228 $msg_author = notags(unxmlify($mesg->diaspora_handle));
1232 $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
1234 if($msg_conversation_guid != $guid) {
1235 logger("message conversation guid does not belong to the current conversation.");
1239 $body = diaspora2bb($msg_text);
1240 $message_uri = $msg_author.":".$msg_guid;
1242 $author_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
1244 $author_signature = base64_decode($msg_author_signature);
1246 if(strcasecmp($msg_author,$msg["author"]) == 0) {
1250 $person = self::person_by_handle($msg_author);
1252 if (is_array($person) && x($person, "pubkey"))
1253 $key = $person["pubkey"];
1255 logger("unable to find author details");
1260 if (!rsa_verify($author_signed_data, $author_signature, $key, "sha256")) {
1261 logger("verification failed.");
1265 if($msg_parent_author_signature) {
1266 $owner_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
1268 $parent_author_signature = base64_decode($msg_parent_author_signature);
1272 if (!rsa_verify($owner_signed_data, $parent_author_signature, $key, "sha256")) {
1273 logger("owner verification failed.");
1278 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' LIMIT 1",
1282 logger("duplicate message already delivered.", LOGGER_DEBUG);
1286 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1287 VALUES (%d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1288 intval($importer["uid"]),
1290 intval($conversation["id"]),
1291 dbesc($person["name"]),
1292 dbesc($person["photo"]),
1293 dbesc($person["url"]),
1294 intval($contact["id"]),
1299 dbesc($message_uri),
1300 dbesc($author.":".$guid),
1301 dbesc($msg_created_at)
1304 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
1305 dbesc(datetime_convert()),
1306 intval($conversation["id"])
1310 "type" => NOTIFY_MAIL,
1311 "notify_flags" => $importer["notify-flags"],
1312 "language" => $importer["language"],
1313 "to_name" => $importer["username"],
1314 "to_email" => $importer["email"],
1315 "uid" =>$importer["uid"],
1316 "item" => array("subject" => $subject, "body" => $body),
1317 "source_name" => $person["name"],
1318 "source_link" => $person["url"],
1319 "source_photo" => $person["thumb"],
1320 "verb" => ACTIVITY_POST,
1327 * @brief Processes new private messages (answers to private messages are processed elsewhere)
1329 * @param array $importer Array of the importer user
1330 * @param array $msg Array of the processed message, author handle and key
1331 * @param object $data The message object
1333 * @return bool Success
1335 private function receive_conversation($importer, $msg, $data) {
1336 $guid = notags(unxmlify($data->guid));
1337 $subject = notags(unxmlify($data->subject));
1338 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1339 $author = notags(unxmlify($data->author));
1340 $participants = notags(unxmlify($data->participants));
1342 $messages = $data->message;
1344 if (!count($messages)) {
1345 logger("empty conversation");
1349 $contact = self::allowed_contact_by_handle($importer, $msg["author"], true);
1353 $conversation = null;
1355 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1356 intval($importer["uid"]),
1360 $conversation = $c[0];
1362 $r = q("INSERT INTO `conv` (`uid`, `guid`, `creator`, `created`, `updated`, `subject`, `recips`)
1363 VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s')",
1364 intval($importer["uid"]),
1368 dbesc(datetime_convert()),
1370 dbesc($participants)
1373 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1374 intval($importer["uid"]),
1379 $conversation = $c[0];
1381 if (!$conversation) {
1382 logger("unable to create conversation.");
1386 foreach($messages as $mesg)
1387 self::receive_conversation_message($importer, $contact, $data, $msg, $mesg, $conversation);
1393 * @brief Creates the body for a "like" message
1395 * @param array $contact The contact that send us the "like"
1396 * @param array $parent_item The item array of the parent item
1397 * @param string $guid message guid
1399 * @return string the body
1401 private function construct_like_body($contact, $parent_item, $guid) {
1402 $bodyverb = t('%1$s likes %2$s\'s %3$s');
1404 $ulink = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
1405 $alink = "[url=".$parent_item["author-link"]."]".$parent_item["author-name"]."[/url]";
1406 $plink = "[url=".App::get_baseurl()."/display/".urlencode($guid)."]".t("status")."[/url]";
1408 return sprintf($bodyverb, $ulink, $alink, $plink);
1412 * @brief Creates a XML object for a "like"
1414 * @param array $importer Array of the importer user
1415 * @param array $parent_item The item array of the parent item
1417 * @return string The XML
1419 private function construct_like_object($importer, $parent_item) {
1420 $objtype = ACTIVITY_OBJ_NOTE;
1421 $link = '<link rel="alternate" type="text/html" href="'.App::get_baseurl()."/display/".$importer["nickname"]."/".$parent_item["id"].'" />';
1422 $parent_body = $parent_item["body"];
1424 $xmldata = array("object" => array("type" => $objtype,
1426 "id" => $parent_item["uri"],
1429 "content" => $parent_body));
1431 return xml::from_array($xmldata, $xml, true);
1435 * @brief Processes "like" messages
1437 * @param array $importer Array of the importer user
1438 * @param string $sender The sender of the message
1439 * @param object $data The message object
1441 * @return int The message id of the generated like or "false" if there was an error
1443 private function receive_like($importer, $sender, $data) {
1444 $positive = notags(unxmlify($data->positive));
1445 $guid = notags(unxmlify($data->guid));
1446 $parent_type = notags(unxmlify($data->parent_type));
1447 $parent_guid = notags(unxmlify($data->parent_guid));
1448 $author = notags(unxmlify($data->author));
1450 // likes on comments aren't supported by Diaspora - only on posts
1451 // But maybe this will be supported in the future, so we will accept it.
1452 if (!in_array($parent_type, array("Post", "Comment")))
1455 $contact = self::allowed_contact_by_handle($importer, $sender, true);
1459 $message_id = self::message_exists($importer["uid"], $guid);
1463 $parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact);
1467 $person = self::person_by_handle($author);
1468 if (!is_array($person)) {
1469 logger("unable to find author details");
1473 // Fetch the contact id - if we know this contact
1474 $author_contact = self::author_contact_by_url($contact, $person, $importer["uid"]);
1476 // "positive" = "false" would be a Dislike - wich isn't currently supported by Diaspora
1477 // We would accept this anyhow.
1478 if ($positive == "true")
1479 $verb = ACTIVITY_LIKE;
1481 $verb = ACTIVITY_DISLIKE;
1483 $datarray = array();
1485 $datarray["uid"] = $importer["uid"];
1486 $datarray["contact-id"] = $author_contact["cid"];
1487 $datarray["network"] = $author_contact["network"];
1489 $datarray["author-name"] = $person["name"];
1490 $datarray["author-link"] = $person["url"];
1491 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
1493 $datarray["owner-name"] = $contact["name"];
1494 $datarray["owner-link"] = $contact["url"];
1495 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1497 $datarray["guid"] = $guid;
1498 $datarray["uri"] = self::get_uri_from_guid($author, $guid);
1500 $datarray["type"] = "activity";
1501 $datarray["verb"] = $verb;
1502 $datarray["gravity"] = GRAVITY_LIKE;
1503 $datarray["parent-uri"] = $parent_item["uri"];
1505 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
1506 $datarray["object"] = self::construct_like_object($importer, $parent_item);
1508 $datarray["body"] = self::construct_like_body($contact, $parent_item, $guid);
1510 $message_id = item_store($datarray);
1513 logger("Stored like ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
1515 // If we are the origin of the parent we store the original data and notify our followers
1516 if($message_id AND $parent_item["origin"]) {
1518 // Formerly we stored the signed text, the signature and the author in different fields.
1519 // We now store the raw data so that we are more flexible.
1520 q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
1521 intval($message_id),
1522 dbesc(json_encode($data))
1526 proc_run(PRIORITY_HIGH, "include/notifier.php", "comment-import", $message_id);
1533 * @brief Processes private messages
1535 * @param array $importer Array of the importer user
1536 * @param object $data The message object
1538 * @return bool Success?
1540 private function receive_message($importer, $data) {
1541 $guid = notags(unxmlify($data->guid));
1542 $parent_guid = notags(unxmlify($data->parent_guid));
1543 $text = unxmlify($data->text);
1544 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1545 $author = notags(unxmlify($data->author));
1546 $conversation_guid = notags(unxmlify($data->conversation_guid));
1548 $contact = self::allowed_contact_by_handle($importer, $author, true);
1552 $conversation = null;
1554 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1555 intval($importer["uid"]),
1556 dbesc($conversation_guid)
1559 $conversation = $c[0];
1561 logger("conversation not available.");
1567 $body = diaspora2bb($text);
1568 $message_uri = $author.":".$guid;
1570 $person = self::person_by_handle($author);
1572 logger("unable to find author details");
1576 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1577 dbesc($message_uri),
1578 intval($importer["uid"])
1581 logger("duplicate message already delivered.", LOGGER_DEBUG);
1585 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1586 VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1587 intval($importer["uid"]),
1589 intval($conversation["id"]),
1590 dbesc($person["name"]),
1591 dbesc($person["photo"]),
1592 dbesc($person["url"]),
1593 intval($contact["id"]),
1594 dbesc($conversation["subject"]),
1598 dbesc($message_uri),
1599 dbesc($author.":".$parent_guid),
1603 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
1604 dbesc(datetime_convert()),
1605 intval($conversation["id"])
1612 * @brief Processes participations - unsupported by now
1614 * @param array $importer Array of the importer user
1615 * @param object $data The message object
1617 * @return bool always true
1619 private function receive_participation($importer, $data) {
1620 // I'm not sure if we can fully support this message type
1625 * @brief Processes photos - unneeded
1627 * @param array $importer Array of the importer user
1628 * @param object $data The message object
1630 * @return bool always true
1632 private function receive_photo($importer, $data) {
1633 // There doesn't seem to be a reason for this function, since the photo data is transmitted in the status message as well
1638 * @brief Processes poll participations - unssupported
1640 * @param array $importer Array of the importer user
1641 * @param object $data The message object
1643 * @return bool always true
1645 private function receive_poll_participation($importer, $data) {
1646 // We don't support polls by now
1651 * @brief Processes incoming profile updates
1653 * @param array $importer Array of the importer user
1654 * @param object $data The message object
1656 * @return bool Success
1658 private function receive_profile($importer, $data) {
1659 $author = strtolower(notags(unxmlify($data->author)));
1661 $contact = self::contact_by_handle($importer["uid"], $author);
1665 $name = unxmlify($data->first_name).((strlen($data->last_name)) ? " ".unxmlify($data->last_name) : "");
1666 $image_url = unxmlify($data->image_url);
1667 $birthday = unxmlify($data->birthday);
1668 $location = diaspora2bb(unxmlify($data->location));
1669 $about = diaspora2bb(unxmlify($data->bio));
1670 $gender = unxmlify($data->gender);
1671 $searchable = (unxmlify($data->searchable) == "true");
1672 $nsfw = (unxmlify($data->nsfw) == "true");
1673 $tags = unxmlify($data->tag_string);
1675 $tags = explode("#", $tags);
1677 $keywords = array();
1678 foreach ($tags as $tag) {
1679 $tag = trim(strtolower($tag));
1684 $keywords = implode(", ", $keywords);
1686 $handle_parts = explode("@", $author);
1687 $nick = $handle_parts[0];
1690 $name = $handle_parts[0];
1692 if( preg_match("|^https?://|", $image_url) === 0)
1693 $image_url = "http://".$handle_parts[1].$image_url;
1695 update_contact_avatar($image_url, $importer["uid"], $contact["id"]);
1697 // Generic birthday. We don't know the timezone. The year is irrelevant.
1699 $birthday = str_replace("1000", "1901", $birthday);
1701 if ($birthday != "")
1702 $birthday = datetime_convert("UTC", "UTC", $birthday, "Y-m-d");
1704 // this is to prevent multiple birthday notifications in a single year
1705 // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year
1707 if(substr($birthday,5) === substr($contact["bd"],5))
1708 $birthday = $contact["bd"];
1710 $r = q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `name-date` = '%s', `bd` = '%s',
1711 `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d AND `uid` = %d",
1715 dbesc(datetime_convert()),
1721 intval($contact["id"]),
1722 intval($importer["uid"])
1726 poco_check($contact["url"], $name, NETWORK_DIASPORA, $image_url, $about, $location, $gender, $keywords, "",
1727 datetime_convert(), 2, $contact["id"], $importer["uid"]);
1730 $gcontact = array("url" => $contact["url"], "network" => NETWORK_DIASPORA, "generation" => 2,
1731 "photo" => $image_url, "name" => $name, "location" => $location,
1732 "about" => $about, "birthday" => $birthday, "gender" => $gender,
1733 "addr" => $author, "nick" => $nick, "keywords" => $keywords,
1734 "hide" => !$searchable, "nsfw" => $nsfw);
1736 update_gcontact($gcontact);
1738 logger("Profile of contact ".$contact["id"]." stored for user ".$importer["uid"], LOGGER_DEBUG);
1744 * @brief Processes incoming friend requests
1746 * @param array $importer Array of the importer user
1747 * @param array $contact The contact that send the request
1749 private function receive_request_make_friend($importer, $contact) {
1753 if($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
1754 q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
1755 intval(CONTACT_IS_FRIEND),
1756 intval($contact["id"]),
1757 intval($importer["uid"])
1760 // send notification
1762 $r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
1763 intval($importer["uid"])
1766 if($r && !$r[0]["hide-friends"] && !$contact["hidden"] && intval(get_pconfig($importer["uid"], "system", "post_newfriend"))) {
1768 $self = q("SELECT * FROM `contact` WHERE `self` AND `uid` = %d LIMIT 1",
1769 intval($importer["uid"])
1772 // they are not CONTACT_IS_FOLLOWER anymore but that's what we have in the array
1774 if($self && $contact["rel"] == CONTACT_IS_FOLLOWER) {
1777 $arr["uri"] = $arr["parent-uri"] = item_new_uri($a->get_hostname(), $importer["uid"]);
1778 $arr["uid"] = $importer["uid"];
1779 $arr["contact-id"] = $self[0]["id"];
1781 $arr["type"] = 'wall';
1782 $arr["gravity"] = 0;
1784 $arr["author-name"] = $arr["owner-name"] = $self[0]["name"];
1785 $arr["author-link"] = $arr["owner-link"] = $self[0]["url"];
1786 $arr["author-avatar"] = $arr["owner-avatar"] = $self[0]["thumb"];
1787 $arr["verb"] = ACTIVITY_FRIEND;
1788 $arr["object-type"] = ACTIVITY_OBJ_PERSON;
1790 $A = "[url=".$self[0]["url"]."]".$self[0]["name"]."[/url]";
1791 $B = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
1792 $BPhoto = "[url=".$contact["url"]."][img]".$contact["thumb"]."[/img][/url]";
1793 $arr["body"] = sprintf(t("%1$s is now friends with %2$s"), $A, $B)."\n\n\n".$Bphoto;
1795 $arr["object"] = self::construct_new_friend_object($contact);
1797 $arr["last-child"] = 1;
1799 $arr["allow_cid"] = $user[0]["allow_cid"];
1800 $arr["allow_gid"] = $user[0]["allow_gid"];
1801 $arr["deny_cid"] = $user[0]["deny_cid"];
1802 $arr["deny_gid"] = $user[0]["deny_gid"];
1804 $i = item_store($arr);
1806 proc_run(PRIORITY_HIGH, "include/notifier.php", "activity", $i);
1812 * @brief Creates a XML object for a "new friend" message
1814 * @param array $contact Array of the contact
1816 * @return string The XML
1818 private function construct_new_friend_object($contact) {
1819 $objtype = ACTIVITY_OBJ_PERSON;
1820 $link = '<link rel="alternate" type="text/html" href="'.$contact["url"].'" />'."\n".
1821 '<link rel="photo" type="image/jpeg" href="'.$contact["thumb"].'" />'."\n";
1823 $xmldata = array("object" => array("type" => $objtype,
1824 "title" => $contact["name"],
1825 "id" => $contact["url"]."/".$contact["name"],
1828 return xml::from_array($xmldata, $xml, true);
1832 * @brief Processes incoming sharing notification
1834 * @param array $importer Array of the importer user
1835 * @param object $data The message object
1837 * @return bool Success
1839 private function receive_contact_request($importer, $data) {
1840 $author = unxmlify($data->author);
1841 $recipient = unxmlify($data->recipient);
1843 if (!$author || !$recipient)
1846 // the current protocol version doesn't know these fields
1847 // That means that we will assume their existance
1848 if (isset($data->following))
1849 $following = (unxmlify($data->following) == "true");
1853 if (isset($data->sharing))
1854 $sharing = (unxmlify($data->sharing) == "true");
1858 $contact = self::contact_by_handle($importer["uid"],$author);
1860 // perhaps we were already sharing with this person. Now they're sharing with us.
1861 // That makes us friends.
1863 if ($following AND $sharing) {
1864 logger("Author ".$author." (Contact ".$contact["id"].") wants to have a bidirectional conection.", LOGGER_DEBUG);
1865 self::receive_request_make_friend($importer, $contact);
1867 // refetch the contact array
1868 $contact = self::contact_by_handle($importer["uid"],$author);
1870 // If we are now friends, we are sending a share message.
1871 // Normally we needn't to do so, but the first message could have been vanished.
1872 if (in_array($contact["rel"], array(CONTACT_IS_FRIEND, CONTACT_IS_FOLLOWER))) {
1873 $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
1875 logger("Sending share message to author ".$author." - Contact: ".$contact["id"]." - User: ".$importer["uid"], LOGGER_DEBUG);
1876 $ret = self::send_share($u[0], $contact);
1880 } else { /// @todo Handle all possible variations of adding and retracting of permissions
1881 logger("Author ".$author." (Contact ".$contact["id"].") wants to change the relationship: Following: ".$following." - sharing: ".$sharing. "(By now unsupported)", LOGGER_DEBUG);
1886 if (!$following AND $sharing AND in_array($importer["page-flags"], array(PAGE_SOAPBOX, PAGE_NORMAL))) {
1887 logger("Author ".$author." wants to share with us - but doesn't want to listen. Request is ignored.", LOGGER_DEBUG);
1889 } elseif (!$following AND !$sharing) {
1890 logger("Author ".$author." doesn't want anything - and we don't know the author. Request is ignored.", LOGGER_DEBUG);
1892 } elseif (!$following AND $sharing) {
1893 logger("Author ".$author." wants to share with us.", LOGGER_DEBUG);
1894 } elseif ($following AND $sharing) {
1895 logger("Author ".$author." wants to have a bidirectional conection.", LOGGER_DEBUG);
1896 } elseif ($following AND !$sharing) {
1897 logger("Author ".$author." wants to listen to us.", LOGGER_DEBUG);
1900 $ret = self::person_by_handle($author);
1902 if (!$ret || ($ret["network"] != NETWORK_DIASPORA)) {
1903 logger("Cannot resolve diaspora handle ".$author." for ".$recipient);
1907 $batch = (($ret["batch"]) ? $ret["batch"] : implode("/", array_slice(explode("/", $ret["url"]), 0, 3))."/receive/public");
1909 $r = q("INSERT INTO `contact` (`uid`, `network`,`addr`,`created`,`url`,`nurl`,`batch`,`name`,`nick`,`photo`,`pubkey`,`notify`,`poll`,`blocked`,`priority`)
1910 VALUES (%d, '%s', '%s', '%s', '%s','%s','%s','%s','%s','%s','%s','%s','%s',%d,%d)",
1911 intval($importer["uid"]),
1912 dbesc($ret["network"]),
1913 dbesc($ret["addr"]),
1916 dbesc(normalise_link($ret["url"])),
1918 dbesc($ret["name"]),
1919 dbesc($ret["nick"]),
1920 dbesc($ret["photo"]),
1921 dbesc($ret["pubkey"]),
1922 dbesc($ret["notify"]),
1923 dbesc($ret["poll"]),
1928 // find the contact record we just created
1930 $contact_record = self::contact_by_handle($importer["uid"],$author);
1932 if (!$contact_record) {
1933 logger("unable to locate newly created contact record.");
1937 logger("Author ".$author." was added as contact number ".$contact_record["id"].".", LOGGER_DEBUG);
1939 $def_gid = get_default_group($importer['uid'], $ret["network"]);
1941 if(intval($def_gid))
1942 group_add_member($importer["uid"], "", $contact_record["id"], $def_gid);
1944 update_contact_avatar($ret["photo"], $importer['uid'], $contact_record["id"], true);
1946 if($importer["page-flags"] == PAGE_NORMAL) {
1948 logger("Sending intra message for author ".$author.".", LOGGER_DEBUG);
1950 $hash = random_string().(string)time(); // Generate a confirm_key
1952 $ret = q("INSERT INTO `intro` (`uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
1953 VALUES (%d, %d, %d, %d, '%s', '%s', '%s')",
1954 intval($importer["uid"]),
1955 intval($contact_record["id"]),
1958 dbesc(t("Sharing notification from Diaspora network")),
1960 dbesc(datetime_convert())
1964 // automatic friend approval
1966 logger("Does an automatic friend approval for author ".$author.".", LOGGER_DEBUG);
1968 update_contact_avatar($contact_record["photo"],$importer["uid"],$contact_record["id"]);
1970 // technically they are sharing with us (CONTACT_IS_SHARING),
1971 // but if our page-type is PAGE_COMMUNITY or PAGE_SOAPBOX
1972 // we are going to change the relationship and make them a follower.
1974 if (($importer["page-flags"] == PAGE_FREELOVE) AND $sharing AND $following)
1975 $new_relation = CONTACT_IS_FRIEND;
1976 elseif (($importer["page-flags"] == PAGE_FREELOVE) AND $sharing)
1977 $new_relation = CONTACT_IS_SHARING;
1979 $new_relation = CONTACT_IS_FOLLOWER;
1981 $r = q("UPDATE `contact` SET `rel` = %d,
1989 intval($new_relation),
1990 dbesc(datetime_convert()),
1991 dbesc(datetime_convert()),
1992 intval($contact_record["id"])
1995 $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
1997 logger("Sending share message (Relation: ".$new_relation.") to author ".$author." - Contact: ".$contact_record["id"]." - User: ".$importer["uid"], LOGGER_DEBUG);
1998 $ret = self::send_share($u[0], $contact_record);
2000 // Send the profile data, maybe it weren't transmitted before
2001 self::send_profile($importer["uid"], array($contact_record));
2009 * @brief Fetches a message with a given guid
2011 * @param string $guid message guid
2012 * @param string $orig_author handle of the original post
2013 * @param string $author handle of the sharer
2015 * @return array The fetched item
2017 private function original_item($guid, $orig_author, $author) {
2019 // Do we already have this item?
2020 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
2021 `author-name`, `author-link`, `author-avatar`
2022 FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
2026 logger("reshared message ".$guid." already exists on system.");
2028 // Maybe it is already a reshared item?
2029 // Then refetch the content, if it is a reshare from a reshare.
2030 // If it is a reshared post from another network then reformat to avoid display problems with two share elements
2031 if (self::is_reshare($r[0]["body"], true))
2033 elseif (self::is_reshare($r[0]["body"], false)) {
2034 $r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"]));
2036 // Add OEmbed and other information to the body
2037 $r[0]["body"] = add_page_info_to_body($r[0]["body"], false, true);
2045 $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1);
2046 logger("1st try: reshared message ".$guid." will be fetched via SSL from the server ".$server);
2047 $item_id = self::store_by_guid($guid, $server);
2050 $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1);
2051 logger("2nd try: reshared message ".$guid." will be fetched without SLL from the server ".$server);
2052 $item_id = self::store_by_guid($guid, $server);
2056 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
2057 `author-name`, `author-link`, `author-avatar`
2058 FROM `item` WHERE `id` = %d AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
2062 // If it is a reshared post from another network then reformat to avoid display problems with two share elements
2063 if (self::is_reshare($r[0]["body"], false))
2064 $r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"]));
2075 * @brief Processes a reshare message
2077 * @param array $importer Array of the importer user
2078 * @param object $data The message object
2079 * @param string $xml The original XML of the message
2081 * @return int the message id
2083 private function receive_reshare($importer, $data, $xml) {
2084 $root_author = notags(unxmlify($data->root_author));
2085 $root_guid = notags(unxmlify($data->root_guid));
2086 $guid = notags(unxmlify($data->guid));
2087 $author = notags(unxmlify($data->author));
2088 $public = notags(unxmlify($data->public));
2089 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
2091 $contact = self::allowed_contact_by_handle($importer, $author, false);
2095 $message_id = self::message_exists($importer["uid"], $guid);
2099 $original_item = self::original_item($root_guid, $root_author, $author);
2100 if (!$original_item)
2103 $orig_url = App::get_baseurl()."/display/".$original_item["guid"];
2105 $datarray = array();
2107 $datarray["uid"] = $importer["uid"];
2108 $datarray["contact-id"] = $contact["id"];
2109 $datarray["network"] = NETWORK_DIASPORA;
2111 $datarray["author-name"] = $contact["name"];
2112 $datarray["author-link"] = $contact["url"];
2113 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
2115 $datarray["owner-name"] = $datarray["author-name"];
2116 $datarray["owner-link"] = $datarray["author-link"];
2117 $datarray["owner-avatar"] = $datarray["author-avatar"];
2119 $datarray["guid"] = $guid;
2120 $datarray["uri"] = $datarray["parent-uri"] = self::get_uri_from_guid($author, $guid);
2122 $datarray["verb"] = ACTIVITY_POST;
2123 $datarray["gravity"] = GRAVITY_PARENT;
2125 $datarray["object"] = $xml;
2127 $prefix = share_header($original_item["author-name"], $original_item["author-link"], $original_item["author-avatar"],
2128 $original_item["guid"], $original_item["created"], $orig_url);
2129 $datarray["body"] = $prefix.$original_item["body"]."[/share]";
2131 $datarray["tag"] = $original_item["tag"];
2132 $datarray["app"] = $original_item["app"];
2134 $datarray["plink"] = self::plink($author, $guid);
2135 $datarray["private"] = (($public == "false") ? 1 : 0);
2136 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
2138 $datarray["object-type"] = $original_item["object-type"];
2140 self::fetch_guid($datarray);
2141 $message_id = item_store($datarray);
2144 logger("Stored reshare ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2150 * @brief Processes retractions
2152 * @param array $importer Array of the importer user
2153 * @param array $contact The contact of the item owner
2154 * @param object $data The message object
2156 * @return bool success
2158 private function item_retraction($importer, $contact, $data) {
2159 $target_type = notags(unxmlify($data->target_type));
2160 $target_guid = notags(unxmlify($data->target_guid));
2161 $author = notags(unxmlify($data->author));
2163 $person = self::person_by_handle($author);
2164 if (!is_array($person)) {
2165 logger("unable to find author detail for ".$author);
2169 $r = q("SELECT `id`, `parent`, `parent-uri`, `author-link` FROM `item` WHERE `guid` = '%s' AND `uid` = %d AND NOT `file` LIKE '%%[%%' LIMIT 1",
2170 dbesc($target_guid),
2171 intval($importer["uid"])
2176 // Check if the sender is the thread owner
2177 $p = q("SELECT `id`, `author-link`, `origin` FROM `item` WHERE `id` = %d",
2178 intval($r[0]["parent"]));
2180 // Only delete it if the parent author really fits
2181 if (!link_compare($p[0]["author-link"], $contact["url"]) AND !link_compare($r[0]["author-link"], $contact["url"])) {
2182 logger("Thread author ".$p[0]["author-link"]." and item author ".$r[0]["author-link"]." don't fit to expected contact ".$contact["url"], LOGGER_DEBUG);
2186 // 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
2187 q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = '' WHERE `id` = %d",
2188 dbesc(datetime_convert()),
2189 dbesc(datetime_convert()),
2192 delete_thread($r[0]["id"], $r[0]["parent-uri"]);
2194 logger("Deleted target ".$target_guid." (".$r[0]["id"].") from user ".$importer["uid"]." parent: ".$p[0]["id"], LOGGER_DEBUG);
2196 // Now check if the retraction needs to be relayed by us
2197 if($p[0]["origin"]) {
2199 proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $r[0]["id"]);
2206 * @brief Receives retraction messages
2208 * @param array $importer Array of the importer user
2209 * @param string $sender The sender of the message
2210 * @param object $data The message object
2212 * @return bool Success
2214 private function receive_retraction($importer, $sender, $data) {
2215 $target_type = notags(unxmlify($data->target_type));
2217 $contact = self::contact_by_handle($importer["uid"], $sender);
2219 logger("cannot find contact for sender: ".$sender." and user ".$importer["uid"]);
2223 logger("Got retraction for ".$target_type.", sender ".$sender." and user ".$importer["uid"], LOGGER_DEBUG);
2225 switch ($target_type) {
2228 case "Post": // "Post" will be supported in a future version
2230 case "StatusMessage":
2231 return self::item_retraction($importer, $contact, $data);;
2235 /// @todo What should we do with an "unshare"?
2236 // Removing the contact isn't correct since we still can read the public items
2237 contact_remove($contact["id"]);
2241 logger("Unknown target type ".$target_type);
2248 * @brief Receives status messages
2250 * @param array $importer Array of the importer user
2251 * @param object $data The message object
2252 * @param string $xml The original XML of the message
2254 * @return int The message id of the newly created item
2256 private function receive_status_message($importer, $data, $xml) {
2257 $raw_message = unxmlify($data->raw_message);
2258 $guid = notags(unxmlify($data->guid));
2259 $author = notags(unxmlify($data->author));
2260 $public = notags(unxmlify($data->public));
2261 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
2262 $provider_display_name = notags(unxmlify($data->provider_display_name));
2264 /// @todo enable support for polls
2265 //if ($data->poll) {
2266 // foreach ($data->poll AS $poll)
2270 $contact = self::allowed_contact_by_handle($importer, $author, false);
2274 $message_id = self::message_exists($importer["uid"], $guid);
2279 if ($data->location)
2280 foreach ($data->location->children() AS $fieldname => $data)
2281 $address[$fieldname] = notags(unxmlify($data));
2283 $body = diaspora2bb($raw_message);
2285 $datarray = array();
2287 // Attach embedded pictures to the body
2289 foreach ($data->photo AS $photo)
2290 $body = "[img]".unxmlify($photo->remote_photo_path).
2291 unxmlify($photo->remote_photo_name)."[/img]\n".$body;
2293 $datarray["object-type"] = ACTIVITY_OBJ_PHOTO;
2295 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
2297 // Add OEmbed and other information to the body
2298 if (!self::is_redmatrix($contact["url"]))
2299 $body = add_page_info_to_body($body, false, true);
2302 $datarray["uid"] = $importer["uid"];
2303 $datarray["contact-id"] = $contact["id"];
2304 $datarray["network"] = NETWORK_DIASPORA;
2306 $datarray["author-name"] = $contact["name"];
2307 $datarray["author-link"] = $contact["url"];
2308 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
2310 $datarray["owner-name"] = $datarray["author-name"];
2311 $datarray["owner-link"] = $datarray["author-link"];
2312 $datarray["owner-avatar"] = $datarray["author-avatar"];
2314 $datarray["guid"] = $guid;
2315 $datarray["uri"] = $datarray["parent-uri"] = self::get_uri_from_guid($author, $guid);
2317 $datarray["verb"] = ACTIVITY_POST;
2318 $datarray["gravity"] = GRAVITY_PARENT;
2320 $datarray["object"] = $xml;
2322 $datarray["body"] = $body;
2324 if ($provider_display_name != "")
2325 $datarray["app"] = $provider_display_name;
2327 $datarray["plink"] = self::plink($author, $guid);
2328 $datarray["private"] = (($public == "false") ? 1 : 0);
2329 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
2331 if (isset($address["address"]))
2332 $datarray["location"] = $address["address"];
2334 if (isset($address["lat"]) AND isset($address["lng"]))
2335 $datarray["coord"] = $address["lat"]." ".$address["lng"];
2337 self::fetch_guid($datarray);
2338 $message_id = item_store($datarray);
2341 logger("Stored item ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2346 /* ************************************************************************************** *
2347 * Here are all the functions that are needed to transmit data with the Diaspora protocol *
2348 * ************************************************************************************** */
2351 * @brief returnes the handle of a contact
2353 * @param array $me contact array
2355 * @return string the handle in the format user@domain.tld
2357 private function my_handle($contact) {
2358 if ($contact["addr"] != "")
2359 return $contact["addr"];
2361 // Normally we should have a filled "addr" field - but in the past this wasn't the case
2362 // So - just in case - we build the the address here.
2363 if ($contact["nickname"] != "")
2364 $nick = $contact["nickname"];
2366 $nick = $contact["nick"];
2368 return $nick."@".substr(App::get_baseurl(), strpos(App::get_baseurl(),"://") + 3);
2372 * @brief Creates the envelope for the "fetch" endpoint
2374 * @param string $msg The message that is to be transmitted
2375 * @param array $user The record of the sender
2377 * @return string The envelope
2380 public static function build_magic_envelope($msg, $user) {
2382 $b64url_data = base64url_encode($msg);
2383 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
2385 $key_id = base64url_encode(diaspora::my_handle($user));
2386 $type = "application/xml";
2387 $encoding = "base64url";
2388 $alg = "RSA-SHA256";
2389 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
2390 $signature = rsa_sign($signable_data, $user["prvkey"]);
2391 $sig = base64url_encode($signature);
2393 $xmldata = array("me:env" => array("me:data" => $data,
2394 "@attributes" => array("type" => $type),
2395 "me:encoding" => $encoding,
2398 "@attributes2" => array("key_id" => $key_id)));
2400 $namespaces = array("me" => "http://salmon-protocol.org/ns/magic-env");
2402 return xml::from_array($xmldata, $xml, false, $namespaces);
2406 * @brief Creates the envelope for a public message
2408 * @param string $msg The message that is to be transmitted
2409 * @param array $user The record of the sender
2410 * @param array $contact Target of the communication
2411 * @param string $prvkey The private key of the sender
2412 * @param string $pubkey The public key of the receiver
2414 * @return string The envelope
2416 private function build_public_message($msg, $user, $contact, $prvkey, $pubkey) {
2418 logger("Message: ".$msg, LOGGER_DATA);
2420 $handle = self::my_handle($user);
2422 $b64url_data = base64url_encode($msg);
2424 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
2426 $type = "application/xml";
2427 $encoding = "base64url";
2428 $alg = "RSA-SHA256";
2430 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
2432 $signature = rsa_sign($signable_data,$prvkey);
2433 $sig = base64url_encode($signature);
2435 $xmldata = array("diaspora" => array("header" => array("author_id" => $handle),
2436 "me:env" => array("me:encoding" => $encoding,
2439 "@attributes" => array("type" => $type),
2440 "me:sig" => $sig)));
2442 $namespaces = array("" => "https://joindiaspora.com/protocol",
2443 "me" => "http://salmon-protocol.org/ns/magic-env");
2445 $magic_env = xml::from_array($xmldata, $xml, false, $namespaces);
2447 logger("magic_env: ".$magic_env, LOGGER_DATA);
2452 * @brief Creates the envelope for a private message
2454 * @param string $msg The message that is to be transmitted
2455 * @param array $user The record of the sender
2456 * @param array $contact Target of the communication
2457 * @param string $prvkey The private key of the sender
2458 * @param string $pubkey The public key of the receiver
2460 * @return string The envelope
2462 private function build_private_message($msg, $user, $contact, $prvkey, $pubkey) {
2464 logger("Message: ".$msg, LOGGER_DATA);
2466 // without a public key nothing will work
2469 logger("pubkey missing: contact id: ".$contact["id"]);
2473 $inner_aes_key = random_string(32);
2474 $b_inner_aes_key = base64_encode($inner_aes_key);
2475 $inner_iv = random_string(16);
2476 $b_inner_iv = base64_encode($inner_iv);
2478 $outer_aes_key = random_string(32);
2479 $b_outer_aes_key = base64_encode($outer_aes_key);
2480 $outer_iv = random_string(16);
2481 $b_outer_iv = base64_encode($outer_iv);
2483 $handle = self::my_handle($user);
2485 $padded_data = pkcs5_pad($msg,16);
2486 $inner_encrypted = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $padded_data, MCRYPT_MODE_CBC, $inner_iv);
2488 $b64_data = base64_encode($inner_encrypted);
2491 $b64url_data = base64url_encode($b64_data);
2492 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
2494 $type = "application/xml";
2495 $encoding = "base64url";
2496 $alg = "RSA-SHA256";
2498 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
2500 $signature = rsa_sign($signable_data,$prvkey);
2501 $sig = base64url_encode($signature);
2503 $xmldata = array("decrypted_header" => array("iv" => $b_inner_iv,
2504 "aes_key" => $b_inner_aes_key,
2505 "author_id" => $handle));
2507 $decrypted_header = xml::from_array($xmldata, $xml, true);
2508 $decrypted_header = pkcs5_pad($decrypted_header,16);
2510 $ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $outer_aes_key, $decrypted_header, MCRYPT_MODE_CBC, $outer_iv);
2512 $outer_json = json_encode(array("iv" => $b_outer_iv, "key" => $b_outer_aes_key));
2514 $encrypted_outer_key_bundle = "";
2515 openssl_public_encrypt($outer_json, $encrypted_outer_key_bundle, $pubkey);
2517 $b64_encrypted_outer_key_bundle = base64_encode($encrypted_outer_key_bundle);
2519 logger("outer_bundle: ".$b64_encrypted_outer_key_bundle." key: ".$pubkey, LOGGER_DATA);
2521 $encrypted_header_json_object = json_encode(array("aes_key" => base64_encode($encrypted_outer_key_bundle),
2522 "ciphertext" => base64_encode($ciphertext)));
2523 $cipher_json = base64_encode($encrypted_header_json_object);
2525 $xmldata = array("diaspora" => array("encrypted_header" => $cipher_json,
2526 "me:env" => array("me:encoding" => $encoding,
2529 "@attributes" => array("type" => $type),
2530 "me:sig" => $sig)));
2532 $namespaces = array("" => "https://joindiaspora.com/protocol",
2533 "me" => "http://salmon-protocol.org/ns/magic-env");
2535 $magic_env = xml::from_array($xmldata, $xml, false, $namespaces);
2537 logger("magic_env: ".$magic_env, LOGGER_DATA);
2542 * @brief Create the envelope for a message
2544 * @param string $msg The message that is to be transmitted
2545 * @param array $user The record of the sender
2546 * @param array $contact Target of the communication
2547 * @param string $prvkey The private key of the sender
2548 * @param string $pubkey The public key of the receiver
2549 * @param bool $public Is the message public?
2551 * @return string The message that will be transmitted to other servers
2553 private function build_message($msg, $user, $contact, $prvkey, $pubkey, $public = false) {
2556 $magic_env = self::build_public_message($msg,$user,$contact,$prvkey,$pubkey);
2558 $magic_env = self::build_private_message($msg,$user,$contact,$prvkey,$pubkey);
2560 // The data that will be transmitted is double encoded via "urlencode", strange ...
2561 $slap = "xml=".urlencode(urlencode($magic_env));
2566 * @brief Creates a signature for a message
2568 * @param array $owner the array of the owner of the message
2569 * @param array $message The message that is to be signed
2571 * @return string The signature
2573 private function signature($owner, $message) {
2575 unset($sigmsg["author_signature"]);
2576 unset($sigmsg["parent_author_signature"]);
2578 $signed_text = implode(";", $sigmsg);
2580 return base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
2584 * @brief Transmit a message to a target server
2586 * @param array $owner the array of the item owner
2587 * @param array $contact Target of the communication
2588 * @param string $slap The message that is to be transmitted
2589 * @param bool $public_batch Is it a public post?
2590 * @param bool $queue_run Is the transmission called from the queue?
2591 * @param string $guid message guid
2593 * @return int Result of the transmission
2595 public static function transmit($owner, $contact, $slap, $public_batch, $queue_run=false, $guid = "") {
2599 $enabled = intval(get_config("system", "diaspora_enabled"));
2603 $logid = random_string(4);
2604 $dest_url = (($public_batch) ? $contact["batch"] : $contact["notify"]);
2606 logger("no url for contact: ".$contact["id"]." batch mode =".$public_batch);
2610 logger("transmit: ".$logid."-".$guid." ".$dest_url);
2612 if (!$queue_run && was_recently_delayed($contact["id"])) {
2615 if (!intval(get_config("system", "diaspora_test"))) {
2616 post_url($dest_url."/", $slap);
2617 $return_code = $a->get_curl_code();
2619 logger("test_mode");
2624 logger("transmit: ".$logid."-".$guid." returns: ".$return_code);
2626 if(!$return_code || (($return_code == 503) && (stristr($a->get_curl_headers(), "retry-after")))) {
2627 logger("queue message");
2629 $r = q("SELECT `id` FROM `queue` WHERE `cid` = %d AND `network` = '%s' AND `content` = '%s' AND `batch` = %d LIMIT 1",
2630 intval($contact["id"]),
2631 dbesc(NETWORK_DIASPORA),
2633 intval($public_batch)
2636 logger("add_to_queue ignored - identical item already in queue");
2638 // queue message for redelivery
2639 add_to_queue($contact["id"], NETWORK_DIASPORA, $slap, $public_batch);
2641 // The message could not be delivered. We mark the contact as "dead"
2642 mark_for_death($contact);
2644 } elseif (($return_code >= 200) AND ($return_code <= 299)) {
2645 // We successfully delivered a message, the contact is alive
2646 unmark_for_death($contact);
2649 return(($return_code) ? $return_code : (-1));
2654 * @brief Build the post xml
2656 * @param string $type The message type
2657 * @param array $message The message data
2659 * @return string The post XML
2661 public static function build_post_xml($type, $message) {
2663 $data = array("XML" => array("post" => array($type => $message)));
2664 return xml::from_array($data, $xml);
2668 * @brief Builds and transmit messages
2670 * @param array $owner the array of the item owner
2671 * @param array $contact Target of the communication
2672 * @param string $type The message type
2673 * @param array $message The message data
2674 * @param bool $public_batch Is it a public post?
2675 * @param string $guid message guid
2676 * @param bool $spool Should the transmission be spooled or transmitted?
2678 * @return int Result of the transmission
2680 private function build_and_transmit($owner, $contact, $type, $message, $public_batch = false, $guid = "", $spool = false) {
2682 $msg = self::build_post_xml($type, $message);
2684 logger('message: '.$msg, LOGGER_DATA);
2685 logger('send guid '.$guid, LOGGER_DEBUG);
2687 // Fallback if the private key wasn't transmitted in the expected field
2688 if ($owner['uprvkey'] == "")
2689 $owner['uprvkey'] = $owner['prvkey'];
2691 $slap = self::build_message($msg, $owner, $contact, $owner['uprvkey'], $contact['pubkey'], $public_batch);
2694 add_to_queue($contact['id'], NETWORK_DIASPORA, $slap, $public_batch);
2697 $return_code = self::transmit($owner, $contact, $slap, $public_batch, false, $guid);
2699 logger("guid: ".$item["guid"]." result ".$return_code, LOGGER_DEBUG);
2701 return $return_code;
2705 * @brief Sends a "share" message
2707 * @param array $owner the array of the item owner
2708 * @param array $contact Target of the communication
2710 * @return int The result of the transmission
2712 public static function send_share($owner,$contact) {
2714 $message = array("sender_handle" => self::my_handle($owner),
2715 "recipient_handle" => $contact["addr"]);
2717 logger("Send share ".print_r($message, true), LOGGER_DEBUG);
2719 return self::build_and_transmit($owner, $contact, "request", $message);
2723 * @brief sends an "unshare"
2725 * @param array $owner the array of the item owner
2726 * @param array $contact Target of the communication
2728 * @return int The result of the transmission
2730 public static function send_unshare($owner,$contact) {
2732 $message = array("post_guid" => $owner["guid"],
2733 "diaspora_handle" => self::my_handle($owner),
2734 "type" => "Person");
2736 logger("Send unshare ".print_r($message, true), LOGGER_DEBUG);
2738 return self::build_and_transmit($owner, $contact, "retraction", $message);
2742 * @brief Checks a message body if it is a reshare
2744 * @param string $body The message body that is to be check
2745 * @param bool $complete Should it be a complete check or a simple check?
2747 * @return array|bool Reshare details or "false" if no reshare
2749 public static function is_reshare($body, $complete = true) {
2750 $body = trim($body);
2752 // Skip if it isn't a pure repeated messages
2753 // Does it start with a share?
2754 if ((strpos($body, "[share") > 0) AND $complete)
2757 // Does it end with a share?
2758 if (strlen($body) > (strrpos($body, "[/share]") + 8))
2761 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
2762 // Skip if there is no shared message in there
2763 if ($body == $attributes)
2766 // If we don't do the complete check we quit here
2771 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
2772 if ($matches[1] != "")
2773 $guid = $matches[1];
2775 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
2776 if ($matches[1] != "")
2777 $guid = $matches[1];
2780 $r = q("SELECT `contact-id` FROM `item` WHERE `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1",
2781 dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA);
2784 $ret["root_handle"] = self::handle_from_contact($r[0]["contact-id"]);
2785 $ret["root_guid"] = $guid;
2791 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
2792 if ($matches[1] != "")
2793 $profile = $matches[1];
2795 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
2796 if ($matches[1] != "")
2797 $profile = $matches[1];
2801 $ret["root_handle"] = preg_replace("=https?://(.*)/u/(.*)=ism", "$2@$1", $profile);
2802 if (($ret["root_handle"] == $profile) OR ($ret["root_handle"] == ""))
2806 preg_match("/link='(.*?)'/ism", $attributes, $matches);
2807 if ($matches[1] != "")
2808 $link = $matches[1];
2810 preg_match('/link="(.*?)"/ism', $attributes, $matches);
2811 if ($matches[1] != "")
2812 $link = $matches[1];
2814 $ret["root_guid"] = preg_replace("=https?://(.*)/posts/(.*)=ism", "$2", $link);
2815 if (($ret["root_guid"] == $link) OR (trim($ret["root_guid"]) == ""))
2822 * @brief Create a post (status message or reshare)
2824 * @param array $item The item that will be exported
2825 * @param array $owner the array of the item owner
2828 * 'type' -> Message type ("status_message" or "reshare")
2829 * 'message' -> Array of XML elements of the status
2831 public static function build_status($item, $owner) {
2833 $myaddr = self::my_handle($owner);
2835 $public = (($item["private"]) ? "false" : "true");
2837 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d H:i:s \U\T\C');
2839 // Detect a share element and do a reshare
2840 if (!$item['private'] AND ($ret = self::is_reshare($item["body"]))) {
2841 $message = array("root_diaspora_id" => $ret["root_handle"],
2842 "root_guid" => $ret["root_guid"],
2843 "guid" => $item["guid"],
2844 "diaspora_handle" => $myaddr,
2845 "public" => $public,
2846 "created_at" => $created,
2847 "provider_display_name" => $item["app"]);
2851 $title = $item["title"];
2852 $body = $item["body"];
2854 // convert to markdown
2855 $body = html_entity_decode(bb2diaspora($body));
2859 $body = "## ".html_entity_decode($title)."\n\n".$body;
2861 if ($item["attach"]) {
2862 $cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism', $item["attach"], $matches, PREG_SET_ORDER);
2864 $body .= "\n".t("Attachments:")."\n";
2865 foreach($matches as $mtch)
2866 $body .= "[".$mtch[3]."](".$mtch[1].")\n";
2870 $location = array();
2872 if ($item["location"] != "")
2873 $location["address"] = $item["location"];
2875 if ($item["coord"] != "") {
2876 $coord = explode(" ", $item["coord"]);
2877 $location["lat"] = $coord[0];
2878 $location["lng"] = $coord[1];
2881 $message = array("raw_message" => $body,
2882 "location" => $location,
2883 "guid" => $item["guid"],
2884 "diaspora_handle" => $myaddr,
2885 "public" => $public,
2886 "created_at" => $created,
2887 "provider_display_name" => $item["app"]);
2889 // Diaspora rejects messages when they contain a location without "lat" or "lng"
2890 if (!isset($location["lat"]) OR !isset($location["lng"])) {
2891 unset($message["location"]);
2894 $type = "status_message";
2896 return array("type" => $type, "message" => $message);
2900 * @brief Sends a post
2902 * @param array $item The item that will be exported
2903 * @param array $owner the array of the item owner
2904 * @param array $contact Target of the communication
2905 * @param bool $public_batch Is it a public post?
2907 * @return int The result of the transmission
2909 public static function send_status($item, $owner, $contact, $public_batch = false) {
2911 $status = diaspora::build_status($item, $owner);
2913 return self::build_and_transmit($owner, $contact, $status["type"], $status["message"], $public_batch, $item["guid"]);
2917 * @brief Creates a "like" object
2919 * @param array $item The item that will be exported
2920 * @param array $owner the array of the item owner
2922 * @return array The data for a "like"
2924 private function construct_like($item, $owner) {
2926 $p = q("SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
2927 dbesc($item["thr-parent"]));
2933 $target_type = ($parent["uri"] === $parent["parent-uri"] ? "Post" : "Comment");
2936 return(array("positive" => $positive,
2937 "guid" => $item["guid"],
2938 "target_type" => $target_type,
2939 "parent_guid" => $parent["guid"],
2940 "author_signature" => "",
2941 "diaspora_handle" => self::my_handle($owner)));
2945 * @brief Creates the object for a comment
2947 * @param array $item The item that will be exported
2948 * @param array $owner the array of the item owner
2950 * @return array The data for a comment
2952 private function construct_comment($item, $owner) {
2954 $p = q("SELECT `guid` FROM `item` WHERE `parent` = %d AND `id` = %d LIMIT 1",
2955 intval($item["parent"]),
2956 intval($item["parent"])
2964 $text = html_entity_decode(bb2diaspora($item["body"]));
2966 return(array("guid" => $item["guid"],
2967 "parent_guid" => $parent["guid"],
2968 "author_signature" => "",
2970 "diaspora_handle" => self::my_handle($owner)));
2974 * @brief Send a like or a comment
2976 * @param array $item The item that will be exported
2977 * @param array $owner the array of the item owner
2978 * @param array $contact Target of the communication
2979 * @param bool $public_batch Is it a public post?
2981 * @return int The result of the transmission
2983 public static function send_followup($item,$owner,$contact,$public_batch = false) {
2985 if($item['verb'] === ACTIVITY_LIKE) {
2986 $message = self::construct_like($item, $owner);
2989 $message = self::construct_comment($item, $owner);
2996 $message["author_signature"] = self::signature($owner, $message);
2998 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
3002 * @brief Creates a message from a signature record entry
3004 * @param array $item The item that will be exported
3005 * @param array $signature The entry of the "sign" record
3007 * @return string The message
3009 private function message_from_signature($item, $signature) {
3011 // Split the signed text
3012 $signed_parts = explode(";", $signature['signed_text']);
3014 if ($item["deleted"])
3015 $message = array("parent_author_signature" => "",
3016 "target_guid" => $signed_parts[0],
3017 "target_type" => $signed_parts[1],
3018 "sender_handle" => $signature['signer'],
3019 "target_author_signature" => $signature['signature']);
3020 elseif ($item['verb'] === ACTIVITY_LIKE)
3021 $message = array("positive" => $signed_parts[0],
3022 "guid" => $signed_parts[1],
3023 "target_type" => $signed_parts[2],
3024 "parent_guid" => $signed_parts[3],
3025 "parent_author_signature" => "",
3026 "author_signature" => $signature['signature'],
3027 "diaspora_handle" => $signed_parts[4]);
3029 // Remove the comment guid
3030 $guid = array_shift($signed_parts);
3032 // Remove the parent guid
3033 $parent_guid = array_shift($signed_parts);
3035 // Remove the handle
3036 $handle = array_pop($signed_parts);
3038 // Glue the parts together
3039 $text = implode(";", $signed_parts);
3041 $message = array("guid" => $guid,
3042 "parent_guid" => $parent_guid,
3043 "parent_author_signature" => "",
3044 "author_signature" => $signature['signature'],
3045 "text" => implode(";", $signed_parts),
3046 "diaspora_handle" => $handle);
3052 * @brief Relays messages (like, comment, retraction) to other servers if we are the thread owner
3054 * @param array $item The item that will be exported
3055 * @param array $owner the array of the item owner
3056 * @param array $contact Target of the communication
3057 * @param bool $public_batch Is it a public post?
3059 * @return int The result of the transmission
3061 public static function send_relay($item, $owner, $contact, $public_batch = false) {
3063 if ($item["deleted"])
3064 return self::send_retraction($item, $owner, $contact, $public_batch, true);
3065 elseif ($item['verb'] === ACTIVITY_LIKE)
3070 logger("Got relayable data ".$type." for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
3072 // fetch the original signature
3074 $r = q("SELECT `signed_text`, `signature`, `signer` FROM `sign` WHERE `iid` = %d LIMIT 1",
3075 intval($item["id"]));
3078 logger("Couldn't fetch signatur for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
3084 // Old way - is used by the internal Friendica functions
3085 /// @todo Change all signatur storing functions to the new format
3086 if ($signature['signed_text'] AND $signature['signature'] AND $signature['signer'])
3087 $message = self::message_from_signature($item, $signature);
3089 $msg = json_decode($signature['signed_text'], true);
3092 if (is_array($msg)) {
3093 foreach ($msg AS $field => $data) {
3094 if (!$item["deleted"]) {
3095 if ($field == "author")
3096 $field = "diaspora_handle";
3097 if ($field == "parent_type")
3098 $field = "target_type";
3101 $message[$field] = $data;
3104 logger("Signature text for item ".$item["guid"]." (".$item["id"].") couldn't be extracted: ".$signature['signed_text'], LOGGER_DEBUG);
3107 $message["parent_author_signature"] = self::signature($owner, $message);
3109 logger("Relayed data ".print_r($message, true), LOGGER_DEBUG);
3111 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
3115 * @brief Sends a retraction (deletion) of a message, like or comment
3117 * @param array $item The item that will be exported
3118 * @param array $owner the array of the item owner
3119 * @param array $contact Target of the communication
3120 * @param bool $public_batch Is it a public post?
3121 * @param bool $relay Is the retraction transmitted from a relay?
3123 * @return int The result of the transmission
3125 public static function send_retraction($item, $owner, $contact, $public_batch = false, $relay = false) {
3127 $itemaddr = self::handle_from_contact($item["contact-id"], $item["gcontact-id"]);
3129 // Check whether the retraction is for a top-level post or whether it's a relayable
3130 if ($item["uri"] !== $item["parent-uri"]) {
3131 $msg_type = "relayable_retraction";
3132 $target_type = (($item["verb"] === ACTIVITY_LIKE) ? "Like" : "Comment");
3134 $msg_type = "signed_retraction";
3135 $target_type = "StatusMessage";
3138 if ($relay AND ($item["uri"] !== $item["parent-uri"]))
3139 $signature = "parent_author_signature";
3141 $signature = "target_author_signature";
3143 $signed_text = $item["guid"].";".$target_type;
3145 $message = array("target_guid" => $item['guid'],
3146 "target_type" => $target_type,
3147 "sender_handle" => $itemaddr,
3148 $signature => base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256')));
3150 logger("Got message ".print_r($message, true), LOGGER_DEBUG);
3152 return self::build_and_transmit($owner, $contact, $msg_type, $message, $public_batch, $item["guid"]);
3156 * @brief Sends a mail
3158 * @param array $item The item that will be exported
3159 * @param array $owner The owner
3160 * @param array $contact Target of the communication
3162 * @return int The result of the transmission
3164 public static function send_mail($item, $owner, $contact) {
3166 $myaddr = self::my_handle($owner);
3168 $r = q("SELECT * FROM `conv` WHERE `id` = %d AND `uid` = %d LIMIT 1",
3169 intval($item["convid"]),
3170 intval($item["uid"])
3174 logger("conversation not found.");
3180 "guid" => $cnv["guid"],
3181 "subject" => $cnv["subject"],
3182 "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d H:i:s \U\T\C'),
3183 "diaspora_handle" => $cnv["creator"],
3184 "participant_handles" => $cnv["recips"]
3187 $body = bb2diaspora($item["body"]);
3188 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d H:i:s \U\T\C');
3190 $signed_text = $item["guid"].";".$cnv["guid"].";".$body.";".$created.";".$myaddr.";".$cnv['guid'];
3191 $sig = base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
3194 "guid" => $item["guid"],
3195 "parent_guid" => $cnv["guid"],
3196 "parent_author_signature" => $sig,
3197 "author_signature" => $sig,
3199 "created_at" => $created,
3200 "diaspora_handle" => $myaddr,
3201 "conversation_guid" => $cnv["guid"]
3204 if ($item["reply"]) {
3208 $message = array("guid" => $cnv["guid"],
3209 "subject" => $cnv["subject"],
3210 "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d H:i:s \U\T\C'),
3212 "diaspora_handle" => $cnv["creator"],
3213 "participant_handles" => $cnv["recips"]);
3215 $type = "conversation";
3218 return self::build_and_transmit($owner, $contact, $type, $message, false, $item["guid"]);
3222 * @brief Sends profile data
3224 * @param int $uid The user id
3226 public static function send_profile($uid, $recips = false) {
3232 $recips = q("SELECT `id`,`name`,`network`,`pubkey`,`notify` FROM `contact` WHERE `network` = '%s'
3233 AND `uid` = %d AND `rel` != %d",
3234 dbesc(NETWORK_DIASPORA),
3236 intval(CONTACT_IS_SHARING)
3241 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.*, `user`.`prvkey` AS `uprvkey`, `contact`.`addr`
3243 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
3244 INNER JOIN `contact` ON `profile`.`uid` = `contact`.`uid`
3245 WHERE `user`.`uid` = %d AND `profile`.`is-default` AND `contact`.`self` LIMIT 1",
3254 $handle = $profile["addr"];
3255 $first = ((strpos($profile['name'],' ')
3256 ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']));
3257 $last = (($first === $profile['name']) ? '' : trim(substr($profile['name'], strlen($first))));
3258 $large = App::get_baseurl().'/photo/custom/300/'.$profile['uid'].'.jpg';
3259 $medium = App::get_baseurl().'/photo/custom/100/'.$profile['uid'].'.jpg';
3260 $small = App::get_baseurl().'/photo/custom/50/' .$profile['uid'].'.jpg';
3261 $searchable = (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false');
3263 if ($searchable === 'true') {
3264 $dob = '1000-00-00';
3266 if (($profile['dob']) && ($profile['dob'] != '0000-00-00'))
3267 $dob = ((intval($profile['dob'])) ? intval($profile['dob']) : '1000') .'-'. datetime_convert('UTC','UTC',$profile['dob'],'m-d');
3269 $about = $profile['about'];
3270 $about = strip_tags(bbcode($about));
3272 $location = formatted_location($profile);
3274 if ($profile['pub_keywords']) {
3275 $kw = str_replace(',',' ',$profile['pub_keywords']);
3276 $kw = str_replace(' ',' ',$kw);
3277 $arr = explode(' ',$profile['pub_keywords']);
3279 for($x = 0; $x < 5; $x ++) {
3281 $tags .= '#'. trim($arr[$x]) .' ';
3285 $tags = trim($tags);
3288 $message = array("diaspora_handle" => $handle,
3289 "first_name" => $first,
3290 "last_name" => $last,
3291 "image_url" => $large,
3292 "image_url_medium" => $medium,
3293 "image_url_small" => $small,
3295 "gender" => $profile['gender'],
3297 "location" => $location,
3298 "searchable" => $searchable,
3299 "tag_string" => $tags);
3301 foreach($recips as $recip) {
3302 logger("Send updated profile data for user ".$uid." to contact ".$recip["id"], LOGGER_DEBUG);
3303 self::build_and_transmit($profile, $recip, "profile", $message, false, "", true);
3308 * @brief Stores the signature for likes that are created on our system
3310 * @param array $contact The contact array of the "like"
3311 * @param int $post_id The post id of the "like"
3313 * @return bool Success
3315 public static function store_like_signature($contact, $post_id) {
3317 // Is the contact the owner? Then fetch the private key
3318 if (!$contact['self'] OR ($contact['uid'] == 0)) {
3319 logger("No owner post, so not storing signature", LOGGER_DEBUG);
3323 $r = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($contact['uid']));
3327 $contact["uprvkey"] = $r[0]['prvkey'];
3329 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", intval($post_id));
3333 if (!in_array($r[0]["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE)))
3336 $message = self::construct_like($r[0], $contact);
3337 $message["author_signature"] = self::signature($contact, $message);
3339 // In the future we will store the signature more flexible to support new fields.
3340 // Right now we cannot change this since old Friendica versions (prior to 3.5) can only handle this format.
3341 // (We are transmitting this data here via DFRN)
3343 $signed_text = $message["positive"].";".$message["guid"].";".$message["target_type"].";".
3344 $message["parent_guid"].";".$message["diaspora_handle"];
3346 q("INSERT INTO `sign` (`iid`,`signed_text`,`signature`,`signer`) VALUES (%d,'%s','%s','%s')",
3348 dbesc($signed_text),
3349 dbesc($message["author_signature"]),
3350 dbesc($message["diaspora_handle"])
3353 // This here will replace the lines above, once Diaspora changed its protocol
3354 //q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
3355 // intval($message_id),
3356 // dbesc(json_encode($message))
3359 logger('Stored diaspora like signature');
3364 * @brief Stores the signature for comments that are created on our system
3366 * @param array $item The item array of the comment
3367 * @param array $contact The contact array of the item owner
3368 * @param string $uprvkey The private key of the sender
3369 * @param int $message_id The message id of the comment
3371 * @return bool Success
3373 public static function store_comment_signature($item, $contact, $uprvkey, $message_id) {
3375 if ($uprvkey == "") {
3376 logger('No private key, so not storing comment signature', LOGGER_DEBUG);
3380 $contact["uprvkey"] = $uprvkey;
3382 $message = self::construct_comment($item, $contact);
3383 $message["author_signature"] = self::signature($contact, $message);
3385 // In the future we will store the signature more flexible to support new fields.
3386 // Right now we cannot change this since old Friendica versions (prior to 3.5) can only handle this format.
3387 // (We are transmitting this data here via DFRN)
3388 $signed_text = $message["guid"].";".$message["parent_guid"].";".
3389 $message["text"].";".$message["diaspora_handle"];
3391 q("INSERT INTO `sign` (`iid`,`signed_text`,`signature`,`signer`) VALUES (%d,'%s','%s','%s')",
3392 intval($message_id),
3393 dbesc($signed_text),
3394 dbesc($message["author_signature"]),
3395 dbesc($message["diaspora_handle"])
3398 // This here will replace the lines above, once Diaspora changed its protocol
3399 //q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
3400 // intval($message_id),
3401 // dbesc(json_encode($message))
3404 logger('Stored diaspora comment signature');