3 * @file src/Protocol/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 * This implementation here interprets the old and the new protocol and sends the new one.
8 * In the future we will remove most stuff from "validPosting" and interpret only the new protocol.
11 namespace Friendica\Protocol;
13 use Friendica\Content\Text\BBCode;
14 use Friendica\Content\Text\Markdown;
15 use Friendica\Core\Cache;
16 use Friendica\Core\Config;
17 use Friendica\Core\L10n;
18 use Friendica\Core\PConfig;
19 use Friendica\Core\System;
20 use Friendica\Core\Worker;
21 use Friendica\Database\DBM;
22 use Friendica\Model\Contact;
23 use Friendica\Model\GContact;
24 use Friendica\Model\Group;
25 use Friendica\Model\Item;
26 use Friendica\Model\Profile;
27 use Friendica\Model\Queue;
28 use Friendica\Model\User;
29 use Friendica\Network\Probe;
30 use Friendica\Util\Crypto;
31 use Friendica\Util\DateTimeFormat;
32 use Friendica\Util\Network;
33 use Friendica\Util\XML;
34 use Friendica\Util\Map;
38 require_once 'include/dba.php';
39 require_once 'include/items.php';
42 * @brief This class contain functions to create and send Diaspora XML files
48 * @brief Return a list of relay servers
50 * The list contains not only the official relays but also servers that we serve directly
52 * @param integer $item_id The id of the item that is sent
53 * @param array $contacts The previously fetched contacts
55 * @return array of relay servers
57 public static function relayList($item_id, $contacts = [])
61 // Fetching relay servers
62 $serverdata = Config::get("system", "relay_server");
63 if ($serverdata != "") {
64 $servers = explode(",", $serverdata);
65 foreach ($servers as $server) {
66 $serverlist[$server] = trim($server);
70 if (Config::get("system", "relay_directly", false)) {
71 // We distribute our stuff based on the parent to ensure that the thread will be complete
72 $parent = dba::selectFirst('item', ['parent'], ['id' => $item_id]);
73 if (!DBM::is_result($parent)) {
77 // Servers that want to get all content
78 $servers = dba::select('gserver', ['url'], ['relay-subscribe' => true, 'relay-scope' => 'all']);
79 while ($server = dba::fetch($servers)) {
80 $serverlist[$server['url']] = $server['url'];
83 // All tags of the current post
84 $condition = ['otype' => TERM_OBJ_POST, 'type' => TERM_HASHTAG, 'oid' => $parent['parent']];
85 $tags = dba::select('term', ['term'], $condition);
87 while ($tag = dba::fetch($tags)) {
88 $taglist[] = $tag['term'];
91 // All servers who wants content with this tag
93 if (!empty($taglist)) {
94 $tagserver = dba::select('gserver-tag', ['gserver-id'], ['tag' => $taglist]);
95 while ($server = dba::fetch($tagserver)) {
96 $tagserverlist[] = $server['gserver-id'];
100 // All adresses with the given id
101 if (!empty($tagserverlist)) {
102 $servers = dba::select('gserver', ['url'], ['relay-subscribe' => true, 'relay-scope' => 'tags', 'id' => $tagserverlist]);
103 while ($server = dba::fetch($servers)) {
104 $serverlist[$server['url']] = $server['url'];
109 // Now we are collecting all relay contacts
110 foreach ($serverlist as $server_url) {
111 // We don't send messages to ourselves
112 if (link_compare($server_url, System::baseUrl())) {
115 $contact = self::getRelayContact($server_url);
116 if (is_bool($contact)) {
121 foreach ($contacts as $entry) {
122 if ($entry['batch'] == $contact['batch']) {
128 $contacts[] = $contact;
136 * @brief Return a contact for a given server address or creates a dummy entry
138 * @param string $server_url The url of the server
139 * @return array with the contact
141 private static function getRelayContact($server_url)
143 $fields = ['batch', 'id', 'name', 'network', 'archive', 'blocked'];
145 // Fetch the relay contact
146 $condition = ['uid' => 0, 'nurl' => normalise_link($server_url),
147 'contact-type' => ACCOUNT_TYPE_RELAY];
148 $contact = dba::selectFirst('contact', $fields, $condition);
150 if (DBM::is_result($contact)) {
151 if ($contact['archive'] || $contact['blocked']) {
156 self::setRelayContact($server_url);
158 $contact = dba::selectFirst('contact', $fields, $condition);
159 if (DBM::is_result($contact)) {
164 // It should never happen that we arrive here
169 * @brief Update or insert a relay contact
171 * @param string $server_url The url of the server
172 * @param array $network_fields Optional network specific fields
174 public static function setRelayContact($server_url, $network_fields = [])
176 $fields = ['created' => DateTimeFormat::utcNow(),
177 'name' => 'relay', 'nick' => 'relay',
178 'url' => $server_url, 'network' => NETWORK_DIASPORA,
179 'batch' => $server_url . '/receive/public',
180 'rel' => CONTACT_IS_FOLLOWER, 'blocked' => false,
181 'pending' => false, 'writable' => true];
183 $fields = array_merge($fields, $network_fields);
185 $condition = ['uid' => 0, 'nurl' => normalise_link($server_url),
186 'contact-type' => ACCOUNT_TYPE_RELAY];
188 if (dba::exists('contact', $condition)) {
189 unset($fields['created']);
192 dba::update('contact', $fields, $condition, true);
196 * @brief Return a list of participating contacts for a thread
198 * This is used for the participation feature.
199 * One of the parameters is a contact array.
200 * This is done to avoid duplicates.
202 * @param integer $thread The id of the thread
203 * @param array $contacts The previously fetched contacts
205 * @return array of relay servers
207 public static function participantsForThread($thread, $contacts)
209 $r = dba::p("SELECT `contact`.`batch`, `contact`.`id`, `contact`.`name`, `contact`.`network`,
210 `fcontact`.`batch` AS `fbatch`, `fcontact`.`network` AS `fnetwork` FROM `participation`
211 INNER JOIN `contact` ON `contact`.`id` = `participation`.`cid`
212 INNER JOIN `fcontact` ON `fcontact`.`id` = `participation`.`fid`
213 WHERE `participation`.`iid` = ?", $thread);
215 while ($contact = dba::fetch($r)) {
216 if (!empty($contact['fnetwork'])) {
217 $contact['network'] = $contact['fnetwork'];
219 unset($contact['fnetwork']);
221 if (empty($contact['batch']) && !empty($contact['fbatch'])) {
222 $contact['batch'] = $contact['fbatch'];
224 unset($contact['fbatch']);
227 foreach ($contacts as $entry) {
228 if ($entry['batch'] == $contact['batch']) {
234 $contacts[] = $contact;
243 * @brief repairs a signature that was double encoded
245 * The function is unused at the moment. It was copied from the old implementation.
247 * @param string $signature The signature
248 * @param string $handle The handle of the signature owner
249 * @param integer $level This value is only set inside this function to avoid endless loops
251 * @return string the repaired signature
253 private static function repairSignature($signature, $handle = "", $level = 1)
255 if ($signature == "") {
259 if (base64_encode(base64_decode(base64_decode($signature))) == base64_decode($signature)) {
260 $signature = base64_decode($signature);
261 logger("Repaired double encoded signature from Diaspora/Hubzilla handle ".$handle." - level ".$level, LOGGER_DEBUG);
263 // Do a recursive call to be able to fix even multiple levels
265 $signature = self::repairSignature($signature, $handle, ++$level);
273 * @brief verify the envelope and return the verified data
275 * @param string $envelope The magic envelope
277 * @return string verified data
279 private static function verifyMagicEnvelope($envelope)
281 $basedom = XML::parseString($envelope);
283 if (!is_object($basedom)) {
284 logger("Envelope is no XML file");
288 $children = $basedom->children('http://salmon-protocol.org/ns/magic-env');
290 if (sizeof($children) == 0) {
291 logger("XML has no children");
297 $data = base64url_decode($children->data);
298 $type = $children->data->attributes()->type[0];
300 $encoding = $children->encoding;
302 $alg = $children->alg;
304 $sig = base64url_decode($children->sig);
305 $key_id = $children->sig->attributes()->key_id[0];
307 $handle = base64url_decode($key_id);
310 $b64url_data = base64url_encode($data);
311 $msg = str_replace(["\n", "\r", " ", "\t"], ["", "", "", ""], $b64url_data);
313 $signable_data = $msg.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
316 logger('No author could be decoded. Discarding. Message: ' . $envelope);
320 $key = self::key($handle);
322 logger("Couldn't get a key for handle " . $handle . ". Discarding.");
326 $verify = Crypto::rsaVerify($signable_data, $sig, $key);
328 logger('Message from ' . $handle . ' did not verify. Discarding.');
336 * @brief encrypts data via AES
338 * @param string $key The AES key
339 * @param string $iv The IV (is used for CBC encoding)
340 * @param string $data The data that is to be encrypted
342 * @return string encrypted data
344 private static function aesEncrypt($key, $iv, $data)
346 return openssl_encrypt($data, 'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0"));
350 * @brief decrypts data via AES
352 * @param string $key The AES key
353 * @param string $iv The IV (is used for CBC encoding)
354 * @param string $encrypted The encrypted data
356 * @return string decrypted data
358 private static function aesDecrypt($key, $iv, $encrypted)
360 return openssl_decrypt($encrypted, 'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0"));
364 * @brief: Decodes incoming Diaspora message in the new format
366 * @param array $importer Array of the importer user
367 * @param string $raw raw post message
370 * 'message' -> decoded Diaspora XML message
371 * 'author' -> author diaspora handle
372 * 'key' -> author public key (converted to pkcs#8)
374 public static function decodeRaw($importer, $raw)
376 $data = json_decode($raw);
378 // Is it a private post? Then decrypt the outer Salmon
379 if (is_object($data)) {
380 $encrypted_aes_key_bundle = base64_decode($data->aes_key);
381 $ciphertext = base64_decode($data->encrypted_magic_envelope);
383 $outer_key_bundle = '';
384 @openssl_private_decrypt($encrypted_aes_key_bundle, $outer_key_bundle, $importer['prvkey']);
385 $j_outer_key_bundle = json_decode($outer_key_bundle);
387 if (!is_object($j_outer_key_bundle)) {
388 logger('Outer Salmon did not verify. Discarding.');
389 System::httpExit(400);
392 $outer_iv = base64_decode($j_outer_key_bundle->iv);
393 $outer_key = base64_decode($j_outer_key_bundle->key);
395 $xml = self::aesDecrypt($outer_key, $outer_iv, $ciphertext);
400 $basedom = XML::parseString($xml);
402 if (!is_object($basedom)) {
403 logger('Received data does not seem to be an XML. Discarding. '.$xml);
404 System::httpExit(400);
407 $base = $basedom->children(NAMESPACE_SALMON_ME);
409 // Not sure if this cleaning is needed
410 $data = str_replace([" ", "\t", "\r", "\n"], ["", "", "", ""], $base->data);
412 // Build the signed data
413 $type = $base->data[0]->attributes()->type[0];
414 $encoding = $base->encoding;
416 $signed_data = $data.'.'.base64url_encode($type).'.'.base64url_encode($encoding).'.'.base64url_encode($alg);
418 // This is the signature
419 $signature = base64url_decode($base->sig);
421 // Get the senders' public key
422 $key_id = $base->sig[0]->attributes()->key_id[0];
423 $author_addr = base64_decode($key_id);
424 if ($author_addr == '') {
425 logger('No author could be decoded. Discarding. Message: ' . $xml);
426 System::httpExit(400);
429 $key = self::key($author_addr);
431 logger("Couldn't get a key for handle " . $author_addr . ". Discarding.");
432 System::httpExit(400);
435 $verify = Crypto::rsaVerify($signed_data, $signature, $key);
437 logger('Message did not verify. Discarding.');
438 System::httpExit(400);
441 return ['message' => (string)base64url_decode($base->data),
442 'author' => unxmlify($author_addr),
443 'key' => (string)$key];
447 * @brief: Decodes incoming Diaspora message in the deprecated format
449 * @param array $importer Array of the importer user
450 * @param string $xml urldecoded Diaspora salmon
453 * 'message' -> decoded Diaspora XML message
454 * 'author' -> author diaspora handle
455 * 'key' -> author public key (converted to pkcs#8)
457 public static function decode($importer, $xml)
460 $basedom = XML::parseString($xml);
462 if (!is_object($basedom)) {
463 logger("XML is not parseable.");
466 $children = $basedom->children('https://joindiaspora.com/protocol');
468 $inner_aes_key = null;
471 if ($children->header) {
473 $author_link = str_replace('acct:', '', $children->header->author_id);
475 // This happens with posts from a relais
477 logger("This is no private post in the old format", LOGGER_DEBUG);
481 $encrypted_header = json_decode(base64_decode($children->encrypted_header));
483 $encrypted_aes_key_bundle = base64_decode($encrypted_header->aes_key);
484 $ciphertext = base64_decode($encrypted_header->ciphertext);
486 $outer_key_bundle = '';
487 openssl_private_decrypt($encrypted_aes_key_bundle, $outer_key_bundle, $importer['prvkey']);
489 $j_outer_key_bundle = json_decode($outer_key_bundle);
491 $outer_iv = base64_decode($j_outer_key_bundle->iv);
492 $outer_key = base64_decode($j_outer_key_bundle->key);
494 $decrypted = self::aesDecrypt($outer_key, $outer_iv, $ciphertext);
496 logger('decrypted: '.$decrypted, LOGGER_DEBUG);
497 $idom = XML::parseString($decrypted);
499 $inner_iv = base64_decode($idom->iv);
500 $inner_aes_key = base64_decode($idom->aes_key);
502 $author_link = str_replace('acct:', '', $idom->author_id);
505 $dom = $basedom->children(NAMESPACE_SALMON_ME);
507 // figure out where in the DOM tree our data is hiding
510 if ($dom->provenance->data) {
511 $base = $dom->provenance;
512 } elseif ($dom->env->data) {
514 } elseif ($dom->data) {
519 logger('unable to locate salmon data in xml');
520 System::httpExit(400);
524 // Stash the signature away for now. We have to find their key or it won't be good for anything.
525 $signature = base64url_decode($base->sig);
529 // strip whitespace so our data element will return to one big base64 blob
530 $data = str_replace([" ", "\t", "\r", "\n"], ["", "", "", ""], $base->data);
533 // stash away some other stuff for later
535 $type = $base->data[0]->attributes()->type[0];
536 $keyhash = $base->sig[0]->attributes()->keyhash[0];
537 $encoding = $base->encoding;
541 $signed_data = $data.'.'.base64url_encode($type).'.'.base64url_encode($encoding).'.'.base64url_encode($alg);
545 $data = base64url_decode($data);
549 $inner_decrypted = $data;
551 // Decode the encrypted blob
552 $inner_encrypted = base64_decode($data);
553 $inner_decrypted = self::aesDecrypt($inner_aes_key, $inner_iv, $inner_encrypted);
557 logger('Could not retrieve author URI.');
558 System::httpExit(400);
560 // Once we have the author URI, go to the web and try to find their public key
561 // (first this will look it up locally if it is in the fcontact cache)
562 // This will also convert diaspora public key from pkcs#1 to pkcs#8
564 logger('Fetching key for '.$author_link);
565 $key = self::key($author_link);
568 logger('Could not retrieve author key.');
569 System::httpExit(400);
572 $verify = Crypto::rsaVerify($signed_data, $signature, $key);
575 logger('Message did not verify. Discarding.');
576 System::httpExit(400);
579 logger('Message verified.');
581 return ['message' => (string)$inner_decrypted,
582 'author' => unxmlify($author_link),
583 'key' => (string)$key];
588 * @brief Dispatches public messages and find the fitting receivers
590 * @param array $msg The post that will be dispatched
592 * @return int The message id of the generated message, "true" or "false" if there was an error
594 public static function dispatchPublic($msg)
596 $enabled = intval(Config::get("system", "diaspora_enabled"));
598 logger("diaspora is disabled");
602 if (!($fields = self::validPosting($msg))) {
603 logger("Invalid posting");
607 $importer = ["uid" => 0, "page-flags" => PAGE_FREELOVE];
608 $success = self::dispatch($importer, $msg, $fields);
614 * @brief Dispatches the different message types to the different functions
616 * @param array $importer Array of the importer user
617 * @param array $msg The post that will be dispatched
618 * @param object $fields SimpleXML object that contains the message
620 * @return int The message id of the generated message, "true" or "false" if there was an error
622 public static function dispatch($importer, $msg, $fields = null)
624 // The sender is the handle of the contact that sent the message.
625 // This will often be different with relayed messages (for example "like" and "comment")
626 $sender = $msg["author"];
628 // This is only needed for private postings since this is already done for public ones before
629 if (is_null($fields)) {
631 if (!($fields = self::validPosting($msg))) {
632 logger("Invalid posting");
639 $type = $fields->getName();
641 logger("Received message type ".$type." from ".$sender." for user ".$importer["uid"], LOGGER_DEBUG);
644 case "account_migration":
646 logger('Message with type ' . $type . ' is not private, quitting.');
649 return self::receiveAccountMigration($importer, $fields);
651 case "account_deletion":
652 return self::receiveAccountDeletion($fields);
655 return self::receiveComment($importer, $sender, $fields, $msg["message"]);
659 logger('Message with type ' . $type . ' is not private, quitting.');
662 return self::receiveContactRequest($importer, $fields);
666 logger('Message with type ' . $type . ' is not private, quitting.');
669 return self::receiveConversation($importer, $msg, $fields);
672 return self::receiveLike($importer, $sender, $fields);
676 logger('Message with type ' . $type . ' is not private, quitting.');
679 return self::receiveMessage($importer, $fields);
681 case "participation":
683 logger('Message with type ' . $type . ' is not private, quitting.');
686 return self::receiveParticipation($importer, $fields);
688 case "photo": // Not implemented
689 return self::receivePhoto($importer, $fields);
691 case "poll_participation": // Not implemented
692 return self::receivePollParticipation($importer, $fields);
696 logger('Message with type ' . $type . ' is not private, quitting.');
699 return self::receiveProfile($importer, $fields);
702 return self::receiveReshare($importer, $fields, $msg["message"]);
705 return self::receiveRetraction($importer, $sender, $fields);
707 case "status_message":
708 return self::receiveStatusMessage($importer, $fields, $msg["message"]);
711 logger("Unknown message type ".$type);
719 * @brief Checks if a posting is valid and fetches the data fields.
721 * This function does not only check the signature.
722 * It also does the conversion between the old and the new diaspora format.
724 * @param array $msg Array with the XML, the sender handle and the sender signature
726 * @return bool|array If the posting is valid then an array with an SimpleXML object is returned
728 private static function validPosting($msg)
730 $data = XML::parseString($msg["message"]);
732 if (!is_object($data)) {
733 logger("No valid XML ".$msg["message"], LOGGER_DEBUG);
737 // Is this the new or the old version?
738 if ($data->getName() == "XML") {
740 foreach ($data->post->children() as $child) {
748 $type = $element->getName();
751 logger("Got message type ".$type.": ".$msg["message"], LOGGER_DATA);
753 // All retractions are handled identically from now on.
754 // In the new version there will only be "retraction".
755 if (in_array($type, ["signed_retraction", "relayable_retraction"]))
756 $type = "retraction";
758 if ($type == "request") {
762 $fields = new SimpleXMLElement("<".$type."/>");
765 $author_signature = null;
766 $parent_author_signature = null;
768 foreach ($element->children() as $fieldname => $entry) {
770 // Translation for the old XML structure
771 if ($fieldname == "diaspora_handle") {
772 $fieldname = "author";
774 if ($fieldname == "participant_handles") {
775 $fieldname = "participants";
777 if (in_array($type, ["like", "participation"])) {
778 if ($fieldname == "target_type") {
779 $fieldname = "parent_type";
782 if ($fieldname == "sender_handle") {
783 $fieldname = "author";
785 if ($fieldname == "recipient_handle") {
786 $fieldname = "recipient";
788 if ($fieldname == "root_diaspora_id") {
789 $fieldname = "root_author";
791 if ($type == "status_message") {
792 if ($fieldname == "raw_message") {
796 if ($type == "retraction") {
797 if ($fieldname == "post_guid") {
798 $fieldname = "target_guid";
800 if ($fieldname == "type") {
801 $fieldname = "target_type";
806 if (($fieldname == "author_signature") && ($entry != "")) {
807 $author_signature = base64_decode($entry);
808 } elseif (($fieldname == "parent_author_signature") && ($entry != "")) {
809 $parent_author_signature = base64_decode($entry);
810 } elseif (!in_array($fieldname, ["author_signature", "parent_author_signature", "target_author_signature"])) {
811 if ($signed_data != "") {
815 $signed_data .= $entry;
817 if (!in_array($fieldname, ["parent_author_signature", "target_author_signature"])
818 || ($orig_type == "relayable_retraction")
820 XML::copy($entry, $fields, $fieldname);
824 // This is something that shouldn't happen at all.
825 if (in_array($type, ["status_message", "reshare", "profile"])) {
826 if ($msg["author"] != $fields->author) {
827 logger("Message handle is not the same as envelope sender. Quitting this message.");
832 // Only some message types have signatures. So we quit here for the other types.
833 if (!in_array($type, ["comment", "like"])) {
836 // No author_signature? This is a must, so we quit.
837 if (!isset($author_signature)) {
838 logger("No author signature for type ".$type." - Message: ".$msg["message"], LOGGER_DEBUG);
842 if (isset($parent_author_signature)) {
843 $key = self::key($msg["author"]);
845 logger("No key found for parent author ".$msg["author"], LOGGER_DEBUG);
849 if (!Crypto::rsaVerify($signed_data, $parent_author_signature, $key, "sha256")) {
850 logger("No valid parent author signature for parent author ".$msg["author"]. " in type ".$type." - signed data: ".$signed_data." - Message: ".$msg["message"]." - Signature ".$parent_author_signature, LOGGER_DEBUG);
855 $key = self::key($fields->author);
857 logger("No key found for author ".$fields->author, LOGGER_DEBUG);
861 if (!Crypto::rsaVerify($signed_data, $author_signature, $key, "sha256")) {
862 logger("No valid author signature for author ".$fields->author. " in type ".$type." - signed data: ".$signed_data." - Message: ".$msg["message"]." - Signature ".$author_signature, LOGGER_DEBUG);
870 * @brief Fetches the public key for a given handle
872 * @param string $handle The handle
874 * @return string The public key
876 private static function key($handle)
878 $handle = strval($handle);
880 logger("Fetching diaspora key for: ".$handle);
882 $r = self::personByHandle($handle);
891 * @brief Fetches data for a given handle
893 * @param string $handle The handle
895 * @return array the queried data
897 public static function personByHandle($handle)
901 $person = dba::selectFirst('fcontact', [], ['network' => NETWORK_DIASPORA, 'addr' => $handle]);
902 if (DBM::is_result($person)) {
903 logger("In cache " . print_r($person, true), LOGGER_DEBUG);
905 // update record occasionally so it doesn't get stale
906 $d = strtotime($person["updated"]." +00:00");
907 if ($d < strtotime("now - 14 days")) {
911 if ($person["guid"] == "") {
916 if (!DBM::is_result($person) || $update) {
917 logger("create or refresh", LOGGER_DEBUG);
918 $r = Probe::uri($handle, NETWORK_DIASPORA);
920 // Note that Friendica contacts will return a "Diaspora person"
921 // if Diaspora connectivity is enabled on their server
922 if ($r && ($r["network"] === NETWORK_DIASPORA)) {
923 self::addFContact($r, $update);
925 // Fetch the updated or added contact
926 $person = dba::selectFirst('fcontact', [], ['network' => NETWORK_DIASPORA, 'addr' => $handle]);
927 if (!DBM::is_result($person)) {
937 * @brief Updates the fcontact table
939 * @param array $arr The fcontact data
940 * @param bool $update Update or insert?
942 * @return string The id of the fcontact entry
944 private static function addFContact($arr, $update = false)
948 "UPDATE `fcontact` SET
962 WHERE `url` = '%s' AND `network` = '%s'",
964 dbesc($arr["photo"]),
965 dbesc($arr["request"]),
967 dbesc(strtolower($arr["addr"])),
969 dbesc($arr["batch"]),
970 dbesc($arr["notify"]),
972 dbesc($arr["confirm"]),
973 dbesc($arr["alias"]),
974 dbesc($arr["pubkey"]),
975 dbesc(DateTimeFormat::utcNow()),
977 dbesc($arr["network"])
981 "INSERT INTO `fcontact` (`url`,`name`,`photo`,`request`,`nick`,`addr`, `guid`,
982 `batch`, `notify`,`poll`,`confirm`,`network`,`alias`,`pubkey`,`updated`)
983 VALUES ('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
986 dbesc($arr["photo"]),
987 dbesc($arr["request"]),
991 dbesc($arr["batch"]),
992 dbesc($arr["notify"]),
994 dbesc($arr["confirm"]),
995 dbesc($arr["network"]),
996 dbesc($arr["alias"]),
997 dbesc($arr["pubkey"]),
998 dbesc(DateTimeFormat::utcNow())
1006 * @brief get a handle (user@domain.tld) from a given contact id
1008 * @param int $contact_id The id in the contact table
1009 * @param int $pcontact_id The id in the contact table (Used for the public contact)
1011 * @return string the handle
1013 private static function handleFromContact($contact_id, $pcontact_id = 0)
1017 logger("contact id is ".$contact_id." - pcontact id is ".$pcontact_id, LOGGER_DEBUG);
1019 if ($pcontact_id != 0) {
1021 "SELECT `addr` FROM `contact` WHERE `id` = %d AND `addr` != ''",
1022 intval($pcontact_id)
1025 if (DBM::is_result($r)) {
1026 return strtolower($r[0]["addr"]);
1031 "SELECT `network`, `addr`, `self`, `url`, `nick` FROM `contact` WHERE `id` = %d",
1035 if (DBM::is_result($r)) {
1038 logger("contact 'self' = ".$contact['self']." 'url' = ".$contact['url'], LOGGER_DEBUG);
1040 if ($contact['addr'] != "") {
1041 $handle = $contact['addr'];
1043 $baseurl_start = strpos($contact['url'], '://') + 3;
1044 // allows installations in a subdirectory--not sure how Diaspora will handle
1045 $baseurl_length = strpos($contact['url'], '/profile') - $baseurl_start;
1046 $baseurl = substr($contact['url'], $baseurl_start, $baseurl_length);
1047 $handle = $contact['nick'].'@'.$baseurl;
1051 return strtolower($handle);
1055 * @brief get a url (scheme://domain.tld/u/user) from a given Diaspora*
1058 * @param mixed $fcontact_guid Hexadecimal string guid
1060 * @return string the contact url or null
1062 public static function urlFromContactGuid($fcontact_guid)
1064 logger("fcontact guid is ".$fcontact_guid, LOGGER_DEBUG);
1067 "SELECT `url` FROM `fcontact` WHERE `url` != '' AND `network` = '%s' AND `guid` = '%s'",
1068 dbesc(NETWORK_DIASPORA),
1069 dbesc($fcontact_guid)
1072 if (DBM::is_result($r)) {
1073 return $r[0]['url'];
1080 * @brief Get a contact id for a given handle
1082 * @todo Move to Friendica\Model\Contact
1084 * @param int $uid The user id
1085 * @param string $handle The handle in the format user@domain.tld
1087 * @return int Contact id
1089 private static function contactByHandle($uid, $handle)
1091 // First do a direct search on the contact table
1093 "SELECT * FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
1098 if (DBM::is_result($r)) {
1102 * We haven't found it?
1103 * We use another function for it that will possibly create a contact entry.
1105 $cid = Contact::getIdForURL($handle, $uid);
1108 /// @TODO Contact retrieval should be encapsulated into an "entity" class like `Contact`
1109 $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1", intval($cid));
1111 if (DBM::is_result($r)) {
1117 $handle_parts = explode("@", $handle);
1118 $nurl_sql = "%%://".$handle_parts[1]."%%/profile/".$handle_parts[0];
1120 "SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` LIKE '%s' LIMIT 1",
1121 dbesc(NETWORK_DFRN),
1125 if (DBM::is_result($r)) {
1129 logger("Haven't found contact for user ".$uid." and handle ".$handle, LOGGER_DEBUG);
1134 * @brief Check if posting is allowed for this contact
1136 * @param array $importer Array of the importer user
1137 * @param array $contact The contact that is checked
1138 * @param bool $is_comment Is the check for a comment?
1140 * @return bool is the contact allowed to post?
1142 private static function postAllow($importer, $contact, $is_comment = false)
1145 * Perhaps we were already sharing with this person. Now they're sharing with us.
1146 * That makes us friends.
1147 * Normally this should have handled by getting a request - but this could get lost
1149 // It is deactivated by now, due to side effects. See issue https://github.com/friendica/friendica/pull/4033
1150 // It is not removed by now. Possibly the code is needed?
1151 //if (!$is_comment && $contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
1154 // array('rel' => CONTACT_IS_FRIEND, 'writable' => true),
1155 // array('id' => $contact["id"], 'uid' => $contact["uid"])
1158 // $contact["rel"] = CONTACT_IS_FRIEND;
1159 // logger("defining user ".$contact["nick"]." as friend");
1162 // We don't seem to like that person
1163 if ($contact["blocked"]) {
1164 // Maybe blocked, don't accept.
1166 // We are following this person?
1167 } elseif (($contact["rel"] == CONTACT_IS_SHARING) || ($contact["rel"] == CONTACT_IS_FRIEND)) {
1168 // Yes, then it is fine.
1170 // Is it a post to a community?
1171 } elseif (($contact["rel"] == CONTACT_IS_FOLLOWER) && in_array($importer["page-flags"], [PAGE_COMMUNITY, PAGE_PRVGROUP])) {
1174 // Is the message a global user or a comment?
1175 } elseif (($importer["uid"] == 0) || $is_comment) {
1176 // Messages for the global users and comments are always accepted
1184 * @brief Fetches the contact id for a handle and checks if posting is allowed
1186 * @param array $importer Array of the importer user
1187 * @param string $handle The checked handle in the format user@domain.tld
1188 * @param bool $is_comment Is the check for a comment?
1190 * @return array The contact data
1192 private static function allowedContactByHandle($importer, $handle, $is_comment = false)
1194 $contact = self::contactByHandle($importer["uid"], $handle);
1196 logger("A Contact for handle ".$handle." and user ".$importer["uid"]." was not found");
1197 // If a contact isn't found, we accept it anyway if it is a comment
1205 if (!self::postAllow($importer, $contact, $is_comment)) {
1206 logger("The handle: ".$handle." is not allowed to post to user ".$importer["uid"]);
1213 * @brief Does the message already exists on the system?
1215 * @param int $uid The user id
1216 * @param string $guid The guid of the message
1218 * @return int|bool message id if the message already was stored into the system - or false.
1220 private static function messageExists($uid, $guid)
1223 "SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1228 if (DBM::is_result($r)) {
1229 logger("message ".$guid." already exists for user ".$uid);
1237 * @brief Checks for links to posts in a message
1239 * @param array $item The item array
1242 private static function fetchGuid($item)
1244 $expression = "=diaspora://.*?/post/([0-9A-Za-z\-_@.:]{15,254}[0-9A-Za-z])=ism";
1245 preg_replace_callback(
1247 function ($match) use ($item) {
1248 self::fetchGuidSub($match, $item);
1253 preg_replace_callback(
1254 "&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
1255 function ($match) use ($item) {
1256 self::fetchGuidSub($match, $item);
1263 * @brief Checks for relative /people/* links in an item body to match local
1264 * contacts or prepends the remote host taken from the author link.
1266 * @param string $body The item body to replace links from
1267 * @param string $author_link The author link for missing local contact fallback
1269 * @return string the replaced string
1271 public static function replacePeopleGuid($body, $author_link)
1273 $return = preg_replace_callback(
1274 "&\[url=/people/([^\[\]]*)\](.*)\[\/url\]&Usi",
1275 function ($match) use ($author_link) {
1277 // 0 => '[url=/people/0123456789abcdef]Foo Bar[/url]'
1278 // 1 => '0123456789abcdef'
1280 $handle = self::urlFromContactGuid($match[1]);
1283 $return = '@[url='.$handle.']'.$match[2].'[/url]';
1285 // No local match, restoring absolute remote URL from author scheme and host
1286 $author_url = parse_url($author_link);
1287 $return = '[url='.$author_url['scheme'].'://'.$author_url['host'].'/people/'.$match[1].']'.$match[2].'[/url]';
1299 * @brief sub function of "fetchGuid" which checks for links in messages
1301 * @param array $match array containing a link that has to be checked for a message link
1302 * @param array $item The item array
1305 private static function fetchGuidSub($match, $item)
1307 if (!self::storeByGuid($match[1], $item["author-link"])) {
1308 self::storeByGuid($match[1], $item["owner-link"]);
1313 * @brief Fetches an item with a given guid from a given server
1315 * @param string $guid the message guid
1316 * @param string $server The server address
1317 * @param int $uid The user id of the user
1319 * @return int the message id of the stored message or false
1321 private static function storeByGuid($guid, $server, $uid = 0)
1323 $serverparts = parse_url($server);
1324 $server = $serverparts["scheme"]."://".$serverparts["host"];
1326 logger("Trying to fetch item ".$guid." from ".$server, LOGGER_DEBUG);
1328 $msg = self::message($guid, $server);
1334 logger("Successfully fetched item ".$guid." from ".$server, LOGGER_DEBUG);
1336 // Now call the dispatcher
1337 return self::dispatchPublic($msg);
1341 * @brief Fetches a message from a server
1343 * @param string $guid message guid
1344 * @param string $server The url of the server
1345 * @param int $level Endless loop prevention
1348 * 'message' => The message XML
1349 * 'author' => The author handle
1350 * 'key' => The public key of the author
1352 private static function message($guid, $server, $level = 0)
1358 // This will work for new Diaspora servers and Friendica servers from 3.5
1359 $source_url = $server."/fetch/post/".urlencode($guid);
1361 logger("Fetch post from ".$source_url, LOGGER_DEBUG);
1363 $envelope = Network::fetchUrl($source_url);
1365 logger("Envelope was fetched.", LOGGER_DEBUG);
1366 $x = self::verifyMagicEnvelope($envelope);
1368 logger("Envelope could not be verified.", LOGGER_DEBUG);
1370 logger("Envelope was verified.", LOGGER_DEBUG);
1376 // This will work for older Diaspora and Friendica servers
1378 $source_url = $server."/p/".urlencode($guid).".xml";
1379 logger("Fetch post from ".$source_url, LOGGER_DEBUG);
1381 $x = Network::fetchUrl($source_url);
1387 $source_xml = XML::parseString($x);
1389 if (!is_object($source_xml)) {
1393 if ($source_xml->post->reshare) {
1394 // Reshare of a reshare - old Diaspora version
1395 logger("Message is a reshare", LOGGER_DEBUG);
1396 return self::message($source_xml->post->reshare->root_guid, $server, ++$level);
1397 } elseif ($source_xml->getName() == "reshare") {
1398 // Reshare of a reshare - new Diaspora version
1399 logger("Message is a new reshare", LOGGER_DEBUG);
1400 return self::message($source_xml->root_guid, $server, ++$level);
1405 // Fetch the author - for the old and the new Diaspora version
1406 if ($source_xml->post->status_message->diaspora_handle) {
1407 $author = (string)$source_xml->post->status_message->diaspora_handle;
1408 } elseif ($source_xml->author && ($source_xml->getName() == "status_message")) {
1409 $author = (string)$source_xml->author;
1412 // If this isn't a "status_message" then quit
1414 logger("Message doesn't seem to be a status message", LOGGER_DEBUG);
1418 $msg = ["message" => $x, "author" => $author];
1420 $msg["key"] = self::key($msg["author"]);
1426 * @brief Fetches the item record of a given guid
1428 * @param int $uid The user id
1429 * @param string $guid message guid
1430 * @param string $author The handle of the item
1431 * @param array $contact The contact of the item owner
1433 * @return array the item record
1435 private static function parentItem($uid, $guid, $author, $contact)
1438 "SELECT `id`, `parent`, `body`, `wall`, `uri`, `guid`, `private`, `origin`,
1439 `author-name`, `author-link`, `author-avatar`,
1440 `owner-name`, `owner-link`, `owner-avatar`
1441 FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1447 $result = self::storeByGuid($guid, $contact["url"], $uid);
1450 $person = self::personByHandle($author);
1451 $result = self::storeByGuid($guid, $person["url"], $uid);
1455 logger("Fetched missing item ".$guid." - result: ".$result, LOGGER_DEBUG);
1458 "SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
1459 `author-name`, `author-link`, `author-avatar`,
1460 `owner-name`, `owner-link`, `owner-avatar`
1461 FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1469 logger("parent item not found: parent: ".$guid." - user: ".$uid);
1472 logger("parent item found: parent: ".$guid." - user: ".$uid);
1478 * @brief returns contact details
1480 * @param array $def_contact The default contact if the person isn't found
1481 * @param array $person The record of the person
1482 * @param int $uid The user id
1485 * 'cid' => contact id
1486 * 'network' => network type
1488 private static function authorContactByUrl($def_contact, $person, $uid)
1490 $condition = ['nurl' => normalise_link($person["url"]), 'uid' => $uid];
1491 $contact = dba::selectFirst('contact', ['id', 'network'], $condition);
1492 if (DBM::is_result($contact)) {
1493 $cid = $contact["id"];
1494 $network = $contact["network"];
1496 $cid = $def_contact["id"];
1497 $network = NETWORK_DIASPORA;
1500 return ["cid" => $cid, "network" => $network];
1504 * @brief Is the profile a hubzilla profile?
1506 * @param string $url The profile link
1508 * @return bool is it a hubzilla server?
1510 public static function isRedmatrix($url)
1512 return(strstr($url, "/channel/"));
1516 * @brief Generate a post link with a given handle and message guid
1518 * @param string $addr The user handle
1519 * @param string $guid message guid
1520 * @param string $parent_guid optional parent guid
1522 * @return string the post link
1524 private static function plink($addr, $guid, $parent_guid = '')
1526 $contact = Contact::getDetailsByAddr($addr);
1530 if ($parent_guid != '') {
1531 return "https://" . substr($addr, strpos($addr, "@") + 1) . "/posts/" . $parent_guid . "#" . $guid;
1533 return "https://" . substr($addr, strpos($addr, "@") + 1) . "/posts/" . $guid;
1537 if ($contact["network"] == NETWORK_DFRN) {
1538 return str_replace("/profile/" . $contact["nick"] . "/", "/display/" . $guid, $contact["url"] . "/");
1541 if (self::isRedmatrix($contact["url"])) {
1542 return $contact["url"] . "/?f=&mid=" . $guid;
1545 if ($parent_guid != '') {
1546 return "https://" . substr($addr, strpos($addr, "@") + 1) . "/posts/" . $parent_guid . "#" . $guid;
1548 return "https://" . substr($addr, strpos($addr, "@") + 1) . "/posts/" . $guid;
1553 * @brief Receives account migration
1555 * @param array $importer Array of the importer user
1556 * @param object $data The message object
1558 * @return bool Success
1560 private static function receiveAccountMigration($importer, $data)
1562 $old_handle = notags(unxmlify($data->author));
1563 $new_handle = notags(unxmlify($data->profile->author));
1564 $signature = notags(unxmlify($data->signature));
1566 $contact = self::contactByHandle($importer["uid"], $old_handle);
1568 logger("cannot find contact for sender: ".$old_handle." and user ".$importer["uid"]);
1572 logger("Got migration for ".$old_handle.", to ".$new_handle." with user ".$importer["uid"]);
1575 $signed_text = 'AccountMigration:'.$old_handle.':'.$new_handle;
1576 $key = self::key($old_handle);
1577 if (!Crypto::rsaVerify($signed_text, $signature, $key, "sha256")) {
1578 logger('No valid signature for migration.');
1582 // Update the profile
1583 self::receiveProfile($importer, $data->profile);
1585 // change the technical stuff in contact and gcontact
1586 $data = Probe::uri($new_handle);
1587 if ($data['network'] == NETWORK_PHANTOM) {
1588 logger('Account for '.$new_handle." couldn't be probed.");
1592 $fields = ['url' => $data['url'], 'nurl' => normalise_link($data['url']),
1593 'name' => $data['name'], 'nick' => $data['nick'],
1594 'addr' => $data['addr'], 'batch' => $data['batch'],
1595 'notify' => $data['notify'], 'poll' => $data['poll'],
1596 'network' => $data['network']];
1598 dba::update('contact', $fields, ['addr' => $old_handle]);
1600 $fields = ['url' => $data['url'], 'nurl' => normalise_link($data['url']),
1601 'name' => $data['name'], 'nick' => $data['nick'],
1602 'addr' => $data['addr'], 'connect' => $data['addr'],
1603 'notify' => $data['notify'], 'photo' => $data['photo'],
1604 'server_url' => $data['baseurl'], 'network' => $data['network']];
1606 dba::update('gcontact', $fields, ['addr' => $old_handle]);
1608 logger('Contacts are updated.');
1611 // This is an extreme performance killer
1612 Item::update(['owner-link' => $data["url"]], ['owner-link' => $contact["url"], 'uid' => $importer["uid"]]);
1613 Item::update(['author-link' => $data["url"]], ['author-link' => $contact["url"], 'uid' => $importer["uid"]]);
1615 logger('Items are updated.');
1621 * @brief Processes an account deletion
1623 * @param object $data The message object
1625 * @return bool Success
1627 private static function receiveAccountDeletion($data)
1629 $author = notags(unxmlify($data->author));
1631 $contacts = dba::select('contact', ['id'], ['addr' => $author]);
1632 while ($contact = dba::fetch($contacts)) {
1633 Contact::remove($contact["id"]);
1636 dba::delete('gcontact', ['addr' => $author]);
1638 logger('Removed contacts for ' . $author);
1644 * @brief Fetch the uri from our database if we already have this item (maybe from ourselves)
1646 * @param string $author Author handle
1647 * @param string $guid Message guid
1648 * @param boolean $onlyfound Only return uri when found in the database
1650 * @return string The constructed uri or the one from our database
1652 private static function getUriFromGuid($author, $guid, $onlyfound = false)
1654 $r = q("SELECT `uri` FROM `item` WHERE `guid` = '%s' LIMIT 1", dbesc($guid));
1655 if (DBM::is_result($r)) {
1656 return $r[0]["uri"];
1657 } elseif (!$onlyfound) {
1658 return $author.":".$guid;
1665 * @brief Fetch the guid from our database with a given uri
1667 * @param string $uri Message uri
1668 * @param string $uid Author handle
1670 * @return string The post guid
1672 private static function getGuidFromUri($uri, $uid)
1674 $r = q("SELECT `guid` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($uri), intval($uid));
1675 if (DBM::is_result($r)) {
1676 return $r[0]["guid"];
1683 * @brief Find the best importer for a comment, like, ...
1685 * @param string $guid The guid of the item
1687 * @return array|boolean the origin owner of that post - or false
1689 private static function importerForGuid($guid)
1691 $item = dba::fetch_first("SELECT `uid` FROM `item` WHERE `origin` AND `guid` = ? LIMIT 1", $guid);
1693 if (DBM::is_result($item)) {
1694 logger("Found user ".$item['uid']." as owner of item ".$guid, LOGGER_DEBUG);
1695 $contact = dba::fetch_first("SELECT * FROM `contact` WHERE `self` AND `uid` = ?", $item['uid']);
1696 if (DBM::is_result($contact)) {
1704 * @brief Processes an incoming comment
1706 * @param array $importer Array of the importer user
1707 * @param string $sender The sender of the message
1708 * @param object $data The message object
1709 * @param string $xml The original XML of the message
1711 * @return int The message id of the generated comment or "false" if there was an error
1713 private static function receiveComment($importer, $sender, $data, $xml)
1715 $author = notags(unxmlify($data->author));
1716 $guid = notags(unxmlify($data->guid));
1717 $parent_guid = notags(unxmlify($data->parent_guid));
1718 $text = unxmlify($data->text);
1720 if (isset($data->created_at)) {
1721 $created_at = DateTimeFormat::utc(notags(unxmlify($data->created_at)));
1723 $created_at = DateTimeFormat::utcNow();
1726 if (isset($data->thread_parent_guid)) {
1727 $thread_parent_guid = notags(unxmlify($data->thread_parent_guid));
1728 $thr_uri = self::getUriFromGuid("", $thread_parent_guid, true);
1733 $contact = self::allowedContactByHandle($importer, $sender, true);
1738 $message_id = self::messageExists($importer["uid"], $guid);
1743 $parent_item = self::parentItem($importer["uid"], $parent_guid, $author, $contact);
1744 if (!$parent_item) {
1748 $person = self::personByHandle($author);
1749 if (!is_array($person)) {
1750 logger("unable to find author details");
1754 // Fetch the contact id - if we know this contact
1755 $author_contact = self::authorContactByUrl($contact, $person, $importer["uid"]);
1759 $datarray["uid"] = $importer["uid"];
1760 $datarray["contact-id"] = $author_contact["cid"];
1761 $datarray["network"] = $author_contact["network"];
1763 $datarray["author-name"] = $person["name"];
1764 $datarray["author-link"] = $person["url"];
1765 $datarray["author-avatar"] = ((x($person, "thumb")) ? $person["thumb"] : $person["photo"]);
1767 $datarray["owner-name"] = $contact["name"];
1768 $datarray["owner-link"] = $contact["url"];
1769 $datarray["owner-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]);
1771 $datarray["guid"] = $guid;
1772 $datarray["uri"] = self::getUriFromGuid($author, $guid);
1774 $datarray["type"] = "remote-comment";
1775 $datarray["verb"] = ACTIVITY_POST;
1776 $datarray["gravity"] = GRAVITY_COMMENT;
1778 if ($thr_uri != "") {
1779 $datarray["parent-uri"] = $thr_uri;
1781 $datarray["parent-uri"] = $parent_item["uri"];
1784 $datarray["object-type"] = ACTIVITY_OBJ_COMMENT;
1786 $datarray["protocol"] = PROTOCOL_DIASPORA;
1787 $datarray["source"] = $xml;
1789 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
1791 $datarray["plink"] = self::plink($author, $guid, $parent_item['guid']);
1793 $body = Markdown::toBBCode($text);
1795 $datarray["body"] = self::replacePeopleGuid($body, $person["url"]);
1797 self::fetchGuid($datarray);
1799 $message_id = Item::insert($datarray);
1801 if ($message_id <= 0) {
1806 logger("Stored comment ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
1807 if ($datarray['uid'] == 0) {
1808 Item::distribute($message_id);
1812 // If we are the origin of the parent we store the original data and notify our followers
1813 if ($message_id && $parent_item["origin"]) {
1814 // Formerly we stored the signed text, the signature and the author in different fields.
1815 // We now store the raw data so that we are more flexible.
1816 dba::insert('sign', ['iid' => $message_id, 'signed_text' => json_encode($data)]);
1819 Worker::add(PRIORITY_HIGH, "Notifier", "comment-import", $message_id);
1826 * @brief processes and stores private messages
1828 * @param array $importer Array of the importer user
1829 * @param array $contact The contact of the message
1830 * @param object $data The message object
1831 * @param array $msg Array of the processed message, author handle and key
1832 * @param object $mesg The private message
1833 * @param array $conversation The conversation record to which this message belongs
1835 * @return bool "true" if it was successful
1837 private static function receiveConversationMessage($importer, $contact, $data, $msg, $mesg, $conversation)
1839 $author = notags(unxmlify($data->author));
1840 $guid = notags(unxmlify($data->guid));
1841 $subject = notags(unxmlify($data->subject));
1843 // "diaspora_handle" is the element name from the old version
1844 // "author" is the element name from the new version
1845 if ($mesg->author) {
1846 $msg_author = notags(unxmlify($mesg->author));
1847 } elseif ($mesg->diaspora_handle) {
1848 $msg_author = notags(unxmlify($mesg->diaspora_handle));
1853 $msg_guid = notags(unxmlify($mesg->guid));
1854 $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
1855 $msg_text = unxmlify($mesg->text);
1856 $msg_created_at = DateTimeFormat::utc(notags(unxmlify($mesg->created_at)));
1858 if ($msg_conversation_guid != $guid) {
1859 logger("message conversation guid does not belong to the current conversation.");
1863 $body = Markdown::toBBCode($msg_text);
1864 $message_uri = $msg_author.":".$msg_guid;
1866 $person = self::personByHandle($msg_author);
1871 "SELECT `id` FROM `mail` WHERE `guid` = '%s' AND `uid` = %d LIMIT 1",
1873 intval($importer["uid"])
1875 if (DBM::is_result($r)) {
1876 logger("duplicate message already delivered.", LOGGER_DEBUG);
1881 "INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1882 VALUES (%d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1883 intval($importer["uid"]),
1885 intval($conversation["id"]),
1886 dbesc($person["name"]),
1887 dbesc($person["photo"]),
1888 dbesc($person["url"]),
1889 intval($contact["id"]),
1894 dbesc($message_uri),
1895 dbesc($author.":".$guid),
1896 dbesc($msg_created_at)
1901 dba::update('conv', ['updated' => DateTimeFormat::utcNow()], ['id' => $conversation["id"]]);
1905 "type" => NOTIFY_MAIL,
1906 "notify_flags" => $importer["notify-flags"],
1907 "language" => $importer["language"],
1908 "to_name" => $importer["username"],
1909 "to_email" => $importer["email"],
1910 "uid" =>$importer["uid"],
1911 "item" => ["subject" => $subject, "body" => $body],
1912 "source_name" => $person["name"],
1913 "source_link" => $person["url"],
1914 "source_photo" => $person["thumb"],
1915 "verb" => ACTIVITY_POST,
1922 * @brief Processes new private messages (answers to private messages are processed elsewhere)
1924 * @param array $importer Array of the importer user
1925 * @param array $msg Array of the processed message, author handle and key
1926 * @param object $data The message object
1928 * @return bool Success
1930 private static function receiveConversation($importer, $msg, $data)
1932 $author = notags(unxmlify($data->author));
1933 $guid = notags(unxmlify($data->guid));
1934 $subject = notags(unxmlify($data->subject));
1935 $created_at = DateTimeFormat::utc(notags(unxmlify($data->created_at)));
1936 $participants = notags(unxmlify($data->participants));
1938 $messages = $data->message;
1940 if (!count($messages)) {
1941 logger("empty conversation");
1945 $contact = self::allowedContactByHandle($importer, $msg["author"], true);
1950 $conversation = null;
1953 "SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1954 intval($importer["uid"]),
1958 $conversation = $c[0];
1961 "INSERT INTO `conv` (`uid`, `guid`, `creator`, `created`, `updated`, `subject`, `recips`)
1962 VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s')",
1963 intval($importer["uid"]),
1967 dbesc(DateTimeFormat::utcNow()),
1969 dbesc($participants)
1973 "SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1974 intval($importer["uid"]),
1980 $conversation = $c[0];
1983 if (!$conversation) {
1984 logger("unable to create conversation.");
1988 foreach ($messages as $mesg) {
1989 self::receiveConversationMessage($importer, $contact, $data, $msg, $mesg, $conversation);
1996 * @brief Creates the body for a "like" message
1998 * @param array $contact The contact that send us the "like"
1999 * @param array $parent_item The item array of the parent item
2000 * @param string $guid message guid
2002 * @return string the body
2004 private static function constructLikeBody($contact, $parent_item, $guid)
2006 $bodyverb = L10n::t('%1$s likes %2$s\'s %3$s');
2008 $ulink = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
2009 $alink = "[url=".$parent_item["author-link"]."]".$parent_item["author-name"]."[/url]";
2010 $plink = "[url=".System::baseUrl()."/display/".urlencode($guid)."]".L10n::t("status")."[/url]";
2012 return sprintf($bodyverb, $ulink, $alink, $plink);
2016 * @brief Creates a XML object for a "like"
2018 * @param array $importer Array of the importer user
2019 * @param array $parent_item The item array of the parent item
2021 * @return string The XML
2023 private static function constructLikeObject($importer, $parent_item)
2025 $objtype = ACTIVITY_OBJ_NOTE;
2026 $link = '<link rel="alternate" type="text/html" href="'.System::baseUrl()."/display/".$importer["nickname"]."/".$parent_item["id"].'" />';
2027 $parent_body = $parent_item["body"];
2029 $xmldata = ["object" => ["type" => $objtype,
2031 "id" => $parent_item["uri"],
2034 "content" => $parent_body]];
2036 return XML::fromArray($xmldata, $xml, true);
2040 * @brief Processes "like" messages
2042 * @param array $importer Array of the importer user
2043 * @param string $sender The sender of the message
2044 * @param object $data The message object
2046 * @return int The message id of the generated like or "false" if there was an error
2048 private static function receiveLike($importer, $sender, $data)
2050 $author = notags(unxmlify($data->author));
2051 $guid = notags(unxmlify($data->guid));
2052 $parent_guid = notags(unxmlify($data->parent_guid));
2053 $parent_type = notags(unxmlify($data->parent_type));
2054 $positive = notags(unxmlify($data->positive));
2056 // likes on comments aren't supported by Diaspora - only on posts
2057 // But maybe this will be supported in the future, so we will accept it.
2058 if (!in_array($parent_type, ["Post", "Comment"])) {
2062 $contact = self::allowedContactByHandle($importer, $sender, true);
2067 $message_id = self::messageExists($importer["uid"], $guid);
2072 $parent_item = self::parentItem($importer["uid"], $parent_guid, $author, $contact);
2073 if (!$parent_item) {
2077 $person = self::personByHandle($author);
2078 if (!is_array($person)) {
2079 logger("unable to find author details");
2083 // Fetch the contact id - if we know this contact
2084 $author_contact = self::authorContactByUrl($contact, $person, $importer["uid"]);
2086 // "positive" = "false" would be a Dislike - wich isn't currently supported by Diaspora
2087 // We would accept this anyhow.
2088 if ($positive == "true") {
2089 $verb = ACTIVITY_LIKE;
2091 $verb = ACTIVITY_DISLIKE;
2096 $datarray["protocol"] = PROTOCOL_DIASPORA;
2098 $datarray["uid"] = $importer["uid"];
2099 $datarray["contact-id"] = $author_contact["cid"];
2100 $datarray["network"] = $author_contact["network"];
2102 $datarray["author-name"] = $person["name"];
2103 $datarray["author-link"] = $person["url"];
2104 $datarray["author-avatar"] = ((x($person, "thumb")) ? $person["thumb"] : $person["photo"]);
2106 $datarray["owner-name"] = $contact["name"];
2107 $datarray["owner-link"] = $contact["url"];
2108 $datarray["owner-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]);
2110 $datarray["guid"] = $guid;
2111 $datarray["uri"] = self::getUriFromGuid($author, $guid);
2113 $datarray["type"] = "activity";
2114 $datarray["verb"] = $verb;
2115 $datarray["gravity"] = GRAVITY_LIKE;
2116 $datarray["parent-uri"] = $parent_item["uri"];
2118 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
2119 $datarray["object"] = self::constructLikeObject($importer, $parent_item);
2121 $datarray["body"] = self::constructLikeBody($contact, $parent_item, $guid);
2123 $message_id = Item::insert($datarray);
2125 if ($message_id <= 0) {
2130 logger("Stored like ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2131 if ($datarray['uid'] == 0) {
2132 Item::distribute($message_id);
2136 // like on comments have the comment as parent. So we need to fetch the toplevel parent
2137 if ($parent_item["id"] != $parent_item["parent"]) {
2138 $toplevel = dba::selectFirst('item', ['origin'], ['id' => $parent_item["parent"]]);
2139 $origin = $toplevel["origin"];
2141 $origin = $parent_item["origin"];
2144 // If we are the origin of the parent we store the original data and notify our followers
2145 if ($message_id && $origin) {
2146 // Formerly we stored the signed text, the signature and the author in different fields.
2147 // We now store the raw data so that we are more flexible.
2148 dba::insert('sign', ['iid' => $message_id, 'signed_text' => json_encode($data)]);
2151 Worker::add(PRIORITY_HIGH, "Notifier", "comment-import", $message_id);
2158 * @brief Processes private messages
2160 * @param array $importer Array of the importer user
2161 * @param object $data The message object
2163 * @return bool Success?
2165 private static function receiveMessage($importer, $data)
2167 $author = notags(unxmlify($data->author));
2168 $guid = notags(unxmlify($data->guid));
2169 $conversation_guid = notags(unxmlify($data->conversation_guid));
2170 $text = unxmlify($data->text);
2171 $created_at = DateTimeFormat::utc(notags(unxmlify($data->created_at)));
2173 $contact = self::allowedContactByHandle($importer, $author, true);
2178 $conversation = null;
2181 "SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
2182 intval($importer["uid"]),
2183 dbesc($conversation_guid)
2186 $conversation = $c[0];
2188 logger("conversation not available.");
2192 $message_uri = $author.":".$guid;
2194 $person = self::personByHandle($author);
2196 logger("unable to find author details");
2200 $body = Markdown::toBBCode($text);
2202 $body = self::replacePeopleGuid($body, $person["url"]);
2207 "SELECT `id` FROM `mail` WHERE `guid` = '%s' AND `uid` = %d LIMIT 1",
2209 intval($importer["uid"])
2211 if (DBM::is_result($r)) {
2212 logger("duplicate message already delivered.", LOGGER_DEBUG);
2217 "INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
2218 VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
2219 intval($importer["uid"]),
2221 intval($conversation["id"]),
2222 dbesc($person["name"]),
2223 dbesc($person["photo"]),
2224 dbesc($person["url"]),
2225 intval($contact["id"]),
2226 dbesc($conversation["subject"]),
2230 dbesc($message_uri),
2231 dbesc($author.":".$conversation["guid"]),
2237 dba::update('conv', ['updated' => DateTimeFormat::utcNow()], ['id' => $conversation["id"]]);
2242 * @brief Processes participations - unsupported by now
2244 * @param array $importer Array of the importer user
2245 * @param object $data The message object
2247 * @return bool always true
2249 private static function receiveParticipation($importer, $data)
2251 $author = strtolower(notags(unxmlify($data->author)));
2252 $parent_guid = notags(unxmlify($data->parent_guid));
2254 $contact_id = Contact::getIdForURL($author);
2256 logger('Contact not found: '.$author);
2260 $person = self::personByHandle($author);
2261 if (!is_array($person)) {
2262 logger("Person not found: ".$author);
2266 $item = dba::selectFirst('item', ['id'], ['guid' => $parent_guid, 'origin' => true, 'private' => false]);
2267 if (!DBM::is_result($item)) {
2268 logger('Item not found, no origin or private: '.$parent_guid);
2272 $author_parts = explode('@', $author);
2273 if (isset($author_parts[1])) {
2274 $server = $author_parts[1];
2276 // Should never happen
2280 logger('Received participation for ID: '.$item['id'].' - Contact: '.$contact_id.' - Server: '.$server, LOGGER_DEBUG);
2282 if (!dba::exists('participation', ['iid' => $item['id'], 'server' => $server])) {
2283 dba::insert('participation', ['iid' => $item['id'], 'cid' => $contact_id, 'fid' => $person['id'], 'server' => $server]);
2286 // Send all existing comments and likes to the requesting server
2287 $comments = dba::p("SELECT `item`.`id`, `item`.`verb`, `contact`.`self`
2289 INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
2290 WHERE `item`.`parent` = ? AND `item`.`id` != `item`.`parent`", $item['id']);
2291 while ($comment = dba::fetch($comments)) {
2292 if ($comment['verb'] == ACTIVITY_POST) {
2293 $cmd = $comment['self'] ? 'comment-new' : 'comment-import';
2295 $cmd = $comment['self'] ? 'like' : 'comment-import';
2297 logger("Send ".$cmd." for item ".$comment['id']." to contact ".$contact_id, LOGGER_DEBUG);
2298 Worker::add(PRIORITY_HIGH, 'Delivery', $cmd, $comment['id'], $contact_id);
2300 dba::close($comments);
2306 * @brief Processes photos - unneeded
2308 * @param array $importer Array of the importer user
2309 * @param object $data The message object
2311 * @return bool always true
2313 private static function receivePhoto($importer, $data)
2315 // There doesn't seem to be a reason for this function,
2316 // since the photo data is transmitted in the status message as well
2321 * @brief Processes poll participations - unssupported
2323 * @param array $importer Array of the importer user
2324 * @param object $data The message object
2326 * @return bool always true
2328 private static function receivePollParticipation($importer, $data)
2330 // We don't support polls by now
2335 * @brief Processes incoming profile updates
2337 * @param array $importer Array of the importer user
2338 * @param object $data The message object
2340 * @return bool Success
2342 private static function receiveProfile($importer, $data)
2344 $author = strtolower(notags(unxmlify($data->author)));
2346 $contact = self::contactByHandle($importer["uid"], $author);
2351 $name = unxmlify($data->first_name).((strlen($data->last_name)) ? " ".unxmlify($data->last_name) : "");
2352 $image_url = unxmlify($data->image_url);
2353 $birthday = unxmlify($data->birthday);
2354 $gender = unxmlify($data->gender);
2355 $about = Markdown::toBBCode(unxmlify($data->bio));
2356 $location = Markdown::toBBCode(unxmlify($data->location));
2357 $searchable = (unxmlify($data->searchable) == "true");
2358 $nsfw = (unxmlify($data->nsfw) == "true");
2359 $tags = unxmlify($data->tag_string);
2361 $tags = explode("#", $tags);
2364 foreach ($tags as $tag) {
2365 $tag = trim(strtolower($tag));
2371 $keywords = implode(", ", $keywords);
2373 $handle_parts = explode("@", $author);
2374 $nick = $handle_parts[0];
2377 $name = $handle_parts[0];
2380 if (preg_match("|^https?://|", $image_url) === 0) {
2381 $image_url = "http://".$handle_parts[1].$image_url;
2384 Contact::updateAvatar($image_url, $importer["uid"], $contact["id"]);
2386 // Generic birthday. We don't know the timezone. The year is irrelevant.
2388 $birthday = str_replace("1000", "1901", $birthday);
2390 if ($birthday != "") {
2391 $birthday = DateTimeFormat::utc($birthday, "Y-m-d");
2394 // this is to prevent multiple birthday notifications in a single year
2395 // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year
2397 if (substr($birthday, 5) === substr($contact["bd"], 5)) {
2398 $birthday = $contact["bd"];
2402 "UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `name-date` = '%s', `bd` = '%s',
2403 `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d AND `uid` = %d",
2407 dbesc(DateTimeFormat::utcNow()),
2413 intval($contact["id"]),
2414 intval($importer["uid"])
2417 $gcontact = ["url" => $contact["url"], "network" => NETWORK_DIASPORA, "generation" => 2,
2418 "photo" => $image_url, "name" => $name, "location" => $location,
2419 "about" => $about, "birthday" => $birthday, "gender" => $gender,
2420 "addr" => $author, "nick" => $nick, "keywords" => $keywords,
2421 "hide" => !$searchable, "nsfw" => $nsfw];
2423 $gcid = GContact::update($gcontact);
2425 GContact::link($gcid, $importer["uid"], $contact["id"]);
2427 logger("Profile of contact ".$contact["id"]." stored for user ".$importer["uid"], LOGGER_DEBUG);
2433 * @brief Processes incoming friend requests
2435 * @param array $importer Array of the importer user
2436 * @param array $contact The contact that send the request
2439 private static function receiveRequestMakeFriend($importer, $contact)
2443 if ($contact["rel"] == CONTACT_IS_SHARING) {
2446 ['rel' => CONTACT_IS_FRIEND, 'writable' => true],
2447 ['id' => $contact["id"], 'uid' => $importer["uid"]]
2450 // send notification
2453 "SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
2454 intval($importer["uid"])
2457 if ($r && !$r[0]["hide-friends"] && !$contact["hidden"] && intval(PConfig::get($importer["uid"], "system", "post_newfriend"))) {
2459 "SELECT * FROM `contact` WHERE `self` AND `uid` = %d LIMIT 1",
2460 intval($importer["uid"])
2463 // they are not CONTACT_IS_FOLLOWER anymore but that's what we have in the array
2465 if ($self && $contact["rel"] == CONTACT_IS_FOLLOWER) {
2467 $arr["protocol"] = PROTOCOL_DIASPORA;
2468 $arr["uri"] = $arr["parent-uri"] = item_new_uri($a->get_hostname(), $importer["uid"]);
2469 $arr["uid"] = $importer["uid"];
2470 $arr["contact-id"] = $self[0]["id"];
2472 $arr["type"] = 'wall';
2473 $arr["gravity"] = 0;
2475 $arr["author-name"] = $arr["owner-name"] = $self[0]["name"];
2476 $arr["author-link"] = $arr["owner-link"] = $self[0]["url"];
2477 $arr["author-avatar"] = $arr["owner-avatar"] = $self[0]["thumb"];
2478 $arr["verb"] = ACTIVITY_FRIEND;
2479 $arr["object-type"] = ACTIVITY_OBJ_PERSON;
2481 $A = "[url=".$self[0]["url"]."]".$self[0]["name"]."[/url]";
2482 $B = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
2483 $BPhoto = "[url=".$contact["url"]."][img]".$contact["thumb"]."[/img][/url]";
2484 $arr["body"] = L10n::t('%1$s is now friends with %2$s', $A, $B)."\n\n\n".$BPhoto;
2486 $arr["object"] = self::constructNewFriendObject($contact);
2488 $user = dba::selectFirst('user', ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid'], ['uid' => $importer["uid"]]);
2490 $arr["allow_cid"] = $user["allow_cid"];
2491 $arr["allow_gid"] = $user["allow_gid"];
2492 $arr["deny_cid"] = $user["deny_cid"];
2493 $arr["deny_gid"] = $user["deny_gid"];
2495 $i = Item::insert($arr);
2497 Worker::add(PRIORITY_HIGH, "Notifier", "activity", $i);
2504 * @brief Creates a XML object for a "new friend" message
2506 * @param array $contact Array of the contact
2508 * @return string The XML
2510 private static function constructNewFriendObject($contact)
2512 $objtype = ACTIVITY_OBJ_PERSON;
2513 $link = '<link rel="alternate" type="text/html" href="'.$contact["url"].'" />'."\n".
2514 '<link rel="photo" type="image/jpeg" href="'.$contact["thumb"].'" />'."\n";
2516 $xmldata = ["object" => ["type" => $objtype,
2517 "title" => $contact["name"],
2518 "id" => $contact["url"]."/".$contact["name"],
2521 return XML::fromArray($xmldata, $xml, true);
2525 * @brief Processes incoming sharing notification
2527 * @param array $importer Array of the importer user
2528 * @param object $data The message object
2530 * @return bool Success
2532 private static function receiveContactRequest($importer, $data)
2534 $author = unxmlify($data->author);
2535 $recipient = unxmlify($data->recipient);
2537 if (!$author || !$recipient) {
2541 // the current protocol version doesn't know these fields
2542 // That means that we will assume their existance
2543 if (isset($data->following)) {
2544 $following = (unxmlify($data->following) == "true");
2549 if (isset($data->sharing)) {
2550 $sharing = (unxmlify($data->sharing) == "true");
2555 $contact = self::contactByHandle($importer["uid"], $author);
2557 // perhaps we were already sharing with this person. Now they're sharing with us.
2558 // That makes us friends.
2561 logger("Author ".$author." (Contact ".$contact["id"].") wants to follow us.", LOGGER_DEBUG);
2562 self::receiveRequestMakeFriend($importer, $contact);
2564 // refetch the contact array
2565 $contact = self::contactByHandle($importer["uid"], $author);
2567 // If we are now friends, we are sending a share message.
2568 // Normally we needn't to do so, but the first message could have been vanished.
2569 if (in_array($contact["rel"], [CONTACT_IS_FRIEND])) {
2570 $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
2572 logger("Sending share message to author ".$author." - Contact: ".$contact["id"]." - User: ".$importer["uid"], LOGGER_DEBUG);
2573 $ret = self::sendShare($u[0], $contact);
2578 logger("Author ".$author." doesn't want to follow us anymore.", LOGGER_DEBUG);
2579 Contact::removeFollower($importer, $contact);
2584 if (!$following && $sharing && in_array($importer["page-flags"], [PAGE_SOAPBOX, PAGE_NORMAL])) {
2585 logger("Author ".$author." wants to share with us - but doesn't want to listen. Request is ignored.", LOGGER_DEBUG);
2587 } elseif (!$following && !$sharing) {
2588 logger("Author ".$author." doesn't want anything - and we don't know the author. Request is ignored.", LOGGER_DEBUG);
2590 } elseif (!$following && $sharing) {
2591 logger("Author ".$author." wants to share with us.", LOGGER_DEBUG);
2592 } elseif ($following && $sharing) {
2593 logger("Author ".$author." wants to have a bidirectional conection.", LOGGER_DEBUG);
2594 } elseif ($following && !$sharing) {
2595 logger("Author ".$author." wants to listen to us.", LOGGER_DEBUG);
2598 $ret = self::personByHandle($author);
2600 if (!$ret || ($ret["network"] != NETWORK_DIASPORA)) {
2601 logger("Cannot resolve diaspora handle ".$author." for ".$recipient);
2605 $batch = (($ret["batch"]) ? $ret["batch"] : implode("/", array_slice(explode("/", $ret["url"]), 0, 3))."/receive/public");
2608 "INSERT INTO `contact` (`uid`, `network`,`addr`,`created`,`url`,`nurl`,`batch`,`name`,`nick`,`photo`,`pubkey`,`notify`,`poll`,`blocked`,`priority`)
2609 VALUES (%d, '%s', '%s', '%s', '%s','%s','%s','%s','%s','%s','%s','%s','%s',%d,%d)",
2610 intval($importer["uid"]),
2611 dbesc($ret["network"]),
2612 dbesc($ret["addr"]),
2613 DateTimeFormat::utcNow(),
2615 dbesc(normalise_link($ret["url"])),
2617 dbesc($ret["name"]),
2618 dbesc($ret["nick"]),
2619 dbesc($ret["photo"]),
2620 dbesc($ret["pubkey"]),
2621 dbesc($ret["notify"]),
2622 dbesc($ret["poll"]),
2627 // find the contact record we just created
2629 $contact_record = self::contactByHandle($importer["uid"], $author);
2631 if (!$contact_record) {
2632 logger("unable to locate newly created contact record.");
2636 logger("Author ".$author." was added as contact number ".$contact_record["id"].".", LOGGER_DEBUG);
2638 Group::addMember(User::getDefaultGroup($importer['uid'], $ret["network"]), $contact_record['id']);
2640 Contact::updateAvatar($ret["photo"], $importer['uid'], $contact_record["id"], true);
2642 if (in_array($importer["page-flags"], [PAGE_NORMAL, PAGE_PRVGROUP])) {
2643 logger("Sending intra message for author ".$author.".", LOGGER_DEBUG);
2645 $hash = random_string().(string)time(); // Generate a confirm_key
2648 "INSERT INTO `intro` (`uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
2649 VALUES (%d, %d, %d, %d, '%s', '%s', '%s')",
2650 intval($importer["uid"]),
2651 intval($contact_record["id"]),
2654 dbesc(L10n::t("Sharing notification from Diaspora network")),
2656 dbesc(DateTimeFormat::utcNow())
2659 // automatic friend approval
2661 logger("Does an automatic friend approval for author ".$author.".", LOGGER_DEBUG);
2663 Contact::updateAvatar($contact_record["photo"], $importer["uid"], $contact_record["id"]);
2665 // technically they are sharing with us (CONTACT_IS_SHARING),
2666 // but if our page-type is PAGE_COMMUNITY or PAGE_SOAPBOX
2667 // we are going to change the relationship and make them a follower.
2669 if (($importer["page-flags"] == PAGE_FREELOVE) && $sharing && $following) {
2670 $new_relation = CONTACT_IS_FRIEND;
2671 } elseif (($importer["page-flags"] == PAGE_FREELOVE) && $sharing) {
2672 $new_relation = CONTACT_IS_SHARING;
2674 $new_relation = CONTACT_IS_FOLLOWER;
2678 "UPDATE `contact` SET `rel` = %d,
2686 intval($new_relation),
2687 dbesc(DateTimeFormat::utcNow()),
2688 dbesc(DateTimeFormat::utcNow()),
2689 intval($contact_record["id"])
2692 $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
2694 logger("Sending share message (Relation: ".$new_relation.") to author ".$author." - Contact: ".$contact_record["id"]." - User: ".$importer["uid"], LOGGER_DEBUG);
2695 $ret = self::sendShare($u[0], $contact_record);
2697 // Send the profile data, maybe it weren't transmitted before
2698 self::sendProfile($importer["uid"], [$contact_record]);
2706 * @brief Fetches a message with a given guid
2708 * @param string $guid message guid
2709 * @param string $orig_author handle of the original post
2710 * @param string $author handle of the sharer
2712 * @return array The fetched item
2714 public static function originalItem($guid, $orig_author)
2717 logger('Empty guid. Quitting.');
2721 // Do we already have this item?
2722 $fields = ['body', 'tag', 'app', 'created', 'object-type', 'uri', 'guid',
2723 'author-name', 'author-link', 'author-avatar'];
2724 $condition = ['guid' => $guid, 'visible' => true, 'deleted' => false, 'private' => false];
2725 $item = dba::selectfirst('item', $fields, $condition);
2727 if (DBM::is_result($item)) {
2728 logger("reshared message ".$guid." already exists on system.");
2730 // Maybe it is already a reshared item?
2731 // Then refetch the content, if it is a reshare from a reshare.
2732 // If it is a reshared post from another network then reformat to avoid display problems with two share elements
2733 if (self::isReshare($item["body"], true)) {
2735 } elseif (self::isReshare($item["body"], false) || strstr($item["body"], "[share")) {
2736 $item["body"] = Markdown::toBBCode(BBCode::toMarkdown($item["body"]));
2738 $item["body"] = self::replacePeopleGuid($item["body"], $item["author-link"]);
2740 // Add OEmbed and other information to the body
2741 $item["body"] = add_page_info_to_body($item["body"], false, true);
2749 if (!DBM::is_result($item)) {
2750 if (empty($orig_author)) {
2751 logger('Empty author for guid ' . $guid . '. Quitting.');
2755 $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1);
2756 logger("1st try: reshared message ".$guid." will be fetched via SSL from the server ".$server);
2757 $stored = self::storeByGuid($guid, $server);
2760 $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1);
2761 logger("2nd try: reshared message ".$guid." will be fetched without SSL from the server ".$server);
2762 $stored = self::storeByGuid($guid, $server);
2766 $fields = ['body', 'tag', 'app', 'created', 'object-type', 'uri', 'guid',
2767 'author-name', 'author-link', 'author-avatar'];
2768 $condition = ['guid' => $guid, 'visible' => true, 'deleted' => false, 'private' => false];
2769 $item = dba::selectfirst('item', $fields, $condition);
2771 if (DBM::is_result($item)) {
2772 // If it is a reshared post from another network then reformat to avoid display problems with two share elements
2773 if (self::isReshare($item["body"], false)) {
2774 $item["body"] = Markdown::toBBCode(BBCode::toMarkdown($item["body"]));
2775 $item["body"] = self::replacePeopleGuid($item["body"], $item["author-link"]);
2786 * @brief Processes a reshare message
2788 * @param array $importer Array of the importer user
2789 * @param object $data The message object
2790 * @param string $xml The original XML of the message
2792 * @return int the message id
2794 private static function receiveReshare($importer, $data, $xml)
2796 $author = notags(unxmlify($data->author));
2797 $guid = notags(unxmlify($data->guid));
2798 $created_at = DateTimeFormat::utc(notags(unxmlify($data->created_at)));
2799 $root_author = notags(unxmlify($data->root_author));
2800 $root_guid = notags(unxmlify($data->root_guid));
2801 /// @todo handle unprocessed property "provider_display_name"
2802 $public = notags(unxmlify($data->public));
2804 $contact = self::allowedContactByHandle($importer, $author, false);
2809 $message_id = self::messageExists($importer["uid"], $guid);
2814 $original_item = self::originalItem($root_guid, $root_author);
2815 if (!$original_item) {
2819 $orig_url = System::baseUrl()."/display/".$original_item["guid"];
2823 $datarray["uid"] = $importer["uid"];
2824 $datarray["contact-id"] = $contact["id"];
2825 $datarray["network"] = NETWORK_DIASPORA;
2827 $datarray["author-name"] = $contact["name"];
2828 $datarray["author-link"] = $contact["url"];
2829 $datarray["author-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]);
2831 $datarray["owner-name"] = $datarray["author-name"];
2832 $datarray["owner-link"] = $datarray["author-link"];
2833 $datarray["owner-avatar"] = $datarray["author-avatar"];
2835 $datarray["guid"] = $guid;
2836 $datarray["uri"] = $datarray["parent-uri"] = self::getUriFromGuid($author, $guid);
2838 $datarray["verb"] = ACTIVITY_POST;
2839 $datarray["gravity"] = GRAVITY_PARENT;
2841 $datarray["protocol"] = PROTOCOL_DIASPORA;
2842 $datarray["source"] = $xml;
2844 $prefix = share_header(
2845 $original_item["author-name"],
2846 $original_item["author-link"],
2847 $original_item["author-avatar"],
2848 $original_item["guid"],
2849 $original_item["created"],
2852 $datarray["body"] = $prefix.$original_item["body"]."[/share]";
2854 $datarray["tag"] = $original_item["tag"];
2855 $datarray["app"] = $original_item["app"];
2857 $datarray["plink"] = self::plink($author, $guid);
2858 $datarray["private"] = (($public == "false") ? 1 : 0);
2859 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
2861 $datarray["object-type"] = $original_item["object-type"];
2863 self::fetchGuid($datarray);
2864 $message_id = Item::insert($datarray);
2866 self::sendParticipation($contact, $datarray);
2869 logger("Stored reshare ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2870 if ($datarray['uid'] == 0) {
2871 Item::distribute($message_id);
2880 * @brief Processes retractions
2882 * @param array $importer Array of the importer user
2883 * @param array $contact The contact of the item owner
2884 * @param object $data The message object
2886 * @return bool success
2888 private static function itemRetraction($importer, $contact, $data)
2890 $author = notags(unxmlify($data->author));
2891 $target_guid = notags(unxmlify($data->target_guid));
2892 $target_type = notags(unxmlify($data->target_type));
2894 $person = self::personByHandle($author);
2895 if (!is_array($person)) {
2896 logger("unable to find author detail for ".$author);
2900 if (empty($contact["url"])) {
2901 $contact["url"] = $person["url"];
2904 // Fetch items that are about to be deleted
2905 $fields = ['uid', 'id', 'parent', 'parent-uri', 'author-link'];
2907 // When we receive a public retraction, we delete every item that we find.
2908 if ($importer['uid'] == 0) {
2909 $condition = ["`guid` = ? AND NOT `file` LIKE '%%[%%' AND NOT `deleted`", $target_guid];
2911 $condition = ["`guid` = ? AND `uid` = ? AND NOT `file` LIKE '%%[%%' AND NOT `deleted`", $target_guid, $importer['uid']];
2913 $r = dba::select('item', $fields, $condition);
2914 if (!DBM::is_result($r)) {
2915 logger("Target guid ".$target_guid." was not found on this system for user ".$importer['uid'].".");
2919 while ($item = dba::fetch($r)) {
2920 // Fetch the parent item
2921 $parent = dba::selectFirst('item', ['author-link', 'origin'], ['id' => $item["parent"]]);
2923 // Only delete it if the parent author really fits
2924 if (!link_compare($parent["author-link"], $contact["url"]) && !link_compare($item["author-link"], $contact["url"])) {
2925 logger("Thread author ".$parent["author-link"]." and item author ".$item["author-link"]." don't fit to expected contact ".$contact["url"], LOGGER_DEBUG);
2929 Item::deleteById($item["id"]);
2931 logger("Deleted target ".$target_guid." (".$item["id"].") from user ".$item["uid"]." parent: ".$item["parent"], LOGGER_DEBUG);
2933 // Now check if the retraction needs to be relayed by us
2934 if ($parent["origin"]) {
2936 Worker::add(PRIORITY_HIGH, "Notifier", "drop", $item["id"]);
2944 * @brief Receives retraction messages
2946 * @param array $importer Array of the importer user
2947 * @param string $sender The sender of the message
2948 * @param object $data The message object
2950 * @return bool Success
2952 private static function receiveRetraction($importer, $sender, $data)
2954 $target_type = notags(unxmlify($data->target_type));
2956 $contact = self::contactByHandle($importer["uid"], $sender);
2957 if (!$contact && (in_array($target_type, ["Contact", "Person"]))) {
2958 logger("cannot find contact for sender: ".$sender." and user ".$importer["uid"]);
2962 logger("Got retraction for ".$target_type.", sender ".$sender." and user ".$importer["uid"], LOGGER_DEBUG);
2964 switch ($target_type) {
2969 case "StatusMessage":
2970 return self::itemRetraction($importer, $contact, $data);
2972 case "PollParticipation":
2974 // Currently unsupported
2978 logger("Unknown target type ".$target_type);
2985 * @brief Receives status messages
2987 * @param array $importer Array of the importer user
2988 * @param object $data The message object
2989 * @param string $xml The original XML of the message
2991 * @return int The message id of the newly created item
2993 private static function receiveStatusMessage($importer, $data, $xml)
2995 $author = notags(unxmlify($data->author));
2996 $guid = notags(unxmlify($data->guid));
2997 $created_at = DateTimeFormat::utc(notags(unxmlify($data->created_at)));
2998 $public = notags(unxmlify($data->public));
2999 $text = unxmlify($data->text);
3000 $provider_display_name = notags(unxmlify($data->provider_display_name));
3002 $contact = self::allowedContactByHandle($importer, $author, false);
3007 $message_id = self::messageExists($importer["uid"], $guid);
3013 if ($data->location) {
3014 foreach ($data->location->children() as $fieldname => $data) {
3015 $address[$fieldname] = notags(unxmlify($data));
3019 $body = Markdown::toBBCode($text);
3023 // Attach embedded pictures to the body
3025 foreach ($data->photo as $photo) {
3026 $body = "[img]".unxmlify($photo->remote_photo_path).
3027 unxmlify($photo->remote_photo_name)."[/img]\n".$body;
3030 $datarray["object-type"] = ACTIVITY_OBJ_IMAGE;
3032 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
3034 // Add OEmbed and other information to the body
3035 if (!self::isRedmatrix($contact["url"])) {
3036 $body = add_page_info_to_body($body, false, true);
3040 /// @todo enable support for polls
3041 //if ($data->poll) {
3042 // foreach ($data->poll AS $poll)
3047 /// @todo enable support for events
3049 $datarray["uid"] = $importer["uid"];
3050 $datarray["contact-id"] = $contact["id"];
3051 $datarray["network"] = NETWORK_DIASPORA;
3053 $datarray["author-name"] = $contact["name"];
3054 $datarray["author-link"] = $contact["url"];
3055 $datarray["author-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]);
3057 $datarray["owner-name"] = $datarray["author-name"];
3058 $datarray["owner-link"] = $datarray["author-link"];
3059 $datarray["owner-avatar"] = $datarray["author-avatar"];
3061 $datarray["guid"] = $guid;
3062 $datarray["uri"] = $datarray["parent-uri"] = self::getUriFromGuid($author, $guid);
3064 $datarray["verb"] = ACTIVITY_POST;
3065 $datarray["gravity"] = GRAVITY_PARENT;
3067 $datarray["protocol"] = PROTOCOL_DIASPORA;
3068 $datarray["source"] = $xml;
3070 $datarray["body"] = self::replacePeopleGuid($body, $contact["url"]);
3072 if ($provider_display_name != "") {
3073 $datarray["app"] = $provider_display_name;
3076 $datarray["plink"] = self::plink($author, $guid);
3077 $datarray["private"] = (($public == "false") ? 1 : 0);
3078 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
3080 if (isset($address["address"])) {
3081 $datarray["location"] = $address["address"];
3084 if (isset($address["lat"]) && isset($address["lng"])) {
3085 $datarray["coord"] = $address["lat"]." ".$address["lng"];
3088 self::fetchGuid($datarray);
3089 $message_id = Item::insert($datarray);
3091 self::sendParticipation($contact, $datarray);
3094 logger("Stored item ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
3095 if ($datarray['uid'] == 0) {
3096 Item::distribute($message_id);
3104 /* ************************************************************************************** *
3105 * Here are all the functions that are needed to transmit data with the Diaspora protocol *
3106 * ************************************************************************************** */
3109 * @brief returnes the handle of a contact
3111 * @param array $contact contact array
3113 * @return string the handle in the format user@domain.tld
3115 private static function myHandle($contact)
3117 if ($contact["addr"] != "") {
3118 return $contact["addr"];
3121 // Normally we should have a filled "addr" field - but in the past this wasn't the case
3122 // So - just in case - we build the the address here.
3123 if ($contact["nickname"] != "") {
3124 $nick = $contact["nickname"];
3126 $nick = $contact["nick"];
3129 return $nick."@".substr(System::baseUrl(), strpos(System::baseUrl(), "://") + 3);
3134 * @brief Creates the data for a private message in the new format
3136 * @param string $msg The message that is to be transmitted
3137 * @param array $user The record of the sender
3138 * @param array $contact Target of the communication
3139 * @param string $prvkey The private key of the sender
3140 * @param string $pubkey The public key of the receiver
3142 * @return string The encrypted data
3144 public static function encodePrivateData($msg, $user, $contact, $prvkey, $pubkey)
3146 logger("Message: ".$msg, LOGGER_DATA);
3148 // without a public key nothing will work
3150 logger("pubkey missing: contact id: ".$contact["id"]);
3154 $aes_key = openssl_random_pseudo_bytes(32);
3155 $b_aes_key = base64_encode($aes_key);
3156 $iv = openssl_random_pseudo_bytes(16);
3157 $b_iv = base64_encode($iv);
3159 $ciphertext = self::aesEncrypt($aes_key, $iv, $msg);
3161 $json = json_encode(["iv" => $b_iv, "key" => $b_aes_key]);
3163 $encrypted_key_bundle = "";
3164 openssl_public_encrypt($json, $encrypted_key_bundle, $pubkey);
3166 $json_object = json_encode(
3167 ["aes_key" => base64_encode($encrypted_key_bundle),
3168 "encrypted_magic_envelope" => base64_encode($ciphertext)]
3171 return $json_object;
3175 * @brief Creates the envelope for the "fetch" endpoint and for the new format
3177 * @param string $msg The message that is to be transmitted
3178 * @param array $user The record of the sender
3180 * @return string The envelope
3182 public static function buildMagicEnvelope($msg, $user)
3184 $b64url_data = base64url_encode($msg);
3185 $data = str_replace(["\n", "\r", " ", "\t"], ["", "", "", ""], $b64url_data);
3187 $key_id = base64url_encode(self::myHandle($user));
3188 $type = "application/xml";
3189 $encoding = "base64url";
3190 $alg = "RSA-SHA256";
3191 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
3193 // Fallback if the private key wasn't transmitted in the expected field
3194 if ($user['uprvkey'] == "") {
3195 $user['uprvkey'] = $user['prvkey'];
3198 $signature = Crypto::rsaSign($signable_data, $user["uprvkey"]);
3199 $sig = base64url_encode($signature);
3201 $xmldata = ["me:env" => ["me:data" => $data,
3202 "@attributes" => ["type" => $type],
3203 "me:encoding" => $encoding,
3206 "@attributes2" => ["key_id" => $key_id]]];
3208 $namespaces = ["me" => "http://salmon-protocol.org/ns/magic-env"];
3210 return XML::fromArray($xmldata, $xml, false, $namespaces);
3214 * @brief Create the envelope for a message
3216 * @param string $msg The message that is to be transmitted
3217 * @param array $user The record of the sender
3218 * @param array $contact Target of the communication
3219 * @param string $prvkey The private key of the sender
3220 * @param string $pubkey The public key of the receiver
3221 * @param bool $public Is the message public?
3223 * @return string The message that will be transmitted to other servers
3225 public static function buildMessage($msg, $user, $contact, $prvkey, $pubkey, $public = false)
3227 // The message is put into an envelope with the sender's signature
3228 $envelope = self::buildMagicEnvelope($msg, $user);
3230 // Private messages are put into a second envelope, encrypted with the receivers public key
3232 $envelope = self::encodePrivateData($envelope, $user, $contact, $prvkey, $pubkey);
3239 * @brief Creates a signature for a message
3241 * @param array $owner the array of the owner of the message
3242 * @param array $message The message that is to be signed
3244 * @return string The signature
3246 private static function signature($owner, $message)
3249 unset($sigmsg["author_signature"]);
3250 unset($sigmsg["parent_author_signature"]);
3252 $signed_text = implode(";", $sigmsg);
3254 return base64_encode(Crypto::rsaSign($signed_text, $owner["uprvkey"], "sha256"));
3258 * @brief Transmit a message to a target server
3260 * @param array $owner the array of the item owner
3261 * @param array $contact Target of the communication
3262 * @param string $envelope The message that is to be transmitted
3263 * @param bool $public_batch Is it a public post?
3264 * @param bool $queue_run Is the transmission called from the queue?
3265 * @param string $guid message guid
3267 * @return int Result of the transmission
3269 public static function transmit($owner, $contact, $envelope, $public_batch, $queue_run = false, $guid = "", $no_queue = false)
3273 $enabled = intval(Config::get("system", "diaspora_enabled"));
3278 $logid = random_string(4);
3280 $dest_url = ($public_batch ? $contact["batch"] : $contact["notify"]);
3282 // We always try to use the data from the fcontact table.
3283 // This is important for transmitting data to Friendica servers.
3284 if (!empty($contact['addr'])) {
3285 $fcontact = self::personByHandle($contact['addr']);
3286 if (!empty($fcontact)) {
3287 $dest_url = ($public_batch ? $fcontact["batch"] : $fcontact["notify"]);
3292 logger("no url for contact: ".$contact["id"]." batch mode =".$public_batch);
3296 logger("transmit: ".$logid."-".$guid." ".$dest_url);
3298 if (!$queue_run && Queue::wasDelayed($contact["id"])) {
3301 if (!intval(Config::get("system", "diaspora_test"))) {
3302 $content_type = (($public_batch) ? "application/magic-envelope+xml" : "application/json");
3304 Network::post($dest_url."/", $envelope, ["Content-Type: ".$content_type]);
3305 $return_code = $a->get_curl_code();
3307 logger("test_mode");
3312 logger("transmit: ".$logid."-".$guid." to ".$dest_url." returns: ".$return_code);
3314 if (!$return_code || (($return_code == 503) && (stristr($a->get_curl_headers(), "retry-after")))) {
3315 if (!$no_queue && ($contact['contact-type'] != ACCOUNT_TYPE_RELAY)) {
3316 logger("queue message");
3317 // queue message for redelivery
3318 Queue::add($contact["id"], NETWORK_DIASPORA, $envelope, $public_batch, $guid);
3321 // The message could not be delivered. We mark the contact as "dead"
3322 Contact::markForArchival($contact);
3323 } elseif (($return_code >= 200) && ($return_code <= 299)) {
3324 // We successfully delivered a message, the contact is alive
3325 Contact::unmarkForArchival($contact);
3328 return $return_code ? $return_code : -1;
3333 * @brief Build the post xml
3335 * @param string $type The message type
3336 * @param array $message The message data
3338 * @return string The post XML
3340 public static function buildPostXml($type, $message)
3342 $data = [$type => $message];
3344 return XML::fromArray($data, $xml);
3348 * @brief Builds and transmit messages
3350 * @param array $owner the array of the item owner
3351 * @param array $contact Target of the communication
3352 * @param string $type The message type
3353 * @param array $message The message data
3354 * @param bool $public_batch Is it a public post?
3355 * @param string $guid message guid
3356 * @param bool $spool Should the transmission be spooled or transmitted?
3358 * @return int Result of the transmission
3360 private static function buildAndTransmit($owner, $contact, $type, $message, $public_batch = false, $guid = "", $spool = false)
3362 $msg = self::buildPostXml($type, $message);
3364 logger('message: '.$msg, LOGGER_DATA);
3365 logger('send guid '.$guid, LOGGER_DEBUG);
3367 // Fallback if the private key wasn't transmitted in the expected field
3368 if ($owner['uprvkey'] == "") {
3369 $owner['uprvkey'] = $owner['prvkey'];
3372 $envelope = self::buildMessage($msg, $owner, $contact, $owner['uprvkey'], $contact['pubkey'], $public_batch);
3375 Queue::add($contact['id'], NETWORK_DIASPORA, $envelope, $public_batch, $guid);
3378 $return_code = self::transmit($owner, $contact, $envelope, $public_batch, false, $guid);
3381 logger("guid: ".$guid." result ".$return_code, LOGGER_DEBUG);
3383 return $return_code;
3387 * @brief sends a participation (Used to get all further updates)
3389 * @param array $contact Target of the communication
3390 * @param array $item Item array
3392 * @return int The result of the transmission
3394 private static function sendParticipation($contact, $item)
3396 // Don't send notifications for private postings
3397 if ($item['private']) {
3401 $cachekey = "diaspora:sendParticipation:".$item['guid'];
3403 $result = Cache::get($cachekey);
3404 if (!is_null($result)) {
3408 // Fetch some user id to have a valid handle to transmit the participation.
3409 // In fact it doesn't matter which user sends this - but it is needed by the protocol.
3410 // If the item belongs to a user, we take this user id.
3411 if ($item['uid'] == 0) {
3412 $condition = ['verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false];
3413 $first_user = dba::selectFirst('user', ['uid'], $condition);
3414 $owner = User::getOwnerDataById($first_user['uid']);
3416 $owner = User::getOwnerDataById($item['uid']);
3419 $author = self::myHandle($owner);
3421 $message = ["author" => $author,
3422 "guid" => get_guid(32),
3423 "parent_type" => "Post",
3424 "parent_guid" => $item["guid"]];
3426 logger("Send participation for ".$item["guid"]." by ".$author, LOGGER_DEBUG);
3428 // It doesn't matter what we store, we only want to avoid sending repeated notifications for the same item
3429 Cache::set($cachekey, $item["guid"], CACHE_QUARTER_HOUR);
3431 return self::buildAndTransmit($owner, $contact, "participation", $message);
3435 * @brief sends an account migration
3437 * @param array $owner the array of the item owner
3438 * @param array $contact Target of the communication
3439 * @param int $uid User ID
3441 * @return int The result of the transmission
3443 public static function sendAccountMigration($owner, $contact, $uid)
3445 $old_handle = PConfig::get($uid, 'system', 'previous_addr');
3446 $profile = self::createProfileData($uid);
3448 $signed_text = 'AccountMigration:'.$old_handle.':'.$profile['author'];
3449 $signature = base64_encode(Crypto::rsaSign($signed_text, $owner["uprvkey"], "sha256"));
3451 $message = ["author" => $old_handle,
3452 "profile" => $profile,
3453 "signature" => $signature];
3455 logger("Send account migration ".print_r($message, true), LOGGER_DEBUG);
3457 return self::buildAndTransmit($owner, $contact, "account_migration", $message);
3461 * @brief Sends a "share" message
3463 * @param array $owner the array of the item owner
3464 * @param array $contact Target of the communication
3466 * @return int The result of the transmission
3468 public static function sendShare($owner, $contact)
3471 * @todo support the different possible combinations of "following" and "sharing"
3472 * Currently, Diaspora only interprets the "sharing" field
3474 * Before switching this code productive, we have to check all "sendShare" calls if "rel" is set correctly
3478 switch ($contact["rel"]) {
3479 case CONTACT_IS_FRIEND:
3482 case CONTACT_IS_SHARING:
3485 case CONTACT_IS_FOLLOWER:
3491 $message = ["author" => self::myHandle($owner),
3492 "recipient" => $contact["addr"],
3493 "following" => "true",
3494 "sharing" => "true"];
3496 logger("Send share ".print_r($message, true), LOGGER_DEBUG);
3498 return self::buildAndTransmit($owner, $contact, "contact", $message);
3502 * @brief sends an "unshare"
3504 * @param array $owner the array of the item owner
3505 * @param array $contact Target of the communication
3507 * @return int The result of the transmission
3509 public static function sendUnshare($owner, $contact)
3511 $message = ["author" => self::myHandle($owner),
3512 "recipient" => $contact["addr"],
3513 "following" => "false",
3514 "sharing" => "false"];
3516 logger("Send unshare ".print_r($message, true), LOGGER_DEBUG);
3518 return self::buildAndTransmit($owner, $contact, "contact", $message);
3522 * @brief Checks a message body if it is a reshare
3524 * @param string $body The message body that is to be check
3525 * @param bool $complete Should it be a complete check or a simple check?
3527 * @return array|bool Reshare details or "false" if no reshare
3529 public static function isReshare($body, $complete = true)
3531 $body = trim($body);
3533 // Skip if it isn't a pure repeated messages
3534 // Does it start with a share?
3535 if ((strpos($body, "[share") > 0) && $complete) {
3539 // Does it end with a share?
3540 if (strlen($body) > (strrpos($body, "[/share]") + 8)) {
3544 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "$1", $body);
3545 // Skip if there is no shared message in there
3546 if ($body == $attributes) {
3550 // If we don't do the complete check we quit here
3553 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
3554 if ($matches[1] != "") {
3555 $guid = $matches[1];
3558 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
3559 if ($matches[1] != "") {
3560 $guid = $matches[1];
3563 if (($guid != "") && $complete) {
3564 $condition = ['guid' => $guid, 'network' => [NETWORK_DFRN, NETWORK_DIASPORA]];
3565 $item = dba::selectFirst('item', ['contact-id'], $condition);
3566 if (DBM::is_result($item)) {
3568 $ret["root_handle"] = self::handleFromContact($item["contact-id"]);
3569 $ret["root_guid"] = $guid;
3572 } elseif (($guid == "") && $complete) {
3576 $ret["root_guid"] = $guid;
3579 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
3580 if ($matches[1] != "") {
3581 $profile = $matches[1];
3584 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
3585 if ($matches[1] != "") {
3586 $profile = $matches[1];
3591 if ($profile != "") {
3592 if (Contact::getIdForURL($profile)) {
3593 $author = Contact::getDetailsByURL($profile);
3594 $ret["root_handle"] = $author['addr'];
3598 if (empty($ret) && !$complete) {
3606 * @brief Create an event array
3608 * @param integer $event_id The id of the event
3610 * @return array with event data
3612 private static function buildEvent($event_id)
3614 $r = q("SELECT `guid`, `uid`, `start`, `finish`, `nofinish`, `summary`, `desc`, `location`, `adjust` FROM `event` WHERE `id` = %d", intval($event_id));
3615 if (!DBM::is_result($r)) {
3623 $r = q("SELECT `timezone` FROM `user` WHERE `uid` = %d", intval($event['uid']));
3624 if (!DBM::is_result($r)) {
3630 $r = q("SELECT `addr`, `nick` FROM `contact` WHERE `uid` = %d AND `self`", intval($event['uid']));
3631 if (!DBM::is_result($r)) {
3637 $eventdata['author'] = self::myHandle($owner);
3639 if ($event['guid']) {
3640 $eventdata['guid'] = $event['guid'];
3643 $mask = DateTimeFormat::ATOM;
3645 /// @todo - establish "all day" events in Friendica
3646 $eventdata["all_day"] = "false";
3648 if (!$event['adjust']) {
3649 $eventdata['timezone'] = $user['timezone'];
3651 if ($eventdata['timezone'] == "") {
3652 $eventdata['timezone'] = 'UTC';
3656 if ($event['start']) {
3657 $eventdata['start'] = DateTimeFormat::convert($event['start'], "UTC", $eventdata['timezone'], $mask);
3659 if ($event['finish'] && !$event['nofinish']) {
3660 $eventdata['end'] = DateTimeFormat::convert($event['finish'], "UTC", $eventdata['timezone'], $mask);
3662 if ($event['summary']) {
3663 $eventdata['summary'] = html_entity_decode(BBCode::toMarkdown($event['summary']));
3665 if ($event['desc']) {
3666 $eventdata['description'] = html_entity_decode(BBCode::toMarkdown($event['desc']));
3668 if ($event['location']) {
3669 $event['location'] = preg_replace("/\[map\](.*?)\[\/map\]/ism", '$1', $event['location']);
3670 $coord = Map::getCoordinates($event['location']);
3673 $location["address"] = html_entity_decode(BBCode::toMarkdown($event['location']));
3674 if (!empty($coord['lat']) && !empty($coord['lon'])) {
3675 $location["lat"] = $coord['lat'];
3676 $location["lng"] = $coord['lon'];
3678 $location["lat"] = 0;
3679 $location["lng"] = 0;
3681 $eventdata['location'] = $location;
3688 * @brief Create a post (status message or reshare)
3690 * @param array $item The item that will be exported
3691 * @param array $owner the array of the item owner
3694 * 'type' -> Message type ("status_message" or "reshare")
3695 * 'message' -> Array of XML elements of the status
3697 public static function buildStatus($item, $owner)
3699 $cachekey = "diaspora:buildStatus:".$item['guid'];
3701 $result = Cache::get($cachekey);
3702 if (!is_null($result)) {
3706 $myaddr = self::myHandle($owner);
3708 $public = (($item["private"]) ? "false" : "true");
3710 $created = DateTimeFormat::utc($item["created"], DateTimeFormat::ATOM);
3712 // Detect a share element and do a reshare
3713 if (!$item['private'] && ($ret = self::isReshare($item["body"]))) {
3714 $message = ["author" => $myaddr,
3715 "guid" => $item["guid"],
3716 "created_at" => $created,
3717 "root_author" => $ret["root_handle"],
3718 "root_guid" => $ret["root_guid"],
3719 "provider_display_name" => $item["app"],
3720 "public" => $public];
3724 $title = $item["title"];
3725 $body = $item["body"];
3727 if ($item['author-link'] != $item['owner-link']) {
3728 require_once 'mod/share.php';
3729 $body = share_header($item['author-name'], $item['author-link'], $item['author-avatar'],
3730 "", $item['created'], $item['plink']) . $body . '[/share]';
3733 // convert to markdown
3734 $body = html_entity_decode(BBCode::toMarkdown($body));
3737 if (strlen($title)) {
3738 $body = "## ".html_entity_decode($title)."\n\n".$body;
3741 if ($item["attach"]) {
3742 $cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism', $item["attach"], $matches, PREG_SET_ORDER);
3744 $body .= "\n".L10n::t("Attachments:")."\n";
3745 foreach ($matches as $mtch) {
3746 $body .= "[".$mtch[3]."](".$mtch[1].")\n";
3753 if ($item["location"] != "")
3754 $location["address"] = $item["location"];
3756 if ($item["coord"] != "") {
3757 $coord = explode(" ", $item["coord"]);
3758 $location["lat"] = $coord[0];
3759 $location["lng"] = $coord[1];
3762 $message = ["author" => $myaddr,
3763 "guid" => $item["guid"],
3764 "created_at" => $created,
3765 "public" => $public,
3767 "provider_display_name" => $item["app"],
3768 "location" => $location];
3770 // Diaspora rejects messages when they contain a location without "lat" or "lng"
3771 if (!isset($location["lat"]) || !isset($location["lng"])) {
3772 unset($message["location"]);
3775 if ($item['event-id'] > 0) {
3776 $event = self::buildEvent($item['event-id']);
3777 if (count($event)) {
3778 $message['event'] = $event;
3780 if (!empty($event['location']['address']) &&
3781 !empty($event['location']['lat']) &&
3782 !empty($event['location']['lng'])) {
3783 $message['location'] = $event['location'];
3786 /// @todo Once Diaspora supports it, we will remove the body and the location hack above
3787 // $message['text'] = '';
3791 $type = "status_message";
3794 $msg = ["type" => $type, "message" => $message];
3796 Cache::set($cachekey, $msg, CACHE_QUARTER_HOUR);
3802 * @brief Sends a post
3804 * @param array $item The item that will be exported
3805 * @param array $owner the array of the item owner
3806 * @param array $contact Target of the communication
3807 * @param bool $public_batch Is it a public post?
3809 * @return int The result of the transmission
3811 public static function sendStatus($item, $owner, $contact, $public_batch = false)
3813 $status = self::buildStatus($item, $owner);
3815 return self::buildAndTransmit($owner, $contact, $status["type"], $status["message"], $public_batch, $item["guid"]);
3819 * @brief Creates a "like" object
3821 * @param array $item The item that will be exported
3822 * @param array $owner the array of the item owner
3824 * @return array The data for a "like"
3826 private static function constructLike($item, $owner)
3829 "SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
3830 dbesc($item["thr-parent"])
3832 if (!DBM::is_result($p)) {
3838 $target_type = ($parent["uri"] === $parent["parent-uri"] ? "Post" : "Comment");
3840 if ($item['verb'] === ACTIVITY_LIKE) {
3842 } elseif ($item['verb'] === ACTIVITY_DISLIKE) {
3843 $positive = "false";
3846 return(["author" => self::myHandle($owner),
3847 "guid" => $item["guid"],
3848 "parent_guid" => $parent["guid"],
3849 "parent_type" => $target_type,
3850 "positive" => $positive,
3851 "author_signature" => ""]);
3855 * @brief Creates an "EventParticipation" object
3857 * @param array $item The item that will be exported
3858 * @param array $owner the array of the item owner
3860 * @return array The data for an "EventParticipation"
3862 private static function constructAttend($item, $owner)
3865 "SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
3866 dbesc($item["thr-parent"])
3868 if (!DBM::is_result($p)) {
3874 switch ($item['verb']) {
3875 case ACTIVITY_ATTEND:
3876 $attend_answer = 'accepted';
3878 case ACTIVITY_ATTENDNO:
3879 $attend_answer = 'declined';
3881 case ACTIVITY_ATTENDMAYBE:
3882 $attend_answer = 'tentative';
3885 logger('Unknown verb '.$item['verb'].' in item '.$item['guid']);
3889 return(["author" => self::myHandle($owner),
3890 "guid" => $item["guid"],
3891 "parent_guid" => $parent["guid"],
3892 "status" => $attend_answer,
3893 "author_signature" => ""]);
3897 * @brief Creates the object for a comment
3899 * @param array $item The item that will be exported
3900 * @param array $owner the array of the item owner
3902 * @return array The data for a comment
3904 private static function constructComment($item, $owner)
3906 $cachekey = "diaspora:constructComment:".$item['guid'];
3908 $result = Cache::get($cachekey);
3909 if (!is_null($result)) {
3914 "SELECT `guid` FROM `item` WHERE `parent` = %d AND `id` = %d LIMIT 1",
3915 intval($item["parent"]),
3916 intval($item["parent"])
3919 if (!DBM::is_result($p)) {
3925 $text = html_entity_decode(BBCode::toMarkdown($item["body"]));
3926 $created = DateTimeFormat::utc($item["created"], DateTimeFormat::ATOM);
3928 $comment = ["author" => self::myHandle($owner),
3929 "guid" => $item["guid"],
3930 "created_at" => $created,
3931 "parent_guid" => $parent["guid"],
3933 "author_signature" => ""];
3935 // Send the thread parent guid only if it is a threaded comment
3936 if ($item['thr-parent'] != $item['parent-uri']) {
3937 $comment['thread_parent_guid'] = self::getGuidFromUri($item['thr-parent'], $item['uid']);
3940 Cache::set($cachekey, $comment, CACHE_QUARTER_HOUR);
3946 * @brief Send a like or a comment
3948 * @param array $item The item that will be exported
3949 * @param array $owner the array of the item owner
3950 * @param array $contact Target of the communication
3951 * @param bool $public_batch Is it a public post?
3953 * @return int The result of the transmission
3955 public static function sendFollowup($item, $owner, $contact, $public_batch = false)
3957 if (in_array($item['verb'], [ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE])) {
3958 $message = self::constructAttend($item, $owner);
3959 $type = "event_participation";
3960 } elseif (in_array($item["verb"], [ACTIVITY_LIKE, ACTIVITY_DISLIKE])) {
3961 $message = self::constructLike($item, $owner);
3964 $message = self::constructComment($item, $owner);
3972 $message["author_signature"] = self::signature($owner, $message);
3974 return self::buildAndTransmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
3978 * @brief Creates a message from a signature record entry
3980 * @param array $item The item that will be exported
3981 * @param array $signature The entry of the "sign" record
3983 * @return string The message
3985 private static function messageFromSignature($item, $signature)
3987 // Split the signed text
3988 $signed_parts = explode(";", $signature['signed_text']);
3990 if ($item["deleted"]) {
3991 $message = ["author" => $signature['signer'],
3992 "target_guid" => $signed_parts[0],
3993 "target_type" => $signed_parts[1]];
3994 } elseif (in_array($item["verb"], [ACTIVITY_LIKE, ACTIVITY_DISLIKE])) {
3995 $message = ["author" => $signed_parts[4],
3996 "guid" => $signed_parts[1],
3997 "parent_guid" => $signed_parts[3],
3998 "parent_type" => $signed_parts[2],
3999 "positive" => $signed_parts[0],
4000 "author_signature" => $signature['signature'],
4001 "parent_author_signature" => ""];
4003 // Remove the comment guid
4004 $guid = array_shift($signed_parts);
4006 // Remove the parent guid
4007 $parent_guid = array_shift($signed_parts);
4009 // Remove the handle
4010 $handle = array_pop($signed_parts);
4012 // Glue the parts together
4013 $text = implode(";", $signed_parts);
4015 $message = ["author" => $handle,
4017 "parent_guid" => $parent_guid,
4018 "text" => implode(";", $signed_parts),
4019 "author_signature" => $signature['signature'],
4020 "parent_author_signature" => ""];
4026 * @brief Relays messages (like, comment, retraction) to other servers if we are the thread owner
4028 * @param array $item The item that will be exported
4029 * @param array $owner the array of the item owner
4030 * @param array $contact Target of the communication
4031 * @param bool $public_batch Is it a public post?
4033 * @return int The result of the transmission
4035 public static function sendRelay($item, $owner, $contact, $public_batch = false)
4037 if ($item["deleted"]) {
4038 return self::sendRetraction($item, $owner, $contact, $public_batch, true);
4039 } elseif (in_array($item["verb"], [ACTIVITY_LIKE, ACTIVITY_DISLIKE])) {
4045 logger("Got relayable data ".$type." for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
4047 // fetch the original signature
4050 "SELECT `signed_text`, `signature`, `signer` FROM `sign` WHERE `iid` = %d LIMIT 1",
4055 logger("Couldn't fetch signatur for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
4061 // Old way - is used by the internal Friendica functions
4062 /// @todo Change all signatur storing functions to the new format
4063 if ($signature['signed_text'] && $signature['signature'] && $signature['signer']) {
4064 $message = self::messageFromSignature($item, $signature);
4066 $msg = json_decode($signature['signed_text'], true);
4069 if (is_array($msg)) {
4070 foreach ($msg as $field => $data) {
4071 if (!$item["deleted"]) {
4072 if ($field == "diaspora_handle") {
4075 if ($field == "target_type") {
4076 $field = "parent_type";
4080 $message[$field] = $data;
4083 logger("Signature text for item ".$item["guid"]." (".$item["id"].") couldn't be extracted: ".$signature['signed_text'], LOGGER_DEBUG);
4087 $message["parent_author_signature"] = self::signature($owner, $message);
4089 logger("Relayed data ".print_r($message, true), LOGGER_DEBUG);
4091 return self::buildAndTransmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
4095 * @brief Sends a retraction (deletion) of a message, like or comment
4097 * @param array $item The item that will be exported
4098 * @param array $owner the array of the item owner
4099 * @param array $contact Target of the communication
4100 * @param bool $public_batch Is it a public post?
4101 * @param bool $relay Is the retraction transmitted from a relay?
4103 * @return int The result of the transmission
4105 public static function sendRetraction($item, $owner, $contact, $public_batch = false, $relay = false)
4107 $itemaddr = self::handleFromContact($item["contact-id"], $item["author-id"]);
4109 $msg_type = "retraction";
4111 if ($item['id'] == $item['parent']) {
4112 $target_type = "Post";
4113 } elseif (in_array($item["verb"], [ACTIVITY_LIKE, ACTIVITY_DISLIKE])) {
4114 $target_type = "Like";
4116 $target_type = "Comment";
4119 $message = ["author" => $itemaddr,
4120 "target_guid" => $item['guid'],
4121 "target_type" => $target_type];
4123 logger("Got message ".print_r($message, true), LOGGER_DEBUG);
4125 return self::buildAndTransmit($owner, $contact, $msg_type, $message, $public_batch, $item["guid"]);
4129 * @brief Sends a mail
4131 * @param array $item The item that will be exported
4132 * @param array $owner The owner
4133 * @param array $contact Target of the communication
4135 * @return int The result of the transmission
4137 public static function sendMail($item, $owner, $contact)
4139 $myaddr = self::myHandle($owner);
4142 "SELECT * FROM `conv` WHERE `id` = %d AND `uid` = %d LIMIT 1",
4143 intval($item["convid"]),
4144 intval($item["uid"])
4147 if (!DBM::is_result($r)) {
4148 logger("conversation not found.");
4154 "author" => $cnv["creator"],
4155 "guid" => $cnv["guid"],
4156 "subject" => $cnv["subject"],
4157 "created_at" => DateTimeFormat::utc($cnv['created'], DateTimeFormat::ATOM),
4158 "participants" => $cnv["recips"]
4161 $body = BBCode::toMarkdown($item["body"]);
4162 $created = DateTimeFormat::utc($item["created"], DateTimeFormat::ATOM);
4165 "author" => $myaddr,
4166 "guid" => $item["guid"],
4167 "conversation_guid" => $cnv["guid"],
4169 "created_at" => $created,
4172 if ($item["reply"]) {
4177 "author" => $cnv["creator"],
4178 "guid" => $cnv["guid"],
4179 "subject" => $cnv["subject"],
4180 "created_at" => DateTimeFormat::utc($cnv['created'], DateTimeFormat::ATOM),
4181 "participants" => $cnv["recips"],
4184 $type = "conversation";
4187 return self::buildAndTransmit($owner, $contact, $type, $message, false, $item["guid"]);
4191 * @brief Split a name into first name and last name
4193 * @param string $name The name
4195 * @return array The array with "first" and "last"
4197 public static function splitName($name) {
4198 $name = trim($name);
4200 // Is the name longer than 64 characters? Then cut the rest of it.
4201 if (strlen($name) > 64) {
4202 if ((strpos($name, ' ') <= 64) && (strpos($name, ' ') !== false)) {
4203 $name = trim(substr($name, 0, strrpos(substr($name, 0, 65), ' ')));
4205 $name = substr($name, 0, 64);
4209 // Take the first word as first name
4210 $first = ((strpos($name, ' ') ? trim(substr($name, 0, strpos($name, ' '))) : $name));
4211 $last = (($first === $name) ? '' : trim(substr($name, strlen($first))));
4212 if ((strlen($first) < 32) && (strlen($last) < 32)) {
4213 return ['first' => $first, 'last' => $last];
4216 // Take the last word as last name
4217 $first = ((strrpos($name, ' ') ? trim(substr($name, 0, strrpos($name, ' '))) : $name));
4218 $last = (($first === $name) ? '' : trim(substr($name, strlen($first))));
4220 if ((strlen($first) < 32) && (strlen($last) < 32)) {
4221 return ['first' => $first, 'last' => $last];
4224 // Take the first 32 characters if there is no space in the first 32 characters
4225 if ((strpos($name, ' ') > 32) || (strpos($name, ' ') === false)) {
4226 $first = substr($name, 0, 32);
4227 $last = substr($name, 32);
4228 return ['first' => $first, 'last' => $last];
4231 $first = trim(substr($name, 0, strrpos(substr($name, 0, 33), ' ')));
4232 $last = (($first === $name) ? '' : trim(substr($name, strlen($first))));
4234 // Check if the last name is longer than 32 characters
4235 if (strlen($last) > 32) {
4236 if (strpos($last, ' ') <= 32) {
4237 $last = trim(substr($last, 0, strrpos(substr($last, 0, 33), ' ')));
4239 $last = substr($last, 0, 32);
4243 return ['first' => $first, 'last' => $last];
4247 * @brief Create profile data
4249 * @param int $uid The user id
4251 * @return array The profile data
4253 private static function createProfileData($uid)
4256 "SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.*, `user`.`prvkey` AS `uprvkey`, `contact`.`addr`
4258 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
4259 INNER JOIN `contact` ON `profile`.`uid` = `contact`.`uid`
4260 WHERE `user`.`uid` = %d AND `profile`.`is-default` AND `contact`.`self` LIMIT 1",
4269 $handle = $profile["addr"];
4271 $split_name = self::splitName($profile['name']);
4272 $first = $split_name['first'];
4273 $last = $split_name['last'];
4275 $large = System::baseUrl().'/photo/custom/300/'.$profile['uid'].'.jpg';
4276 $medium = System::baseUrl().'/photo/custom/100/'.$profile['uid'].'.jpg';
4277 $small = System::baseUrl().'/photo/custom/50/' .$profile['uid'].'.jpg';
4278 $searchable = (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false');
4284 if ($searchable === 'true') {
4287 if ($profile['dob'] && ($profile['dob'] > '0000-00-00')) {
4288 list($year, $month, $day) = sscanf($profile['dob'], '%4d-%2d-%2d');
4292 $dob = DateTimeFormat::utc($year . '-' . $month . '-'. $day, 'Y-m-d');
4295 $about = $profile['about'];
4296 $about = strip_tags(BBCode::convert($about));
4298 $location = Profile::formatLocation($profile);
4300 if ($profile['pub_keywords']) {
4301 $kw = str_replace(',', ' ', $profile['pub_keywords']);
4302 $kw = str_replace(' ', ' ', $kw);
4303 $arr = explode(' ', $profile['pub_keywords']);
4305 for ($x = 0; $x < 5; $x ++) {
4306 if (trim($arr[$x])) {
4307 $tags .= '#'. trim($arr[$x]) .' ';
4312 $tags = trim($tags);
4315 return ["author" => $handle,
4316 "first_name" => $first,
4317 "last_name" => $last,
4318 "image_url" => $large,
4319 "image_url_medium" => $medium,
4320 "image_url_small" => $small,
4322 "gender" => $profile['gender'],
4324 "location" => $location,
4325 "searchable" => $searchable,
4327 "tag_string" => $tags];
4331 * @brief Sends profile data
4333 * @param int $uid The user id
4334 * @param bool $recips optional, default false
4337 public static function sendProfile($uid, $recips = false)
4343 $owner = User::getOwnerDataById($uid);
4350 "SELECT `id`,`name`,`network`,`pubkey`,`notify` FROM `contact` WHERE `network` = '%s'
4351 AND `uid` = %d AND `rel` != %d",
4352 dbesc(NETWORK_DIASPORA),
4354 intval(CONTACT_IS_SHARING)
4362 $message = self::createProfileData($uid);
4364 foreach ($recips as $recip) {
4365 logger("Send updated profile data for user ".$uid." to contact ".$recip["id"], LOGGER_DEBUG);
4366 self::buildAndTransmit($owner, $recip, "profile", $message, false, "", false);
4371 * @brief Stores the signature for likes that are created on our system
4373 * @param array $contact The contact array of the "like"
4374 * @param int $post_id The post id of the "like"
4376 * @return bool Success
4378 public static function storeLikeSignature($contact, $post_id)
4380 // Is the contact the owner? Then fetch the private key
4381 if (!$contact['self'] || ($contact['uid'] == 0)) {
4382 logger("No owner post, so not storing signature", LOGGER_DEBUG);
4386 $r = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($contact['uid']));
4387 if (!DBM::is_result($r)) {
4391 $contact["uprvkey"] = $r[0]['prvkey'];
4393 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", intval($post_id));
4394 if (!DBM::is_result($r)) {
4398 if (!in_array($r[0]["verb"], [ACTIVITY_LIKE, ACTIVITY_DISLIKE])) {
4402 $message = self::constructLike($r[0], $contact);
4403 if ($message === false) {
4407 $message["author_signature"] = self::signature($contact, $message);
4410 * Now store the signature more flexible to dynamically support new fields.
4411 * This will break Diaspora compatibility with Friendica versions prior to 3.5.
4413 dba::insert('sign', ['iid' => $post_id, 'signed_text' => json_encode($message)]);
4415 logger('Stored diaspora like signature');
4420 * @brief Stores the signature for comments that are created on our system
4422 * @param array $item The item array of the comment
4423 * @param array $contact The contact array of the item owner
4424 * @param string $uprvkey The private key of the sender
4425 * @param int $message_id The message id of the comment
4427 * @return bool Success
4429 public static function storeCommentSignature($item, $contact, $uprvkey, $message_id)
4431 if ($uprvkey == "") {
4432 logger('No private key, so not storing comment signature', LOGGER_DEBUG);
4436 $contact["uprvkey"] = $uprvkey;
4438 $message = self::constructComment($item, $contact);
4439 if ($message === false) {
4443 $message["author_signature"] = self::signature($contact, $message);
4446 * Now store the signature more flexible to dynamically support new fields.
4447 * This will break Diaspora compatibility with Friendica versions prior to 3.5.
4449 dba::insert('sign', ['iid' => $message_id, 'signed_text' => json_encode($message)]);
4451 logger('Stored diaspora comment signature');