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