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