]> git.mxchange.org Git - friendica.git/blob - src/Protocol/Diaspora.php
a56b1fe87759de314ca3ca32199a9833b65ec9cd
[friendica.git] / src / Protocol / Diaspora.php
1 <?php
2 /**
3  * @file src/Protocol/diaspora.php
4  * @brief The implementation of the diaspora protocol
5  *
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.
9  */
10 namespace Friendica\Protocol;
11
12 use Friendica\App;
13 use Friendica\Core\System;
14 use Friendica\Core\Cache;
15 use Friendica\Core\Config;
16 use Friendica\Core\PConfig;
17 use Friendica\Core\Worker;
18 use Friendica\Database\DBM;
19 use Friendica\Model\Contact;
20 use Friendica\Model\GContact;
21 use Friendica\Model\Group;
22 use Friendica\Model\Profile;
23 use Friendica\Model\User;
24 use Friendica\Network\Probe;
25 use Friendica\Util\XML;
26
27 use dba;
28 use SimpleXMLElement;
29
30 require_once 'include/dba.php';
31 require_once 'include/items.php';
32 require_once 'include/bb2diaspora.php';
33 require_once 'include/datetime.php';
34 require_once 'include/queue_fn.php';
35
36 /**
37  * @brief This class contain functions to create and send Diaspora XML files
38  *
39  */
40 class Diaspora
41 {
42         /**
43          * @brief Return a list of relay servers
44          *
45          * This is an experimental Diaspora feature.
46          *
47          * @return array of relay servers
48          */
49         public static function relayList()
50         {
51                 $serverdata = Config::get("system", "relay_server");
52                 if ($serverdata == "") {
53                         return array();
54                 }
55
56                 $relay = array();
57
58                 $servers = explode(",", $serverdata);
59
60                 foreach ($servers as $server) {
61                         $server = trim($server);
62                         $addr = "relay@".str_replace("http://", "", normalise_link($server));
63                         $batch = $server."/receive/public";
64
65                         $relais = q(
66                                 "SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' AND `addr` = '%s' AND `nurl` = '%s' LIMIT 1",
67                                 dbesc($batch),
68                                 dbesc($addr),
69                                 dbesc(normalise_link($server))
70                         );
71
72                         if (!$relais) {
73                                 $r = q(
74                                         "INSERT INTO `contact` (`uid`, `created`, `name`, `nick`, `addr`, `url`, `nurl`, `batch`, `network`, `rel`, `blocked`, `pending`, `writable`, `name-date`, `uri-date`, `avatar-date`)
75                                         VALUES (0, '%s', '%s', 'relay', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, '%s', '%s', '%s')",
76                                         datetime_convert(),
77                                         dbesc($addr),
78                                         dbesc($addr),
79                                         dbesc($server),
80                                         dbesc(normalise_link($server)),
81                                         dbesc($batch),
82                                         dbesc(NETWORK_DIASPORA),
83                                         intval(CONTACT_IS_FOLLOWER),
84                                         dbesc(datetime_convert()),
85                                         dbesc(datetime_convert()),
86                                         dbesc(datetime_convert())
87                                 );
88
89                                 $relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch));
90                                 if ($relais) {
91                                         $relay[] = $relais[0];
92                                 }
93                         } else {
94                                 $relay[] = $relais[0];
95                         }
96                 }
97
98                 return $relay;
99         }
100
101         /**
102          * @brief repairs a signature that was double encoded
103          *
104          * The function is unused at the moment. It was copied from the old implementation.
105          *
106          * @param string  $signature The signature
107          * @param string  $handle    The handle of the signature owner
108          * @param integer $level     This value is only set inside this function to avoid endless loops
109          *
110          * @return string the repaired signature
111          */
112         private static function repairSignature($signature, $handle = "", $level = 1)
113         {
114                 if ($signature == "") {
115                         return ($signature);
116                 }
117
118                 if (base64_encode(base64_decode(base64_decode($signature))) == base64_decode($signature)) {
119                         $signature = base64_decode($signature);
120                         logger("Repaired double encoded signature from Diaspora/Hubzilla handle ".$handle." - level ".$level, LOGGER_DEBUG);
121
122                         // Do a recursive call to be able to fix even multiple levels
123                         if ($level < 10) {
124                                 $signature = self::repairSignature($signature, $handle, ++$level);
125                         }
126                 }
127
128                 return($signature);
129         }
130
131         /**
132          * @brief verify the envelope and return the verified data
133          *
134          * @param string $envelope The magic envelope
135          *
136          * @return string verified data
137          */
138         private static function verifyMagicEnvelope($envelope)
139         {
140                 $basedom = parse_xml_string($envelope);
141
142                 if (!is_object($basedom)) {
143                         logger("Envelope is no XML file");
144                         return false;
145                 }
146
147                 $children = $basedom->children('http://salmon-protocol.org/ns/magic-env');
148
149                 if (sizeof($children) == 0) {
150                         logger("XML has no children");
151                         return false;
152                 }
153
154                 $handle = "";
155
156                 $data = base64url_decode($children->data);
157                 $type = $children->data->attributes()->type[0];
158
159                 $encoding = $children->encoding;
160
161                 $alg = $children->alg;
162
163                 $sig = base64url_decode($children->sig);
164                 $key_id = $children->sig->attributes()->key_id[0];
165                 if ($key_id != "") {
166                         $handle = base64url_decode($key_id);
167                 }
168
169                 $b64url_data = base64url_encode($data);
170                 $msg = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
171
172                 $signable_data = $msg.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
173
174                 $key = self::key($handle);
175
176                 $verify = rsa_verify($signable_data, $sig, $key);
177                 if (!$verify) {
178                         logger('Message did not verify. Discarding.');
179                         return false;
180                 }
181
182                 return $data;
183         }
184
185         /**
186          * @brief encrypts data via AES
187          *
188          * @param string $key  The AES key
189          * @param string $iv   The IV (is used for CBC encoding)
190          * @param string $data The data that is to be encrypted
191          *
192          * @return string encrypted data
193          */
194         private static function aesEncrypt($key, $iv, $data)
195         {
196                 return openssl_encrypt($data, 'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0"));
197         }
198
199         /**
200          * @brief decrypts data via AES
201          *
202          * @param string $key       The AES key
203          * @param string $iv        The IV (is used for CBC encoding)
204          * @param string $encrypted The encrypted data
205          *
206          * @return string decrypted data
207          */
208         private static function aesDecrypt($key, $iv, $encrypted)
209         {
210                 return openssl_decrypt($encrypted, 'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0"));
211         }
212
213         /**
214          * @brief: Decodes incoming Diaspora message in the new format
215          *
216          * @param array  $importer Array of the importer user
217          * @param string $raw      raw post message
218          *
219          * @return array
220          * 'message' -> decoded Diaspora XML message
221          * 'author' -> author diaspora handle
222          * 'key' -> author public key (converted to pkcs#8)
223          */
224         public static function decodeRaw($importer, $raw)
225         {
226                 $data = json_decode($raw);
227
228                 // Is it a private post? Then decrypt the outer Salmon
229                 if (is_object($data)) {
230                         $encrypted_aes_key_bundle = base64_decode($data->aes_key);
231                         $ciphertext = base64_decode($data->encrypted_magic_envelope);
232
233                         $outer_key_bundle = '';
234                         @openssl_private_decrypt($encrypted_aes_key_bundle, $outer_key_bundle, $importer['prvkey']);
235                         $j_outer_key_bundle = json_decode($outer_key_bundle);
236
237                         if (!is_object($j_outer_key_bundle)) {
238                                 logger('Outer Salmon did not verify. Discarding.');
239                                 http_status_exit(400);
240                         }
241
242                         $outer_iv = base64_decode($j_outer_key_bundle->iv);
243                         $outer_key = base64_decode($j_outer_key_bundle->key);
244
245                         $xml = self::aesDecrypt($outer_key, $outer_iv, $ciphertext);
246                 } else {
247                         $xml = $raw;
248                 }
249
250                 $basedom = parse_xml_string($xml);
251
252                 if (!is_object($basedom)) {
253                         logger('Received data does not seem to be an XML. Discarding. '.$xml);
254                         http_status_exit(400);
255                 }
256
257                 $base = $basedom->children(NAMESPACE_SALMON_ME);
258
259                 // Not sure if this cleaning is needed
260                 $data = str_replace(array(" ", "\t", "\r", "\n"), array("", "", "", ""), $base->data);
261
262                 // Build the signed data
263                 $type = $base->data[0]->attributes()->type[0];
264                 $encoding = $base->encoding;
265                 $alg = $base->alg;
266                 $signed_data = $data.'.'.base64url_encode($type).'.'.base64url_encode($encoding).'.'.base64url_encode($alg);
267
268                 // This is the signature
269                 $signature = base64url_decode($base->sig);
270
271                 // Get the senders' public key
272                 $key_id = $base->sig[0]->attributes()->key_id[0];
273                 $author_addr = base64_decode($key_id);
274                 $key = self::key($author_addr);
275
276                 $verify = rsa_verify($signed_data, $signature, $key);
277                 if (!$verify) {
278                         logger('Message did not verify. Discarding.');
279                         http_status_exit(400);
280                 }
281
282                 return array('message' => (string)base64url_decode($base->data),
283                                 'author' => unxmlify($author_addr),
284                                 'key' => (string)$key);
285         }
286
287         /**
288          * @brief: Decodes incoming Diaspora message in the deprecated format
289          *
290          * @param array  $importer Array of the importer user
291          * @param string $xml      urldecoded Diaspora salmon
292          *
293          * @return array
294          * 'message' -> decoded Diaspora XML message
295          * 'author' -> author diaspora handle
296          * 'key' -> author public key (converted to pkcs#8)
297          */
298         public static function decode($importer, $xml)
299         {
300                 $public = false;
301                 $basedom = parse_xml_string($xml);
302
303                 if (!is_object($basedom)) {
304                         logger("XML is not parseable.");
305                         return false;
306                 }
307                 $children = $basedom->children('https://joindiaspora.com/protocol');
308
309                 if ($children->header) {
310                         $public = true;
311                         $author_link = str_replace('acct:', '', $children->header->author_id);
312                 } else {
313                         // This happens with posts from a relais
314                         if (!$importer) {
315                                 logger("This is no private post in the old format", LOGGER_DEBUG);
316                                 return false;
317                         }
318
319                         $encrypted_header = json_decode(base64_decode($children->encrypted_header));
320
321                         $encrypted_aes_key_bundle = base64_decode($encrypted_header->aes_key);
322                         $ciphertext = base64_decode($encrypted_header->ciphertext);
323
324                         $outer_key_bundle = '';
325                         openssl_private_decrypt($encrypted_aes_key_bundle, $outer_key_bundle, $importer['prvkey']);
326
327                         $j_outer_key_bundle = json_decode($outer_key_bundle);
328
329                         $outer_iv = base64_decode($j_outer_key_bundle->iv);
330                         $outer_key = base64_decode($j_outer_key_bundle->key);
331
332                         $decrypted = self::aesDecrypt($outer_key, $outer_iv, $ciphertext);
333
334                         logger('decrypted: '.$decrypted, LOGGER_DEBUG);
335                         $idom = parse_xml_string($decrypted);
336
337                         $inner_iv = base64_decode($idom->iv);
338                         $inner_aes_key = base64_decode($idom->aes_key);
339
340                         $author_link = str_replace('acct:', '', $idom->author_id);
341                 }
342
343                 $dom = $basedom->children(NAMESPACE_SALMON_ME);
344
345                 // figure out where in the DOM tree our data is hiding
346
347                 if ($dom->provenance->data) {
348                         $base = $dom->provenance;
349                 } elseif ($dom->env->data) {
350                         $base = $dom->env;
351                 } elseif ($dom->data) {
352                         $base = $dom;
353                 }
354
355                 if (!$base) {
356                         logger('unable to locate salmon data in xml');
357                         http_status_exit(400);
358                 }
359
360
361                 // Stash the signature away for now. We have to find their key or it won't be good for anything.
362                 $signature = base64url_decode($base->sig);
363
364                 // unpack the  data
365
366                 // strip whitespace so our data element will return to one big base64 blob
367                 $data = str_replace(array(" ", "\t", "\r", "\n"), array("", "", "", ""), $base->data);
368
369
370                 // stash away some other stuff for later
371
372                 $type = $base->data[0]->attributes()->type[0];
373                 $keyhash = $base->sig[0]->attributes()->keyhash[0];
374                 $encoding = $base->encoding;
375                 $alg = $base->alg;
376
377
378                 $signed_data = $data.'.'.base64url_encode($type).'.'.base64url_encode($encoding).'.'.base64url_encode($alg);
379
380
381                 // decode the data
382                 $data = base64url_decode($data);
383
384
385                 if ($public) {
386                         $inner_decrypted = $data;
387                 } else {
388                         // Decode the encrypted blob
389                         $inner_encrypted = base64_decode($data);
390                         $inner_decrypted = self::aesDecrypt($inner_aes_key, $inner_iv, $inner_encrypted);
391                 }
392
393                 if (!$author_link) {
394                         logger('Could not retrieve author URI.');
395                         http_status_exit(400);
396                 }
397                 // Once we have the author URI, go to the web and try to find their public key
398                 // (first this will look it up locally if it is in the fcontact cache)
399                 // This will also convert diaspora public key from pkcs#1 to pkcs#8
400
401                 logger('Fetching key for '.$author_link);
402                 $key = self::key($author_link);
403
404                 if (!$key) {
405                         logger('Could not retrieve author key.');
406                         http_status_exit(400);
407                 }
408
409                 $verify = rsa_verify($signed_data, $signature, $key);
410
411                 if (!$verify) {
412                         logger('Message did not verify. Discarding.');
413                         http_status_exit(400);
414                 }
415
416                 logger('Message verified.');
417
418                 return array('message' => (string)$inner_decrypted,
419                                 'author' => unxmlify($author_link),
420                                 'key' => (string)$key);
421         }
422
423
424         /**
425          * @brief Dispatches public messages and find the fitting receivers
426          *
427          * @param array $msg The post that will be dispatched
428          *
429          * @return int The message id of the generated message, "true" or "false" if there was an error
430          */
431         public static function dispatchPublic($msg)
432         {
433                 $enabled = intval(Config::get("system", "diaspora_enabled"));
434                 if (!$enabled) {
435                         logger("diaspora is disabled");
436                         return false;
437                 }
438
439                 if (!($postdata = self::validPosting($msg))) {
440                         logger("Invalid posting");
441                         return false;
442                 }
443
444                 $fields = $postdata['fields'];
445
446                 // Is it a an action (comment, like, ...) for our own post?
447                 if (isset($fields->parent_guid) && !$postdata["relayed"]) {
448                         $guid = notags(unxmlify($fields->parent_guid));
449                         $importer = self::importerForGuid($guid);
450                         if (is_array($importer)) {
451                                 logger("delivering to origin: ".$importer["name"]);
452                                 $message_id = self::dispatch($importer, $msg, $fields);
453                                 return $message_id;
454                         }
455                 }
456
457                 // Process item retractions. This has to be done separated from the other stuff,
458                 // since retractions for comments could come even from non followers.
459                 if (!empty($fields) && in_array($fields->getName(), array('retraction'))) {
460                         $target = notags(unxmlify($fields->target_type));
461                         if (in_array($target, array("Comment", "Like", "Post", "Reshare", "StatusMessage"))) {
462                                 logger('processing retraction for '.$target, LOGGER_DEBUG);
463                                 $importer = array("uid" => 0, "page-flags" => PAGE_FREELOVE);
464                                 $message_id = self::dispatch($importer, $msg, $fields);
465                                 return $message_id;
466                         }
467                 }
468
469                 // Now distribute it to the followers
470                 $r = q(
471                         "SELECT `user`.* FROM `user` WHERE `user`.`uid` IN
472                         (SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s')
473                         AND NOT `account_expired` AND NOT `account_removed`",
474                         dbesc(NETWORK_DIASPORA),
475                         dbesc($msg["author"])
476                 );
477
478                 if (DBM::is_result($r)) {
479                         foreach ($r as $rr) {
480                                 logger("delivering to: ".$rr["username"]);
481                                 self::dispatch($rr, $msg, $fields);
482                         }
483                 } elseif (!Config::get('system', 'relay_subscribe', false)) {
484                         logger("Unwanted message from ".$msg["author"]." send by ".$_SERVER["REMOTE_ADDR"]." with ".$_SERVER["HTTP_USER_AGENT"].": ".print_r($msg, true), LOGGER_DEBUG);
485                 } else {
486                         // Use a dummy importer to import the data for the public copy
487                         $importer = array("uid" => 0, "page-flags" => PAGE_FREELOVE);
488                         $message_id = self::dispatch($importer, $msg, $fields);
489                 }
490
491                 return $message_id;
492         }
493
494         /**
495          * @brief Dispatches the different message types to the different functions
496          *
497          * @param array  $importer Array of the importer user
498          * @param array  $msg      The post that will be dispatched
499          * @param object $fields   SimpleXML object that contains the message
500          *
501          * @return int The message id of the generated message, "true" or "false" if there was an error
502          */
503         public static function dispatch($importer, $msg, $fields = null)
504         {
505                 // The sender is the handle of the contact that sent the message.
506                 // This will often be different with relayed messages (for example "like" and "comment")
507                 $sender = $msg["author"];
508
509                 // This is only needed for private postings since this is already done for public ones before
510                 if (is_null($fields)) {
511                         if (!($postdata = self::validPosting($msg))) {
512                                 logger("Invalid posting");
513                                 return false;
514                         }
515                         $fields = $postdata['fields'];
516                 }
517
518                 $type = $fields->getName();
519
520                 logger("Received message type ".$type." from ".$sender." for user ".$importer["uid"], LOGGER_DEBUG);
521
522                 switch ($type) {
523                         case "account_migration":
524                                 return self::receiveAccountMigration($importer, $fields);
525
526                         case "account_deletion":
527                                 return self::receiveAccountDeletion($importer, $fields);
528
529                         case "comment":
530                                 return self::receiveComment($importer, $sender, $fields, $msg["message"]);
531
532                         case "contact":
533                                 return self::receiveContactRequest($importer, $fields);
534
535                         case "conversation":
536                                 return self::receiveConversation($importer, $msg, $fields);
537
538                         case "like":
539                                 return self::receiveLike($importer, $sender, $fields);
540
541                         case "message":
542                                 return self::receiveMessage($importer, $fields);
543
544                         case "participation": // Not implemented
545                                 return self::receiveParticipation($importer, $fields);
546
547                         case "photo": // Not implemented
548                                 return self::receivePhoto($importer, $fields);
549
550                         case "poll_participation": // Not implemented
551                                 return self::receivePollParticipation($importer, $fields);
552
553                         case "profile":
554                                 return self::receiveProfile($importer, $fields);
555
556                         case "reshare":
557                                 return self::receiveReshare($importer, $fields, $msg["message"]);
558
559                         case "retraction":
560                                 return self::receiveRetraction($importer, $sender, $fields);
561
562                         case "status_message":
563                                 return self::receiveStatusMessage($importer, $fields, $msg["message"]);
564
565                         default:
566                                 logger("Unknown message type ".$type);
567                                 return false;
568                 }
569
570                 return true;
571         }
572
573         /**
574          * @brief Checks if a posting is valid and fetches the data fields.
575          *
576          * This function does not only check the signature.
577          * It also does the conversion between the old and the new diaspora format.
578          *
579          * @param array $msg Array with the XML, the sender handle and the sender signature
580          *
581          * @return bool|array If the posting is valid then an array with an SimpleXML object is returned
582          */
583         private static function validPosting($msg)
584         {
585                 $data = parse_xml_string($msg["message"]);
586
587                 if (!is_object($data)) {
588                         logger("No valid XML ".$msg["message"], LOGGER_DEBUG);
589                         return false;
590                 }
591
592                 $first_child = $data->getName();
593
594                 // Is this the new or the old version?
595                 if ($data->getName() == "XML") {
596                         $oldXML = true;
597                         foreach ($data->post->children() as $child) {
598                                 $element = $child;
599                         }
600                 } else {
601                         $oldXML = false;
602                         $element = $data;
603                 }
604
605                 $type = $element->getName();
606                 $orig_type = $type;
607
608                 logger("Got message type ".$type.": ".$msg["message"], LOGGER_DATA);
609
610                 // All retractions are handled identically from now on.
611                 // In the new version there will only be "retraction".
612                 if (in_array($type, array("signed_retraction", "relayable_retraction")))
613                         $type = "retraction";
614
615                 if ($type == "request") {
616                         $type = "contact";
617                 }
618
619                 $fields = new SimpleXMLElement("<".$type."/>");
620
621                 $signed_data = "";
622
623                 foreach ($element->children() as $fieldname => $entry) {
624                         if ($oldXML) {
625                                 // Translation for the old XML structure
626                                 if ($fieldname == "diaspora_handle") {
627                                         $fieldname = "author";
628                                 }
629                                 if ($fieldname == "participant_handles") {
630                                         $fieldname = "participants";
631                                 }
632                                 if (in_array($type, array("like", "participation"))) {
633                                         if ($fieldname == "target_type") {
634                                                 $fieldname = "parent_type";
635                                         }
636                                 }
637                                 if ($fieldname == "sender_handle") {
638                                         $fieldname = "author";
639                                 }
640                                 if ($fieldname == "recipient_handle") {
641                                         $fieldname = "recipient";
642                                 }
643                                 if ($fieldname == "root_diaspora_id") {
644                                         $fieldname = "root_author";
645                                 }
646                                 if ($type == "status_message") {
647                                         if ($fieldname == "raw_message") {
648                                                 $fieldname = "text";
649                                         }
650                                 }
651                                 if ($type == "retraction") {
652                                         if ($fieldname == "post_guid") {
653                                                 $fieldname = "target_guid";
654                                         }
655                                         if ($fieldname == "type") {
656                                                 $fieldname = "target_type";
657                                         }
658                                 }
659                         }
660
661                         if (($fieldname == "author_signature") && ($entry != "")) {
662                                 $author_signature = base64_decode($entry);
663                         } elseif (($fieldname == "parent_author_signature") && ($entry != "")) {
664                                 $parent_author_signature = base64_decode($entry);
665                         } elseif (!in_array($fieldname, array("author_signature", "parent_author_signature", "target_author_signature"))) {
666                                 if ($signed_data != "") {
667                                         $signed_data .= ";";
668                                 }
669
670                                 $signed_data .= $entry;
671                         }
672                         if (!in_array($fieldname, array("parent_author_signature", "target_author_signature"))
673                                 || ($orig_type == "relayable_retraction")
674                         ) {
675                                 XML::copy($entry, $fields, $fieldname);
676                         }
677                 }
678
679                 // This is something that shouldn't happen at all.
680                 if (in_array($type, array("status_message", "reshare", "profile"))) {
681                         if ($msg["author"] != $fields->author) {
682                                 logger("Message handle is not the same as envelope sender. Quitting this message.");
683                                 return false;
684                         }
685                 }
686
687                 // Only some message types have signatures. So we quit here for the other types.
688                 if (!in_array($type, array("comment", "like"))) {
689                         return array("fields" => $fields, "relayed" => false);
690                 }
691                 // No author_signature? This is a must, so we quit.
692                 if (!isset($author_signature)) {
693                         logger("No author signature for type ".$type." - Message: ".$msg["message"], LOGGER_DEBUG);
694                         return false;
695                 }
696
697                 if (isset($parent_author_signature)) {
698                         $relayed = true;
699
700                         $key = self::key($msg["author"]);
701
702                         if (!rsa_verify($signed_data, $parent_author_signature, $key, "sha256")) {
703                                 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);
704                                 return false;
705                         }
706                 } else {
707                         $relayed = false;
708                 }
709
710                 $key = self::key($fields->author);
711
712                 if (!rsa_verify($signed_data, $author_signature, $key, "sha256")) {
713                         logger("No valid author signature for author ".$fields->author. " in type ".$type." - signed data: ".$signed_data." - Message: ".$msg["message"]." - Signature ".$author_signature, LOGGER_DEBUG);
714                         return false;
715                 } else {
716                         return array("fields" => $fields, "relayed" => $relayed);
717                 }
718         }
719
720         /**
721          * @brief Fetches the public key for a given handle
722          *
723          * @param string $handle The handle
724          *
725          * @return string The public key
726          */
727         private static function key($handle)
728         {
729                 $handle = strval($handle);
730
731                 logger("Fetching diaspora key for: ".$handle);
732
733                 $r = self::personByHandle($handle);
734                 if ($r) {
735                         return $r["pubkey"];
736                 }
737
738                 return "";
739         }
740
741         /**
742          * @brief Fetches data for a given handle
743          *
744          * @param string $handle The handle
745          *
746          * @return array the queried data
747          */
748         public static function personByHandle($handle)
749         {
750                 $r = q(
751                         "SELECT * FROM `fcontact` WHERE `network` = '%s' AND `addr` = '%s' LIMIT 1",
752                         dbesc(NETWORK_DIASPORA),
753                         dbesc($handle)
754                 );
755                 if ($r) {
756                         $person = $r[0];
757                         logger("In cache " . print_r($r, true), LOGGER_DEBUG);
758
759                         // update record occasionally so it doesn't get stale
760                         $d = strtotime($person["updated"]." +00:00");
761                         if ($d < strtotime("now - 14 days")) {
762                                 $update = true;
763                         }
764
765                         if ($person["guid"] == "") {
766                                 $update = true;
767                         }
768                 }
769
770                 if (!$person || $update) {
771                         logger("create or refresh", LOGGER_DEBUG);
772                         $r = Probe::uri($handle, NETWORK_DIASPORA);
773
774                         // Note that Friendica contacts will return a "Diaspora person"
775                         // if Diaspora connectivity is enabled on their server
776                         if ($r && ($r["network"] === NETWORK_DIASPORA)) {
777                                 self::addFContact($r, $update);
778                                 $person = $r;
779                         }
780                 }
781                 return $person;
782         }
783
784         /**
785          * @brief Updates the fcontact table
786          *
787          * @param array $arr    The fcontact data
788          * @param bool  $update Update or insert?
789          *
790          * @return string The id of the fcontact entry
791          */
792         private static function addFContact($arr, $update = false)
793         {
794                 if ($update) {
795                         $r = q(
796                                 "UPDATE `fcontact` SET
797                                         `name` = '%s',
798                                         `photo` = '%s',
799                                         `request` = '%s',
800                                         `nick` = '%s',
801                                         `addr` = '%s',
802                                         `guid` = '%s',
803                                         `batch` = '%s',
804                                         `notify` = '%s',
805                                         `poll` = '%s',
806                                         `confirm` = '%s',
807                                         `alias` = '%s',
808                                         `pubkey` = '%s',
809                                         `updated` = '%s'
810                                 WHERE `url` = '%s' AND `network` = '%s'",
811                                 dbesc($arr["name"]),
812                                 dbesc($arr["photo"]),
813                                 dbesc($arr["request"]),
814                                 dbesc($arr["nick"]),
815                                 dbesc(strtolower($arr["addr"])),
816                                 dbesc($arr["guid"]),
817                                 dbesc($arr["batch"]),
818                                 dbesc($arr["notify"]),
819                                 dbesc($arr["poll"]),
820                                 dbesc($arr["confirm"]),
821                                 dbesc($arr["alias"]),
822                                 dbesc($arr["pubkey"]),
823                                 dbesc(datetime_convert()),
824                                 dbesc($arr["url"]),
825                                 dbesc($arr["network"])
826                         );
827                 } else {
828                         $r = q(
829                                 "INSERT INTO `fcontact` (`url`,`name`,`photo`,`request`,`nick`,`addr`, `guid`,
830                                         `batch`, `notify`,`poll`,`confirm`,`network`,`alias`,`pubkey`,`updated`)
831                                 VALUES ('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
832                                 dbesc($arr["url"]),
833                                 dbesc($arr["name"]),
834                                 dbesc($arr["photo"]),
835                                 dbesc($arr["request"]),
836                                 dbesc($arr["nick"]),
837                                 dbesc($arr["addr"]),
838                                 dbesc($arr["guid"]),
839                                 dbesc($arr["batch"]),
840                                 dbesc($arr["notify"]),
841                                 dbesc($arr["poll"]),
842                                 dbesc($arr["confirm"]),
843                                 dbesc($arr["network"]),
844                                 dbesc($arr["alias"]),
845                                 dbesc($arr["pubkey"]),
846                                 dbesc(datetime_convert())
847                         );
848                 }
849
850                 return $r;
851         }
852
853         /**
854          * @brief get a handle (user@domain.tld) from a given contact id or gcontact id
855          *
856          * @param int $contact_id  The id in the contact table
857          * @param int $gcontact_id The id in the gcontact table
858          *
859          * @return string the handle
860          */
861         public static function handleFromContact($contact_id, $gcontact_id = 0)
862         {
863                 $handle = false;
864
865                 logger("contact id is ".$contact_id." - gcontact id is ".$gcontact_id, LOGGER_DEBUG);
866
867                 if ($gcontact_id != 0) {
868                         $r = q(
869                                 "SELECT `addr` FROM `gcontact` WHERE `id` = %d AND `addr` != ''",
870                                 intval($gcontact_id)
871                         );
872
873                         if (DBM::is_result($r)) {
874                                 return strtolower($r[0]["addr"]);
875                         }
876                 }
877
878                 $r = q(
879                         "SELECT `network`, `addr`, `self`, `url`, `nick` FROM `contact` WHERE `id` = %d",
880                         intval($contact_id)
881                 );
882
883                 if (DBM::is_result($r)) {
884                         $contact = $r[0];
885
886                         logger("contact 'self' = ".$contact['self']." 'url' = ".$contact['url'], LOGGER_DEBUG);
887
888                         if ($contact['addr'] != "") {
889                                 $handle = $contact['addr'];
890                         } else {
891                                 $baseurl_start = strpos($contact['url'], '://') + 3;
892                                 // allows installations in a subdirectory--not sure how Diaspora will handle
893                                 $baseurl_length = strpos($contact['url'], '/profile') - $baseurl_start;
894                                 $baseurl = substr($contact['url'], $baseurl_start, $baseurl_length);
895                                 $handle = $contact['nick'].'@'.$baseurl;
896                         }
897                 }
898
899                 return strtolower($handle);
900         }
901
902         /**
903          * @brief get a url (scheme://domain.tld/u/user) from a given Diaspora*
904          * fcontact guid
905          *
906          * @param mixed $fcontact_guid Hexadecimal string guid
907          *
908          * @return string the contact url or null
909          */
910         public static function urlFromContactGuid($fcontact_guid)
911         {
912                 logger("fcontact guid is ".$fcontact_guid, LOGGER_DEBUG);
913
914                 $r = q(
915                         "SELECT `url` FROM `fcontact` WHERE `url` != '' AND `network` = '%s' AND `guid` = '%s'",
916                         dbesc(NETWORK_DIASPORA),
917                         dbesc($fcontact_guid)
918                 );
919
920                 if (DBM::is_result($r)) {
921                         return $r[0]['url'];
922                 }
923
924                 return null;
925         }
926
927         /**
928          * @brief Get a contact id for a given handle
929          *
930          * @todo Move to Friendica\Model\Contact
931          *
932          * @param int    $uid    The user id
933          * @param string $handle The handle in the format user@domain.tld
934          *
935          * @return int Contact id
936          */
937         private static function contactByHandle($uid, $handle)
938         {
939                 // First do a direct search on the contact table
940                 $r = q(
941                         "SELECT * FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
942                         intval($uid),
943                         dbesc($handle)
944                 );
945
946                 if (DBM::is_result($r)) {
947                         return $r[0];
948                 } else {
949                         /*
950                          * We haven't found it?
951                          * We use another function for it that will possibly create a contact entry.
952                          */
953                         $cid = Contact::getIdForURL($handle, $uid);
954
955                         if ($cid > 0) {
956                                 /// @TODO Contact retrieval should be encapsulated into an "entity" class like `Contact`
957                                 $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1", intval($cid));
958
959                                 if (DBM::is_result($r)) {
960                                         return $r[0];
961                                 }
962                         }
963                 }
964
965                 $handle_parts = explode("@", $handle);
966                 $nurl_sql = "%%://".$handle_parts[1]."%%/profile/".$handle_parts[0];
967                 $r = q(
968                         "SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` LIKE '%s' LIMIT 1",
969                         dbesc(NETWORK_DFRN),
970                         intval($uid),
971                         dbesc($nurl_sql)
972                 );
973                 if (DBM::is_result($r)) {
974                         return $r[0];
975                 }
976
977                 logger("Haven't found contact for user ".$uid." and handle ".$handle, LOGGER_DEBUG);
978                 return false;
979         }
980
981         /**
982          * @brief Check if posting is allowed for this contact
983          *
984          * @param array $importer   Array of the importer user
985          * @param array $contact    The contact that is checked
986          * @param bool  $is_comment Is the check for a comment?
987          *
988          * @return bool is the contact allowed to post?
989          */
990         private static function postAllow($importer, $contact, $is_comment = false)
991         {
992                 /*
993                  * Perhaps we were already sharing with this person. Now they're sharing with us.
994                  * That makes us friends.
995                  * Normally this should have handled by getting a request - but this could get lost
996                  */
997                 // It is deactivated by now, due to side effects. See issue https://github.com/friendica/friendica/pull/4033
998                 // It is not removed by now. Possibly the code is needed?
999                 //if (!$is_comment && $contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
1000                 //      dba::update(
1001                 //              'contact',
1002                 //              array('rel' => CONTACT_IS_FRIEND, 'writable' => true),
1003                 //              array('id' => $contact["id"], 'uid' => $contact["uid"])
1004                 //      );
1005                 //
1006                 //      $contact["rel"] = CONTACT_IS_FRIEND;
1007                 //      logger("defining user ".$contact["nick"]." as friend");
1008                 //}
1009
1010                 // We don't seem to like that person
1011                 if ($contact["blocked"] || $contact["readonly"] || $contact["archive"]) {
1012                         // Maybe blocked, don't accept.
1013                         return false;
1014                         // We are following this person?
1015                 } elseif (($contact["rel"] == CONTACT_IS_SHARING) || ($contact["rel"] == CONTACT_IS_FRIEND)) {
1016                         // Yes, then it is fine.
1017                         return true;
1018                         // Is it a post to a community?
1019                 } elseif (($contact["rel"] == CONTACT_IS_FOLLOWER) && ($importer["page-flags"] == PAGE_COMMUNITY)) {
1020                         // That's good
1021                         return true;
1022                         // Is the message a global user or a comment?
1023                 } elseif (($importer["uid"] == 0) || $is_comment) {
1024                         // Messages for the global users and comments are always accepted
1025                         return true;
1026                 }
1027
1028                 return false;
1029         }
1030
1031         /**
1032          * @brief Fetches the contact id for a handle and checks if posting is allowed
1033          *
1034          * @param array  $importer   Array of the importer user
1035          * @param string $handle     The checked handle in the format user@domain.tld
1036          * @param bool   $is_comment Is the check for a comment?
1037          *
1038          * @return array The contact data
1039          */
1040         private static function allowedContactByHandle($importer, $handle, $is_comment = false)
1041         {
1042                 $contact = self::contactByHandle($importer["uid"], $handle);
1043                 if (!$contact) {
1044                         logger("A Contact for handle ".$handle." and user ".$importer["uid"]." was not found");
1045                         // If a contact isn't found, we accept it anyway if it is a comment
1046                         if ($is_comment) {
1047                                 return $importer;
1048                         } else {
1049                                 return false;
1050                         }
1051                 }
1052
1053                 if (!self::postAllow($importer, $contact, $is_comment)) {
1054                         logger("The handle: ".$handle." is not allowed to post to user ".$importer["uid"]);
1055                         return false;
1056                 }
1057                 return $contact;
1058         }
1059
1060         /**
1061          * @brief Does the message already exists on the system?
1062          *
1063          * @param int    $uid  The user id
1064          * @param string $guid The guid of the message
1065          *
1066          * @return int|bool message id if the message already was stored into the system - or false.
1067          */
1068         private static function messageExists($uid, $guid)
1069         {
1070                 $r = q(
1071                         "SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1072                         intval($uid),
1073                         dbesc($guid)
1074                 );
1075
1076                 if (DBM::is_result($r)) {
1077                         logger("message ".$guid." already exists for user ".$uid);
1078                         return $r[0]["id"];
1079                 }
1080
1081                 return false;
1082         }
1083
1084         /**
1085          * @brief Checks for links to posts in a message
1086          *
1087          * @param array $item The item array
1088          * @return void
1089          */
1090         private static function fetchGuid($item)
1091         {
1092                 $expression = "=diaspora://.*?/post/([0-9A-Za-z\-_@.:]{15,254}[0-9A-Za-z])=ism";
1093                 preg_replace_callback(
1094                         $expression,
1095                         function ($match) use ($item) {
1096                                 self::fetchGuidSub($match, $item);
1097                         },
1098                         $item["body"]
1099                 );
1100
1101                 preg_replace_callback(
1102                         "&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
1103                         function ($match) use ($item) {
1104                                 self::fetchGuidSub($match, $item);
1105                         },
1106                         $item["body"]
1107                 );
1108         }
1109
1110         /**
1111          * @brief Checks for relative /people/* links in an item body to match local
1112          * contacts or prepends the remote host taken from the author link.
1113          *
1114          * @param string $body        The item body to replace links from
1115          * @param string $author_link The author link for missing local contact fallback
1116          *
1117          * @return string the replaced string
1118          */
1119         public static function replacePeopleGuid($body, $author_link)
1120         {
1121                 $return = preg_replace_callback(
1122                         "&\[url=/people/([^\[\]]*)\](.*)\[\/url\]&Usi",
1123                         function ($match) use ($author_link) {
1124                                 // $match
1125                                 // 0 => '[url=/people/0123456789abcdef]Foo Bar[/url]'
1126                                 // 1 => '0123456789abcdef'
1127                                 // 2 => 'Foo Bar'
1128                                 $handle = self::urlFromContactGuid($match[1]);
1129
1130                                 if ($handle) {
1131                                         $return = '@[url='.$handle.']'.$match[2].'[/url]';
1132                                 } else {
1133                                         // No local match, restoring absolute remote URL from author scheme and host
1134                                         $author_url = parse_url($author_link);
1135                                         $return = '[url='.$author_url['scheme'].'://'.$author_url['host'].'/people/'.$match[1].']'.$match[2].'[/url]';
1136                                 }
1137
1138                                 return $return;
1139                         },
1140                         $body
1141                 );
1142
1143                 return $return;
1144         }
1145
1146         /**
1147          * @brief sub function of "fetchGuid" which checks for links in messages
1148          *
1149          * @param array $match array containing a link that has to be checked for a message link
1150          * @param array $item  The item array
1151          * @return void
1152          */
1153         private static function fetchGuidSub($match, $item)
1154         {
1155                 if (!self::storeByGuid($match[1], $item["author-link"])) {
1156                         self::storeByGuid($match[1], $item["owner-link"]);
1157                 }
1158         }
1159
1160         /**
1161          * @brief Fetches an item with a given guid from a given server
1162          *
1163          * @param string $guid   the message guid
1164          * @param string $server The server address
1165          * @param int    $uid    The user id of the user
1166          *
1167          * @return int the message id of the stored message or false
1168          */
1169         private static function storeByGuid($guid, $server, $uid = 0)
1170         {
1171                 $serverparts = parse_url($server);
1172                 $server = $serverparts["scheme"]."://".$serverparts["host"];
1173
1174                 logger("Trying to fetch item ".$guid." from ".$server, LOGGER_DEBUG);
1175
1176                 $msg = self::message($guid, $server);
1177
1178                 if (!$msg) {
1179                         return false;
1180                 }
1181
1182                 logger("Successfully fetched item ".$guid." from ".$server, LOGGER_DEBUG);
1183
1184                 // Now call the dispatcher
1185                 return self::dispatchPublic($msg);
1186         }
1187
1188         /**
1189          * @brief Fetches a message from a server
1190          *
1191          * @param string $guid   message guid
1192          * @param string $server The url of the server
1193          * @param int    $level  Endless loop prevention
1194          *
1195          * @return array
1196          *      'message' => The message XML
1197          *      'author' => The author handle
1198          *      'key' => The public key of the author
1199          */
1200         private static function message($guid, $server, $level = 0)
1201         {
1202                 if ($level > 5) {
1203                         return false;
1204                 }
1205
1206                 // This will work for new Diaspora servers and Friendica servers from 3.5
1207                 $source_url = $server."/fetch/post/".urlencode($guid);
1208
1209                 logger("Fetch post from ".$source_url, LOGGER_DEBUG);
1210
1211                 $envelope = fetch_url($source_url);
1212                 if ($envelope) {
1213                         logger("Envelope was fetched.", LOGGER_DEBUG);
1214                         $x = self::verifyMagicEnvelope($envelope);
1215                         if (!$x) {
1216                                 logger("Envelope could not be verified.", LOGGER_DEBUG);
1217                         } else {
1218                                 logger("Envelope was verified.", LOGGER_DEBUG);
1219                         }
1220                 } else {
1221                         $x = false;
1222                 }
1223
1224                 // This will work for older Diaspora and Friendica servers
1225                 if (!$x) {
1226                         $source_url = $server."/p/".urlencode($guid).".xml";
1227                         logger("Fetch post from ".$source_url, LOGGER_DEBUG);
1228
1229                         $x = fetch_url($source_url);
1230                         if (!$x) {
1231                                 return false;
1232                         }
1233                 }
1234
1235                 $source_xml = parse_xml_string($x);
1236
1237                 if (!is_object($source_xml)) {
1238                         return false;
1239                 }
1240
1241                 if ($source_xml->post->reshare) {
1242                         // Reshare of a reshare - old Diaspora version
1243                         logger("Message is a reshare", LOGGER_DEBUG);
1244                         return self::message($source_xml->post->reshare->root_guid, $server, ++$level);
1245                 } elseif ($source_xml->getName() == "reshare") {
1246                         // Reshare of a reshare - new Diaspora version
1247                         logger("Message is a new reshare", LOGGER_DEBUG);
1248                         return self::message($source_xml->root_guid, $server, ++$level);
1249                 }
1250
1251                 $author = "";
1252
1253                 // Fetch the author - for the old and the new Diaspora version
1254                 if ($source_xml->post->status_message->diaspora_handle) {
1255                         $author = (string)$source_xml->post->status_message->diaspora_handle;
1256                 } elseif ($source_xml->author && ($source_xml->getName() == "status_message")) {
1257                         $author = (string)$source_xml->author;
1258                 }
1259
1260                 // If this isn't a "status_message" then quit
1261                 if (!$author) {
1262                         logger("Message doesn't seem to be a status message", LOGGER_DEBUG);
1263                         return false;
1264                 }
1265
1266                 $msg = array("message" => $x, "author" => $author);
1267
1268                 $msg["key"] = self::key($msg["author"]);
1269
1270                 return $msg;
1271         }
1272
1273         /**
1274          * @brief Fetches the item record of a given guid
1275          *
1276          * @param int    $uid     The user id
1277          * @param string $guid    message guid
1278          * @param string $author  The handle of the item
1279          * @param array  $contact The contact of the item owner
1280          *
1281          * @return array the item record
1282          */
1283         private static function parentItem($uid, $guid, $author, $contact)
1284         {
1285                 $r = q(
1286                         "SELECT `id`, `parent`, `body`, `wall`, `uri`, `guid`, `private`, `origin`,
1287                                 `author-name`, `author-link`, `author-avatar`,
1288                                 `owner-name`, `owner-link`, `owner-avatar`
1289                         FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1290                         intval($uid),
1291                         dbesc($guid)
1292                 );
1293
1294                 if (!$r) {
1295                         $result = self::storeByGuid($guid, $contact["url"], $uid);
1296
1297                         if (!$result) {
1298                                 $person = self::personByHandle($author);
1299                                 $result = self::storeByGuid($guid, $person["url"], $uid);
1300                         }
1301
1302                         if ($result) {
1303                                 logger("Fetched missing item ".$guid." - result: ".$result, LOGGER_DEBUG);
1304
1305                                 $r = q(
1306                                         "SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
1307                                                 `author-name`, `author-link`, `author-avatar`,
1308                                                 `owner-name`, `owner-link`, `owner-avatar`
1309                                         FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1310                                         intval($uid),
1311                                         dbesc($guid)
1312                                 );
1313                         }
1314                 }
1315
1316                 if (!$r) {
1317                         logger("parent item not found: parent: ".$guid." - user: ".$uid);
1318                         return false;
1319                 } else {
1320                         logger("parent item found: parent: ".$guid." - user: ".$uid);
1321                         return $r[0];
1322                 }
1323         }
1324
1325         /**
1326          * @brief returns contact details
1327          *
1328          * @param array $contact The default contact if the person isn't found
1329          * @param array $person  The record of the person
1330          * @param int   $uid     The user id
1331          *
1332          * @return array
1333          *      'cid' => contact id
1334          *      'network' => network type
1335          */
1336         private static function authorContactByUrl($contact, $person, $uid)
1337         {
1338                 $r = q(
1339                         "SELECT `id`, `network`, `url` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
1340                         dbesc(normalise_link($person["url"])),
1341                         intval($uid)
1342                 );
1343                 if ($r) {
1344                         $cid = $r[0]["id"];
1345                         $network = $r[0]["network"];
1346                 } else {
1347                         $cid = $contact["id"];
1348                         $network = NETWORK_DIASPORA;
1349                 }
1350
1351                 return array("cid" => $cid, "network" => $network);
1352         }
1353
1354         /**
1355          * @brief Is the profile a hubzilla profile?
1356          *
1357          * @param string $url The profile link
1358          *
1359          * @return bool is it a hubzilla server?
1360          */
1361         public static function isRedmatrix($url)
1362         {
1363                 return(strstr($url, "/channel/"));
1364         }
1365
1366         /**
1367          * @brief Generate a post link with a given handle and message guid
1368          *
1369          * @param string $addr        The user handle
1370          * @param string $guid        message guid
1371          * @param string $parent_guid optional parent guid
1372          *
1373          * @return string the post link
1374          */
1375         private static function plink($addr, $guid, $parent_guid = '')
1376         {
1377                 $r = q("SELECT `url`, `nick`, `network` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", dbesc($addr));
1378
1379                 // Fallback
1380                 if (!DBM::is_result($r)) {
1381                         if ($parent_guid != '') {
1382                                 return "https://".substr($addr, strpos($addr, "@") + 1) . "/posts/" . $parent_guid . "#" . $guid;
1383                         } else {
1384                                 return "https://".substr($addr, strpos($addr, "@") + 1) . "/posts/" . $guid;
1385                         }
1386                 }
1387
1388                 // Friendica contacts are often detected as Diaspora contacts in the "fcontact" table
1389                 // So we try another way as well.
1390                 $s = q("SELECT `network` FROM `gcontact` WHERE `nurl`='%s' LIMIT 1", dbesc(normalise_link($r[0]["url"])));
1391                 if (DBM::is_result($s)) {
1392                         $r[0]["network"] = $s[0]["network"];
1393                 }
1394
1395                 if ($r[0]["network"] == NETWORK_DFRN) {
1396                         return str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/");
1397                 }
1398
1399                 if (self::isRedmatrix($r[0]["url"])) {
1400                         return $r[0]["url"]."/?f=&mid=".$guid;
1401                 }
1402
1403                 if ($parent_guid != '') {
1404                         return "https://".substr($addr, strpos($addr, "@") + 1) . "/posts/" . $parent_guid . "#" . $guid;
1405                 } else {
1406                         return "https://".substr($addr, strpos($addr, "@") + 1) . "/posts/" . $guid;
1407                 }
1408         }
1409
1410         /**
1411          * @brief Receives account migration
1412          *
1413          * @param array  $importer Array of the importer user
1414          * @param object $data     The message object
1415          *
1416          * @return bool Success
1417          */
1418         private static function receiveAccountMigration($importer, $data)
1419         {
1420                 $old_handle = notags(unxmlify($data->author));
1421                 $new_handle = notags(unxmlify($data->profile->author));
1422                 $signature = notags(unxmlify($data->signature));
1423
1424                 $contact = self::contactByHandle($importer["uid"], $old_handle);
1425                 if (!$contact) {
1426                         logger("cannot find contact for sender: ".$old_handle." and user ".$importer["uid"]);
1427                         return false;
1428                 }
1429
1430                 logger("Got migration for ".$old_handle.", to ".$new_handle." with user ".$importer["uid"]);
1431
1432                 // Check signature
1433                 $signed_text = 'AccountMigration:'.$old_handle.':'.$new_handle;
1434                 $key = self::key($old_handle);
1435                 if (!rsa_verify($signed_text, $signature, $key, "sha256")) {
1436                         logger('No valid signature for migration.');
1437                         return false;
1438                 }
1439
1440                 // Update the profile
1441                 self::receiveProfile($importer, $data->profile);
1442
1443                 // change the technical stuff in contact and gcontact
1444                 $data = Probe::uri($new_handle);
1445                 if ($data['network'] == NETWORK_PHANTOM) {
1446                         logger('Account for '.$new_handle." couldn't be probed.");
1447                         return false;
1448                 }
1449
1450                 $fields = array('url' => $data['url'], 'nurl' => normalise_link($data['url']),
1451                                 'name' => $data['name'], 'nick' => $data['nick'],
1452                                 'addr' => $data['addr'], 'batch' => $data['batch'],
1453                                 'notify' => $data['notify'], 'poll' => $data['poll'],
1454                                 'network' => $data['network']);
1455
1456                 dba::update('contact', $fields, array('addr' => $old_handle));
1457
1458                 $fields = array('url' => $data['url'], 'nurl' => normalise_link($data['url']),
1459                                 'name' => $data['name'], 'nick' => $data['nick'],
1460                                 'addr' => $data['addr'], 'connect' => $data['addr'],
1461                                 'notify' => $data['notify'], 'photo' => $data['photo'],
1462                                 'server_url' => $data['baseurl'], 'network' => $data['network']);
1463
1464                 dba::update('gcontact', $fields, array('addr' => $old_handle));
1465
1466                 logger('Contacts are updated.');
1467
1468                 // update items
1469                 /// @todo This is an extreme performance killer
1470                 $fields = array(
1471                         'owner-link' => array($contact["url"], $data["url"]),
1472                         'author-link' => array($contact["url"], $data["url"]),
1473                 );
1474                 foreach ($fields as $n => $f) {
1475                         $r = q(
1476                                 "SELECT `id` FROM `item` WHERE `%s` = '%s' AND `uid` = %d LIMIT 1",
1477                                 $n,
1478                                 dbesc($f[0]),
1479                                 intval($importer["uid"])
1480                         );
1481
1482                         if (DBM::is_result($r)) {
1483                                 $x = q(
1484                                         "UPDATE `item` SET `%s` = '%s' WHERE `%s` = '%s' AND `uid` = %d",
1485                                         $n,
1486                                         dbesc($f[1]),
1487                                         $n,
1488                                         dbesc($f[0]),
1489                                         intval($importer["uid"])
1490                                 );
1491
1492                                 if ($x === false) {
1493                                         return false;
1494                                 }
1495                         }
1496                 }
1497
1498                 logger('Items are updated.');
1499
1500                 return true;
1501         }
1502
1503         /**
1504          * @brief Processes an account deletion
1505          *
1506          * @param array  $importer Array of the importer user
1507          * @param object $data     The message object
1508          *
1509          * @return bool Success
1510          */
1511         private static function receiveAccountDeletion($importer, $data)
1512         {
1513                 /// @todo Account deletion should remove the contact from the global contacts as well
1514
1515                 $author = notags(unxmlify($data->author));
1516
1517                 $contact = self::contactByHandle($importer["uid"], $author);
1518                 if (!$contact) {
1519                         logger("cannot find contact for author: ".$author);
1520                         return false;
1521                 }
1522
1523                 // We now remove the contact
1524                 Contact::remove($contact["id"]);
1525                 return true;
1526         }
1527
1528         /**
1529          * @brief Fetch the uri from our database if we already have this item (maybe from ourselves)
1530          *
1531          * @param string  $author    Author handle
1532          * @param string  $guid      Message guid
1533          * @param boolean $onlyfound Only return uri when found in the database
1534          *
1535          * @return string The constructed uri or the one from our database
1536          */
1537         private static function getUriFromGuid($author, $guid, $onlyfound = false)
1538         {
1539                 $r = q("SELECT `uri` FROM `item` WHERE `guid` = '%s' LIMIT 1", dbesc($guid));
1540                 if (DBM::is_result($r)) {
1541                         return $r[0]["uri"];
1542                 } elseif (!$onlyfound) {
1543                         return $author.":".$guid;
1544                 }
1545
1546                 return "";
1547         }
1548
1549         /**
1550          * @brief Fetch the guid from our database with a given uri
1551          *
1552          * @param string $uri Message uri
1553          * @param string $uid Author handle
1554          *
1555          * @return string The post guid
1556          */
1557         private static function getGuidFromUri($uri, $uid)
1558         {
1559                 $r = q("SELECT `guid` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($uri), intval($uid));
1560                 if (DBM::is_result($r)) {
1561                         return $r[0]["guid"];
1562                 } else {
1563                         return false;
1564                 }
1565         }
1566
1567         /**
1568          * @brief Find the best importer for a comment, like, ...
1569          *
1570          * @param string $guid The guid of the item
1571          *
1572          * @return array|boolean the origin owner of that post - or false
1573          */
1574         private static function importerForGuid($guid)
1575         {
1576                 $item = dba::fetch_first("SELECT `uid` FROM `item` WHERE `origin` AND `guid` = ? LIMIT 1", $guid);
1577
1578                 if (DBM::is_result($item)) {
1579                         logger("Found user ".$item['uid']." as owner of item ".$guid, LOGGER_DEBUG);
1580                         $contact = dba::fetch_first("SELECT * FROM `contact` WHERE `self` AND `uid` = ?", $item['uid']);
1581                         if (DBM::is_result($contact)) {
1582                                 return $contact;
1583                         }
1584                 }
1585                 return false;
1586         }
1587
1588         /**
1589          * @brief Processes an incoming comment
1590          *
1591          * @param array  $importer Array of the importer user
1592          * @param string $sender   The sender of the message
1593          * @param object $data     The message object
1594          * @param string $xml      The original XML of the message
1595          *
1596          * @return int The message id of the generated comment or "false" if there was an error
1597          */
1598         private static function receiveComment($importer, $sender, $data, $xml)
1599         {
1600                 $author = notags(unxmlify($data->author));
1601                 $guid = notags(unxmlify($data->guid));
1602                 $parent_guid = notags(unxmlify($data->parent_guid));
1603                 $text = unxmlify($data->text);
1604
1605                 if (isset($data->created_at)) {
1606                         $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1607                 } else {
1608                         $created_at = datetime_convert();
1609                 }
1610
1611                 if (isset($data->thread_parent_guid)) {
1612                         $thread_parent_guid = notags(unxmlify($data->thread_parent_guid));
1613                         $thr_uri = self::getUriFromGuid("", $thread_parent_guid, true);
1614                 } else {
1615                         $thr_uri = "";
1616                 }
1617
1618                 $contact = self::allowedContactByHandle($importer, $sender, true);
1619                 if (!$contact) {
1620                         return false;
1621                 }
1622
1623                 $message_id = self::messageExists($importer["uid"], $guid);
1624                 if ($message_id) {
1625                         return true;
1626                 }
1627
1628                 $parent_item = self::parentItem($importer["uid"], $parent_guid, $author, $contact);
1629                 if (!$parent_item) {
1630                         return false;
1631                 }
1632
1633                 $person = self::personByHandle($author);
1634                 if (!is_array($person)) {
1635                         logger("unable to find author details");
1636                         return false;
1637                 }
1638
1639                 // Fetch the contact id - if we know this contact
1640                 $author_contact = self::authorContactByUrl($contact, $person, $importer["uid"]);
1641
1642                 $datarray = array();
1643
1644                 $datarray["uid"] = $importer["uid"];
1645                 $datarray["contact-id"] = $author_contact["cid"];
1646                 $datarray["network"]  = $author_contact["network"];
1647
1648                 $datarray["author-name"] = $person["name"];
1649                 $datarray["author-link"] = $person["url"];
1650                 $datarray["author-avatar"] = ((x($person, "thumb")) ? $person["thumb"] : $person["photo"]);
1651
1652                 $datarray["owner-name"] = $contact["name"];
1653                 $datarray["owner-link"] = $contact["url"];
1654                 $datarray["owner-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]);
1655
1656                 $datarray["guid"] = $guid;
1657                 $datarray["uri"] = self::getUriFromGuid($author, $guid);
1658
1659                 $datarray["type"] = "remote-comment";
1660                 $datarray["verb"] = ACTIVITY_POST;
1661                 $datarray["gravity"] = GRAVITY_COMMENT;
1662
1663                 if ($thr_uri != "") {
1664                         $datarray["parent-uri"] = $thr_uri;
1665                 } else {
1666                         $datarray["parent-uri"] = $parent_item["uri"];
1667                 }
1668
1669                 $datarray["object-type"] = ACTIVITY_OBJ_COMMENT;
1670
1671                 $datarray["protocol"] = PROTOCOL_DIASPORA;
1672                 $datarray["source"] = $xml;
1673
1674                 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
1675
1676                 $datarray["plink"] = self::plink($author, $guid, $parent_item['guid']);
1677
1678                 $body = diaspora2bb($text);
1679
1680                 $datarray["body"] = self::replacePeopleGuid($body, $person["url"]);
1681
1682                 self::fetchGuid($datarray);
1683
1684                 $message_id = item_store($datarray);
1685
1686                 if ($message_id <= 0) {
1687                         return false;
1688                 }
1689
1690                 if ($message_id) {
1691                         logger("Stored comment ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
1692                 }
1693
1694                 // If we are the origin of the parent we store the original data and notify our followers
1695                 if ($message_id && $parent_item["origin"]) {
1696                         // Formerly we stored the signed text, the signature and the author in different fields.
1697                         // We now store the raw data so that we are more flexible.
1698                         dba::insert('sign', array('iid' => $message_id, 'signed_text' => json_encode($data)));
1699
1700                         // notify others
1701                         Worker::add(PRIORITY_HIGH, "Notifier", "comment-import", $message_id);
1702                 }
1703
1704                 return true;
1705         }
1706
1707         /**
1708          * @brief processes and stores private messages
1709          *
1710          * @param array  $importer     Array of the importer user
1711          * @param array  $contact      The contact of the message
1712          * @param object $data         The message object
1713          * @param array  $msg          Array of the processed message, author handle and key
1714          * @param object $mesg         The private message
1715          * @param array  $conversation The conversation record to which this message belongs
1716          *
1717          * @return bool "true" if it was successful
1718          */
1719         private static function receiveConversationMessage($importer, $contact, $data, $msg, $mesg, $conversation)
1720         {
1721                 $author = notags(unxmlify($data->author));
1722                 $guid = notags(unxmlify($data->guid));
1723                 $subject = notags(unxmlify($data->subject));
1724
1725                 // "diaspora_handle" is the element name from the old version
1726                 // "author" is the element name from the new version
1727                 if ($mesg->author) {
1728                         $msg_author = notags(unxmlify($mesg->author));
1729                 } elseif ($mesg->diaspora_handle) {
1730                         $msg_author = notags(unxmlify($mesg->diaspora_handle));
1731                 } else {
1732                         return false;
1733                 }
1734
1735                 $msg_guid = notags(unxmlify($mesg->guid));
1736                 $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
1737                 $msg_text = unxmlify($mesg->text);
1738                 $msg_created_at = datetime_convert("UTC", "UTC", notags(unxmlify($mesg->created_at)));
1739
1740                 if ($msg_conversation_guid != $guid) {
1741                         logger("message conversation guid does not belong to the current conversation.");
1742                         return false;
1743                 }
1744
1745                 $body = diaspora2bb($msg_text);
1746                 $message_uri = $msg_author.":".$msg_guid;
1747
1748                 $person = self::personByHandle($msg_author);
1749
1750                 dba::lock('mail');
1751
1752                 $r = q(
1753                         "SELECT `id` FROM `mail` WHERE `guid` = '%s' AND `uid` = %d LIMIT 1",
1754                         dbesc($msg_guid),
1755                         intval($importer["uid"])
1756                 );
1757                 if (DBM::is_result($r)) {
1758                         logger("duplicate message already delivered.", LOGGER_DEBUG);
1759                         return false;
1760                 }
1761
1762                 q(
1763                         "INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1764                         VALUES (%d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1765                         intval($importer["uid"]),
1766                         dbesc($msg_guid),
1767                         intval($conversation["id"]),
1768                         dbesc($person["name"]),
1769                         dbesc($person["photo"]),
1770                         dbesc($person["url"]),
1771                         intval($contact["id"]),
1772                         dbesc($subject),
1773                         dbesc($body),
1774                         0,
1775                         0,
1776                         dbesc($message_uri),
1777                         dbesc($author.":".$guid),
1778                         dbesc($msg_created_at)
1779                 );
1780
1781                 dba::unlock();
1782
1783                 dba::update('conv', array('updated' => datetime_convert()), array('id' => $conversation["id"]));
1784
1785                 notification(
1786                         array(
1787                         "type" => NOTIFY_MAIL,
1788                         "notify_flags" => $importer["notify-flags"],
1789                         "language" => $importer["language"],
1790                         "to_name" => $importer["username"],
1791                         "to_email" => $importer["email"],
1792                         "uid" =>$importer["uid"],
1793                         "item" => array("subject" => $subject, "body" => $body),
1794                         "source_name" => $person["name"],
1795                         "source_link" => $person["url"],
1796                         "source_photo" => $person["thumb"],
1797                         "verb" => ACTIVITY_POST,
1798                         "otype" => "mail")
1799                 );
1800                 return true;
1801         }
1802
1803         /**
1804          * @brief Processes new private messages (answers to private messages are processed elsewhere)
1805          *
1806          * @param array  $importer Array of the importer user
1807          * @param array  $msg      Array of the processed message, author handle and key
1808          * @param object $data     The message object
1809          *
1810          * @return bool Success
1811          */
1812         private static function receiveConversation($importer, $msg, $data)
1813         {
1814                 $author = notags(unxmlify($data->author));
1815                 $guid = notags(unxmlify($data->guid));
1816                 $subject = notags(unxmlify($data->subject));
1817                 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1818                 $participants = notags(unxmlify($data->participants));
1819
1820                 $messages = $data->message;
1821
1822                 if (!count($messages)) {
1823                         logger("empty conversation");
1824                         return false;
1825                 }
1826
1827                 $contact = self::allowedContactByHandle($importer, $msg["author"], true);
1828                 if (!$contact) {
1829                         return false;
1830                 }
1831
1832                 $conversation = null;
1833
1834                 $c = q(
1835                         "SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1836                         intval($importer["uid"]),
1837                         dbesc($guid)
1838                 );
1839                 if ($c)
1840                         $conversation = $c[0];
1841                 else {
1842                         $r = q(
1843                                 "INSERT INTO `conv` (`uid`, `guid`, `creator`, `created`, `updated`, `subject`, `recips`)
1844                                 VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s')",
1845                                 intval($importer["uid"]),
1846                                 dbesc($guid),
1847                                 dbesc($author),
1848                                 dbesc($created_at),
1849                                 dbesc(datetime_convert()),
1850                                 dbesc($subject),
1851                                 dbesc($participants)
1852                         );
1853                         if ($r) {
1854                                 $c = q(
1855                                         "SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1856                                         intval($importer["uid"]),
1857                                         dbesc($guid)
1858                                 );
1859                         }
1860
1861                         if ($c) {
1862                                 $conversation = $c[0];
1863                         }
1864                 }
1865                 if (!$conversation) {
1866                         logger("unable to create conversation.");
1867                         return false;
1868                 }
1869
1870                 foreach ($messages as $mesg) {
1871                         self::receiveConversationMessage($importer, $contact, $data, $msg, $mesg, $conversation);
1872                 }
1873
1874                 return true;
1875         }
1876
1877         /**
1878          * @brief Creates the body for a "like" message
1879          *
1880          * @param array  $contact     The contact that send us the "like"
1881          * @param array  $parent_item The item array of the parent item
1882          * @param string $guid        message guid
1883          *
1884          * @return string the body
1885          */
1886         private static function constructLikeBody($contact, $parent_item, $guid)
1887         {
1888                 $bodyverb = t('%1$s likes %2$s\'s %3$s');
1889
1890                 $ulink = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
1891                 $alink = "[url=".$parent_item["author-link"]."]".$parent_item["author-name"]."[/url]";
1892                 $plink = "[url=".System::baseUrl()."/display/".urlencode($guid)."]".t("status")."[/url]";
1893
1894                 return sprintf($bodyverb, $ulink, $alink, $plink);
1895         }
1896
1897         /**
1898          * @brief Creates a XML object for a "like"
1899          *
1900          * @param array $importer    Array of the importer user
1901          * @param array $parent_item The item array of the parent item
1902          *
1903          * @return string The XML
1904          */
1905         private static function constructLikeObject($importer, $parent_item)
1906         {
1907                 $objtype = ACTIVITY_OBJ_NOTE;
1908                 $link = '<link rel="alternate" type="text/html" href="'.System::baseUrl()."/display/".$importer["nickname"]."/".$parent_item["id"].'" />';
1909                 $parent_body = $parent_item["body"];
1910
1911                 $xmldata = array("object" => array("type" => $objtype,
1912                                                 "local" => "1",
1913                                                 "id" => $parent_item["uri"],
1914                                                 "link" => $link,
1915                                                 "title" => "",
1916                                                 "content" => $parent_body));
1917
1918                 return XML::fromArray($xmldata, $xml, true);
1919         }
1920
1921         /**
1922          * @brief Processes "like" messages
1923          *
1924          * @param array  $importer Array of the importer user
1925          * @param string $sender   The sender of the message
1926          * @param object $data     The message object
1927          *
1928          * @return int The message id of the generated like or "false" if there was an error
1929          */
1930         private static function receiveLike($importer, $sender, $data)
1931         {
1932                 $author = notags(unxmlify($data->author));
1933                 $guid = notags(unxmlify($data->guid));
1934                 $parent_guid = notags(unxmlify($data->parent_guid));
1935                 $parent_type = notags(unxmlify($data->parent_type));
1936                 $positive = notags(unxmlify($data->positive));
1937
1938                 // likes on comments aren't supported by Diaspora - only on posts
1939                 // But maybe this will be supported in the future, so we will accept it.
1940                 if (!in_array($parent_type, array("Post", "Comment"))) {
1941                         return false;
1942                 }
1943
1944                 $contact = self::allowedContactByHandle($importer, $sender, true);
1945                 if (!$contact) {
1946                         return false;
1947                 }
1948
1949                 $message_id = self::messageExists($importer["uid"], $guid);
1950                 if ($message_id) {
1951                         return true;
1952                 }
1953
1954                 $parent_item = self::parentItem($importer["uid"], $parent_guid, $author, $contact);
1955                 if (!$parent_item) {
1956                         return false;
1957                 }
1958
1959                 $person = self::personByHandle($author);
1960                 if (!is_array($person)) {
1961                         logger("unable to find author details");
1962                         return false;
1963                 }
1964
1965                 // Fetch the contact id - if we know this contact
1966                 $author_contact = self::authorContactByUrl($contact, $person, $importer["uid"]);
1967
1968                 // "positive" = "false" would be a Dislike - wich isn't currently supported by Diaspora
1969                 // We would accept this anyhow.
1970                 if ($positive == "true") {
1971                         $verb = ACTIVITY_LIKE;
1972                 } else {
1973                         $verb = ACTIVITY_DISLIKE;
1974                 }
1975
1976                 $datarray = array();
1977
1978                 $datarray["protocol"] = PROTOCOL_DIASPORA;
1979
1980                 $datarray["uid"] = $importer["uid"];
1981                 $datarray["contact-id"] = $author_contact["cid"];
1982                 $datarray["network"]  = $author_contact["network"];
1983
1984                 $datarray["author-name"] = $person["name"];
1985                 $datarray["author-link"] = $person["url"];
1986                 $datarray["author-avatar"] = ((x($person, "thumb")) ? $person["thumb"] : $person["photo"]);
1987
1988                 $datarray["owner-name"] = $contact["name"];
1989                 $datarray["owner-link"] = $contact["url"];
1990                 $datarray["owner-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]);
1991
1992                 $datarray["guid"] = $guid;
1993                 $datarray["uri"] = self::getUriFromGuid($author, $guid);
1994
1995                 $datarray["type"] = "activity";
1996                 $datarray["verb"] = $verb;
1997                 $datarray["gravity"] = GRAVITY_LIKE;
1998                 $datarray["parent-uri"] = $parent_item["uri"];
1999
2000                 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
2001                 $datarray["object"] = self::constructLikeObject($importer, $parent_item);
2002
2003                 $datarray["body"] = self::constructLikeBody($contact, $parent_item, $guid);
2004
2005                 $message_id = item_store($datarray);
2006
2007                 if ($message_id <= 0) {
2008                         return false;
2009                 }
2010
2011                 if ($message_id) {
2012                         logger("Stored like ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2013                 }
2014
2015                 // like on comments have the comment as parent. So we need to fetch the toplevel parent
2016                 if ($parent_item["id"] != $parent_item["parent"]) {
2017                         $toplevel = dba::select('item', array('origin'), array('id' => $parent_item["parent"]), array('limit' => 1));
2018                         $origin = $toplevel["origin"];
2019                 } else {
2020                         $origin = $parent_item["origin"];
2021                 }
2022
2023                 // If we are the origin of the parent we store the original data and notify our followers
2024                 if ($message_id && $origin) {
2025                         // Formerly we stored the signed text, the signature and the author in different fields.
2026                         // We now store the raw data so that we are more flexible.
2027                         dba::insert('sign', array('iid' => $message_id, 'signed_text' => json_encode($data)));
2028
2029                         // notify others
2030                         Worker::add(PRIORITY_HIGH, "Notifier", "comment-import", $message_id);
2031                 }
2032
2033                 return true;
2034         }
2035
2036         /**
2037          * @brief Processes private messages
2038          *
2039          * @param array  $importer Array of the importer user
2040          * @param object $data     The message object
2041          *
2042          * @return bool Success?
2043          */
2044         private static function receiveMessage($importer, $data)
2045         {
2046                 $author = notags(unxmlify($data->author));
2047                 $guid = notags(unxmlify($data->guid));
2048                 $conversation_guid = notags(unxmlify($data->conversation_guid));
2049                 $text = unxmlify($data->text);
2050                 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
2051
2052                 $contact = self::allowedContactByHandle($importer, $author, true);
2053                 if (!$contact) {
2054                         return false;
2055                 }
2056
2057                 $conversation = null;
2058
2059                 $c = q(
2060                         "SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
2061                         intval($importer["uid"]),
2062                         dbesc($conversation_guid)
2063                 );
2064                 if ($c) {
2065                         $conversation = $c[0];
2066                 } else {
2067                         logger("conversation not available.");
2068                         return false;
2069                 }
2070
2071                 $message_uri = $author.":".$guid;
2072
2073                 $person = self::personByHandle($author);
2074                 if (!$person) {
2075                         logger("unable to find author details");
2076                         return false;
2077                 }
2078
2079                 $body = diaspora2bb($text);
2080
2081                 $body = self::replacePeopleGuid($body, $person["url"]);
2082
2083                 dba::lock('mail');
2084
2085                 $r = q(
2086                         "SELECT `id` FROM `mail` WHERE `guid` = '%s' AND `uid` = %d LIMIT 1",
2087                         dbesc($guid),
2088                         intval($importer["uid"])
2089                 );
2090                 if (DBM::is_result($r)) {
2091                         logger("duplicate message already delivered.", LOGGER_DEBUG);
2092                         return false;
2093                 }
2094
2095                 q(
2096                         "INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
2097                                 VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
2098                         intval($importer["uid"]),
2099                         dbesc($guid),
2100                         intval($conversation["id"]),
2101                         dbesc($person["name"]),
2102                         dbesc($person["photo"]),
2103                         dbesc($person["url"]),
2104                         intval($contact["id"]),
2105                         dbesc($conversation["subject"]),
2106                         dbesc($body),
2107                         0,
2108                         1,
2109                         dbesc($message_uri),
2110                         dbesc($author.":".$conversation["guid"]),
2111                         dbesc($created_at)
2112                 );
2113
2114                 dba::unlock();
2115
2116                 dba::update('conv', array('updated' => datetime_convert()), array('id' => $conversation["id"]));
2117                 return true;
2118         }
2119
2120         /**
2121          * @brief Processes participations - unsupported by now
2122          *
2123          * @param array  $importer Array of the importer user
2124          * @param object $data     The message object
2125          *
2126          * @return bool always true
2127          */
2128         private static function receiveParticipation($importer, $data)
2129         {
2130                 // I'm not sure if we can fully support this message type
2131                 return true;
2132         }
2133
2134         /**
2135          * @brief Processes photos - unneeded
2136          *
2137          * @param array  $importer Array of the importer user
2138          * @param object $data     The message object
2139          *
2140          * @return bool always true
2141          */
2142         private static function receivePhoto($importer, $data)
2143         {
2144                 // There doesn't seem to be a reason for this function,
2145                 // since the photo data is transmitted in the status message as well
2146                 return true;
2147         }
2148
2149         /**
2150          * @brief Processes poll participations - unssupported
2151          *
2152          * @param array  $importer Array of the importer user
2153          * @param object $data     The message object
2154          *
2155          * @return bool always true
2156          */
2157         private static function receivePollParticipation($importer, $data)
2158         {
2159                 // We don't support polls by now
2160                 return true;
2161         }
2162
2163         /**
2164          * @brief Processes incoming profile updates
2165          *
2166          * @param array  $importer Array of the importer user
2167          * @param object $data     The message object
2168          *
2169          * @return bool Success
2170          */
2171         private static function receiveProfile($importer, $data)
2172         {
2173                 $author = strtolower(notags(unxmlify($data->author)));
2174
2175                 $contact = self::contactByHandle($importer["uid"], $author);
2176                 if (!$contact) {
2177                         return false;
2178                 }
2179
2180                 $name = unxmlify($data->first_name).((strlen($data->last_name)) ? " ".unxmlify($data->last_name) : "");
2181                 $image_url = unxmlify($data->image_url);
2182                 $birthday = unxmlify($data->birthday);
2183                 $gender = unxmlify($data->gender);
2184                 $about = diaspora2bb(unxmlify($data->bio));
2185                 $location = diaspora2bb(unxmlify($data->location));
2186                 $searchable = (unxmlify($data->searchable) == "true");
2187                 $nsfw = (unxmlify($data->nsfw) == "true");
2188                 $tags = unxmlify($data->tag_string);
2189
2190                 $tags = explode("#", $tags);
2191
2192                 $keywords = array();
2193                 foreach ($tags as $tag) {
2194                         $tag = trim(strtolower($tag));
2195                         if ($tag != "") {
2196                                 $keywords[] = $tag;
2197                         }
2198                 }
2199
2200                 $keywords = implode(", ", $keywords);
2201
2202                 $handle_parts = explode("@", $author);
2203                 $nick = $handle_parts[0];
2204
2205                 if ($name === "") {
2206                         $name = $handle_parts[0];
2207                 }
2208
2209                 if (preg_match("|^https?://|", $image_url) === 0) {
2210                         $image_url = "http://".$handle_parts[1].$image_url;
2211                 }
2212
2213                 Contact::updateAvatar($image_url, $importer["uid"], $contact["id"]);
2214
2215                 // Generic birthday. We don't know the timezone. The year is irrelevant.
2216
2217                 $birthday = str_replace("1000", "1901", $birthday);
2218
2219                 if ($birthday != "") {
2220                         $birthday = datetime_convert("UTC", "UTC", $birthday, "Y-m-d");
2221                 }
2222
2223                 // this is to prevent multiple birthday notifications in a single year
2224                 // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year
2225
2226                 if (substr($birthday, 5) === substr($contact["bd"], 5)) {
2227                         $birthday = $contact["bd"];
2228                 }
2229
2230                 $r = q(
2231                         "UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `name-date` = '%s', `bd` = '%s',
2232                                 `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d AND `uid` = %d",
2233                         dbesc($name),
2234                         dbesc($nick),
2235                         dbesc($author),
2236                         dbesc(datetime_convert()),
2237                         dbesc($birthday),
2238                         dbesc($location),
2239                         dbesc($about),
2240                         dbesc($keywords),
2241                         dbesc($gender),
2242                         intval($contact["id"]),
2243                         intval($importer["uid"])
2244                 );
2245
2246                 $gcontact = array("url" => $contact["url"], "network" => NETWORK_DIASPORA, "generation" => 2,
2247                                         "photo" => $image_url, "name" => $name, "location" => $location,
2248                                         "about" => $about, "birthday" => $birthday, "gender" => $gender,
2249                                         "addr" => $author, "nick" => $nick, "keywords" => $keywords,
2250                                         "hide" => !$searchable, "nsfw" => $nsfw);
2251
2252                 $gcid = GContact::update($gcontact);
2253
2254                 GContact::link($gcid, $importer["uid"], $contact["id"]);
2255
2256                 logger("Profile of contact ".$contact["id"]." stored for user ".$importer["uid"], LOGGER_DEBUG);
2257
2258                 return true;
2259         }
2260
2261         /**
2262          * @brief Processes incoming friend requests
2263          *
2264          * @param array $importer Array of the importer user
2265          * @param array $contact  The contact that send the request
2266          * @return void
2267          */
2268         private static function receiveRequestMakeFriend($importer, $contact)
2269         {
2270                 $a = get_app();
2271
2272                 if ($contact["rel"] == CONTACT_IS_SHARING) {
2273                         dba::update(
2274                                 'contact',
2275                                 array('rel' => CONTACT_IS_FRIEND, 'writable' => true),
2276                                 array('id' => $contact["id"], 'uid' => $importer["uid"])
2277                         );
2278                 }
2279                 // send notification
2280
2281                 $r = q(
2282                         "SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
2283                         intval($importer["uid"])
2284                 );
2285
2286                 if ($r && !$r[0]["hide-friends"] && !$contact["hidden"] && intval(PConfig::get($importer["uid"], "system", "post_newfriend"))) {
2287                         $self = q(
2288                                 "SELECT * FROM `contact` WHERE `self` AND `uid` = %d LIMIT 1",
2289                                 intval($importer["uid"])
2290                         );
2291
2292                         // they are not CONTACT_IS_FOLLOWER anymore but that's what we have in the array
2293
2294                         if ($self && $contact["rel"] == CONTACT_IS_FOLLOWER) {
2295                                 $arr = array();
2296                                 $arr["protocol"] = PROTOCOL_DIASPORA;
2297                                 $arr["uri"] = $arr["parent-uri"] = item_new_uri($a->get_hostname(), $importer["uid"]);
2298                                 $arr["uid"] = $importer["uid"];
2299                                 $arr["contact-id"] = $self[0]["id"];
2300                                 $arr["wall"] = 1;
2301                                 $arr["type"] = 'wall';
2302                                 $arr["gravity"] = 0;
2303                                 $arr["origin"] = 1;
2304                                 $arr["author-name"] = $arr["owner-name"] = $self[0]["name"];
2305                                 $arr["author-link"] = $arr["owner-link"] = $self[0]["url"];
2306                                 $arr["author-avatar"] = $arr["owner-avatar"] = $self[0]["thumb"];
2307                                 $arr["verb"] = ACTIVITY_FRIEND;
2308                                 $arr["object-type"] = ACTIVITY_OBJ_PERSON;
2309
2310                                 $A = "[url=".$self[0]["url"]."]".$self[0]["name"]."[/url]";
2311                                 $B = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
2312                                 $BPhoto = "[url=".$contact["url"]."][img]".$contact["thumb"]."[/img][/url]";
2313                                 $arr["body"] = sprintf(t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$BPhoto;
2314
2315                                 $arr["object"] = self::constructNewFriendObject($contact);
2316
2317                                 $arr["last-child"] = 1;
2318
2319                                 $arr["allow_cid"] = $self[0]["allow_cid"];
2320                                 $arr["allow_gid"] = $self[0]["allow_gid"];
2321                                 $arr["deny_cid"]  = $self[0]["deny_cid"];
2322                                 $arr["deny_gid"]  = $self[0]["deny_gid"];
2323
2324                                 $i = item_store($arr);
2325                                 if ($i) {
2326                                         Worker::add(PRIORITY_HIGH, "Notifier", "activity", $i);
2327                                 }
2328                         }
2329                 }
2330         }
2331
2332         /**
2333          * @brief Creates a XML object for a "new friend" message
2334          *
2335          * @param array $contact Array of the contact
2336          *
2337          * @return string The XML
2338          */
2339         private static function constructNewFriendObject($contact)
2340         {
2341                 $objtype = ACTIVITY_OBJ_PERSON;
2342                 $link = '<link rel="alternate" type="text/html" href="'.$contact["url"].'" />'."\n".
2343                         '<link rel="photo" type="image/jpeg" href="'.$contact["thumb"].'" />'."\n";
2344
2345                 $xmldata = array("object" => array("type" => $objtype,
2346                                                 "title" => $contact["name"],
2347                                                 "id" => $contact["url"]."/".$contact["name"],
2348                                                 "link" => $link));
2349
2350                 return XML::fromArray($xmldata, $xml, true);
2351         }
2352
2353         /**
2354          * @brief Processes incoming sharing notification
2355          *
2356          * @param array  $importer Array of the importer user
2357          * @param object $data     The message object
2358          *
2359          * @return bool Success
2360          */
2361         private static function receiveContactRequest($importer, $data)
2362         {
2363                 $author = unxmlify($data->author);
2364                 $recipient = unxmlify($data->recipient);
2365
2366                 if (!$author || !$recipient) {
2367                         return false;
2368                 }
2369
2370                 // the current protocol version doesn't know these fields
2371                 // That means that we will assume their existance
2372                 if (isset($data->following)) {
2373                         $following = (unxmlify($data->following) == "true");
2374                 } else {
2375                         $following = true;
2376                 }
2377
2378                 if (isset($data->sharing)) {
2379                         $sharing = (unxmlify($data->sharing) == "true");
2380                 } else {
2381                         $sharing = true;
2382                 }
2383
2384                 $contact = self::contactByHandle($importer["uid"], $author);
2385
2386                 // perhaps we were already sharing with this person. Now they're sharing with us.
2387                 // That makes us friends.
2388                 if ($contact) {
2389                         if ($following) {
2390                                 logger("Author ".$author." (Contact ".$contact["id"].") wants to follow us.", LOGGER_DEBUG);
2391                                 self::receiveRequestMakeFriend($importer, $contact);
2392
2393                                 // refetch the contact array
2394                                 $contact = self::contactByHandle($importer["uid"], $author);
2395
2396                                 // If we are now friends, we are sending a share message.
2397                                 // Normally we needn't to do so, but the first message could have been vanished.
2398                                 if (in_array($contact["rel"], array(CONTACT_IS_FRIEND))) {
2399                                         $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
2400                                         if ($u) {
2401                                                 logger("Sending share message to author ".$author." - Contact: ".$contact["id"]." - User: ".$importer["uid"], LOGGER_DEBUG);
2402                                                 $ret = self::sendShare($u[0], $contact);
2403                                         }
2404                                 }
2405                                 return true;
2406                         } else {
2407                                 logger("Author ".$author." doesn't want to follow us anymore.", LOGGER_DEBUG);
2408                                 lose_follower($importer, $contact);
2409                                 return true;
2410                         }
2411                 }
2412
2413                 if (!$following && $sharing && in_array($importer["page-flags"], array(PAGE_SOAPBOX, PAGE_NORMAL))) {
2414                         logger("Author ".$author." wants to share with us - but doesn't want to listen. Request is ignored.", LOGGER_DEBUG);
2415                         return false;
2416                 } elseif (!$following && !$sharing) {
2417                         logger("Author ".$author." doesn't want anything - and we don't know the author. Request is ignored.", LOGGER_DEBUG);
2418                         return false;
2419                 } elseif (!$following && $sharing) {
2420                         logger("Author ".$author." wants to share with us.", LOGGER_DEBUG);
2421                 } elseif ($following && $sharing) {
2422                         logger("Author ".$author." wants to have a bidirectional conection.", LOGGER_DEBUG);
2423                 } elseif ($following && !$sharing) {
2424                         logger("Author ".$author." wants to listen to us.", LOGGER_DEBUG);
2425                 }
2426
2427                 $ret = self::personByHandle($author);
2428
2429                 if (!$ret || ($ret["network"] != NETWORK_DIASPORA)) {
2430                         logger("Cannot resolve diaspora handle ".$author." for ".$recipient);
2431                         return false;
2432                 }
2433
2434                 $batch = (($ret["batch"]) ? $ret["batch"] : implode("/", array_slice(explode("/", $ret["url"]), 0, 3))."/receive/public");
2435
2436                 $r = q(
2437                         "INSERT INTO `contact` (`uid`, `network`,`addr`,`created`,`url`,`nurl`,`batch`,`name`,`nick`,`photo`,`pubkey`,`notify`,`poll`,`blocked`,`priority`)
2438                         VALUES (%d, '%s', '%s', '%s', '%s','%s','%s','%s','%s','%s','%s','%s','%s',%d,%d)",
2439                         intval($importer["uid"]),
2440                         dbesc($ret["network"]),
2441                         dbesc($ret["addr"]),
2442                         datetime_convert(),
2443                         dbesc($ret["url"]),
2444                         dbesc(normalise_link($ret["url"])),
2445                         dbesc($batch),
2446                         dbesc($ret["name"]),
2447                         dbesc($ret["nick"]),
2448                         dbesc($ret["photo"]),
2449                         dbesc($ret["pubkey"]),
2450                         dbesc($ret["notify"]),
2451                         dbesc($ret["poll"]),
2452                         1,
2453                         2
2454                 );
2455
2456                 // find the contact record we just created
2457
2458                 $contact_record = self::contactByHandle($importer["uid"], $author);
2459
2460                 if (!$contact_record) {
2461                         logger("unable to locate newly created contact record.");
2462                         return;
2463                 }
2464
2465                 logger("Author ".$author." was added as contact number ".$contact_record["id"].".", LOGGER_DEBUG);
2466
2467                 Group::addMember(User::getDefaultGroup($importer['uid'], $ret["network"]), $contact_record['id']);
2468
2469                 Contact::updateAvatar($ret["photo"], $importer['uid'], $contact_record["id"], true);
2470
2471                 if ($importer["page-flags"] == PAGE_NORMAL) {
2472                         logger("Sending intra message for author ".$author.".", LOGGER_DEBUG);
2473
2474                         $hash = random_string().(string)time();   // Generate a confirm_key
2475
2476                         $ret = q(
2477                                 "INSERT INTO `intro` (`uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
2478                                 VALUES (%d, %d, %d, %d, '%s', '%s', '%s')",
2479                                 intval($importer["uid"]),
2480                                 intval($contact_record["id"]),
2481                                 0,
2482                                 0,
2483                                 dbesc(t("Sharing notification from Diaspora network")),
2484                                 dbesc($hash),
2485                                 dbesc(datetime_convert())
2486                         );
2487                 } else {
2488                         // automatic friend approval
2489
2490                         logger("Does an automatic friend approval for author ".$author.".", LOGGER_DEBUG);
2491
2492                         Contact::updateAvatar($contact_record["photo"], $importer["uid"], $contact_record["id"]);
2493
2494                         // technically they are sharing with us (CONTACT_IS_SHARING),
2495                         // but if our page-type is PAGE_COMMUNITY or PAGE_SOAPBOX
2496                         // we are going to change the relationship and make them a follower.
2497
2498                         if (($importer["page-flags"] == PAGE_FREELOVE) && $sharing && $following) {
2499                                 $new_relation = CONTACT_IS_FRIEND;
2500                         } elseif (($importer["page-flags"] == PAGE_FREELOVE) && $sharing) {
2501                                 $new_relation = CONTACT_IS_SHARING;
2502                         } else {
2503                                 $new_relation = CONTACT_IS_FOLLOWER;
2504                         }
2505
2506                         $r = q(
2507                                 "UPDATE `contact` SET `rel` = %d,
2508                                 `name-date` = '%s',
2509                                 `uri-date` = '%s',
2510                                 `blocked` = 0,
2511                                 `pending` = 0,
2512                                 `writable` = 1
2513                                 WHERE `id` = %d
2514                                 ",
2515                                 intval($new_relation),
2516                                 dbesc(datetime_convert()),
2517                                 dbesc(datetime_convert()),
2518                                 intval($contact_record["id"])
2519                         );
2520
2521                         $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
2522                         if ($u) {
2523                                 logger("Sending share message (Relation: ".$new_relation.") to author ".$author." - Contact: ".$contact_record["id"]." - User: ".$importer["uid"], LOGGER_DEBUG);
2524                                 $ret = self::sendShare($u[0], $contact_record);
2525
2526                                 // Send the profile data, maybe it weren't transmitted before
2527                                 self::sendProfile($importer["uid"], array($contact_record));
2528                         }
2529                 }
2530
2531                 return true;
2532         }
2533
2534         /**
2535          * @brief Fetches a message with a given guid
2536          *
2537          * @param string $guid        message guid
2538          * @param string $orig_author handle of the original post
2539          * @param string $author      handle of the sharer
2540          *
2541          * @return array The fetched item
2542          */
2543         private static function originalItem($guid, $orig_author, $author)
2544         {
2545                 // Do we already have this item?
2546                 $r = q(
2547                         "SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
2548                                 `author-name`, `author-link`, `author-avatar`
2549                                 FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
2550                         dbesc($guid)
2551                 );
2552
2553                 if (DBM::is_result($r)) {
2554                         logger("reshared message ".$guid." already exists on system.");
2555
2556                         // Maybe it is already a reshared item?
2557                         // Then refetch the content, if it is a reshare from a reshare.
2558                         // If it is a reshared post from another network then reformat to avoid display problems with two share elements
2559                         if (self::isReshare($r[0]["body"], true)) {
2560                                 $r = array();
2561                         } elseif (self::isReshare($r[0]["body"], false) || strstr($r[0]["body"], "[share")) {
2562                                 $r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"]));
2563
2564                                 $r[0]["body"] = self::replacePeopleGuid($r[0]["body"], $r[0]["author-link"]);
2565
2566                                 // Add OEmbed and other information to the body
2567                                 $r[0]["body"] = add_page_info_to_body($r[0]["body"], false, true);
2568
2569                                 return $r[0];
2570                         } else {
2571                                 return $r[0];
2572                         }
2573                 }
2574
2575                 if (!DBM::is_result($r)) {
2576                         $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1);
2577                         logger("1st try: reshared message ".$guid." will be fetched via SSL from the server ".$server);
2578                         $item_id = self::storeByGuid($guid, $server);
2579
2580                         if (!$item_id) {
2581                                 $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1);
2582                                 logger("2nd try: reshared message ".$guid." will be fetched without SLL from the server ".$server);
2583                                 $item_id = self::storeByGuid($guid, $server);
2584                         }
2585
2586                         if ($item_id) {
2587                                 $r = q(
2588                                         "SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
2589                                                 `author-name`, `author-link`, `author-avatar`
2590                                         FROM `item` WHERE `id` = %d AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
2591                                         intval($item_id)
2592                                 );
2593
2594                                 if (DBM::is_result($r)) {
2595                                         // If it is a reshared post from another network then reformat to avoid display problems with two share elements
2596                                         if (self::isReshare($r[0]["body"], false)) {
2597                                                 $r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"]));
2598                                                 $r[0]["body"] = self::replacePeopleGuid($r[0]["body"], $r[0]["author-link"]);
2599                                         }
2600
2601                                         return $r[0];
2602                                 }
2603                         }
2604                 }
2605                 return false;
2606         }
2607
2608         /**
2609          * @brief Processes a reshare message
2610          *
2611          * @param array  $importer Array of the importer user
2612          * @param object $data     The message object
2613          * @param string $xml      The original XML of the message
2614          *
2615          * @return int the message id
2616          */
2617         private static function receiveReshare($importer, $data, $xml)
2618         {
2619                 $author = notags(unxmlify($data->author));
2620                 $guid = notags(unxmlify($data->guid));
2621                 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
2622                 $root_author = notags(unxmlify($data->root_author));
2623                 $root_guid = notags(unxmlify($data->root_guid));
2624                 /// @todo handle unprocessed property "provider_display_name"
2625                 $public = notags(unxmlify($data->public));
2626
2627                 $contact = self::allowedContactByHandle($importer, $author, false);
2628                 if (!$contact) {
2629                         return false;
2630                 }
2631
2632                 $message_id = self::messageExists($importer["uid"], $guid);
2633                 if ($message_id) {
2634                         return true;
2635                 }
2636
2637                 $original_item = self::originalItem($root_guid, $root_author, $author);
2638                 if (!$original_item) {
2639                         return false;
2640                 }
2641
2642                 $orig_url = System::baseUrl()."/display/".$original_item["guid"];
2643
2644                 $datarray = array();
2645
2646                 $datarray["uid"] = $importer["uid"];
2647                 $datarray["contact-id"] = $contact["id"];
2648                 $datarray["network"]  = NETWORK_DIASPORA;
2649
2650                 $datarray["author-name"] = $contact["name"];
2651                 $datarray["author-link"] = $contact["url"];
2652                 $datarray["author-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]);
2653
2654                 $datarray["owner-name"] = $datarray["author-name"];
2655                 $datarray["owner-link"] = $datarray["author-link"];
2656                 $datarray["owner-avatar"] = $datarray["author-avatar"];
2657
2658                 $datarray["guid"] = $guid;
2659                 $datarray["uri"] = $datarray["parent-uri"] = self::getUriFromGuid($author, $guid);
2660
2661                 $datarray["verb"] = ACTIVITY_POST;
2662                 $datarray["gravity"] = GRAVITY_PARENT;
2663
2664                 $datarray["protocol"] = PROTOCOL_DIASPORA;
2665                 $datarray["source"] = $xml;
2666
2667                 $prefix = share_header(
2668                         $original_item["author-name"],
2669                         $original_item["author-link"],
2670                         $original_item["author-avatar"],
2671                         $original_item["guid"],
2672                         $original_item["created"],
2673                         $orig_url
2674                 );
2675                 $datarray["body"] = $prefix.$original_item["body"]."[/share]";
2676
2677                 $datarray["tag"] = $original_item["tag"];
2678                 $datarray["app"]  = $original_item["app"];
2679
2680                 $datarray["plink"] = self::plink($author, $guid);
2681                 $datarray["private"] = (($public == "false") ? 1 : 0);
2682                 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
2683
2684                 $datarray["object-type"] = $original_item["object-type"];
2685
2686                 self::fetchGuid($datarray);
2687                 $message_id = item_store($datarray);
2688
2689                 if ($message_id) {
2690                         logger("Stored reshare ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2691                         return true;
2692                 } else {
2693                         return false;
2694                 }
2695         }
2696
2697         /**
2698          * @brief Processes retractions
2699          *
2700          * @param array  $importer Array of the importer user
2701          * @param array  $contact  The contact of the item owner
2702          * @param object $data     The message object
2703          *
2704          * @return bool success
2705          */
2706         private static function itemRetraction($importer, $contact, $data)
2707         {
2708                 $author = notags(unxmlify($data->author));
2709                 $target_guid = notags(unxmlify($data->target_guid));
2710                 $target_type = notags(unxmlify($data->target_type));
2711
2712                 $person = self::personByHandle($author);
2713                 if (!is_array($person)) {
2714                         logger("unable to find author detail for ".$author);
2715                         return false;
2716                 }
2717
2718                 if (empty($contact["url"])) {
2719                         $contact["url"] = $person["url"];
2720                 }
2721
2722                 // Fetch items that are about to be deleted
2723                 $fields = array('uid', 'id', 'parent', 'parent-uri', 'author-link');
2724
2725                 // When we receive a public retraction, we delete every item that we find.
2726                 if ($importer['uid'] == 0) {
2727                         $condition = array("`guid` = ? AND NOT `file` LIKE '%%[%%' AND NOT `deleted`", $target_guid);
2728                 } else {
2729                         $condition = array("`guid` = ? AND `uid` = ? AND NOT `file` LIKE '%%[%%' AND NOT `deleted`", $target_guid, $importer['uid']);
2730                 }
2731                 $r = dba::select('item', $fields, $condition);
2732                 if (!DBM::is_result($r)) {
2733                         logger("Target guid ".$target_guid." was not found on this system for user ".$importer['uid'].".");
2734                         return false;
2735                 }
2736
2737                 while ($item = dba::fetch($r)) {
2738                         // Fetch the parent item
2739                         $parent = dba::select('item', array('author-link', 'origin'), array('id' => $item["parent"]), array('limit' => 1));
2740
2741                         // Only delete it if the parent author really fits
2742                         if (!link_compare($parent["author-link"], $contact["url"]) && !link_compare($item["author-link"], $contact["url"])) {
2743                                 logger("Thread author ".$parent["author-link"]." and item author ".$item["author-link"]." don't fit to expected contact ".$contact["url"], LOGGER_DEBUG);
2744                                 continue;
2745                         }
2746
2747                         // Currently we don't have a central deletion function that we could use in this case.
2748                         // The function "item_drop" doesn't work for that case
2749                         dba::update(
2750                                 'item',
2751                                 array(
2752                                         'deleted' => true,
2753                                         'title' => '',
2754                                         'body' => '',
2755                                         'edited' => datetime_convert(),
2756                                         'changed' => datetime_convert()),
2757                                 array('id' => $item["id"])
2758                         );
2759
2760                         // Delete the thread - if it is a starting post and not a comment
2761                         if ($target_type != 'Comment') {
2762                                 delete_thread($item["id"], $item["parent-uri"]);
2763                         }
2764
2765                         logger("Deleted target ".$target_guid." (".$item["id"].") from user ".$item["uid"]." parent: ".$item["parent"], LOGGER_DEBUG);
2766
2767                         // Now check if the retraction needs to be relayed by us
2768                         if ($parent["origin"]) {
2769                                 // notify others
2770                                 Worker::add(PRIORITY_HIGH, "Notifier", "drop", $item["id"]);
2771                         }
2772                 }
2773
2774                 return true;
2775         }
2776
2777         /**
2778          * @brief Receives retraction messages
2779          *
2780          * @param array  $importer Array of the importer user
2781          * @param string $sender   The sender of the message
2782          * @param object $data     The message object
2783          *
2784          * @return bool Success
2785          */
2786         private static function receiveRetraction($importer, $sender, $data)
2787         {
2788                 $target_type = notags(unxmlify($data->target_type));
2789
2790                 $contact = self::contactByHandle($importer["uid"], $sender);
2791                 if (!$contact && (in_array($target_type, array("Contact", "Person")))) {
2792                         logger("cannot find contact for sender: ".$sender." and user ".$importer["uid"]);
2793                         return false;
2794                 }
2795
2796                 logger("Got retraction for ".$target_type.", sender ".$sender." and user ".$importer["uid"], LOGGER_DEBUG);
2797
2798                 switch ($target_type) {
2799                         case "Comment":
2800                         case "Like":
2801                         case "Post":
2802                         case "Reshare":
2803                         case "StatusMessage":
2804                                 return self::itemRetraction($importer, $contact, $data);
2805
2806                         case "Contact":
2807                         case "Person":
2808                                 /// @todo What should we do with an "unshare"?
2809                                 // Removing the contact isn't correct since we still can read the public items
2810                                 Contact::remove($contact["id"]);
2811                                 return true;
2812
2813                         default:
2814                                 logger("Unknown target type ".$target_type);
2815                                 return false;
2816                 }
2817                 return true;
2818         }
2819
2820         /**
2821          * @brief Receives status messages
2822          *
2823          * @param array  $importer Array of the importer user
2824          * @param object $data     The message object
2825          * @param string $xml      The original XML of the message
2826          *
2827          * @return int The message id of the newly created item
2828          */
2829         private static function receiveStatusMessage($importer, $data, $xml)
2830         {
2831                 $author = notags(unxmlify($data->author));
2832                 $guid = notags(unxmlify($data->guid));
2833                 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
2834                 $public = notags(unxmlify($data->public));
2835                 $text = unxmlify($data->text);
2836                 $provider_display_name = notags(unxmlify($data->provider_display_name));
2837
2838                 $contact = self::allowedContactByHandle($importer, $author, false);
2839                 if (!$contact) {
2840                         return false;
2841                 }
2842
2843                 $message_id = self::messageExists($importer["uid"], $guid);
2844                 if ($message_id) {
2845                         return true;
2846                 }
2847
2848                 $address = array();
2849                 if ($data->location) {
2850                         foreach ($data->location->children() as $fieldname => $data) {
2851                                 $address[$fieldname] = notags(unxmlify($data));
2852                         }
2853                 }
2854
2855                 $body = diaspora2bb($text);
2856
2857                 $datarray = array();
2858
2859                 // Attach embedded pictures to the body
2860                 if ($data->photo) {
2861                         foreach ($data->photo as $photo) {
2862                                 $body = "[img]".unxmlify($photo->remote_photo_path).
2863                                         unxmlify($photo->remote_photo_name)."[/img]\n".$body;
2864                         }
2865
2866                         $datarray["object-type"] = ACTIVITY_OBJ_IMAGE;
2867                 } else {
2868                         $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
2869
2870                         // Add OEmbed and other information to the body
2871                         if (!self::isRedmatrix($contact["url"])) {
2872                                 $body = add_page_info_to_body($body, false, true);
2873                         }
2874                 }
2875
2876                 /// @todo enable support for polls
2877                 //if ($data->poll) {
2878                 //      foreach ($data->poll AS $poll)
2879                 //              print_r($poll);
2880                 //      die("poll!\n");
2881                 //}
2882
2883                 /// @todo enable support for events
2884
2885                 $datarray["uid"] = $importer["uid"];
2886                 $datarray["contact-id"] = $contact["id"];
2887                 $datarray["network"] = NETWORK_DIASPORA;
2888
2889                 $datarray["author-name"] = $contact["name"];
2890                 $datarray["author-link"] = $contact["url"];
2891                 $datarray["author-avatar"] = ((x($contact, "thumb")) ? $contact["thumb"] : $contact["photo"]);
2892
2893                 $datarray["owner-name"] = $datarray["author-name"];
2894                 $datarray["owner-link"] = $datarray["author-link"];
2895                 $datarray["owner-avatar"] = $datarray["author-avatar"];
2896
2897                 $datarray["guid"] = $guid;
2898                 $datarray["uri"] = $datarray["parent-uri"] = self::getUriFromGuid($author, $guid);
2899
2900                 $datarray["verb"] = ACTIVITY_POST;
2901                 $datarray["gravity"] = GRAVITY_PARENT;
2902
2903                 $datarray["protocol"] = PROTOCOL_DIASPORA;
2904                 $datarray["source"] = $xml;
2905
2906                 $datarray["body"] = self::replacePeopleGuid($body, $contact["url"]);
2907
2908                 if ($provider_display_name != "") {
2909                         $datarray["app"] = $provider_display_name;
2910                 }
2911
2912                 $datarray["plink"] = self::plink($author, $guid);
2913                 $datarray["private"] = (($public == "false") ? 1 : 0);
2914                 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = $created_at;
2915
2916                 if (isset($address["address"])) {
2917                         $datarray["location"] = $address["address"];
2918                 }
2919
2920                 if (isset($address["lat"]) && isset($address["lng"])) {
2921                         $datarray["coord"] = $address["lat"]." ".$address["lng"];
2922                 }
2923
2924                 self::fetchGuid($datarray);
2925                 $message_id = item_store($datarray);
2926
2927                 if ($message_id) {
2928                         logger("Stored item ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2929                         return true;
2930                 } else {
2931                         return false;
2932                 }
2933         }
2934
2935         /* ************************************************************************************** *
2936          * Here are all the functions that are needed to transmit data with the Diaspora protocol *
2937          * ************************************************************************************** */
2938
2939         /**
2940          * @brief returnes the handle of a contact
2941          *
2942          * @param array $contact contact array
2943          *
2944          * @return string the handle in the format user@domain.tld
2945          */
2946         private static function myHandle($contact)
2947         {
2948                 if ($contact["addr"] != "") {
2949                         return $contact["addr"];
2950                 }
2951
2952                 // Normally we should have a filled "addr" field - but in the past this wasn't the case
2953                 // So - just in case - we build the the address here.
2954                 if ($contact["nickname"] != "") {
2955                         $nick = $contact["nickname"];
2956                 } else {
2957                         $nick = $contact["nick"];
2958                 }
2959
2960                 return $nick."@".substr(System::baseUrl(), strpos(System::baseUrl(), "://") + 3);
2961         }
2962
2963
2964         /**
2965          * @brief Creates the data for a private message in the new format
2966          *
2967          * @param string $msg     The message that is to be transmitted
2968          * @param array  $user    The record of the sender
2969          * @param array  $contact Target of the communication
2970          * @param string $prvkey  The private key of the sender
2971          * @param string $pubkey  The public key of the receiver
2972          *
2973          * @return string The encrypted data
2974          */
2975         public static function encodePrivateData($msg, $user, $contact, $prvkey, $pubkey)
2976         {
2977                 logger("Message: ".$msg, LOGGER_DATA);
2978
2979                 // without a public key nothing will work
2980                 if (!$pubkey) {
2981                         logger("pubkey missing: contact id: ".$contact["id"]);
2982                         return false;
2983                 }
2984
2985                 $aes_key = openssl_random_pseudo_bytes(32);
2986                 $b_aes_key = base64_encode($aes_key);
2987                 $iv = openssl_random_pseudo_bytes(16);
2988                 $b_iv = base64_encode($iv);
2989
2990                 $ciphertext = self::aesEncrypt($aes_key, $iv, $msg);
2991
2992                 $json = json_encode(array("iv" => $b_iv, "key" => $b_aes_key));
2993
2994                 $encrypted_key_bundle = "";
2995                 openssl_public_encrypt($json, $encrypted_key_bundle, $pubkey);
2996
2997                 $json_object = json_encode(
2998                         array("aes_key" => base64_encode($encrypted_key_bundle),
2999                                         "encrypted_magic_envelope" => base64_encode($ciphertext))
3000                 );
3001
3002                 return $json_object;
3003         }
3004
3005         /**
3006          * @brief Creates the envelope for the "fetch" endpoint and for the new format
3007          *
3008          * @param string $msg  The message that is to be transmitted
3009          * @param array  $user The record of the sender
3010          *
3011          * @return string The envelope
3012          */
3013         public static function buildMagicEnvelope($msg, $user)
3014         {
3015                 $b64url_data = base64url_encode($msg);
3016                 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
3017
3018                 $key_id = base64url_encode(self::myHandle($user));
3019                 $type = "application/xml";
3020                 $encoding = "base64url";
3021                 $alg = "RSA-SHA256";
3022                 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
3023
3024                 // Fallback if the private key wasn't transmitted in the expected field
3025                 if ($user['uprvkey'] == "") {
3026                         $user['uprvkey'] = $user['prvkey'];
3027                 }
3028
3029                 $signature = rsa_sign($signable_data, $user["uprvkey"]);
3030                 $sig = base64url_encode($signature);
3031
3032                 $xmldata = array("me:env" => array("me:data" => $data,
3033                                                         "@attributes" => array("type" => $type),
3034                                                         "me:encoding" => $encoding,
3035                                                         "me:alg" => $alg,
3036                                                         "me:sig" => $sig,
3037                                                         "@attributes2" => array("key_id" => $key_id)));
3038
3039                 $namespaces = array("me" => "http://salmon-protocol.org/ns/magic-env");
3040
3041                 return XML::fromArray($xmldata, $xml, false, $namespaces);
3042         }
3043
3044         /**
3045          * @brief Create the envelope for a message
3046          *
3047          * @param string $msg     The message that is to be transmitted
3048          * @param array  $user    The record of the sender
3049          * @param array  $contact Target of the communication
3050          * @param string $prvkey  The private key of the sender
3051          * @param string $pubkey  The public key of the receiver
3052          * @param bool   $public  Is the message public?
3053          *
3054          * @return string The message that will be transmitted to other servers
3055          */
3056         private static function buildMessage($msg, $user, $contact, $prvkey, $pubkey, $public = false)
3057         {
3058                 // The message is put into an envelope with the sender's signature
3059                 $envelope = self::buildMagicEnvelope($msg, $user);
3060
3061                 // Private messages are put into a second envelope, encrypted with the receivers public key
3062                 if (!$public) {
3063                         $envelope = self::encodePrivateData($envelope, $user, $contact, $prvkey, $pubkey);
3064                 }
3065
3066                 return $envelope;
3067         }
3068
3069         /**
3070          * @brief Creates a signature for a message
3071          *
3072          * @param array $owner   the array of the owner of the message
3073          * @param array $message The message that is to be signed
3074          *
3075          * @return string The signature
3076          */
3077         private static function signature($owner, $message)
3078         {
3079                 $sigmsg = $message;
3080                 unset($sigmsg["author_signature"]);
3081                 unset($sigmsg["parent_author_signature"]);
3082
3083                 $signed_text = implode(";", $sigmsg);
3084
3085                 return base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
3086         }
3087
3088         /**
3089          * @brief Transmit a message to a target server
3090          *
3091          * @param array  $owner        the array of the item owner
3092          * @param array  $contact      Target of the communication
3093          * @param string $envelope     The message that is to be transmitted
3094          * @param bool   $public_batch Is it a public post?
3095          * @param bool   $queue_run    Is the transmission called from the queue?
3096          * @param string $guid         message guid
3097          *
3098          * @return int Result of the transmission
3099          */
3100         public static function transmit($owner, $contact, $envelope, $public_batch, $queue_run = false, $guid = "")
3101         {
3102                 $a = get_app();
3103
3104                 $enabled = intval(Config::get("system", "diaspora_enabled"));
3105                 if (!$enabled) {
3106                         return 200;
3107                 }
3108
3109                 $logid = random_string(4);
3110                 $dest_url = (($public_batch) ? $contact["batch"] : $contact["notify"]);
3111                 if (!$dest_url) {
3112                         logger("no url for contact: ".$contact["id"]." batch mode =".$public_batch);
3113                         return 0;
3114                 }
3115
3116                 logger("transmit: ".$logid."-".$guid." ".$dest_url);
3117
3118                 if (!$queue_run && was_recently_delayed($contact["id"])) {
3119                         $return_code = 0;
3120                 } else {
3121                         if (!intval(Config::get("system", "diaspora_test"))) {
3122                                 $content_type = (($public_batch) ? "application/magic-envelope+xml" : "application/json");
3123
3124                                 post_url($dest_url."/", $envelope, array("Content-Type: ".$content_type));
3125                                 $return_code = $a->get_curl_code();
3126                         } else {
3127                                 logger("test_mode");
3128                                 return 200;
3129                         }
3130                 }
3131
3132                 logger("transmit: ".$logid."-".$guid." returns: ".$return_code);
3133
3134                 if (!$return_code || (($return_code == 503) && (stristr($a->get_curl_headers(), "retry-after")))) {
3135                         logger("queue message");
3136
3137                         $r = q(
3138                                 "SELECT `id` FROM `queue` WHERE `cid` = %d AND `network` = '%s' AND `content` = '%s' AND `batch` = %d LIMIT 1",
3139                                 intval($contact["id"]),
3140                                 dbesc(NETWORK_DIASPORA),
3141                                 dbesc($envelope),
3142                                 intval($public_batch)
3143                         );
3144                         if ($r) {
3145                                 logger("add_to_queue ignored - identical item already in queue");
3146                         } else {
3147                                 // queue message for redelivery
3148                                 add_to_queue($contact["id"], NETWORK_DIASPORA, $envelope, $public_batch);
3149
3150                                 // The message could not be delivered. We mark the contact as "dead"
3151                                 Contact::markForArchival($contact);
3152                         }
3153                 } elseif (($return_code >= 200) && ($return_code <= 299)) {
3154                         // We successfully delivered a message, the contact is alive
3155                         Contact::unmarkForArchival($contact);
3156                 }
3157
3158                 return(($return_code) ? $return_code : (-1));
3159         }
3160
3161
3162         /**
3163          * @brief Build the post xml
3164          *
3165          * @param string $type    The message type
3166          * @param array  $message The message data
3167          *
3168          * @return string The post XML
3169          */
3170         public static function buildPostXml($type, $message)
3171         {
3172                 $data = array($type => $message);
3173
3174                 return XML::fromArray($data, $xml);
3175         }
3176
3177         /**
3178          * @brief Builds and transmit messages
3179          *
3180          * @param array  $owner        the array of the item owner
3181          * @param array  $contact      Target of the communication
3182          * @param string $type         The message type
3183          * @param array  $message      The message data
3184          * @param bool   $public_batch Is it a public post?
3185          * @param string $guid         message guid
3186          * @param bool   $spool        Should the transmission be spooled or transmitted?
3187          *
3188          * @return int Result of the transmission
3189          */
3190         private static function buildAndTransmit($owner, $contact, $type, $message, $public_batch = false, $guid = "", $spool = false)
3191         {
3192                 $msg = self::buildPostXml($type, $message);
3193
3194                 logger('message: '.$msg, LOGGER_DATA);
3195                 logger('send guid '.$guid, LOGGER_DEBUG);
3196
3197                 // Fallback if the private key wasn't transmitted in the expected field
3198                 if ($owner['uprvkey'] == "") {
3199                         $owner['uprvkey'] = $owner['prvkey'];
3200                 }
3201
3202                 $envelope = self::buildMessage($msg, $owner, $contact, $owner['uprvkey'], $contact['pubkey'], $public_batch);
3203
3204                 if ($spool) {
3205                         add_to_queue($contact['id'], NETWORK_DIASPORA, $envelope, $public_batch);
3206                         return true;
3207                 } else {
3208                         $return_code = self::transmit($owner, $contact, $envelope, $public_batch, false, $guid);
3209                 }
3210
3211                 logger("guid: ".$guid." result ".$return_code, LOGGER_DEBUG);
3212
3213                 return $return_code;
3214         }
3215
3216         /**
3217          * @brief sends an account migration
3218          *
3219          * @param array $owner   the array of the item owner
3220          * @param array $contact Target of the communication
3221          * @param int   $uid     User ID
3222          *
3223          * @return int The result of the transmission
3224          */
3225         public static function sendAccountMigration($owner, $contact, $uid)
3226         {
3227                 $old_handle = PConfig::get($uid, 'system', 'previous_addr');
3228                 $profile = self::createProfileData($uid);
3229
3230                 $signed_text = 'AccountMigration:'.$old_handle.':'.$profile['author'];
3231                 $signature = base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
3232
3233                 $message = array("author" => $old_handle,
3234                                 "profile" => $profile,
3235                                 "signature" => $signature);
3236
3237                 logger("Send account migration ".print_r($message, true), LOGGER_DEBUG);
3238
3239                 return self::buildAndTransmit($owner, $contact, "account_migration", $message);
3240         }
3241
3242         /**
3243          * @brief Sends a "share" message
3244          *
3245          * @param array $owner   the array of the item owner
3246          * @param array $contact Target of the communication
3247          *
3248          * @return int The result of the transmission
3249          */
3250         public static function sendShare($owner, $contact)
3251         {
3252                 /**
3253                  * @todo support the different possible combinations of "following" and "sharing"
3254                  * Currently, Diaspora only interprets the "sharing" field
3255                  *
3256                  * Before switching this code productive, we have to check all "sendShare" calls if "rel" is set correctly
3257                  */
3258
3259                 /*
3260                 switch ($contact["rel"]) {
3261                         case CONTACT_IS_FRIEND:
3262                                 $following = true;
3263                                 $sharing = true;
3264                         case CONTACT_IS_SHARING:
3265                                 $following = false;
3266                                 $sharing = true;
3267                         case CONTACT_IS_FOLLOWER:
3268                                 $following = true;
3269                                 $sharing = false;
3270                 }
3271                 */
3272
3273                 $message = array("author" => self::myHandle($owner),
3274                                 "recipient" => $contact["addr"],
3275                                 "following" => "true",
3276                                 "sharing" => "true");
3277
3278                 logger("Send share ".print_r($message, true), LOGGER_DEBUG);
3279
3280                 return self::buildAndTransmit($owner, $contact, "contact", $message);
3281         }
3282
3283         /**
3284          * @brief sends an "unshare"
3285          *
3286          * @param array $owner   the array of the item owner
3287          * @param array $contact Target of the communication
3288          *
3289          * @return int The result of the transmission
3290          */
3291         public static function sendUnshare($owner, $contact)
3292         {
3293                 $message = array("author" => self::myHandle($owner),
3294                                 "recipient" => $contact["addr"],
3295                                 "following" => "false",
3296                                 "sharing" => "false");
3297
3298                 logger("Send unshare ".print_r($message, true), LOGGER_DEBUG);
3299
3300                 return self::buildAndTransmit($owner, $contact, "contact", $message);
3301         }
3302
3303         /**
3304          * @brief Checks a message body if it is a reshare
3305          *
3306          * @param string $body     The message body that is to be check
3307          * @param bool   $complete Should it be a complete check or a simple check?
3308          *
3309          * @return array|bool Reshare details or "false" if no reshare
3310          */
3311         public static function isReshare($body, $complete = true)
3312         {
3313                 $body = trim($body);
3314
3315                 // Skip if it isn't a pure repeated messages
3316                 // Does it start with a share?
3317                 if ((strpos($body, "[share") > 0) && $complete) {
3318                         return(false);
3319                 }
3320
3321                 // Does it end with a share?
3322                 if (strlen($body) > (strrpos($body, "[/share]") + 8)) {
3323                         return(false);
3324                 }
3325
3326                 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "$1", $body);
3327                 // Skip if there is no shared message in there
3328                 if ($body == $attributes) {
3329                         return(false);
3330                 }
3331
3332                 // If we don't do the complete check we quit here
3333                 if (!$complete) {
3334                         return true;
3335                 }
3336
3337                 $guid = "";
3338                 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
3339                 if ($matches[1] != "") {
3340                         $guid = $matches[1];
3341                 }
3342
3343                 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
3344                 if ($matches[1] != "") {
3345                         $guid = $matches[1];
3346                 }
3347
3348                 if ($guid != "") {
3349                         $r = q(
3350                                 "SELECT `contact-id` FROM `item` WHERE `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1",
3351                                 dbesc($guid),
3352                                 NETWORK_DFRN,
3353                                 NETWORK_DIASPORA
3354                         );
3355                         if ($r) {
3356                                 $ret= array();
3357                                 $ret["root_handle"] = self::handleFromContact($r[0]["contact-id"]);
3358                                 $ret["root_guid"] = $guid;
3359                                 return($ret);
3360                         }
3361                 }
3362
3363                 $profile = "";
3364                 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
3365                 if ($matches[1] != "") {
3366                         $profile = $matches[1];
3367                 }
3368
3369                 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
3370                 if ($matches[1] != "") {
3371                         $profile = $matches[1];
3372                 }
3373
3374                 $ret= array();
3375
3376                 $ret["root_handle"] = preg_replace("=https?://(.*)/u/(.*)=ism", "$2@$1", $profile);
3377                 if (($ret["root_handle"] == $profile) || ($ret["root_handle"] == "")) {
3378                         return(false);
3379                 }
3380
3381                 $link = "";
3382                 preg_match("/link='(.*?)'/ism", $attributes, $matches);
3383                 if ($matches[1] != "") {
3384                         $link = $matches[1];
3385                 }
3386
3387                 preg_match('/link="(.*?)"/ism', $attributes, $matches);
3388                 if ($matches[1] != "") {
3389                         $link = $matches[1];
3390                 }
3391
3392                 $ret["root_guid"] = preg_replace("=https?://(.*)/posts/(.*)=ism", "$2", $link);
3393                 if (($ret["root_guid"] == $link) || (trim($ret["root_guid"]) == "")) {
3394                         return(false);
3395                 }
3396
3397                 return($ret);
3398         }
3399
3400         /**
3401          * @brief Create an event array
3402          *
3403          * @param integer $event_id The id of the event
3404          *
3405          * @return array with event data
3406          */
3407         private static function buildEvent($event_id)
3408         {
3409                 $r = q("SELECT `guid`, `uid`, `start`, `finish`, `nofinish`, `summary`, `desc`, `location`, `adjust` FROM `event` WHERE `id` = %d", intval($event_id));
3410                 if (!DBM::is_result($r)) {
3411                         return array();
3412                 }
3413
3414                 $event = $r[0];
3415
3416                 $eventdata = array();
3417
3418                 $r = q("SELECT `timezone` FROM `user` WHERE `uid` = %d", intval($event['uid']));
3419                 if (!DBM::is_result($r)) {
3420                         return array();
3421                 }
3422
3423                 $user = $r[0];
3424
3425                 $r = q("SELECT `addr`, `nick` FROM `contact` WHERE `uid` = %d AND `self`", intval($event['uid']));
3426                 if (!DBM::is_result($r)) {
3427                         return array();
3428                 }
3429
3430                 $owner = $r[0];
3431
3432                 $eventdata['author'] = self::myHandle($owner);
3433
3434                 if ($event['guid']) {
3435                         $eventdata['guid'] = $event['guid'];
3436                 }
3437
3438                 $mask = 'Y-m-d\TH:i:s\Z';
3439
3440                 /// @todo - establish "all day" events in Friendica
3441                 $eventdata["all_day"] = "false";
3442
3443                 if (!$event['adjust']) {
3444                         $eventdata['timezone'] = $user['timezone'];
3445
3446                         if ($eventdata['timezone'] == "") {
3447                                 $eventdata['timezone'] = 'UTC';
3448                         }
3449                 }
3450
3451                 if ($event['start']) {
3452                         $eventdata['start'] = datetime_convert($eventdata['timezone'], "UTC", $event['start'], $mask);
3453                 }
3454                 if ($event['finish'] && !$event['nofinish']) {
3455                         $eventdata['end'] = datetime_convert($eventdata['timezone'], "UTC", $event['finish'], $mask);
3456                 }
3457                 if ($event['summary']) {
3458                         $eventdata['summary'] = html_entity_decode(bb2diaspora($event['summary']));
3459                 }
3460                 if ($event['desc']) {
3461                         $eventdata['description'] = html_entity_decode(bb2diaspora($event['desc']));
3462                 }
3463                 if ($event['location']) {
3464                         $location = array();
3465                         $location["address"] = html_entity_decode(bb2diaspora($event['location']));
3466                         $location["lat"] = 0;
3467                         $location["lng"] = 0;
3468                         $eventdata['location'] = $location;
3469                 }
3470
3471                 return $eventdata;
3472         }
3473
3474         /**
3475          * @brief Create a post (status message or reshare)
3476          *
3477          * @param array $item  The item that will be exported
3478          * @param array $owner the array of the item owner
3479          *
3480          * @return array
3481          * 'type' -> Message type ("status_message" or "reshare")
3482          * 'message' -> Array of XML elements of the status
3483          */
3484         public static function buildStatus($item, $owner)
3485         {
3486                 $cachekey = "diaspora:buildStatus:".$item['guid'];
3487
3488                 $result = Cache::get($cachekey);
3489                 if (!is_null($result)) {
3490                         return $result;
3491                 }
3492
3493                 $myaddr = self::myHandle($owner);
3494
3495                 $public = (($item["private"]) ? "false" : "true");
3496
3497                 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d\TH:i:s\Z');
3498
3499                 // Detect a share element and do a reshare
3500                 if (!$item['private'] && ($ret = self::isReshare($item["body"]))) {
3501                         $message = array("author" => $myaddr,
3502                                         "guid" => $item["guid"],
3503                                         "created_at" => $created,
3504                                         "root_author" => $ret["root_handle"],
3505                                         "root_guid" => $ret["root_guid"],
3506                                         "provider_display_name" => $item["app"],
3507                                         "public" => $public);
3508
3509                         $type = "reshare";
3510                 } else {
3511                         $title = $item["title"];
3512                         $body = $item["body"];
3513
3514                         // convert to markdown
3515                         $body = html_entity_decode(bb2diaspora($body));
3516
3517                         // Adding the title
3518                         if (strlen($title)) {
3519                                 $body = "## ".html_entity_decode($title)."\n\n".$body;
3520                         }
3521
3522                         if ($item["attach"]) {
3523                                 $cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism', $item["attach"], $matches, PREG_SET_ORDER);
3524                                 if (cnt) {
3525                                         $body .= "\n".t("Attachments:")."\n";
3526                                         foreach ($matches as $mtch) {
3527                                                 $body .= "[".$mtch[3]."](".$mtch[1].")\n";
3528                                         }
3529                                 }
3530                         }
3531
3532                         $location = array();
3533
3534                         if ($item["location"] != "")
3535                                 $location["address"] = $item["location"];
3536
3537                         if ($item["coord"] != "") {
3538                                 $coord = explode(" ", $item["coord"]);
3539                                 $location["lat"] = $coord[0];
3540                                 $location["lng"] = $coord[1];
3541                         }
3542
3543                         $message = array("author" => $myaddr,
3544                                         "guid" => $item["guid"],
3545                                         "created_at" => $created,
3546                                         "public" => $public,
3547                                         "text" => $body,
3548                                         "provider_display_name" => $item["app"],
3549                                         "location" => $location);
3550
3551                         // Diaspora rejects messages when they contain a location without "lat" or "lng"
3552                         if (!isset($location["lat"]) || !isset($location["lng"])) {
3553                                 unset($message["location"]);
3554                         }
3555
3556                         if ($item['event-id'] > 0) {
3557                                 $event = self::buildEvent($item['event-id']);
3558                                 if (count($event)) {
3559                                         $message['event'] = $event;
3560
3561                                         /// @todo Once Diaspora supports it, we will remove the body
3562                                         // $message['text'] = '';
3563                                 }
3564                         }
3565
3566                         $type = "status_message";
3567                 }
3568
3569                 $msg = array("type" => $type, "message" => $message);
3570
3571                 Cache::set($cachekey, $msg, CACHE_QUARTER_HOUR);
3572
3573                 return $msg;
3574         }
3575
3576         /**
3577          * @brief Sends a post
3578          *
3579          * @param array $item         The item that will be exported
3580          * @param array $owner        the array of the item owner
3581          * @param array $contact      Target of the communication
3582          * @param bool  $public_batch Is it a public post?
3583          *
3584          * @return int The result of the transmission
3585          */
3586         public static function sendStatus($item, $owner, $contact, $public_batch = false)
3587         {
3588                 $status = self::buildStatus($item, $owner);
3589
3590                 return self::buildAndTransmit($owner, $contact, $status["type"], $status["message"], $public_batch, $item["guid"]);
3591         }
3592
3593         /**
3594          * @brief Creates a "like" object
3595          *
3596          * @param array $item  The item that will be exported
3597          * @param array $owner the array of the item owner
3598          *
3599          * @return array The data for a "like"
3600          */
3601         private static function constructLike($item, $owner)
3602         {
3603                 $p = q(
3604                         "SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
3605                         dbesc($item["thr-parent"])
3606                 );
3607                 if (!DBM::is_result($p)) {
3608                         return false;
3609                 }
3610
3611                 $parent = $p[0];
3612
3613                 $target_type = ($parent["uri"] === $parent["parent-uri"] ? "Post" : "Comment");
3614                 if ($item['verb'] === ACTIVITY_LIKE) {
3615                         $positive = "true";
3616                 } elseif ($item['verb'] === ACTIVITY_DISLIKE) {
3617                         $positive = "false";
3618                 }
3619
3620                 return(array("author" => self::myHandle($owner),
3621                                 "guid" => $item["guid"],
3622                                 "parent_guid" => $parent["guid"],
3623                                 "parent_type" => $target_type,
3624                                 "positive" => $positive,
3625                                 "author_signature" => ""));
3626         }
3627
3628         /**
3629          * @brief Creates an "EventParticipation" object
3630          *
3631          * @param array $item  The item that will be exported
3632          * @param array $owner the array of the item owner
3633          *
3634          * @return array The data for an "EventParticipation"
3635          */
3636         private static function constructAttend($item, $owner)
3637         {
3638                 $p = q(
3639                         "SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
3640                         dbesc($item["thr-parent"])
3641                 );
3642                 if (!DBM::is_result($p)) {
3643                         return false;
3644                 }
3645
3646                 $parent = $p[0];
3647
3648                 switch ($item['verb']) {
3649                         case ACTIVITY_ATTEND:
3650                                 $attend_answer = 'accepted';
3651                                 break;
3652                         case ACTIVITY_ATTENDNO:
3653                                 $attend_answer = 'declined';
3654                                 break;
3655                         case ACTIVITY_ATTENDMAYBE:
3656                                 $attend_answer = 'tentative';
3657                                 break;
3658                         default:
3659                                 logger('Unknown verb '.$item['verb'].' in item '.$item['guid']);
3660                                 return false;
3661                 }
3662
3663                 return(array("author" => self::myHandle($owner),
3664                                 "guid" => $item["guid"],
3665                                 "parent_guid" => $parent["guid"],
3666                                 "status" => $attend_answer,
3667                                 "author_signature" => ""));
3668         }
3669
3670         /**
3671          * @brief Creates the object for a comment
3672          *
3673          * @param array $item  The item that will be exported
3674          * @param array $owner the array of the item owner
3675          *
3676          * @return array The data for a comment
3677          */
3678         private static function constructComment($item, $owner)
3679         {
3680                 $cachekey = "diaspora:constructComment:".$item['guid'];
3681
3682                 $result = Cache::get($cachekey);
3683                 if (!is_null($result)) {
3684                         return $result;
3685                 }
3686
3687                 $p = q(
3688                         "SELECT `guid` FROM `item` WHERE `parent` = %d AND `id` = %d LIMIT 1",
3689                         intval($item["parent"]),
3690                         intval($item["parent"])
3691                 );
3692
3693                 if (!DBM::is_result($p)) {
3694                         return false;
3695                 }
3696
3697                 $parent = $p[0];
3698
3699                 $text = html_entity_decode(bb2diaspora($item["body"]));
3700                 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d\TH:i:s\Z');
3701
3702                 $comment = array("author" => self::myHandle($owner),
3703                                 "guid" => $item["guid"],
3704                                 "created_at" => $created,
3705                                 "parent_guid" => $parent["guid"],
3706                                 "text" => $text,
3707                                 "author_signature" => "");
3708
3709                 // Send the thread parent guid only if it is a threaded comment
3710                 if ($item['thr-parent'] != $item['parent-uri']) {
3711                         $comment['thread_parent_guid'] = self::getGuidFromUri($item['thr-parent'], $item['uid']);
3712                 }
3713
3714                 Cache::set($cachekey, $comment, CACHE_QUARTER_HOUR);
3715
3716                 return($comment);
3717         }
3718
3719         /**
3720          * @brief Send a like or a comment
3721          *
3722          * @param array $item         The item that will be exported
3723          * @param array $owner        the array of the item owner
3724          * @param array $contact      Target of the communication
3725          * @param bool  $public_batch Is it a public post?
3726          *
3727          * @return int The result of the transmission
3728          */
3729         public static function sendFollowup($item, $owner, $contact, $public_batch = false)
3730         {
3731                 if (in_array($item['verb'], array(ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE))) {
3732                         $message = self::constructAttend($item, $owner);
3733                         $type = "event_participation";
3734                 } elseif (in_array($item["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE))) {
3735                         $message = self::constructLike($item, $owner);
3736                         $type = "like";
3737                 } else {
3738                         $message = self::constructComment($item, $owner);
3739                         $type = "comment";
3740                 }
3741
3742                 if (!$message) {
3743                         return false;
3744                 }
3745
3746                 $message["author_signature"] = self::signature($owner, $message);
3747
3748                 return self::buildAndTransmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
3749         }
3750
3751         /**
3752          * @brief Creates a message from a signature record entry
3753          *
3754          * @param array $item      The item that will be exported
3755          * @param array $signature The entry of the "sign" record
3756          *
3757          * @return string The message
3758          */
3759         private static function messageFromSignature($item, $signature)
3760         {
3761                 // Split the signed text
3762                 $signed_parts = explode(";", $signature['signed_text']);
3763
3764                 if ($item["deleted"]) {
3765                         $message = array("author" => $signature['signer'],
3766                                         "target_guid" => $signed_parts[0],
3767                                         "target_type" => $signed_parts[1]);
3768                 } elseif (in_array($item["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE))) {
3769                         $message = array("author" => $signed_parts[4],
3770                                         "guid" => $signed_parts[1],
3771                                         "parent_guid" => $signed_parts[3],
3772                                         "parent_type" => $signed_parts[2],
3773                                         "positive" => $signed_parts[0],
3774                                         "author_signature" => $signature['signature'],
3775                                         "parent_author_signature" => "");
3776                 } else {
3777                         // Remove the comment guid
3778                         $guid = array_shift($signed_parts);
3779
3780                         // Remove the parent guid
3781                         $parent_guid = array_shift($signed_parts);
3782
3783                         // Remove the handle
3784                         $handle = array_pop($signed_parts);
3785
3786                         // Glue the parts together
3787                         $text = implode(";", $signed_parts);
3788
3789                         $message = array("author" => $handle,
3790                                         "guid" => $guid,
3791                                         "parent_guid" => $parent_guid,
3792                                         "text" => implode(";", $signed_parts),
3793                                         "author_signature" => $signature['signature'],
3794                                         "parent_author_signature" => "");
3795                 }
3796                 return $message;
3797         }
3798
3799         /**
3800          * @brief Relays messages (like, comment, retraction) to other servers if we are the thread owner
3801          *
3802          * @param array $item         The item that will be exported
3803          * @param array $owner        the array of the item owner
3804          * @param array $contact      Target of the communication
3805          * @param bool  $public_batch Is it a public post?
3806          *
3807          * @return int The result of the transmission
3808          */
3809         public static function sendRelay($item, $owner, $contact, $public_batch = false)
3810         {
3811                 if ($item["deleted"]) {
3812                         return self::sendRetraction($item, $owner, $contact, $public_batch, true);
3813                 } elseif (in_array($item["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE))) {
3814                         $type = "like";
3815                 } else {
3816                         $type = "comment";
3817                 }
3818
3819                 logger("Got relayable data ".$type." for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
3820
3821                 // fetch the original signature
3822
3823                 $r = q(
3824                         "SELECT `signed_text`, `signature`, `signer` FROM `sign` WHERE `iid` = %d LIMIT 1",
3825                         intval($item["id"])
3826                 );
3827
3828                 if (!$r) {
3829                         logger("Couldn't fetch signatur for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
3830                         return false;
3831                 }
3832
3833                 $signature = $r[0];
3834
3835                 // Old way - is used by the internal Friendica functions
3836                 /// @todo Change all signatur storing functions to the new format
3837                 if ($signature['signed_text'] && $signature['signature'] && $signature['signer']) {
3838                         $message = self::messageFromSignature($item, $signature);
3839                 } else {// New way
3840                         $msg = json_decode($signature['signed_text'], true);
3841
3842                         $message = array();
3843                         if (is_array($msg)) {
3844                                 foreach ($msg as $field => $data) {
3845                                         if (!$item["deleted"]) {
3846                                                 if ($field == "diaspora_handle") {
3847                                                         $field = "author";
3848                                                 }
3849                                                 if ($field == "target_type") {
3850                                                         $field = "parent_type";
3851                                                 }
3852                                         }
3853
3854                                         $message[$field] = $data;
3855                                 }
3856                         } else {
3857                                 logger("Signature text for item ".$item["guid"]." (".$item["id"].") couldn't be extracted: ".$signature['signed_text'], LOGGER_DEBUG);
3858                         }
3859                 }
3860
3861                 $message["parent_author_signature"] = self::signature($owner, $message);
3862
3863                 logger("Relayed data ".print_r($message, true), LOGGER_DEBUG);
3864
3865                 return self::buildAndTransmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
3866         }
3867
3868         /**
3869          * @brief Sends a retraction (deletion) of a message, like or comment
3870          *
3871          * @param array $item         The item that will be exported
3872          * @param array $owner        the array of the item owner
3873          * @param array $contact      Target of the communication
3874          * @param bool  $public_batch Is it a public post?
3875          * @param bool  $relay        Is the retraction transmitted from a relay?
3876          *
3877          * @return int The result of the transmission
3878          */
3879         public static function sendRetraction($item, $owner, $contact, $public_batch = false, $relay = false)
3880         {
3881                 $itemaddr = self::handleFromContact($item["contact-id"], $item["gcontact-id"]);
3882
3883                 $msg_type = "retraction";
3884
3885                 if ($item['id'] == $item['parent']) {
3886                         $target_type = "Post";
3887                 } elseif (in_array($item["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE))) {
3888                         $target_type = "Like";
3889                 } else {
3890                         $target_type = "Comment";
3891                 }
3892
3893                 $message = array("author" => $itemaddr,
3894                                 "target_guid" => $item['guid'],
3895                                 "target_type" => $target_type);
3896
3897                 logger("Got message ".print_r($message, true), LOGGER_DEBUG);
3898
3899                 return self::buildAndTransmit($owner, $contact, $msg_type, $message, $public_batch, $item["guid"]);
3900         }
3901
3902         /**
3903          * @brief Sends a mail
3904          *
3905          * @param array $item    The item that will be exported
3906          * @param array $owner   The owner
3907          * @param array $contact Target of the communication
3908          *
3909          * @return int The result of the transmission
3910          */
3911         public static function sendMail($item, $owner, $contact)
3912         {
3913                 $myaddr = self::myHandle($owner);
3914
3915                 $r = q(
3916                         "SELECT * FROM `conv` WHERE `id` = %d AND `uid` = %d LIMIT 1",
3917                         intval($item["convid"]),
3918                         intval($item["uid"])
3919                 );
3920
3921                 if (!DBM::is_result($r)) {
3922                         logger("conversation not found.");
3923                         return;
3924                 }
3925                 $cnv = $r[0];
3926
3927                 $conv = array(
3928                         "author" => $cnv["creator"],
3929                         "guid" => $cnv["guid"],
3930                         "subject" => $cnv["subject"],
3931                         "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d\TH:i:s\Z'),
3932                         "participants" => $cnv["recips"]
3933                 );
3934
3935                 $body = bb2diaspora($item["body"]);
3936                 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d\TH:i:s\Z');
3937
3938                 $msg = array(
3939                         "author" => $myaddr,
3940                         "guid" => $item["guid"],
3941                         "conversation_guid" => $cnv["guid"],
3942                         "text" => $body,
3943                         "created_at" => $created,
3944                 );
3945
3946                 if ($item["reply"]) {
3947                         $message = $msg;
3948                         $type = "message";
3949                 } else {
3950                         $message = array(
3951                                         "author" => $cnv["creator"],
3952                                         "guid" => $cnv["guid"],
3953                                         "subject" => $cnv["subject"],
3954                                         "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d\TH:i:s\Z'),
3955                                         "participants" => $cnv["recips"],
3956                                         "message" => $msg);
3957
3958                         $type = "conversation";
3959                 }
3960
3961                 return self::buildAndTransmit($owner, $contact, $type, $message, false, $item["guid"]);
3962         }
3963
3964         /**
3965          * @brief Create profile data
3966          *
3967          * @param int $uid The user id
3968          *
3969          * @return array The profile data
3970          */
3971         private static function createProfileData($uid)
3972         {
3973                 $r = q(
3974                         "SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.*, `user`.`prvkey` AS `uprvkey`, `contact`.`addr`
3975                         FROM `profile`
3976                         INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
3977                         INNER JOIN `contact` ON `profile`.`uid` = `contact`.`uid`
3978                         WHERE `user`.`uid` = %d AND `profile`.`is-default` AND `contact`.`self` LIMIT 1",
3979                         intval($uid)
3980                 );
3981
3982                 if (!$r) {
3983                         return array();
3984                 }
3985
3986                 $profile = $r[0];
3987
3988                 $handle = $profile["addr"];
3989                 $first = ((strpos($profile['name'], ' ')
3990                         ? trim(substr($profile['name'], 0, strpos($profile['name'], ' '))) : $profile['name']));
3991                 $last = (($first === $profile['name']) ? '' : trim(substr($profile['name'], strlen($first))));
3992                 $large = System::baseUrl().'/photo/custom/300/'.$profile['uid'].'.jpg';
3993                 $medium = System::baseUrl().'/photo/custom/100/'.$profile['uid'].'.jpg';
3994                 $small = System::baseUrl().'/photo/custom/50/'  .$profile['uid'].'.jpg';
3995                 $searchable = (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false');
3996
3997                 if ($searchable === 'true') {
3998                         $dob = '1000-00-00';
3999
4000                         if (($profile['dob']) && ($profile['dob'] > '0001-01-01')) {
4001                                 $dob = ((intval($profile['dob'])) ? intval($profile['dob']) : '1000') .'-'. datetime_convert('UTC', 'UTC', $profile['dob'],'m-d');
4002                         }
4003
4004                         $about = $profile['about'];
4005                         $about = strip_tags(bbcode($about));
4006
4007                         $location = Profile::formatLocation($profile);
4008                         $tags = '';
4009                         if ($profile['pub_keywords']) {
4010                                 $kw = str_replace(',', ' ', $profile['pub_keywords']);
4011                                 $kw = str_replace('  ', ' ', $kw);
4012                                 $arr = explode(' ', $profile['pub_keywords']);
4013                                 if (count($arr)) {
4014                                         for ($x = 0; $x < 5; $x ++) {
4015                                                 if (trim($arr[$x])) {
4016                                                         $tags .= '#'. trim($arr[$x]) .' ';
4017                                                 }
4018                                         }
4019                                 }
4020                         }
4021                         $tags = trim($tags);
4022                 }
4023
4024                 return array("author" => $handle,
4025                                 "first_name" => $first,
4026                                 "last_name" => $last,
4027                                 "image_url" => $large,
4028                                 "image_url_medium" => $medium,
4029                                 "image_url_small" => $small,
4030                                 "birthday" => $dob,
4031                                 "gender" => $profile['gender'],
4032                                 "bio" => $about,
4033                                 "location" => $location,
4034                                 "searchable" => $searchable,
4035                                 "nsfw" => "false",
4036                                 "tag_string" => $tags);
4037         }
4038
4039         /**
4040          * @brief Sends profile data
4041          *
4042          * @param int  $uid    The user id
4043          * @param bool $recips optional, default false
4044          * @return void
4045          */
4046         public static function sendProfile($uid, $recips = false)
4047         {
4048                 if (!$uid) {
4049                         return;
4050                 }
4051
4052                 if (!$recips) {
4053                         $recips = q(
4054                                 "SELECT `id`,`name`,`network`,`pubkey`,`notify` FROM `contact` WHERE `network` = '%s'
4055                                 AND `uid` = %d AND `rel` != %d",
4056                                 dbesc(NETWORK_DIASPORA),
4057                                 intval($uid),
4058                                 intval(CONTACT_IS_SHARING)
4059                         );
4060                 }
4061
4062                 if (!$recips) {
4063                         return;
4064                 }
4065
4066                 $message = self::createProfileData($uid);
4067
4068                 foreach ($recips as $recip) {
4069                         logger("Send updated profile data for user ".$uid." to contact ".$recip["id"], LOGGER_DEBUG);
4070                         self::buildAndTransmit($profile, $recip, "profile", $message, false, "", true);
4071                 }
4072         }
4073
4074         /**
4075          * @brief Stores the signature for likes that are created on our system
4076          *
4077          * @param array $contact The contact array of the "like"
4078          * @param int   $post_id The post id of the "like"
4079          *
4080          * @return bool Success
4081          */
4082         public static function storeLikeSignature($contact, $post_id)
4083         {
4084                 // Is the contact the owner? Then fetch the private key
4085                 if (!$contact['self'] || ($contact['uid'] == 0)) {
4086                         logger("No owner post, so not storing signature", LOGGER_DEBUG);
4087                         return false;
4088                 }
4089
4090                 $r = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($contact['uid']));
4091                 if (!DBM::is_result($r)) {
4092                         return false;
4093                 }
4094
4095                 $contact["uprvkey"] = $r[0]['prvkey'];
4096
4097                 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", intval($post_id));
4098                 if (!DBM::is_result($r)) {
4099                         return false;
4100                 }
4101
4102                 if (!in_array($r[0]["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE))) {
4103                         return false;
4104                 }
4105
4106                 $message = self::constructLike($r[0], $contact);
4107                 $message["author_signature"] = self::signature($contact, $message);
4108
4109                 /*
4110                  * Now store the signature more flexible to dynamically support new fields.
4111                  * This will break Diaspora compatibility with Friendica versions prior to 3.5.
4112                  */
4113                 dba::insert('sign', array('iid' => $post_id, 'signed_text' => json_encode($message)));
4114
4115                 logger('Stored diaspora like signature');
4116                 return true;
4117         }
4118
4119         /**
4120          * @brief Stores the signature for comments that are created on our system
4121          *
4122          * @param array  $item       The item array of the comment
4123          * @param array  $contact    The contact array of the item owner
4124          * @param string $uprvkey    The private key of the sender
4125          * @param int    $message_id The message id of the comment
4126          *
4127          * @return bool Success
4128          */
4129         public static function storeCommentSignature($item, $contact, $uprvkey, $message_id)
4130         {
4131                 if ($uprvkey == "") {
4132                         logger('No private key, so not storing comment signature', LOGGER_DEBUG);
4133                         return false;
4134                 }
4135
4136                 $contact["uprvkey"] = $uprvkey;
4137
4138                 $message = self::constructComment($item, $contact);
4139                 $message["author_signature"] = self::signature($contact, $message);
4140
4141                 /*
4142                  * Now store the signature more flexible to dynamically support new fields.
4143                  * This will break Diaspora compatibility with Friendica versions prior to 3.5.
4144                  */
4145                 dba::insert('sign', array('iid' => $message_id, 'signed_text' => json_encode($message)));
4146
4147                 logger('Stored diaspora comment signature');
4148                 return true;
4149         }
4150 }