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` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
1003 dbesc(normalise_link($person["url"])), intval($uid));
1006 $network = $r[0]["network"];
1008 $cid = $contact["id"];
1009 $network = NETWORK_DIASPORA;
1012 return (array("cid" => $cid, "network" => $network));
1016 * @brief Is the profile a hubzilla profile?
1018 * @param string $url The profile link
1020 * @return bool is it a hubzilla server?
1022 public static function is_redmatrix($url) {
1023 return(strstr($url, "/channel/"));
1027 * @brief Generate a post link with a given handle and message guid
1029 * @param string $addr The user handle
1030 * @param string $guid message guid
1032 * @return string the post link
1034 private function plink($addr, $guid) {
1035 $r = q("SELECT `url`, `nick`, `network` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", dbesc($addr));
1039 return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
1041 // Friendica contacts are often detected as Diaspora contacts in the "fcontact" table
1042 // So we try another way as well.
1043 $s = q("SELECT `network` FROM `gcontact` WHERE `nurl`='%s' LIMIT 1", dbesc(normalise_link($r[0]["url"])));
1045 $r[0]["network"] = $s[0]["network"];
1047 if ($r[0]["network"] == NETWORK_DFRN)
1048 return(str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/"));
1050 if (self::is_redmatrix($r[0]["url"]))
1051 return $r[0]["url"]."/?f=&mid=".$guid;
1053 return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
1057 * @brief Processes an account deletion
1059 * @param array $importer Array of the importer user
1060 * @param object $data The message object
1062 * @return bool Success
1064 private function receive_account_deletion($importer, $data) {
1066 /// @todo Account deletion should remove the contact from the global contacts as well
1068 $author = notags(unxmlify($data->author));
1070 $contact = self::contact_by_handle($importer["uid"], $author);
1072 logger("cannot find contact for author: ".$author);
1076 // We now remove the contact
1077 contact_remove($contact["id"]);
1082 * @brief Fetch the uri from our database if we already have this item (maybe from ourselves)
1084 * @param string $author Author handle
1085 * @param string $guid Message guid
1087 * @return string The constructed uri or the one from our database
1089 private function get_uri_from_guid($author, $guid) {
1091 $r = q("SELECT `uri` FROM `item` WHERE `guid` = '%s' LIMIT 1", dbesc($guid));
1093 return $r[0]["uri"];
1095 return $author.":".$guid;
1099 * @brief Processes an incoming comment
1101 * @param array $importer Array of the importer user
1102 * @param string $sender The sender of the message
1103 * @param object $data The message object
1104 * @param string $xml The original XML of the message
1106 * @return int The message id of the generated comment or "false" if there was an error
1108 private function receive_comment($importer, $sender, $data, $xml) {
1109 $guid = notags(unxmlify($data->guid));
1110 $parent_guid = notags(unxmlify($data->parent_guid));
1111 $text = unxmlify($data->text);
1112 $author = notags(unxmlify($data->author));
1114 if (isset($data->created_at))
1115 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1117 $created_at = datetime_convert();
1119 $contact = self::allowed_contact_by_handle($importer, $sender, true);
1123 $message_id = self::message_exists($importer["uid"], $guid);
1127 $parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact);
1131 $person = self::person_by_handle($author);
1132 if (!is_array($person)) {
1133 logger("unable to find author details");
1137 // Fetch the contact id - if we know this contact
1138 $author_contact = self::author_contact_by_url($contact, $person, $importer["uid"]);
1140 $datarray = array();
1142 $datarray["uid"] = $importer["uid"];
1143 $datarray["contact-id"] = $author_contact["cid"];
1144 $datarray["network"] = $author_contact["network"];
1146 $datarray["author-name"] = $person["name"];
1147 $datarray["author-link"] = $person["url"];
1148 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
1150 $datarray["owner-name"] = $contact["name"];
1151 $datarray["owner-link"] = $contact["url"];
1152 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1154 $datarray["guid"] = $guid;
1155 $datarray["uri"] = self::get_uri_from_guid($author, $guid);
1157 $datarray["type"] = "remote-comment";
1158 $datarray["verb"] = ACTIVITY_POST;
1159 $datarray["gravity"] = GRAVITY_COMMENT;
1160 $datarray["parent-uri"] = $parent_item["uri"];
1162 $datarray["object-type"] = ACTIVITY_OBJ_COMMENT;
1163 $datarray["object"] = $xml;
1165 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
1167 $datarray["body"] = diaspora2bb($text);
1169 self::fetch_guid($datarray);
1171 $message_id = item_store($datarray);
1174 logger("Stored comment ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
1176 // If we are the origin of the parent we store the original data and notify our followers
1177 if($message_id AND $parent_item["origin"]) {
1179 // Formerly we stored the signed text, the signature and the author in different fields.
1180 // We now store the raw data so that we are more flexible.
1181 q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
1182 intval($message_id),
1183 dbesc(json_encode($data))
1187 proc_run(PRIORITY_HIGH, "include/notifier.php", "comment-import", $message_id);
1194 * @brief processes and stores private messages
1196 * @param array $importer Array of the importer user
1197 * @param array $contact The contact of the message
1198 * @param object $data The message object
1199 * @param array $msg Array of the processed message, author handle and key
1200 * @param object $mesg The private message
1201 * @param array $conversation The conversation record to which this message belongs
1203 * @return bool "true" if it was successful
1205 private function receive_conversation_message($importer, $contact, $data, $msg, $mesg, $conversation) {
1206 $guid = notags(unxmlify($data->guid));
1207 $subject = notags(unxmlify($data->subject));
1208 $author = notags(unxmlify($data->author));
1212 $msg_guid = notags(unxmlify($mesg->guid));
1213 $msg_parent_guid = notags(unxmlify($mesg->parent_guid));
1214 $msg_parent_author_signature = notags(unxmlify($mesg->parent_author_signature));
1215 $msg_author_signature = notags(unxmlify($mesg->author_signature));
1216 $msg_text = unxmlify($mesg->text);
1217 $msg_created_at = datetime_convert("UTC", "UTC", notags(unxmlify($mesg->created_at)));
1219 // "diaspora_handle" is the element name from the old version
1220 // "author" is the element name from the new version
1222 $msg_author = notags(unxmlify($mesg->author));
1223 elseif ($mesg->diaspora_handle)
1224 $msg_author = notags(unxmlify($mesg->diaspora_handle));
1228 $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
1230 if($msg_conversation_guid != $guid) {
1231 logger("message conversation guid does not belong to the current conversation.");
1235 $body = diaspora2bb($msg_text);
1236 $message_uri = $msg_author.":".$msg_guid;
1238 $author_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
1240 $author_signature = base64_decode($msg_author_signature);
1242 if(strcasecmp($msg_author,$msg["author"]) == 0) {
1246 $person = self::person_by_handle($msg_author);
1248 if (is_array($person) && x($person, "pubkey"))
1249 $key = $person["pubkey"];
1251 logger("unable to find author details");
1256 if (!rsa_verify($author_signed_data, $author_signature, $key, "sha256")) {
1257 logger("verification failed.");
1261 if($msg_parent_author_signature) {
1262 $owner_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
1264 $parent_author_signature = base64_decode($msg_parent_author_signature);
1268 if (!rsa_verify($owner_signed_data, $parent_author_signature, $key, "sha256")) {
1269 logger("owner verification failed.");
1274 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' LIMIT 1",
1278 logger("duplicate message already delivered.", LOGGER_DEBUG);
1282 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1283 VALUES (%d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1284 intval($importer["uid"]),
1286 intval($conversation["id"]),
1287 dbesc($person["name"]),
1288 dbesc($person["photo"]),
1289 dbesc($person["url"]),
1290 intval($contact["id"]),
1295 dbesc($message_uri),
1296 dbesc($author.":".$guid),
1297 dbesc($msg_created_at)
1300 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
1301 dbesc(datetime_convert()),
1302 intval($conversation["id"])
1306 "type" => NOTIFY_MAIL,
1307 "notify_flags" => $importer["notify-flags"],
1308 "language" => $importer["language"],
1309 "to_name" => $importer["username"],
1310 "to_email" => $importer["email"],
1311 "uid" =>$importer["uid"],
1312 "item" => array("subject" => $subject, "body" => $body),
1313 "source_name" => $person["name"],
1314 "source_link" => $person["url"],
1315 "source_photo" => $person["thumb"],
1316 "verb" => ACTIVITY_POST,
1323 * @brief Processes new private messages (answers to private messages are processed elsewhere)
1325 * @param array $importer Array of the importer user
1326 * @param array $msg Array of the processed message, author handle and key
1327 * @param object $data The message object
1329 * @return bool Success
1331 private function receive_conversation($importer, $msg, $data) {
1332 $guid = notags(unxmlify($data->guid));
1333 $subject = notags(unxmlify($data->subject));
1334 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1335 $author = notags(unxmlify($data->author));
1336 $participants = notags(unxmlify($data->participants));
1338 $messages = $data->message;
1340 if (!count($messages)) {
1341 logger("empty conversation");
1345 $contact = self::allowed_contact_by_handle($importer, $msg["author"], true);
1349 $conversation = null;
1351 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1352 intval($importer["uid"]),
1356 $conversation = $c[0];
1358 $r = q("INSERT INTO `conv` (`uid`, `guid`, `creator`, `created`, `updated`, `subject`, `recips`)
1359 VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s')",
1360 intval($importer["uid"]),
1364 dbesc(datetime_convert()),
1366 dbesc($participants)
1369 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1370 intval($importer["uid"]),
1375 $conversation = $c[0];
1377 if (!$conversation) {
1378 logger("unable to create conversation.");
1382 foreach($messages as $mesg)
1383 self::receive_conversation_message($importer, $contact, $data, $msg, $mesg, $conversation);
1389 * @brief Creates the body for a "like" message
1391 * @param array $contact The contact that send us the "like"
1392 * @param array $parent_item The item array of the parent item
1393 * @param string $guid message guid
1395 * @return string the body
1397 private function construct_like_body($contact, $parent_item, $guid) {
1398 $bodyverb = t('%1$s likes %2$s\'s %3$s');
1400 $ulink = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
1401 $alink = "[url=".$parent_item["author-link"]."]".$parent_item["author-name"]."[/url]";
1402 $plink = "[url=".App::get_baseurl()."/display/".urlencode($guid)."]".t("status")."[/url]";
1404 return sprintf($bodyverb, $ulink, $alink, $plink);
1408 * @brief Creates a XML object for a "like"
1410 * @param array $importer Array of the importer user
1411 * @param array $parent_item The item array of the parent item
1413 * @return string The XML
1415 private function construct_like_object($importer, $parent_item) {
1416 $objtype = ACTIVITY_OBJ_NOTE;
1417 $link = '<link rel="alternate" type="text/html" href="'.App::get_baseurl()."/display/".$importer["nickname"]."/".$parent_item["id"].'" />';
1418 $parent_body = $parent_item["body"];
1420 $xmldata = array("object" => array("type" => $objtype,
1422 "id" => $parent_item["uri"],
1425 "content" => $parent_body));
1427 return xml::from_array($xmldata, $xml, true);
1431 * @brief Processes "like" messages
1433 * @param array $importer Array of the importer user
1434 * @param string $sender The sender of the message
1435 * @param object $data The message object
1437 * @return int The message id of the generated like or "false" if there was an error
1439 private function receive_like($importer, $sender, $data) {
1440 $positive = notags(unxmlify($data->positive));
1441 $guid = notags(unxmlify($data->guid));
1442 $parent_type = notags(unxmlify($data->parent_type));
1443 $parent_guid = notags(unxmlify($data->parent_guid));
1444 $author = notags(unxmlify($data->author));
1446 // likes on comments aren't supported by Diaspora - only on posts
1447 // But maybe this will be supported in the future, so we will accept it.
1448 if (!in_array($parent_type, array("Post", "Comment")))
1451 $contact = self::allowed_contact_by_handle($importer, $sender, true);
1455 $message_id = self::message_exists($importer["uid"], $guid);
1459 $parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact);
1463 $person = self::person_by_handle($author);
1464 if (!is_array($person)) {
1465 logger("unable to find author details");
1469 // Fetch the contact id - if we know this contact
1470 $author_contact = self::author_contact_by_url($contact, $person, $importer["uid"]);
1472 // "positive" = "false" would be a Dislike - wich isn't currently supported by Diaspora
1473 // We would accept this anyhow.
1474 if ($positive == "true")
1475 $verb = ACTIVITY_LIKE;
1477 $verb = ACTIVITY_DISLIKE;
1479 $datarray = array();
1481 $datarray["uid"] = $importer["uid"];
1482 $datarray["contact-id"] = $author_contact["cid"];
1483 $datarray["network"] = $author_contact["network"];
1485 $datarray["author-name"] = $person["name"];
1486 $datarray["author-link"] = $person["url"];
1487 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
1489 $datarray["owner-name"] = $contact["name"];
1490 $datarray["owner-link"] = $contact["url"];
1491 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1493 $datarray["guid"] = $guid;
1494 $datarray["uri"] = self::get_uri_from_guid($author, $guid);
1496 $datarray["type"] = "activity";
1497 $datarray["verb"] = $verb;
1498 $datarray["gravity"] = GRAVITY_LIKE;
1499 $datarray["parent-uri"] = $parent_item["uri"];
1501 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
1502 $datarray["object"] = self::construct_like_object($importer, $parent_item);
1504 $datarray["body"] = self::construct_like_body($contact, $parent_item, $guid);
1506 $message_id = item_store($datarray);
1509 logger("Stored like ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
1511 // If we are the origin of the parent we store the original data and notify our followers
1512 if($message_id AND $parent_item["origin"]) {
1514 // Formerly we stored the signed text, the signature and the author in different fields.
1515 // We now store the raw data so that we are more flexible.
1516 q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
1517 intval($message_id),
1518 dbesc(json_encode($data))
1522 proc_run(PRIORITY_HIGH, "include/notifier.php", "comment-import", $message_id);
1529 * @brief Processes private messages
1531 * @param array $importer Array of the importer user
1532 * @param object $data The message object
1534 * @return bool Success?
1536 private function receive_message($importer, $data) {
1537 $guid = notags(unxmlify($data->guid));
1538 $parent_guid = notags(unxmlify($data->parent_guid));
1539 $text = unxmlify($data->text);
1540 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1541 $author = notags(unxmlify($data->author));
1542 $conversation_guid = notags(unxmlify($data->conversation_guid));
1544 $contact = self::allowed_contact_by_handle($importer, $author, true);
1548 $conversation = null;
1550 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1551 intval($importer["uid"]),
1552 dbesc($conversation_guid)
1555 $conversation = $c[0];
1557 logger("conversation not available.");
1563 $body = diaspora2bb($text);
1564 $message_uri = $author.":".$guid;
1566 $person = self::person_by_handle($author);
1568 logger("unable to find author details");
1572 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1573 dbesc($message_uri),
1574 intval($importer["uid"])
1577 logger("duplicate message already delivered.", LOGGER_DEBUG);
1581 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1582 VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1583 intval($importer["uid"]),
1585 intval($conversation["id"]),
1586 dbesc($person["name"]),
1587 dbesc($person["photo"]),
1588 dbesc($person["url"]),
1589 intval($contact["id"]),
1590 dbesc($conversation["subject"]),
1594 dbesc($message_uri),
1595 dbesc($author.":".$parent_guid),
1599 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
1600 dbesc(datetime_convert()),
1601 intval($conversation["id"])
1608 * @brief Processes participations - unsupported by now
1610 * @param array $importer Array of the importer user
1611 * @param object $data The message object
1613 * @return bool always true
1615 private function receive_participation($importer, $data) {
1616 // I'm not sure if we can fully support this message type
1621 * @brief Processes photos - unneeded
1623 * @param array $importer Array of the importer user
1624 * @param object $data The message object
1626 * @return bool always true
1628 private function receive_photo($importer, $data) {
1629 // There doesn't seem to be a reason for this function, since the photo data is transmitted in the status message as well
1634 * @brief Processes poll participations - unssupported
1636 * @param array $importer Array of the importer user
1637 * @param object $data The message object
1639 * @return bool always true
1641 private function receive_poll_participation($importer, $data) {
1642 // We don't support polls by now
1647 * @brief Processes incoming profile updates
1649 * @param array $importer Array of the importer user
1650 * @param object $data The message object
1652 * @return bool Success
1654 private function receive_profile($importer, $data) {
1655 $author = strtolower(notags(unxmlify($data->author)));
1657 $contact = self::contact_by_handle($importer["uid"], $author);
1661 $name = unxmlify($data->first_name).((strlen($data->last_name)) ? " ".unxmlify($data->last_name) : "");
1662 $image_url = unxmlify($data->image_url);
1663 $birthday = unxmlify($data->birthday);
1664 $location = diaspora2bb(unxmlify($data->location));
1665 $about = diaspora2bb(unxmlify($data->bio));
1666 $gender = unxmlify($data->gender);
1667 $searchable = (unxmlify($data->searchable) == "true");
1668 $nsfw = (unxmlify($data->nsfw) == "true");
1669 $tags = unxmlify($data->tag_string);
1671 $tags = explode("#", $tags);
1673 $keywords = array();
1674 foreach ($tags as $tag) {
1675 $tag = trim(strtolower($tag));
1680 $keywords = implode(", ", $keywords);
1682 $handle_parts = explode("@", $author);
1683 $nick = $handle_parts[0];
1686 $name = $handle_parts[0];
1688 if( preg_match("|^https?://|", $image_url) === 0)
1689 $image_url = "http://".$handle_parts[1].$image_url;
1691 update_contact_avatar($image_url, $importer["uid"], $contact["id"]);
1693 // Generic birthday. We don't know the timezone. The year is irrelevant.
1695 $birthday = str_replace("1000", "1901", $birthday);
1697 if ($birthday != "")
1698 $birthday = datetime_convert("UTC", "UTC", $birthday, "Y-m-d");
1700 // this is to prevent multiple birthday notifications in a single year
1701 // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year
1703 if(substr($birthday,5) === substr($contact["bd"],5))
1704 $birthday = $contact["bd"];
1706 $r = q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `name-date` = '%s', `bd` = '%s',
1707 `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d AND `uid` = %d",
1711 dbesc(datetime_convert()),
1717 intval($contact["id"]),
1718 intval($importer["uid"])
1722 poco_check($contact["url"], $name, NETWORK_DIASPORA, $image_url, $about, $location, $gender, $keywords, "",
1723 datetime_convert(), 2, $contact["id"], $importer["uid"]);
1726 $gcontact = array("url" => $contact["url"], "network" => NETWORK_DIASPORA, "generation" => 2,
1727 "photo" => $image_url, "name" => $name, "location" => $location,
1728 "about" => $about, "birthday" => $birthday, "gender" => $gender,
1729 "addr" => $author, "nick" => $nick, "keywords" => $keywords,
1730 "hide" => !$searchable, "nsfw" => $nsfw);
1732 update_gcontact($gcontact);
1734 logger("Profile of contact ".$contact["id"]." stored for user ".$importer["uid"], LOGGER_DEBUG);
1740 * @brief Processes incoming friend requests
1742 * @param array $importer Array of the importer user
1743 * @param array $contact The contact that send the request
1745 private function receive_request_make_friend($importer, $contact) {
1749 if($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
1750 q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
1751 intval(CONTACT_IS_FRIEND),
1752 intval($contact["id"]),
1753 intval($importer["uid"])
1756 // send notification
1758 $r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
1759 intval($importer["uid"])
1762 if($r && !$r[0]["hide-friends"] && !$contact["hidden"] && intval(get_pconfig($importer["uid"], "system", "post_newfriend"))) {
1764 $self = q("SELECT * FROM `contact` WHERE `self` AND `uid` = %d LIMIT 1",
1765 intval($importer["uid"])
1768 // they are not CONTACT_IS_FOLLOWER anymore but that's what we have in the array
1770 if($self && $contact["rel"] == CONTACT_IS_FOLLOWER) {
1773 $arr["uri"] = $arr["parent-uri"] = item_new_uri($a->get_hostname(), $importer["uid"]);
1774 $arr["uid"] = $importer["uid"];
1775 $arr["contact-id"] = $self[0]["id"];
1777 $arr["type"] = 'wall';
1778 $arr["gravity"] = 0;
1780 $arr["author-name"] = $arr["owner-name"] = $self[0]["name"];
1781 $arr["author-link"] = $arr["owner-link"] = $self[0]["url"];
1782 $arr["author-avatar"] = $arr["owner-avatar"] = $self[0]["thumb"];
1783 $arr["verb"] = ACTIVITY_FRIEND;
1784 $arr["object-type"] = ACTIVITY_OBJ_PERSON;
1786 $A = "[url=".$self[0]["url"]."]".$self[0]["name"]."[/url]";
1787 $B = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
1788 $BPhoto = "[url=".$contact["url"]."][img]".$contact["thumb"]."[/img][/url]";
1789 $arr["body"] = sprintf(t("%1$s is now friends with %2$s"), $A, $B)."\n\n\n".$Bphoto;
1791 $arr["object"] = self::construct_new_friend_object($contact);
1793 $arr["last-child"] = 1;
1795 $arr["allow_cid"] = $user[0]["allow_cid"];
1796 $arr["allow_gid"] = $user[0]["allow_gid"];
1797 $arr["deny_cid"] = $user[0]["deny_cid"];
1798 $arr["deny_gid"] = $user[0]["deny_gid"];
1800 $i = item_store($arr);
1802 proc_run(PRIORITY_HIGH, "include/notifier.php", "activity", $i);
1808 * @brief Creates a XML object for a "new friend" message
1810 * @param array $contact Array of the contact
1812 * @return string The XML
1814 private function construct_new_friend_object($contact) {
1815 $objtype = ACTIVITY_OBJ_PERSON;
1816 $link = '<link rel="alternate" type="text/html" href="'.$contact["url"].'" />'."\n".
1817 '<link rel="photo" type="image/jpeg" href="'.$contact["thumb"].'" />'."\n";
1819 $xmldata = array("object" => array("type" => $objtype,
1820 "title" => $contact["name"],
1821 "id" => $contact["url"]."/".$contact["name"],
1824 return xml::from_array($xmldata, $xml, true);
1828 * @brief Processes incoming sharing notification
1830 * @param array $importer Array of the importer user
1831 * @param object $data The message object
1833 * @return bool Success
1835 private function receive_contact_request($importer, $data) {
1836 $author = unxmlify($data->author);
1837 $recipient = unxmlify($data->recipient);
1839 if (!$author || !$recipient)
1842 // the current protocol version doesn't know these fields
1843 // That means that we will assume their existance
1844 if (isset($data->following))
1845 $following = (unxmlify($data->following) == "true");
1849 if (isset($data->sharing))
1850 $sharing = (unxmlify($data->sharing) == "true");
1854 $contact = self::contact_by_handle($importer["uid"],$author);
1856 // perhaps we were already sharing with this person. Now they're sharing with us.
1857 // That makes us friends.
1859 if ($following AND $sharing) {
1860 logger("Author ".$author." (Contact ".$contact["id"].") wants to have a bidirectional conection.", LOGGER_DEBUG);
1861 self::receive_request_make_friend($importer, $contact);
1863 // refetch the contact array
1864 $contact = self::contact_by_handle($importer["uid"],$author);
1866 // If we are now friends, we are sending a share message.
1867 // Normally we needn't to do so, but the first message could have been vanished.
1868 if (in_array($contact["rel"], array(CONTACT_IS_FRIEND, CONTACT_IS_FOLLOWER))) {
1869 $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
1871 logger("Sending share message to author ".$author." - Contact: ".$contact["id"]." - User: ".$importer["uid"], LOGGER_DEBUG);
1872 $ret = self::send_share($u[0], $contact);
1876 } else { /// @todo Handle all possible variations of adding and retracting of permissions
1877 logger("Author ".$author." (Contact ".$contact["id"].") wants to change the relationship: Following: ".$following." - sharing: ".$sharing. "(By now unsupported)", LOGGER_DEBUG);
1882 if (!$following AND $sharing AND in_array($importer["page-flags"], array(PAGE_SOAPBOX, PAGE_NORMAL))) {
1883 logger("Author ".$author." wants to share with us - but doesn't want to listen. Request is ignored.", LOGGER_DEBUG);
1885 } elseif (!$following AND !$sharing) {
1886 logger("Author ".$author." doesn't want anything - and we don't know the author. Request is ignored.", LOGGER_DEBUG);
1888 } elseif (!$following AND $sharing) {
1889 logger("Author ".$author." wants to share with us.", LOGGER_DEBUG);
1890 } elseif ($following AND $sharing) {
1891 logger("Author ".$author." wants to have a bidirectional conection.", LOGGER_DEBUG);
1892 } elseif ($following AND !$sharing) {
1893 logger("Author ".$author." wants to listen to us.", LOGGER_DEBUG);
1896 $ret = self::person_by_handle($author);
1898 if (!$ret || ($ret["network"] != NETWORK_DIASPORA)) {
1899 logger("Cannot resolve diaspora handle ".$author." for ".$recipient);
1903 $batch = (($ret["batch"]) ? $ret["batch"] : implode("/", array_slice(explode("/", $ret["url"]), 0, 3))."/receive/public");
1905 $r = q("INSERT INTO `contact` (`uid`, `network`,`addr`,`created`,`url`,`nurl`,`batch`,`name`,`nick`,`photo`,`pubkey`,`notify`,`poll`,`blocked`,`priority`)
1906 VALUES (%d, '%s', '%s', '%s', '%s','%s','%s','%s','%s','%s','%s','%s','%s',%d,%d)",
1907 intval($importer["uid"]),
1908 dbesc($ret["network"]),
1909 dbesc($ret["addr"]),
1912 dbesc(normalise_link($ret["url"])),
1914 dbesc($ret["name"]),
1915 dbesc($ret["nick"]),
1916 dbesc($ret["photo"]),
1917 dbesc($ret["pubkey"]),
1918 dbesc($ret["notify"]),
1919 dbesc($ret["poll"]),
1924 // find the contact record we just created
1926 $contact_record = self::contact_by_handle($importer["uid"],$author);
1928 if (!$contact_record) {
1929 logger("unable to locate newly created contact record.");
1933 logger("Author ".$author." was added as contact number ".$contact_record["id"].".", LOGGER_DEBUG);
1935 $def_gid = get_default_group($importer['uid'], $ret["network"]);
1937 if(intval($def_gid))
1938 group_add_member($importer["uid"], "", $contact_record["id"], $def_gid);
1940 update_contact_avatar($ret["photo"], $importer['uid'], $contact_record["id"], true);
1942 if($importer["page-flags"] == PAGE_NORMAL) {
1944 logger("Sending intra message for author ".$author.".", LOGGER_DEBUG);
1946 $hash = random_string().(string)time(); // Generate a confirm_key
1948 $ret = q("INSERT INTO `intro` (`uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
1949 VALUES (%d, %d, %d, %d, '%s', '%s', '%s')",
1950 intval($importer["uid"]),
1951 intval($contact_record["id"]),
1954 dbesc(t("Sharing notification from Diaspora network")),
1956 dbesc(datetime_convert())
1960 // automatic friend approval
1962 logger("Does an automatic friend approval for author ".$author.".", LOGGER_DEBUG);
1964 update_contact_avatar($contact_record["photo"],$importer["uid"],$contact_record["id"]);
1966 // technically they are sharing with us (CONTACT_IS_SHARING),
1967 // but if our page-type is PAGE_COMMUNITY or PAGE_SOAPBOX
1968 // we are going to change the relationship and make them a follower.
1970 if (($importer["page-flags"] == PAGE_FREELOVE) AND $sharing AND $following)
1971 $new_relation = CONTACT_IS_FRIEND;
1972 elseif (($importer["page-flags"] == PAGE_FREELOVE) AND $sharing)
1973 $new_relation = CONTACT_IS_SHARING;
1975 $new_relation = CONTACT_IS_FOLLOWER;
1977 $r = q("UPDATE `contact` SET `rel` = %d,
1985 intval($new_relation),
1986 dbesc(datetime_convert()),
1987 dbesc(datetime_convert()),
1988 intval($contact_record["id"])
1991 $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
1993 logger("Sending share message (Relation: ".$new_relation.") to author ".$author." - Contact: ".$contact_record["id"]." - User: ".$importer["uid"], LOGGER_DEBUG);
1994 $ret = self::send_share($u[0], $contact_record);
1996 // Send the profile data, maybe it weren't transmitted before
1997 self::send_profile($importer["uid"], array($contact_record));
2005 * @brief Fetches a message with a given guid
2007 * @param string $guid message guid
2008 * @param string $orig_author handle of the original post
2009 * @param string $author handle of the sharer
2011 * @return array The fetched item
2013 private function original_item($guid, $orig_author, $author) {
2015 // Do we already have this item?
2016 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
2017 `author-name`, `author-link`, `author-avatar`
2018 FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
2022 logger("reshared message ".$guid." already exists on system.");
2024 // Maybe it is already a reshared item?
2025 // Then refetch the content, if it is a reshare from a reshare.
2026 // If it is a reshared post from another network then reformat to avoid display problems with two share elements
2027 if (self::is_reshare($r[0]["body"], true))
2029 elseif (self::is_reshare($r[0]["body"], false)) {
2030 $r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"]));
2032 // Add OEmbed and other information to the body
2033 $r[0]["body"] = add_page_info_to_body($r[0]["body"], false, true);
2041 $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1);
2042 logger("1st try: reshared message ".$guid." will be fetched via SSL from the server ".$server);
2043 $item_id = self::store_by_guid($guid, $server);
2046 $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1);
2047 logger("2nd try: reshared message ".$guid." will be fetched without SLL from the server ".$server);
2048 $item_id = self::store_by_guid($guid, $server);
2052 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
2053 `author-name`, `author-link`, `author-avatar`
2054 FROM `item` WHERE `id` = %d AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
2058 // If it is a reshared post from another network then reformat to avoid display problems with two share elements
2059 if (self::is_reshare($r[0]["body"], false))
2060 $r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"]));
2071 * @brief Processes a reshare message
2073 * @param array $importer Array of the importer user
2074 * @param object $data The message object
2075 * @param string $xml The original XML of the message
2077 * @return int the message id
2079 private function receive_reshare($importer, $data, $xml) {
2080 $root_author = notags(unxmlify($data->root_author));
2081 $root_guid = notags(unxmlify($data->root_guid));
2082 $guid = notags(unxmlify($data->guid));
2083 $author = notags(unxmlify($data->author));
2084 $public = notags(unxmlify($data->public));
2085 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
2087 $contact = self::allowed_contact_by_handle($importer, $author, false);
2091 $message_id = self::message_exists($importer["uid"], $guid);
2095 $original_item = self::original_item($root_guid, $root_author, $author);
2096 if (!$original_item)
2099 $orig_url = App::get_baseurl()."/display/".$original_item["guid"];
2101 $datarray = array();
2103 $datarray["uid"] = $importer["uid"];
2104 $datarray["contact-id"] = $contact["id"];
2105 $datarray["network"] = NETWORK_DIASPORA;
2107 $datarray["author-name"] = $contact["name"];
2108 $datarray["author-link"] = $contact["url"];
2109 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
2111 $datarray["owner-name"] = $datarray["author-name"];
2112 $datarray["owner-link"] = $datarray["author-link"];
2113 $datarray["owner-avatar"] = $datarray["author-avatar"];
2115 $datarray["guid"] = $guid;
2116 $datarray["uri"] = $datarray["parent-uri"] = self::get_uri_from_guid($author, $guid);
2118 $datarray["verb"] = ACTIVITY_POST;
2119 $datarray["gravity"] = GRAVITY_PARENT;
2121 $datarray["object"] = $xml;
2123 $prefix = share_header($original_item["author-name"], $original_item["author-link"], $original_item["author-avatar"],
2124 $original_item["guid"], $original_item["created"], $orig_url);
2125 $datarray["body"] = $prefix.$original_item["body"]."[/share]";
2127 $datarray["tag"] = $original_item["tag"];
2128 $datarray["app"] = $original_item["app"];
2130 $datarray["plink"] = self::plink($author, $guid);
2131 $datarray["private"] = (($public == "false") ? 1 : 0);
2132 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
2134 $datarray["object-type"] = $original_item["object-type"];
2136 self::fetch_guid($datarray);
2137 $message_id = item_store($datarray);
2140 logger("Stored reshare ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2146 * @brief Processes retractions
2148 * @param array $importer Array of the importer user
2149 * @param array $contact The contact of the item owner
2150 * @param object $data The message object
2152 * @return bool success
2154 private function item_retraction($importer, $contact, $data) {
2155 $target_type = notags(unxmlify($data->target_type));
2156 $target_guid = notags(unxmlify($data->target_guid));
2157 $author = notags(unxmlify($data->author));
2159 $person = self::person_by_handle($author);
2160 if (!is_array($person)) {
2161 logger("unable to find author detail for ".$author);
2165 $r = q("SELECT `id`, `parent`, `parent-uri`, `author-link` FROM `item` WHERE `guid` = '%s' AND `uid` = %d AND NOT `file` LIKE '%%[%%' LIMIT 1",
2166 dbesc($target_guid),
2167 intval($importer["uid"])
2172 // Check if the sender is the thread owner
2173 $p = q("SELECT `id`, `author-link`, `origin` FROM `item` WHERE `id` = %d",
2174 intval($r[0]["parent"]));
2176 // Only delete it if the parent author really fits
2177 if (!link_compare($p[0]["author-link"], $contact["url"]) AND !link_compare($r[0]["author-link"], $contact["url"])) {
2178 logger("Thread author ".$p[0]["author-link"]." and item author ".$r[0]["author-link"]." don't fit to expected contact ".$contact["url"], LOGGER_DEBUG);
2182 // 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
2183 q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = '' WHERE `id` = %d",
2184 dbesc(datetime_convert()),
2185 dbesc(datetime_convert()),
2188 delete_thread($r[0]["id"], $r[0]["parent-uri"]);
2190 logger("Deleted target ".$target_guid." (".$r[0]["id"].") from user ".$importer["uid"]." parent: ".$p[0]["id"], LOGGER_DEBUG);
2192 // Now check if the retraction needs to be relayed by us
2193 if($p[0]["origin"]) {
2195 proc_run(PRIORITY_HIGH, "include/notifier.php", "drop", $r[0]["id"]);
2202 * @brief Receives retraction messages
2204 * @param array $importer Array of the importer user
2205 * @param string $sender The sender of the message
2206 * @param object $data The message object
2208 * @return bool Success
2210 private function receive_retraction($importer, $sender, $data) {
2211 $target_type = notags(unxmlify($data->target_type));
2213 $contact = self::contact_by_handle($importer["uid"], $sender);
2215 logger("cannot find contact for sender: ".$sender." and user ".$importer["uid"]);
2219 logger("Got retraction for ".$target_type.", sender ".$sender." and user ".$importer["uid"], LOGGER_DEBUG);
2221 switch ($target_type) {
2224 case "Post": // "Post" will be supported in a future version
2226 case "StatusMessage":
2227 return self::item_retraction($importer, $contact, $data);;
2231 /// @todo What should we do with an "unshare"?
2232 // Removing the contact isn't correct since we still can read the public items
2233 contact_remove($contact["id"]);
2237 logger("Unknown target type ".$target_type);
2244 * @brief Receives status messages
2246 * @param array $importer Array of the importer user
2247 * @param object $data The message object
2248 * @param string $xml The original XML of the message
2250 * @return int The message id of the newly created item
2252 private function receive_status_message($importer, $data, $xml) {
2253 $raw_message = unxmlify($data->raw_message);
2254 $guid = notags(unxmlify($data->guid));
2255 $author = notags(unxmlify($data->author));
2256 $public = notags(unxmlify($data->public));
2257 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
2258 $provider_display_name = notags(unxmlify($data->provider_display_name));
2260 /// @todo enable support for polls
2261 //if ($data->poll) {
2262 // foreach ($data->poll AS $poll)
2266 $contact = self::allowed_contact_by_handle($importer, $author, false);
2270 $message_id = self::message_exists($importer["uid"], $guid);
2275 if ($data->location)
2276 foreach ($data->location->children() AS $fieldname => $data)
2277 $address[$fieldname] = notags(unxmlify($data));
2279 $body = diaspora2bb($raw_message);
2281 $datarray = array();
2283 // Attach embedded pictures to the body
2285 foreach ($data->photo AS $photo)
2286 $body = "[img]".unxmlify($photo->remote_photo_path).
2287 unxmlify($photo->remote_photo_name)."[/img]\n".$body;
2289 $datarray["object-type"] = ACTIVITY_OBJ_PHOTO;
2291 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
2293 // Add OEmbed and other information to the body
2294 if (!self::is_redmatrix($contact["url"]))
2295 $body = add_page_info_to_body($body, false, true);
2298 $datarray["uid"] = $importer["uid"];
2299 $datarray["contact-id"] = $contact["id"];
2300 $datarray["network"] = NETWORK_DIASPORA;
2302 $datarray["author-name"] = $contact["name"];
2303 $datarray["author-link"] = $contact["url"];
2304 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
2306 $datarray["owner-name"] = $datarray["author-name"];
2307 $datarray["owner-link"] = $datarray["author-link"];
2308 $datarray["owner-avatar"] = $datarray["author-avatar"];
2310 $datarray["guid"] = $guid;
2311 $datarray["uri"] = $datarray["parent-uri"] = self::get_uri_from_guid($author, $guid);
2313 $datarray["verb"] = ACTIVITY_POST;
2314 $datarray["gravity"] = GRAVITY_PARENT;
2316 $datarray["object"] = $xml;
2318 $datarray["body"] = $body;
2320 if ($provider_display_name != "")
2321 $datarray["app"] = $provider_display_name;
2323 $datarray["plink"] = self::plink($author, $guid);
2324 $datarray["private"] = (($public == "false") ? 1 : 0);
2325 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
2327 if (isset($address["address"]))
2328 $datarray["location"] = $address["address"];
2330 if (isset($address["lat"]) AND isset($address["lng"]))
2331 $datarray["coord"] = $address["lat"]." ".$address["lng"];
2333 self::fetch_guid($datarray);
2334 $message_id = item_store($datarray);
2337 logger("Stored item ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2342 /* ************************************************************************************** *
2343 * Here are all the functions that are needed to transmit data with the Diaspora protocol *
2344 * ************************************************************************************** */
2347 * @brief returnes the handle of a contact
2349 * @param array $me contact array
2351 * @return string the handle in the format user@domain.tld
2353 private function my_handle($contact) {
2354 if ($contact["addr"] != "")
2355 return $contact["addr"];
2357 // Normally we should have a filled "addr" field - but in the past this wasn't the case
2358 // So - just in case - we build the the address here.
2359 if ($contact["nickname"] != "")
2360 $nick = $contact["nickname"];
2362 $nick = $contact["nick"];
2364 return $nick."@".substr(App::get_baseurl(), strpos(App::get_baseurl(),"://") + 3);
2368 * @brief Creates the envelope for the "fetch" endpoint
2370 * @param string $msg The message that is to be transmitted
2371 * @param array $user The record of the sender
2373 * @return string The envelope
2376 public static function build_magic_envelope($msg, $user) {
2378 $b64url_data = base64url_encode($msg);
2379 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
2381 $key_id = base64url_encode(diaspora::my_handle($user));
2382 $type = "application/xml";
2383 $encoding = "base64url";
2384 $alg = "RSA-SHA256";
2385 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
2386 $signature = rsa_sign($signable_data, $user["prvkey"]);
2387 $sig = base64url_encode($signature);
2389 $xmldata = array("me:env" => array("me:data" => $data,
2390 "@attributes" => array("type" => $type),
2391 "me:encoding" => $encoding,
2394 "@attributes2" => array("key_id" => $key_id)));
2396 $namespaces = array("me" => "http://salmon-protocol.org/ns/magic-env");
2398 return xml::from_array($xmldata, $xml, false, $namespaces);
2402 * @brief Creates the envelope for a public message
2404 * @param string $msg The message that is to be transmitted
2405 * @param array $user The record of the sender
2406 * @param array $contact Target of the communication
2407 * @param string $prvkey The private key of the sender
2408 * @param string $pubkey The public key of the receiver
2410 * @return string The envelope
2412 private function build_public_message($msg, $user, $contact, $prvkey, $pubkey) {
2414 logger("Message: ".$msg, LOGGER_DATA);
2416 $handle = self::my_handle($user);
2418 $b64url_data = base64url_encode($msg);
2420 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
2422 $type = "application/xml";
2423 $encoding = "base64url";
2424 $alg = "RSA-SHA256";
2426 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
2428 $signature = rsa_sign($signable_data,$prvkey);
2429 $sig = base64url_encode($signature);
2431 $xmldata = array("diaspora" => array("header" => array("author_id" => $handle),
2432 "me:env" => array("me:encoding" => $encoding,
2435 "@attributes" => array("type" => $type),
2436 "me:sig" => $sig)));
2438 $namespaces = array("" => "https://joindiaspora.com/protocol",
2439 "me" => "http://salmon-protocol.org/ns/magic-env");
2441 $magic_env = xml::from_array($xmldata, $xml, false, $namespaces);
2443 logger("magic_env: ".$magic_env, LOGGER_DATA);
2448 * @brief Creates the envelope for a private message
2450 * @param string $msg The message that is to be transmitted
2451 * @param array $user The record of the sender
2452 * @param array $contact Target of the communication
2453 * @param string $prvkey The private key of the sender
2454 * @param string $pubkey The public key of the receiver
2456 * @return string The envelope
2458 private function build_private_message($msg, $user, $contact, $prvkey, $pubkey) {
2460 logger("Message: ".$msg, LOGGER_DATA);
2462 // without a public key nothing will work
2465 logger("pubkey missing: contact id: ".$contact["id"]);
2469 $inner_aes_key = random_string(32);
2470 $b_inner_aes_key = base64_encode($inner_aes_key);
2471 $inner_iv = random_string(16);
2472 $b_inner_iv = base64_encode($inner_iv);
2474 $outer_aes_key = random_string(32);
2475 $b_outer_aes_key = base64_encode($outer_aes_key);
2476 $outer_iv = random_string(16);
2477 $b_outer_iv = base64_encode($outer_iv);
2479 $handle = self::my_handle($user);
2481 $padded_data = pkcs5_pad($msg,16);
2482 $inner_encrypted = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $padded_data, MCRYPT_MODE_CBC, $inner_iv);
2484 $b64_data = base64_encode($inner_encrypted);
2487 $b64url_data = base64url_encode($b64_data);
2488 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
2490 $type = "application/xml";
2491 $encoding = "base64url";
2492 $alg = "RSA-SHA256";
2494 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
2496 $signature = rsa_sign($signable_data,$prvkey);
2497 $sig = base64url_encode($signature);
2499 $xmldata = array("decrypted_header" => array("iv" => $b_inner_iv,
2500 "aes_key" => $b_inner_aes_key,
2501 "author_id" => $handle));
2503 $decrypted_header = xml::from_array($xmldata, $xml, true);
2504 $decrypted_header = pkcs5_pad($decrypted_header,16);
2506 $ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $outer_aes_key, $decrypted_header, MCRYPT_MODE_CBC, $outer_iv);
2508 $outer_json = json_encode(array("iv" => $b_outer_iv, "key" => $b_outer_aes_key));
2510 $encrypted_outer_key_bundle = "";
2511 openssl_public_encrypt($outer_json, $encrypted_outer_key_bundle, $pubkey);
2513 $b64_encrypted_outer_key_bundle = base64_encode($encrypted_outer_key_bundle);
2515 logger("outer_bundle: ".$b64_encrypted_outer_key_bundle." key: ".$pubkey, LOGGER_DATA);
2517 $encrypted_header_json_object = json_encode(array("aes_key" => base64_encode($encrypted_outer_key_bundle),
2518 "ciphertext" => base64_encode($ciphertext)));
2519 $cipher_json = base64_encode($encrypted_header_json_object);
2521 $xmldata = array("diaspora" => array("encrypted_header" => $cipher_json,
2522 "me:env" => array("me:encoding" => $encoding,
2525 "@attributes" => array("type" => $type),
2526 "me:sig" => $sig)));
2528 $namespaces = array("" => "https://joindiaspora.com/protocol",
2529 "me" => "http://salmon-protocol.org/ns/magic-env");
2531 $magic_env = xml::from_array($xmldata, $xml, false, $namespaces);
2533 logger("magic_env: ".$magic_env, LOGGER_DATA);
2538 * @brief Create the envelope for a message
2540 * @param string $msg The message that is to be transmitted
2541 * @param array $user The record of the sender
2542 * @param array $contact Target of the communication
2543 * @param string $prvkey The private key of the sender
2544 * @param string $pubkey The public key of the receiver
2545 * @param bool $public Is the message public?
2547 * @return string The message that will be transmitted to other servers
2549 private function build_message($msg, $user, $contact, $prvkey, $pubkey, $public = false) {
2552 $magic_env = self::build_public_message($msg,$user,$contact,$prvkey,$pubkey);
2554 $magic_env = self::build_private_message($msg,$user,$contact,$prvkey,$pubkey);
2556 // The data that will be transmitted is double encoded via "urlencode", strange ...
2557 $slap = "xml=".urlencode(urlencode($magic_env));
2562 * @brief Creates a signature for a message
2564 * @param array $owner the array of the owner of the message
2565 * @param array $message The message that is to be signed
2567 * @return string The signature
2569 private function signature($owner, $message) {
2571 unset($sigmsg["author_signature"]);
2572 unset($sigmsg["parent_author_signature"]);
2574 $signed_text = implode(";", $sigmsg);
2576 return base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
2580 * @brief Transmit a message to a target server
2582 * @param array $owner the array of the item owner
2583 * @param array $contact Target of the communication
2584 * @param string $slap The message that is to be transmitted
2585 * @param bool $public_batch Is it a public post?
2586 * @param bool $queue_run Is the transmission called from the queue?
2587 * @param string $guid message guid
2589 * @return int Result of the transmission
2591 public static function transmit($owner, $contact, $slap, $public_batch, $queue_run=false, $guid = "") {
2595 $enabled = intval(get_config("system", "diaspora_enabled"));
2599 $logid = random_string(4);
2600 $dest_url = (($public_batch) ? $contact["batch"] : $contact["notify"]);
2602 logger("no url for contact: ".$contact["id"]." batch mode =".$public_batch);
2606 logger("transmit: ".$logid."-".$guid." ".$dest_url);
2608 if (!$queue_run && was_recently_delayed($contact["id"])) {
2611 if (!intval(get_config("system", "diaspora_test"))) {
2612 post_url($dest_url."/", $slap);
2613 $return_code = $a->get_curl_code();
2615 logger("test_mode");
2620 logger("transmit: ".$logid."-".$guid." returns: ".$return_code);
2622 if(!$return_code || (($return_code == 503) && (stristr($a->get_curl_headers(), "retry-after")))) {
2623 logger("queue message");
2625 $r = q("SELECT `id` FROM `queue` WHERE `cid` = %d AND `network` = '%s' AND `content` = '%s' AND `batch` = %d LIMIT 1",
2626 intval($contact["id"]),
2627 dbesc(NETWORK_DIASPORA),
2629 intval($public_batch)
2632 logger("add_to_queue ignored - identical item already in queue");
2634 // queue message for redelivery
2635 add_to_queue($contact["id"], NETWORK_DIASPORA, $slap, $public_batch);
2639 return(($return_code) ? $return_code : (-1));
2644 * @brief Build the post xml
2646 * @param string $type The message type
2647 * @param array $message The message data
2649 * @return string The post XML
2651 public static function build_post_xml($type, $message) {
2653 $data = array("XML" => array("post" => array($type => $message)));
2654 return xml::from_array($data, $xml);
2658 * @brief Builds and transmit messages
2660 * @param array $owner the array of the item owner
2661 * @param array $contact Target of the communication
2662 * @param string $type The message type
2663 * @param array $message The message data
2664 * @param bool $public_batch Is it a public post?
2665 * @param string $guid message guid
2666 * @param bool $spool Should the transmission be spooled or transmitted?
2668 * @return int Result of the transmission
2670 private function build_and_transmit($owner, $contact, $type, $message, $public_batch = false, $guid = "", $spool = false) {
2672 $msg = self::build_post_xml($type, $message);
2674 logger('message: '.$msg, LOGGER_DATA);
2675 logger('send guid '.$guid, LOGGER_DEBUG);
2677 // Fallback if the private key wasn't transmitted in the expected field
2678 if ($owner['uprvkey'] == "")
2679 $owner['uprvkey'] = $owner['prvkey'];
2681 $slap = self::build_message($msg, $owner, $contact, $owner['uprvkey'], $contact['pubkey'], $public_batch);
2684 add_to_queue($contact['id'], NETWORK_DIASPORA, $slap, $public_batch);
2687 $return_code = self::transmit($owner, $contact, $slap, $public_batch, false, $guid);
2689 logger("guid: ".$item["guid"]." result ".$return_code, LOGGER_DEBUG);
2691 return $return_code;
2695 * @brief Sends a "share" message
2697 * @param array $owner the array of the item owner
2698 * @param array $contact Target of the communication
2700 * @return int The result of the transmission
2702 public static function send_share($owner,$contact) {
2704 $message = array("sender_handle" => self::my_handle($owner),
2705 "recipient_handle" => $contact["addr"]);
2707 logger("Send share ".print_r($message, true), LOGGER_DEBUG);
2709 return self::build_and_transmit($owner, $contact, "request", $message);
2713 * @brief sends an "unshare"
2715 * @param array $owner the array of the item owner
2716 * @param array $contact Target of the communication
2718 * @return int The result of the transmission
2720 public static function send_unshare($owner,$contact) {
2722 $message = array("post_guid" => $owner["guid"],
2723 "diaspora_handle" => self::my_handle($owner),
2724 "type" => "Person");
2726 logger("Send unshare ".print_r($message, true), LOGGER_DEBUG);
2728 return self::build_and_transmit($owner, $contact, "retraction", $message);
2732 * @brief Checks a message body if it is a reshare
2734 * @param string $body The message body that is to be check
2735 * @param bool $complete Should it be a complete check or a simple check?
2737 * @return array|bool Reshare details or "false" if no reshare
2739 public static function is_reshare($body, $complete = true) {
2740 $body = trim($body);
2742 // Skip if it isn't a pure repeated messages
2743 // Does it start with a share?
2744 if ((strpos($body, "[share") > 0) AND $complete)
2747 // Does it end with a share?
2748 if (strlen($body) > (strrpos($body, "[/share]") + 8))
2751 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
2752 // Skip if there is no shared message in there
2753 if ($body == $attributes)
2756 // If we don't do the complete check we quit here
2761 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
2762 if ($matches[1] != "")
2763 $guid = $matches[1];
2765 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
2766 if ($matches[1] != "")
2767 $guid = $matches[1];
2770 $r = q("SELECT `contact-id` FROM `item` WHERE `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1",
2771 dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA);
2774 $ret["root_handle"] = self::handle_from_contact($r[0]["contact-id"]);
2775 $ret["root_guid"] = $guid;
2781 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
2782 if ($matches[1] != "")
2783 $profile = $matches[1];
2785 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
2786 if ($matches[1] != "")
2787 $profile = $matches[1];
2791 $ret["root_handle"] = preg_replace("=https?://(.*)/u/(.*)=ism", "$2@$1", $profile);
2792 if (($ret["root_handle"] == $profile) OR ($ret["root_handle"] == ""))
2796 preg_match("/link='(.*?)'/ism", $attributes, $matches);
2797 if ($matches[1] != "")
2798 $link = $matches[1];
2800 preg_match('/link="(.*?)"/ism', $attributes, $matches);
2801 if ($matches[1] != "")
2802 $link = $matches[1];
2804 $ret["root_guid"] = preg_replace("=https?://(.*)/posts/(.*)=ism", "$2", $link);
2805 if (($ret["root_guid"] == $link) OR (trim($ret["root_guid"]) == ""))
2812 * @brief Create a post (status message or reshare)
2814 * @param array $item The item that will be exported
2815 * @param array $owner the array of the item owner
2818 * 'type' -> Message type ("status_message" or "reshare")
2819 * 'message' -> Array of XML elements of the status
2821 public static function build_status($item, $owner) {
2823 $myaddr = self::my_handle($owner);
2825 $public = (($item["private"]) ? "false" : "true");
2827 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d H:i:s \U\T\C');
2829 // Detect a share element and do a reshare
2830 if (!$item['private'] AND ($ret = self::is_reshare($item["body"]))) {
2831 $message = array("root_diaspora_id" => $ret["root_handle"],
2832 "root_guid" => $ret["root_guid"],
2833 "guid" => $item["guid"],
2834 "diaspora_handle" => $myaddr,
2835 "public" => $public,
2836 "created_at" => $created,
2837 "provider_display_name" => $item["app"]);
2841 $title = $item["title"];
2842 $body = $item["body"];
2844 // convert to markdown
2845 $body = html_entity_decode(bb2diaspora($body));
2849 $body = "## ".html_entity_decode($title)."\n\n".$body;
2851 if ($item["attach"]) {
2852 $cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism', $item["attach"], $matches, PREG_SET_ORDER);
2854 $body .= "\n".t("Attachments:")."\n";
2855 foreach($matches as $mtch)
2856 $body .= "[".$mtch[3]."](".$mtch[1].")\n";
2860 $location = array();
2862 if ($item["location"] != "")
2863 $location["address"] = $item["location"];
2865 if ($item["coord"] != "") {
2866 $coord = explode(" ", $item["coord"]);
2867 $location["lat"] = $coord[0];
2868 $location["lng"] = $coord[1];
2871 $message = array("raw_message" => $body,
2872 "location" => $location,
2873 "guid" => $item["guid"],
2874 "diaspora_handle" => $myaddr,
2875 "public" => $public,
2876 "created_at" => $created,
2877 "provider_display_name" => $item["app"]);
2879 if (count($location) == 0)
2880 unset($message["location"]);
2882 $type = "status_message";
2884 return array("type" => $type, "message" => $message);
2888 * @brief Sends a post
2890 * @param array $item The item that will be exported
2891 * @param array $owner the array of the item owner
2892 * @param array $contact Target of the communication
2893 * @param bool $public_batch Is it a public post?
2895 * @return int The result of the transmission
2897 public static function send_status($item, $owner, $contact, $public_batch = false) {
2899 $status = diaspora::build_status($item, $owner);
2901 return self::build_and_transmit($owner, $contact, $status["type"], $status["message"], $public_batch, $item["guid"]);
2905 * @brief Creates a "like" object
2907 * @param array $item The item that will be exported
2908 * @param array $owner the array of the item owner
2910 * @return array The data for a "like"
2912 private function construct_like($item, $owner) {
2914 $p = q("SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
2915 dbesc($item["thr-parent"]));
2921 $target_type = ($parent["uri"] === $parent["parent-uri"] ? "Post" : "Comment");
2924 return(array("positive" => $positive,
2925 "guid" => $item["guid"],
2926 "target_type" => $target_type,
2927 "parent_guid" => $parent["guid"],
2928 "author_signature" => "",
2929 "diaspora_handle" => self::my_handle($owner)));
2933 * @brief Creates the object for a comment
2935 * @param array $item The item that will be exported
2936 * @param array $owner the array of the item owner
2938 * @return array The data for a comment
2940 private function construct_comment($item, $owner) {
2942 $p = q("SELECT `guid` FROM `item` WHERE `parent` = %d AND `id` = %d LIMIT 1",
2943 intval($item["parent"]),
2944 intval($item["parent"])
2952 $text = html_entity_decode(bb2diaspora($item["body"]));
2954 return(array("guid" => $item["guid"],
2955 "parent_guid" => $parent["guid"],
2956 "author_signature" => "",
2958 "diaspora_handle" => self::my_handle($owner)));
2962 * @brief Send a like or a comment
2964 * @param array $item The item that will be exported
2965 * @param array $owner the array of the item owner
2966 * @param array $contact Target of the communication
2967 * @param bool $public_batch Is it a public post?
2969 * @return int The result of the transmission
2971 public static function send_followup($item,$owner,$contact,$public_batch = false) {
2973 if($item['verb'] === ACTIVITY_LIKE) {
2974 $message = self::construct_like($item, $owner);
2977 $message = self::construct_comment($item, $owner);
2984 $message["author_signature"] = self::signature($owner, $message);
2986 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
2990 * @brief Creates a message from a signature record entry
2992 * @param array $item The item that will be exported
2993 * @param array $signature The entry of the "sign" record
2995 * @return string The message
2997 private function message_from_signature($item, $signature) {
2999 // Split the signed text
3000 $signed_parts = explode(";", $signature['signed_text']);
3002 if ($item["deleted"])
3003 $message = array("parent_author_signature" => "",
3004 "target_guid" => $signed_parts[0],
3005 "target_type" => $signed_parts[1],
3006 "sender_handle" => $signature['signer'],
3007 "target_author_signature" => $signature['signature']);
3008 elseif ($item['verb'] === ACTIVITY_LIKE)
3009 $message = array("positive" => $signed_parts[0],
3010 "guid" => $signed_parts[1],
3011 "target_type" => $signed_parts[2],
3012 "parent_guid" => $signed_parts[3],
3013 "parent_author_signature" => "",
3014 "author_signature" => $signature['signature'],
3015 "diaspora_handle" => $signed_parts[4]);
3017 // Remove the comment guid
3018 $guid = array_shift($signed_parts);
3020 // Remove the parent guid
3021 $parent_guid = array_shift($signed_parts);
3023 // Remove the handle
3024 $handle = array_pop($signed_parts);
3026 // Glue the parts together
3027 $text = implode(";", $signed_parts);
3029 $message = array("guid" => $guid,
3030 "parent_guid" => $parent_guid,
3031 "parent_author_signature" => "",
3032 "author_signature" => $signature['signature'],
3033 "text" => implode(";", $signed_parts),
3034 "diaspora_handle" => $handle);
3040 * @brief Relays messages (like, comment, retraction) to other servers if we are the thread owner
3042 * @param array $item The item that will be exported
3043 * @param array $owner the array of the item owner
3044 * @param array $contact Target of the communication
3045 * @param bool $public_batch Is it a public post?
3047 * @return int The result of the transmission
3049 public static function send_relay($item, $owner, $contact, $public_batch = false) {
3051 if ($item["deleted"])
3052 return self::send_retraction($item, $owner, $contact, $public_batch, true);
3053 elseif ($item['verb'] === ACTIVITY_LIKE)
3058 logger("Got relayable data ".$type." for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
3060 // fetch the original signature
3062 $r = q("SELECT `signed_text`, `signature`, `signer` FROM `sign` WHERE `iid` = %d LIMIT 1",
3063 intval($item["id"]));
3066 logger("Couldn't fetch signatur for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
3072 // Old way - is used by the internal Friendica functions
3073 /// @todo Change all signatur storing functions to the new format
3074 if ($signature['signed_text'] AND $signature['signature'] AND $signature['signer'])
3075 $message = self::message_from_signature($item, $signature);
3077 $msg = json_decode($signature['signed_text'], true);
3080 if (is_array($msg)) {
3081 foreach ($msg AS $field => $data) {
3082 if (!$item["deleted"]) {
3083 if ($field == "author")
3084 $field = "diaspora_handle";
3085 if ($field == "parent_type")
3086 $field = "target_type";
3089 $message[$field] = $data;
3092 logger("Signature text for item ".$item["guid"]." (".$item["id"].") couldn't be extracted: ".$signature['signed_text'], LOGGER_DEBUG);
3095 $message["parent_author_signature"] = self::signature($owner, $message);
3097 logger("Relayed data ".print_r($message, true), LOGGER_DEBUG);
3099 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
3103 * @brief Sends a retraction (deletion) of a message, like or comment
3105 * @param array $item The item that will be exported
3106 * @param array $owner the array of the item owner
3107 * @param array $contact Target of the communication
3108 * @param bool $public_batch Is it a public post?
3109 * @param bool $relay Is the retraction transmitted from a relay?
3111 * @return int The result of the transmission
3113 public static function send_retraction($item, $owner, $contact, $public_batch = false, $relay = false) {
3115 $itemaddr = self::handle_from_contact($item["contact-id"], $item["gcontact-id"]);
3117 // Check whether the retraction is for a top-level post or whether it's a relayable
3118 if ($item["uri"] !== $item["parent-uri"]) {
3119 $msg_type = "relayable_retraction";
3120 $target_type = (($item["verb"] === ACTIVITY_LIKE) ? "Like" : "Comment");
3122 $msg_type = "signed_retraction";
3123 $target_type = "StatusMessage";
3126 if ($relay AND ($item["uri"] !== $item["parent-uri"]))
3127 $signature = "parent_author_signature";
3129 $signature = "target_author_signature";
3131 $signed_text = $item["guid"].";".$target_type;
3133 $message = array("target_guid" => $item['guid'],
3134 "target_type" => $target_type,
3135 "sender_handle" => $itemaddr,
3136 $signature => base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256')));
3138 logger("Got message ".print_r($message, true), LOGGER_DEBUG);
3140 return self::build_and_transmit($owner, $contact, $msg_type, $message, $public_batch, $item["guid"]);
3144 * @brief Sends a mail
3146 * @param array $item The item that will be exported
3147 * @param array $owner The owner
3148 * @param array $contact Target of the communication
3150 * @return int The result of the transmission
3152 public static function send_mail($item, $owner, $contact) {
3154 $myaddr = self::my_handle($owner);
3156 $r = q("SELECT * FROM `conv` WHERE `id` = %d AND `uid` = %d LIMIT 1",
3157 intval($item["convid"]),
3158 intval($item["uid"])
3162 logger("conversation not found.");
3168 "guid" => $cnv["guid"],
3169 "subject" => $cnv["subject"],
3170 "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d H:i:s \U\T\C'),
3171 "diaspora_handle" => $cnv["creator"],
3172 "participant_handles" => $cnv["recips"]
3175 $body = bb2diaspora($item["body"]);
3176 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d H:i:s \U\T\C');
3178 $signed_text = $item["guid"].";".$cnv["guid"].";".$body.";".$created.";".$myaddr.";".$cnv['guid'];
3179 $sig = base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
3182 "guid" => $item["guid"],
3183 "parent_guid" => $cnv["guid"],
3184 "parent_author_signature" => $sig,
3185 "author_signature" => $sig,
3187 "created_at" => $created,
3188 "diaspora_handle" => $myaddr,
3189 "conversation_guid" => $cnv["guid"]
3192 if ($item["reply"]) {
3196 $message = array("guid" => $cnv["guid"],
3197 "subject" => $cnv["subject"],
3198 "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d H:i:s \U\T\C'),
3200 "diaspora_handle" => $cnv["creator"],
3201 "participant_handles" => $cnv["recips"]);
3203 $type = "conversation";
3206 return self::build_and_transmit($owner, $contact, $type, $message, false, $item["guid"]);
3210 * @brief Sends profile data
3212 * @param int $uid The user id
3214 public static function send_profile($uid, $recips = false) {
3220 $recips = q("SELECT `id`,`name`,`network`,`pubkey`,`notify` FROM `contact` WHERE `network` = '%s'
3221 AND `uid` = %d AND `rel` != %d",
3222 dbesc(NETWORK_DIASPORA),
3224 intval(CONTACT_IS_SHARING)
3229 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.*, `user`.`prvkey` AS `uprvkey`, `contact`.`addr`
3231 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
3232 INNER JOIN `contact` ON `profile`.`uid` = `contact`.`uid`
3233 WHERE `user`.`uid` = %d AND `profile`.`is-default` AND `contact`.`self` LIMIT 1",
3242 $handle = $profile["addr"];
3243 $first = ((strpos($profile['name'],' ')
3244 ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']));
3245 $last = (($first === $profile['name']) ? '' : trim(substr($profile['name'], strlen($first))));
3246 $large = App::get_baseurl().'/photo/custom/300/'.$profile['uid'].'.jpg';
3247 $medium = App::get_baseurl().'/photo/custom/100/'.$profile['uid'].'.jpg';
3248 $small = App::get_baseurl().'/photo/custom/50/' .$profile['uid'].'.jpg';
3249 $searchable = (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false');
3251 if ($searchable === 'true') {
3252 $dob = '1000-00-00';
3254 if (($profile['dob']) && ($profile['dob'] != '0000-00-00'))
3255 $dob = ((intval($profile['dob'])) ? intval($profile['dob']) : '1000') .'-'. datetime_convert('UTC','UTC',$profile['dob'],'m-d');
3257 $about = $profile['about'];
3258 $about = strip_tags(bbcode($about));
3260 $location = formatted_location($profile);
3262 if ($profile['pub_keywords']) {
3263 $kw = str_replace(',',' ',$profile['pub_keywords']);
3264 $kw = str_replace(' ',' ',$kw);
3265 $arr = explode(' ',$profile['pub_keywords']);
3267 for($x = 0; $x < 5; $x ++) {
3269 $tags .= '#'. trim($arr[$x]) .' ';
3273 $tags = trim($tags);
3276 $message = array("diaspora_handle" => $handle,
3277 "first_name" => $first,
3278 "last_name" => $last,
3279 "image_url" => $large,
3280 "image_url_medium" => $medium,
3281 "image_url_small" => $small,
3283 "gender" => $profile['gender'],
3285 "location" => $location,
3286 "searchable" => $searchable,
3287 "tag_string" => $tags);
3289 foreach($recips as $recip) {
3290 logger("Send updated profile data for user ".$uid." to contact ".$recip["id"], LOGGER_DEBUG);
3291 self::build_and_transmit($profile, $recip, "profile", $message, false, "", true);
3296 * @brief Stores the signature for likes that are created on our system
3298 * @param array $contact The contact array of the "like"
3299 * @param int $post_id The post id of the "like"
3301 * @return bool Success
3303 public static function store_like_signature($contact, $post_id) {
3305 // Is the contact the owner? Then fetch the private key
3306 if (!$contact['self'] OR ($contact['uid'] == 0)) {
3307 logger("No owner post, so not storing signature", LOGGER_DEBUG);
3311 $r = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($contact['uid']));
3315 $contact["uprvkey"] = $r[0]['prvkey'];
3317 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", intval($post_id));
3321 if (!in_array($r[0]["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE)))
3324 $message = self::construct_like($r[0], $contact);
3325 $message["author_signature"] = self::signature($contact, $message);
3327 // In the future we will store the signature more flexible to support new fields.
3328 // Right now we cannot change this since old Friendica versions (prior to 3.5) can only handle this format.
3329 // (We are transmitting this data here via DFRN)
3331 $signed_text = $message["positive"].";".$message["guid"].";".$message["target_type"].";".
3332 $message["parent_guid"].";".$message["diaspora_handle"];
3334 q("INSERT INTO `sign` (`iid`,`signed_text`,`signature`,`signer`) VALUES (%d,'%s','%s','%s')",
3336 dbesc($signed_text),
3337 dbesc($message["author_signature"]),
3338 dbesc($message["diaspora_handle"])
3341 // This here will replace the lines above, once Diaspora changed its protocol
3342 //q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
3343 // intval($message_id),
3344 // dbesc(json_encode($message))
3347 logger('Stored diaspora like signature');
3352 * @brief Stores the signature for comments that are created on our system
3354 * @param array $item The item array of the comment
3355 * @param array $contact The contact array of the item owner
3356 * @param string $uprvkey The private key of the sender
3357 * @param int $message_id The message id of the comment
3359 * @return bool Success
3361 public static function store_comment_signature($item, $contact, $uprvkey, $message_id) {
3363 if ($uprvkey == "") {
3364 logger('No private key, so not storing comment signature', LOGGER_DEBUG);
3368 $contact["uprvkey"] = $uprvkey;
3370 $message = self::construct_comment($item, $contact);
3371 $message["author_signature"] = self::signature($contact, $message);
3373 // In the future we will store the signature more flexible to support new fields.
3374 // Right now we cannot change this since old Friendica versions (prior to 3.5) can only handle this format.
3375 // (We are transmitting this data here via DFRN)
3376 $signed_text = $message["guid"].";".$message["parent_guid"].";".
3377 $message["text"].";".$message["diaspora_handle"];
3379 q("INSERT INTO `sign` (`iid`,`signed_text`,`signature`,`signer`) VALUES (%d,'%s','%s','%s')",
3380 intval($message_id),
3381 dbesc($signed_text),
3382 dbesc($message["author_signature"]),
3383 dbesc($message["diaspora_handle"])
3386 // This here will replace the lines above, once Diaspora changed its protocol
3387 //q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
3388 // intval($message_id),
3389 // dbesc(json_encode($message))
3392 logger('Stored diaspora comment signature');