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