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