]> git.mxchange.org Git - friendica.git/blob - src/Protocol/Diaspora.php
Fix processing of incoming Diaspora messages
[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                 $condition = ['uid' => $uid, 'guid' => $guid];
1182                 $item = Post::selectFirst($fields, $condition);
1183
1184                 if (!DBA::isResult($item)) {
1185                         $person = FContact::getByURL($author);
1186                         $result = self::storeByGuid($guid, $person['url'], false);
1187
1188                         // We don't have an url for items that arrived at the public dispatcher
1189                         if (!$result && !empty($contact['url'])) {
1190                                 $result = self::storeByGuid($guid, $contact['url'], false);
1191                         }
1192
1193                         if ($result) {
1194                                 Logger::info("Fetched missing item " . $guid . " - result: " . $result);
1195
1196                                 $item = Post::selectFirst($fields, $condition);
1197                         }
1198                 }
1199
1200                 if (!DBA::isResult($item)) {
1201                         Logger::notice("parent item not found: parent: " . $guid . " - user: " . $uid);
1202                         return false;
1203                 } else {
1204                         Logger::notice("parent item found: parent: " . $guid . " - user: " . $uid);
1205                         return $item;
1206                 }
1207         }
1208
1209         /**
1210          * returns contact details
1211          *
1212          * @param array $def_contact The default contact if the person isn't found
1213          * @param array $person      The record of the person
1214          * @param int   $uid         The user id
1215          *
1216          * @return array
1217          *      'cid' => contact id
1218          *      'network' => network type
1219          * @throws \Exception
1220          */
1221         private static function authorContactByUrl(array $def_contact, array $person, int $uid): array
1222         {
1223                 $condition = ['nurl' => Strings::normaliseLink($person['url']), 'uid' => $uid];
1224                 $contact = DBA::selectFirst('contact', ['id', 'network'], $condition);
1225                 if (DBA::isResult($contact)) {
1226                         $cid = $contact['id'];
1227                         $network = $contact['network'];
1228                 } else {
1229                         $cid = $def_contact['id'];
1230                         $network = Protocol::DIASPORA;
1231                 }
1232
1233                 return [
1234                         'cid' => $cid,
1235                         'network' => $network
1236                 ];
1237         }
1238
1239         /**
1240          * Is the profile a hubzilla profile?
1241          *
1242          * @param string $url The profile link
1243          *
1244          * @return bool is it a hubzilla server?
1245          */
1246         private static function isHubzilla(string $url): bool
1247         {
1248                 return strstr($url, '/channel/');
1249         }
1250
1251         /**
1252          * Generate a post link with a given handle and message guid
1253          *
1254          * @param string $addr        The user handle
1255          * @param string $guid        message guid
1256          * @param string $parent_guid optional parent guid
1257          *
1258          * @return string the post link
1259          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1260          * @throws \ImagickException
1261          */
1262         private static function plink(string $addr, string $guid, string $parent_guid = ''): string
1263         {
1264                 $contact = Contact::getByURL($addr);
1265                 if (empty($contact)) {
1266                         Logger::info('No contact data for address', ['addr' => $addr]);
1267                         return '';
1268                 }
1269
1270                 if (empty($contact['baseurl'])) {
1271                         $contact['baseurl'] = 'https://' . substr($addr, strpos($addr, '@') + 1);
1272                         Logger::info('Create baseurl from address', ['baseurl' => $contact['baseurl'], 'url' => $contact['url']]);
1273                 }
1274
1275                 $platform = '';
1276                 $gserver = DBA::selectFirst('gserver', ['platform'], ['nurl' => Strings::normaliseLink($contact['baseurl'])]);
1277                 if (!empty($gserver['platform'])) {
1278                         $platform = strtolower($gserver['platform']);
1279                         Logger::info('Detected platform', ['platform' => $platform, 'url' => $contact['url']]);
1280                 }
1281
1282                 if (!in_array($platform, ['diaspora', 'friendica', 'hubzilla', 'socialhome'])) {
1283                         if (self::isHubzilla($contact['url'])) {
1284                                 Logger::info('Detected unknown platform as Hubzilla', ['platform' => $platform, 'url' => $contact['url']]);
1285                                 $platform = 'hubzilla';
1286                         } elseif ($contact['network'] == Protocol::DFRN) {
1287                                 Logger::info('Detected unknown platform as Friendica', ['platform' => $platform, 'url' => $contact['url']]);
1288                                 $platform = 'friendica';
1289                         }
1290                 }
1291
1292                 if ($platform == 'friendica') {
1293                         return str_replace('/profile/' . $contact['nick'] . '/', '/display/' . $guid, $contact['url'] . '/');
1294                 }
1295
1296                 if ($platform == 'hubzilla') {
1297                         return $contact['baseurl'] . '/item/' . $guid;
1298                 }
1299
1300                 if ($platform == 'socialhome') {
1301                         return $contact['baseurl'] . '/content/' . $guid;
1302                 }
1303
1304                 if ($platform != 'diaspora') {
1305                         Logger::info('Unknown platform', ['platform' => $platform, 'url' => $contact['url']]);
1306                         return '';
1307                 }
1308
1309                 if ($parent_guid != '') {
1310                         return $contact['baseurl'] . '/posts/' . $parent_guid . '#' . $guid;
1311                 } else {
1312                         return $contact['baseurl'] . '/posts/' . $guid;
1313                 }
1314         }
1315
1316         /**
1317          * Receives account migration
1318          *
1319          * @param array  $importer Array of the importer user
1320          * @param SimpleXMLElement $data The message object
1321          *
1322          * @return bool Success
1323          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1324          * @throws \ImagickException
1325          */
1326         private static function receiveAccountMigration(array $importer, SimpleXMLElement $data): bool
1327         {
1328                 $old_handle = XML::unescape($data->author);
1329                 $new_handle = XML::unescape($data->profile->author);
1330                 $signature = XML::unescape($data->signature);
1331
1332                 $contact = self::contactByHandle($importer['uid'], $old_handle);
1333                 if (!$contact) {
1334                         Logger::notice("cannot find contact for sender: " . $old_handle . " and user " . $importer['uid']);
1335                         return false;
1336                 }
1337
1338                 Logger::notice("Got migration for " . $old_handle . ", to " . $new_handle . " with user " . $importer['uid']);
1339
1340                 // Check signature
1341                 $signed_text = 'AccountMigration:' . $old_handle . ':' . $new_handle;
1342                 $key = self::key($old_handle);
1343                 if (!Crypto::rsaVerify($signed_text, $signature, $key, 'sha256')) {
1344                         Logger::notice('No valid signature for migration.');
1345                         return false;
1346                 }
1347
1348                 // Update the profile
1349                 self::receiveProfile($importer, $data->profile);
1350
1351                 // change the technical stuff in contact
1352                 $data = Probe::uri($new_handle);
1353                 if ($data['network'] == Protocol::PHANTOM) {
1354                         Logger::notice("Account for " . $new_handle . " couldn't be probed.");
1355                         return false;
1356                 }
1357
1358                 $fields = [
1359                         'url' => $data['url'],
1360                         'nurl' => Strings::normaliseLink($data['url']),
1361                         'name' => $data['name'],
1362                         'nick' => $data['nick'],
1363                         'addr' => $data['addr'],
1364                         'batch' => $data['batch'],
1365                         'notify' => $data['notify'],
1366                         'poll' => $data['poll'],
1367                         'network' => $data['network']
1368                 ];
1369
1370                 Contact::update($fields, ['addr' => $old_handle]);
1371
1372                 Logger::notice('Contacts are updated.');
1373
1374                 return true;
1375         }
1376
1377         /**
1378          * Processes an account deletion
1379          *
1380          * @param SimpleXMLElement $data The message object
1381          *
1382          * @return bool Success
1383          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1384          */
1385         private static function receiveAccountDeletion(SimpleXMLElement $data): bool
1386         {
1387                 $author = XML::unescape($data->author);
1388
1389                 $contacts = DBA::select('contact', ['id'], ['addr' => $author]);
1390                 while ($contact = DBA::fetch($contacts)) {
1391                         Contact::remove($contact['id']);
1392                 }
1393                 DBA::close($contacts);
1394
1395                 Logger::notice('Removed contacts for ' . $author);
1396
1397                 return true;
1398         }
1399
1400         /**
1401          * Fetch the uri from our database if we already have this item (maybe from ourselves)
1402          *
1403          * @param string  $author    Author handle
1404          * @param string  $guid      Message guid
1405          * @param boolean $onlyfound Only return uri when found in the database
1406          *
1407          * @return string The constructed uri or the one from our database or empty string on if $onlyfound is true
1408          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1409          * @throws \ImagickException
1410          */
1411         private static function getUriFromGuid(string $author, string $guid, bool $onlyfound = false): string
1412         {
1413                 $item = Post::selectFirst(['uri'], ['guid' => $guid]);
1414                 if (DBA::isResult($item)) {
1415                         return $item['uri'];
1416                 } elseif (!$onlyfound) {
1417                         $person = FContact::getByURL($author);
1418
1419                         $parts = parse_url($person['url']);
1420                         unset($parts['path']);
1421                         $host_url = Uri::fromParts($parts);
1422
1423                         return $host_url . '/objects/' . $guid;
1424                 }
1425
1426                 return '';
1427         }
1428
1429         /**
1430          * Store the mentions in the tag table
1431          *
1432          * @param integer $uriid
1433          * @param string $text
1434          */
1435         private static function storeMentions(int $uriid, string $text)
1436         {
1437                 preg_match_all('/([@!]){(?:([^}]+?); ?)?([^} ]+)}/', $text, $matches, PREG_SET_ORDER);
1438                 if (empty($matches)) {
1439                         return;
1440                 }
1441
1442                 /*
1443                  * Matching values for the preg match
1444                  * [1] = mention type (@ or !)
1445                  * [2] = name (optional)
1446                  * [3] = profile URL
1447                  */
1448
1449                 foreach ($matches as $match) {
1450                         if (empty($match)) {
1451                                 continue;
1452                         }
1453
1454                         $person = FContact::getByURL($match[3]);
1455                         if (empty($person)) {
1456                                 continue;
1457                         }
1458
1459                         Tag::storeByHash($uriid, $match[1], $person['name'] ?: $person['nick'], $person['url']);
1460                 }
1461         }
1462
1463         /**
1464          * Processes an incoming comment
1465          *
1466          * @param array  $importer  Array of the importer user
1467          * @param string $sender    The sender of the message
1468          * @param SimpleXMLElement $data      The message object
1469          * @param string $xml       The original XML of the message
1470          * @param int    $direction Indicates if the message had been fetched or pushed (self::PUSHED, self::FETCHED, self::FORCED_FETCH)
1471          *
1472          * @return int The message id of the generated comment or "false" if there was an error
1473          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1474          * @throws \ImagickException
1475          */
1476         private static function receiveComment(array $importer, string $sender, SimpleXMLElement $data, string $xml, int $direction): bool
1477         {
1478                 $author = XML::unescape($data->author);
1479                 $guid = XML::unescape($data->guid);
1480                 $parent_guid = XML::unescape($data->parent_guid);
1481                 $text = XML::unescape($data->text);
1482
1483                 if (isset($data->created_at)) {
1484                         $created_at = DateTimeFormat::utc(XML::unescape($data->created_at));
1485                 } else {
1486                         $created_at = DateTimeFormat::utcNow();
1487                 }
1488
1489                 if (isset($data->thread_parent_guid)) {
1490                         $thread_parent_guid = XML::unescape($data->thread_parent_guid);
1491                         $thr_parent = self::getUriFromGuid('', $thread_parent_guid, true);
1492                 } else {
1493                         $thr_parent = '';
1494                 }
1495
1496                 $contact = self::allowedContactByHandle($importer, $sender, true);
1497                 if (!$contact) {
1498                         return false;
1499                 }
1500
1501                 if (!empty($contact['gsid'])) {
1502                         GServer::setProtocol($contact['gsid'], Post\DeliveryData::DIASPORA);
1503                 }
1504
1505                 $message_id = self::messageExists($importer['uid'], $guid);
1506                 if ($message_id) {
1507                         return true;
1508                 }
1509
1510                 $toplevel_parent_item = self::parentItem($importer['uid'], $parent_guid, $author, $contact);
1511                 if (!$toplevel_parent_item) {
1512                         return false;
1513                 }
1514
1515                 $person = FContact::getByURL($author);
1516                 if (!is_array($person)) {
1517                         Logger::notice("unable to find author details");
1518                         return false;
1519                 }
1520
1521                 // Fetch the contact id - if we know this contact
1522                 $author_contact = self::authorContactByUrl($contact, $person, $importer['uid']);
1523
1524                 $datarray = [];
1525
1526                 $datarray['uid'] = $importer['uid'];
1527                 $datarray['contact-id'] = $author_contact['cid'];
1528                 $datarray['network']  = $author_contact['network'];
1529
1530                 $datarray['author-link'] = $person['url'];
1531                 $datarray['author-id'] = Contact::getIdForURL($person['url'], 0);
1532
1533                 $datarray['owner-link'] = $contact['url'];
1534                 $datarray['owner-id'] = Contact::getIdForURL($contact['url'], 0);
1535
1536                 // Will be overwritten for sharing accounts in Item::insert
1537                 if (in_array($direction, [self::FETCHED, self::FORCED_FETCH])) {
1538                         $datarray['post-reason'] = Item::PR_FETCHED;
1539                 } elseif ($datarray['uid'] == 0) {
1540                         $datarray['post-reason'] = Item::PR_GLOBAL;
1541                 } else {
1542                         $datarray['post-reason'] = Item::PR_COMMENT;
1543                 }
1544
1545                 $datarray['guid'] = $guid;
1546                 $datarray['uri'] = self::getUriFromGuid($author, $guid);
1547                 $datarray['uri-id'] = ItemURI::insert(['uri' => $datarray['uri'], 'guid' => $datarray['guid']]);
1548
1549                 $datarray['verb'] = Activity::POST;
1550                 $datarray['gravity'] = GRAVITY_COMMENT;
1551
1552                 $datarray['thr-parent'] = $thr_parent ?: $toplevel_parent_item['uri'];
1553
1554                 $datarray['object-type'] = Activity\ObjectType::COMMENT;
1555                 $datarray['post-type'] = Item::PT_NOTE;
1556
1557                 $datarray['protocol'] = Conversation::PARCEL_DIASPORA;
1558                 $datarray['source'] = $xml;
1559                 $datarray['direction'] = in_array($direction, [self::FETCHED, self::FORCED_FETCH]) ? Conversation::PULL : Conversation::PUSH;
1560
1561                 $datarray['changed'] = $datarray['created'] = $datarray['edited'] = $created_at;
1562
1563                 $datarray['plink'] = self::plink($author, $guid, $toplevel_parent_item['guid']);
1564                 $body = Markdown::toBBCode($text);
1565
1566                 $datarray['body'] = self::replacePeopleGuid($body, $person['url']);
1567
1568                 self::storeMentions($datarray['uri-id'], $text);
1569                 Tag::storeRawTagsFromBody($datarray['uri-id'], $datarray['body']);
1570
1571                 self::fetchGuid($datarray);
1572
1573                 // If we are the origin of the parent we store the original data.
1574                 // We notify our followers during the item storage.
1575                 if ($toplevel_parent_item['origin']) {
1576                         $datarray['diaspora_signed_text'] = json_encode($data);
1577                 }
1578
1579                 if (Item::isTooOld($datarray)) {
1580                         Logger::info('Comment is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]);
1581                         return false;
1582                 }
1583
1584                 $message_id = Item::insert($datarray);
1585
1586                 if ($message_id <= 0) {
1587                         return false;
1588                 }
1589
1590                 if ($message_id) {
1591                         Logger::info("Stored comment " . $datarray['guid'] . " with message id " . $message_id);
1592                         if ($datarray['uid'] == 0) {
1593                                 Item::distribute($message_id, json_encode($data));
1594                         }
1595                 }
1596
1597                 return true;
1598         }
1599
1600         /**
1601          * processes and stores private messages
1602          *
1603          * @param array  $importer     Array of the importer user
1604          * @param array  $contact      The contact of the message
1605          * @param SimpleXMLElement $data         The message object
1606          * @param array  $msg          Array of the processed message, author handle and key
1607          * @param object $mesg         The private message
1608          * @param array  $conversation The conversation record to which this message belongs
1609          *
1610          * @return bool "true" if it was successful
1611          * @throws \Exception
1612          * @todo Find type-hint for $mesg and update documentation
1613          */
1614         private static function receiveConversationMessage(array $importer, array $contact, SimpleXMLElement $data, array $msg, $mesg, array $conversation): bool
1615         {
1616                 $author = XML::unescape($data->author);
1617                 $guid = XML::unescape($data->guid);
1618                 $subject = XML::unescape($data->subject);
1619
1620                 // "diaspora_handle" is the element name from the old version
1621                 // "author" is the element name from the new version
1622                 if ($mesg->author) {
1623                         $msg_author = XML::unescape($mesg->author);
1624                 } elseif ($mesg->diaspora_handle) {
1625                         $msg_author = XML::unescape($mesg->diaspora_handle);
1626                 } else {
1627                         return false;
1628                 }
1629
1630                 $msg_guid = XML::unescape($mesg->guid);
1631                 $msg_conversation_guid = XML::unescape($mesg->conversation_guid);
1632                 $msg_text = XML::unescape($mesg->text);
1633                 $msg_created_at = DateTimeFormat::utc(XML::unescape($mesg->created_at));
1634
1635                 if ($msg_conversation_guid != $guid) {
1636                         Logger::notice("message conversation guid does not belong to the current conversation.");
1637                         return false;
1638                 }
1639
1640                 $body = Markdown::toBBCode($msg_text);
1641                 $message_uri = $msg_author.":".$msg_guid;
1642
1643                 $person = FContact::getByURL($msg_author);
1644
1645                 return Mail::insert([
1646                         'uid'        => $importer['uid'],
1647                         'guid'       => $msg_guid,
1648                         'convid'     => $conversation['id'],
1649                         'from-name'  => $person['name'],
1650                         'from-photo' => $person['photo'],
1651                         'from-url'   => $person['url'],
1652                         'contact-id' => $contact['id'],
1653                         'title'      => $subject,
1654                         'body'       => $body,
1655                         'uri'        => $message_uri,
1656                         'parent-uri' => $author . ':' . $guid,
1657                         'created'    => $msg_created_at
1658                 ]);
1659         }
1660
1661         /**
1662          * Processes new private messages (answers to private messages are processed elsewhere)
1663          *
1664          * @param array  $importer Array of the importer user
1665          * @param array  $msg      Array of the processed message, author handle and key
1666          * @param SimpleXMLElement $data     The message object
1667          *
1668          * @return bool Success
1669          * @throws \Exception
1670          */
1671         private static function receiveConversation(array $importer, array $msg, SimpleXMLElement $data)
1672         {
1673                 $author = XML::unescape($data->author);
1674                 $guid = XML::unescape($data->guid);
1675                 $subject = XML::unescape($data->subject);
1676                 $created_at = DateTimeFormat::utc(XML::unescape($data->created_at));
1677                 $participants = XML::unescape($data->participants);
1678
1679                 $messages = $data->message;
1680
1681                 if (!count($messages)) {
1682                         Logger::notice("empty conversation");
1683                         return false;
1684                 }
1685
1686                 $contact = self::allowedContactByHandle($importer, $msg['author'], true);
1687                 if (!$contact) {
1688                         return false;
1689                 }
1690
1691                 if (!empty($contact['gsid'])) {
1692                         GServer::setProtocol($contact['gsid'], Post\DeliveryData::DIASPORA);
1693                 }
1694
1695                 $conversation = DBA::selectFirst('conv', [], ['uid' => $importer['uid'], 'guid' => $guid]);
1696                 if (!DBA::isResult($conversation)) {
1697                         $r = DBA::insert('conv', [
1698                                 'uid'     => $importer['uid'],
1699                                 'guid'    => $guid,
1700                                 'creator' => $author,
1701                                 'created' => $created_at,
1702                                 'updated' => DateTimeFormat::utcNow(),
1703                                 'subject' => $subject,
1704                                 'recips'  => $participants]);
1705                         if ($r) {
1706                                 $conversation = DBA::selectFirst('conv', [], ['uid' => $importer['uid'], 'guid' => $guid]);
1707                         }
1708                 }
1709                 if (!$conversation) {
1710                         Logger::notice("unable to create conversation.");
1711                         return false;
1712                 }
1713
1714                 foreach ($messages as $mesg) {
1715                         self::receiveConversationMessage($importer, $contact, $data, $msg, $mesg, $conversation);
1716                 }
1717
1718                 return true;
1719         }
1720
1721         /**
1722          * Processes "like" messages
1723          *
1724          * @param array  $importer  Array of the importer user
1725          * @param string $sender    The sender of the message
1726          * @param SimpleXMLElement $data      The message object
1727          * @param int    $direction Indicates if the message had been fetched or pushed (self::PUSHED, self::FETCHED, self::FORCED_FETCH)
1728          *
1729          * @return bool Success or failure
1730          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1731          * @throws \ImagickException
1732          */
1733         private static function receiveLike(array $importer, string $sender, SimpleXMLElement $data, int $direction): bool
1734         {
1735                 $author = XML::unescape($data->author);
1736                 $guid = XML::unescape($data->guid);
1737                 $parent_guid = XML::unescape($data->parent_guid);
1738                 $parent_type = XML::unescape($data->parent_type);
1739                 $positive = XML::unescape($data->positive);
1740
1741                 // likes on comments aren't supported by Diaspora - only on posts
1742                 // But maybe this will be supported in the future, so we will accept it.
1743                 if (!in_array($parent_type, ['Post', 'Comment'])) {
1744                         return false;
1745                 }
1746
1747                 $contact = self::allowedContactByHandle($importer, $sender, true);
1748                 if (!$contact) {
1749                         return false;
1750                 }
1751
1752                 if (!empty($contact['gsid'])) {
1753                         GServer::setProtocol($contact['gsid'], Post\DeliveryData::DIASPORA);
1754                 }
1755
1756                 $message_id = self::messageExists($importer['uid'], $guid);
1757                 if ($message_id) {
1758                         return true;
1759                 }
1760
1761                 $toplevel_parent_item = self::parentItem($importer['uid'], $parent_guid, $author, $contact);
1762                 if (!$toplevel_parent_item) {
1763                         return false;
1764                 }
1765
1766                 $person = FContact::getByURL($author);
1767                 if (!is_array($person)) {
1768                         Logger::notice("unable to find author details");
1769                         return false;
1770                 }
1771
1772                 // Fetch the contact id - if we know this contact
1773                 $author_contact = self::authorContactByUrl($contact, $person, $importer['uid']);
1774
1775                 // "positive" = "false" would be a Dislike - wich isn't currently supported by Diaspora
1776                 // We would accept this anyhow.
1777                 if ($positive == 'true') {
1778                         $verb = Activity::LIKE;
1779                 } else {
1780                         $verb = Activity::DISLIKE;
1781                 }
1782
1783                 $datarray = [];
1784
1785                 $datarray['protocol'] = Conversation::PARCEL_DIASPORA;
1786                 $datarray['direction'] = in_array($direction, [self::FETCHED, self::FORCED_FETCH]) ? Conversation::PULL : Conversation::PUSH;
1787
1788                 $datarray['uid'] = $importer['uid'];
1789                 $datarray['contact-id'] = $author_contact['cid'];
1790                 $datarray['network']  = $author_contact['network'];
1791
1792                 $datarray['owner-link'] = $datarray['author-link'] = $person['url'];
1793                 $datarray['owner-id'] = $datarray['author-id'] = Contact::getIdForURL($person['url'], 0);
1794
1795                 $datarray['guid'] = $guid;
1796                 $datarray['uri'] = self::getUriFromGuid($author, $guid);
1797
1798                 $datarray['verb'] = $verb;
1799                 $datarray['gravity'] = GRAVITY_ACTIVITY;
1800                 $datarray['thr-parent'] = $toplevel_parent_item['uri'];
1801
1802                 $datarray['object-type'] = Activity\ObjectType::NOTE;
1803
1804                 $datarray['body'] = $verb;
1805
1806                 // Diaspora doesn't provide a date for likes
1807                 $datarray['changed'] = $datarray['created'] = $datarray['edited'] = DateTimeFormat::utcNow();
1808
1809                 // like on comments have the comment as parent. So we need to fetch the toplevel parent
1810                 if ($toplevel_parent_item['gravity'] != GRAVITY_PARENT) {
1811                         $toplevel = Post::selectFirst(['origin'], ['id' => $toplevel_parent_item['parent']]);
1812                         $origin = $toplevel['origin'];
1813                 } else {
1814                         $origin = $toplevel_parent_item['origin'];
1815                 }
1816
1817                 // If we are the origin of the parent we store the original data.
1818                 // We notify our followers during the item storage.
1819                 if ($origin) {
1820                         $datarray['diaspora_signed_text'] = json_encode($data);
1821                 }
1822
1823                 if (Item::isTooOld($datarray)) {
1824                         Logger::info('Like is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]);
1825                         return false;
1826                 }
1827
1828                 $message_id = Item::insert($datarray);
1829
1830                 if ($message_id <= 0) {
1831                         return false;
1832                 }
1833
1834                 if ($message_id) {
1835                         Logger::info("Stored like " . $datarray['guid'] . " with message id " . $message_id);
1836                         if ($datarray['uid'] == 0) {
1837                                 Item::distribute($message_id, json_encode($data));
1838                         }
1839                 }
1840
1841                 return true;
1842         }
1843
1844         /**
1845          * Processes private messages
1846          *
1847          * @param array  $importer Array of the importer user
1848          * @param SimpleXMLElement $data     The message object
1849          *
1850          * @return bool Success?
1851          * @throws \Exception
1852          */
1853         private static function receiveMessage(array $importer, SimpleXMLElement $data): bool
1854         {
1855                 $author = XML::unescape($data->author);
1856                 $guid = XML::unescape($data->guid);
1857                 $conversation_guid = XML::unescape($data->conversation_guid);
1858                 $text = XML::unescape($data->text);
1859                 $created_at = DateTimeFormat::utc(XML::unescape($data->created_at));
1860
1861                 $contact = self::allowedContactByHandle($importer, $author, true);
1862                 if (!$contact) {
1863                         return false;
1864                 }
1865
1866                 if (!empty($contact['gsid'])) {
1867                         GServer::setProtocol($contact['gsid'], Post\DeliveryData::DIASPORA);
1868                 }
1869
1870                 $conversation = null;
1871
1872                 $condition = ['uid' => $importer['uid'], 'guid' => $conversation_guid];
1873                 $conversation = DBA::selectFirst('conv', [], $condition);
1874
1875                 if (!DBA::isResult($conversation)) {
1876                         Logger::notice("conversation not available.");
1877                         return false;
1878                 }
1879
1880                 $message_uri = $author . ':' . $guid;
1881
1882                 $person = FContact::getByURL($author);
1883                 if (!$person) {
1884                         Logger::notice("unable to find author details");
1885                         return false;
1886                 }
1887
1888                 $body = Markdown::toBBCode($text);
1889
1890                 $body = self::replacePeopleGuid($body, $person["url"]);
1891
1892                 return Mail::insert([
1893                         'uid'        => $importer['uid'],
1894                         'guid'       => $guid,
1895                         'convid'     => $conversation['id'],
1896                         'from-name'  => $person['name'],
1897                         'from-photo' => $person['photo'],
1898                         'from-url'   => $person['url'],
1899                         'contact-id' => $contact['id'],
1900                         'title'      => $conversation['subject'],
1901                         'body'       => $body,
1902                         'reply'      => 1,
1903                         'uri'        => $message_uri,
1904                         'parent-uri' => $author.":".$conversation['guid'],
1905                         'created'    => $created_at
1906                 ]);
1907         }
1908
1909         /**
1910          * Processes participations - unsupported by now
1911          *
1912          * @param array  $importer  Array of the importer user
1913          * @param SimpleXMLElement $data      The message object
1914          * @param int    $direction Indicates if the message had been fetched or pushed (self::PUSHED, self::FETCHED, self::FORCED_FETCH)
1915          *
1916          * @return bool success
1917          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1918          * @throws \ImagickException
1919          */
1920         private static function receiveParticipation(array $importer, SimpleXMLElement $data, int $direction): bool
1921         {
1922                 $author = strtolower(XML::unescape($data->author));
1923                 $guid = XML::unescape($data->guid);
1924                 $parent_guid = XML::unescape($data->parent_guid);
1925
1926                 $contact = self::allowedContactByHandle($importer, $author, true);
1927                 if (!$contact) {
1928                         return false;
1929                 }
1930
1931                 if (!empty($contact['gsid'])) {
1932                         GServer::setProtocol($contact['gsid'], Post\DeliveryData::DIASPORA);
1933                 }
1934
1935                 if (self::messageExists($importer['uid'], $guid)) {
1936                         return true;
1937                 }
1938
1939                 $toplevel_parent_item = self::parentItem($importer['uid'], $parent_guid, $author, $contact);
1940                 if (!$toplevel_parent_item) {
1941                         return false;
1942                 }
1943
1944                 if (!$toplevel_parent_item['origin']) {
1945                         Logger::info('Not our origin. Participation is ignored', ['parent_guid' => $parent_guid, 'guid' => $guid, 'author' => $author]);
1946                 }
1947
1948                 if (!in_array($toplevel_parent_item['private'], [Item::PUBLIC, Item::UNLISTED])) {
1949                         Logger::info('Item is not public, participation is ignored', ['parent_guid' => $parent_guid, 'guid' => $guid, 'author' => $author]);
1950                         return false;
1951                 }
1952
1953                 $person = FContact::getByURL($author);
1954                 if (!is_array($person)) {
1955                         Logger::notice("Person not found: " . $author);
1956                         return false;
1957                 }
1958
1959                 $author_contact = self::authorContactByUrl($contact, $person, $importer['uid']);
1960
1961                 // Store participation
1962                 $datarray = [];
1963
1964                 $datarray['protocol'] = Conversation::PARCEL_DIASPORA;
1965                 $datarray['direction'] = in_array($direction, [self::FETCHED, self::FORCED_FETCH]) ? Conversation::PULL : Conversation::PUSH;
1966
1967                 $datarray['uid'] = $importer['uid'];
1968                 $datarray['contact-id'] = $author_contact['cid'];
1969                 $datarray['network']  = $author_contact['network'];
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
2383                 $datarray['plink'] = self::plink($author, $datarray['guid']);
2384                 $datarray['private'] = $item['private'];
2385                 $datarray['changed'] = $datarray['created'] = $datarray['edited'] = $item['created'];
2386
2387                 if (Item::isTooOld($datarray)) {
2388                         Logger::info('Reshare activity is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]);
2389                         return false;
2390                 }
2391
2392                 $message_id = Item::insert($datarray);
2393
2394                 if ($message_id) {
2395                         Logger::info('Stored reshare activity.', ['guid' => $guid, 'id' => $message_id]);
2396                         if ($datarray['uid'] == 0) {
2397                                 Item::distribute($message_id);
2398                         }
2399                 }
2400         }
2401
2402         /**
2403          * Processes a reshare message
2404          *
2405          * @param array  $importer  Array of the importer user
2406          * @param SimpleXMLElement $data      The message object
2407          * @param string $xml       The original XML of the message
2408          * @param int    $direction Indicates if the message had been fetched or pushed (self::PUSHED, self::FETCHED, self::FORCED_FETCH)
2409          *
2410          * @return bool Success or failure
2411          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2412          * @throws \ImagickException
2413          */
2414         private static function receiveReshare(array $importer, SimpleXMLElement $data, string $xml, int $direction): bool
2415         {
2416                 $author = XML::unescape($data->author);
2417                 $guid = XML::unescape($data->guid);
2418                 $created_at = DateTimeFormat::utc(XML::unescape($data->created_at));
2419                 $root_author = XML::unescape($data->root_author);
2420                 $root_guid = XML::unescape($data->root_guid);
2421                 /// @todo handle unprocessed property "provider_display_name"
2422                 $public = XML::unescape($data->public);
2423
2424                 $contact = self::allowedContactByHandle($importer, $author, false);
2425                 if (!$contact) {
2426                         return false;
2427                 }
2428
2429                 if (!empty($contact['gsid'])) {
2430                         GServer::setProtocol($contact['gsid'], Post\DeliveryData::DIASPORA);
2431                 }
2432
2433                 $message_id = self::messageExists($importer['uid'], $guid);
2434                 if ($message_id) {
2435                         return true;
2436                 }
2437
2438                 $original_item = self::originalItem($root_guid, $root_author);
2439                 if (!$original_item) {
2440                         return false;
2441                 }
2442
2443                 if (empty($original_item['plink'])) {
2444                         $original_item['plink'] = self::plink($root_author, $root_guid);
2445                 }
2446
2447                 $datarray = [];
2448
2449                 $datarray['uid'] = $importer['uid'];
2450                 $datarray['contact-id'] = $contact['id'];
2451                 $datarray['network']  = Protocol::DIASPORA;
2452
2453                 $datarray['author-link'] = $contact['url'];
2454                 $datarray['author-id'] = Contact::getIdForURL($contact['url'], 0);
2455
2456                 $datarray['owner-link'] = $datarray['author-link'];
2457                 $datarray['owner-id'] = $datarray['author-id'];
2458
2459                 $datarray['guid'] = $guid;
2460                 $datarray['uri'] = $datarray['thr-parent'] = self::getUriFromGuid($author, $guid);
2461                 $datarray['uri-id'] = ItemURI::insert(['uri' => $datarray['uri'], 'guid' => $datarray['guid']]);
2462
2463                 $datarray['verb'] = Activity::POST;
2464                 $datarray['gravity'] = GRAVITY_PARENT;
2465
2466                 $datarray['protocol'] = Conversation::PARCEL_DIASPORA;
2467                 $datarray['source'] = $xml;
2468                 $datarray['direction'] = in_array($direction, [self::FETCHED, self::FORCED_FETCH]) ? Conversation::PULL : Conversation::PUSH;
2469
2470                 /// @todo Copy tag data from original post
2471
2472                 $prefix = BBCode::getShareOpeningTag(
2473                         $original_item['author-name'],
2474                         $original_item['author-link'],
2475                         $original_item['author-avatar'],
2476                         $original_item['plink'],
2477                         $original_item['created'],
2478                         $original_item['guid']
2479                 );
2480
2481                 if (!empty($original_item['title'])) {
2482                         $prefix .= '[h3]' . $original_item['title'] . "[/h3]\n";
2483                 }
2484
2485                 $datarray['body'] = $prefix.$original_item['body'] . '[/share]';
2486
2487                 Tag::storeFromBody($datarray['uri-id'], $datarray['body']);
2488
2489                 $datarray['app']  = $original_item['app'];
2490
2491                 $datarray['plink'] = self::plink($author, $guid);
2492                 $datarray['private'] = (($public == 'false') ? Item::PRIVATE : Item::PUBLIC);
2493                 $datarray['changed'] = $datarray['created'] = $datarray['edited'] = $created_at;
2494
2495                 $datarray['object-type'] = $original_item['object-type'];
2496
2497                 self::fetchGuid($datarray);
2498
2499                 if (Item::isTooOld($datarray)) {
2500                         Logger::info('Reshare is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]);
2501                         return false;
2502                 }
2503
2504                 $message_id = Item::insert($datarray);
2505
2506                 self::sendParticipation($contact, $datarray);
2507
2508                 $root_message_id = self::messageExists($importer['uid'], $root_guid);
2509                 if ($root_message_id) {
2510                         self::addReshareActivity($datarray, $root_message_id, $guid, $author);
2511                 }
2512
2513                 if ($message_id) {
2514                         Logger::info("Stored reshare " . $datarray['guid'] . " with message id " . $message_id);
2515                         if ($datarray['uid'] == 0) {
2516                                 Item::distribute($message_id);
2517                         }
2518                         return true;
2519                 } else {
2520                         return false;
2521                 }
2522         }
2523
2524         /**
2525          * Processes retractions
2526          *
2527          * @param array  $importer Array of the importer user
2528          * @param array  $contact  The contact of the item owner
2529          * @param SimpleXMLElement $data     The message object
2530          *
2531          * @return bool success
2532          * @throws \Exception
2533          */
2534         private static function itemRetraction(array $importer, array $contact, SimpleXMLElement $data): bool
2535         {
2536                 $author = XML::unescape($data->author);
2537                 $target_guid = XML::unescape($data->target_guid);
2538                 $target_type = XML::unescape($data->target_type);
2539
2540                 $person = FContact::getByURL($author);
2541                 if (!is_array($person)) {
2542                         Logger::notice("unable to find author detail for " . $author);
2543                         return false;
2544                 }
2545
2546                 if (empty($contact['url'])) {
2547                         $contact['url'] = $person['url'];
2548                 }
2549
2550                 // Fetch items that are about to be deleted
2551                 $fields = ['uid', 'id', 'parent', 'author-link', 'uri-id'];
2552
2553                 // When we receive a public retraction, we delete every item that we find.
2554                 if ($importer['uid'] == 0) {
2555                         $condition = ['guid' => $target_guid, 'deleted' => false];
2556                 } else {
2557                         $condition = ['guid' => $target_guid, 'deleted' => false, 'uid' => $importer['uid']];
2558                 }
2559
2560                 $r = Post::select($fields, $condition);
2561                 if (!DBA::isResult($r)) {
2562                         Logger::notice("Target guid " . $target_guid . " was not found on this system for user " . $importer['uid'] . ".");
2563                         return false;
2564                 }
2565
2566                 while ($item = Post::fetch($r)) {
2567                         if (DBA::exists('post-category', ['uri-id' => $item['uri-id'], 'uid' => $item['uid'], 'type' => Post\Category::FILE])) {
2568                                 Logger::info("Target guid " . $target_guid . " for user " . $item['uid'] . " is filed. So it won't be deleted.");
2569                                 continue;
2570                         }
2571
2572                         // Fetch the parent item
2573                         $parent = Post::selectFirst(['author-link'], ['id' => $item['parent']]);
2574
2575                         // Only delete it if the parent author really fits
2576                         if (!Strings::compareLink($parent['author-link'], $contact['url']) && !Strings::compareLink($item['author-link'], $contact['url'])) {
2577                                 Logger::info("Thread author " . $parent['author-link'] . " and item author " . $item['author-link'] . " don't fit to expected contact " . $contact['url']);
2578                                 continue;
2579                         }
2580
2581                         Item::markForDeletion(['id' => $item['id']]);
2582
2583                         Logger::info("Deleted target " . $target_guid . " (" . $item['id'] . ") from user " . $item['uid'] . " parent: " . $item['parent']);
2584                 }
2585                 DBA::close($r);
2586
2587                 return true;
2588         }
2589
2590         /**
2591          * Receives retraction messages
2592          *
2593          * @param array  $importer Array of the importer user
2594          * @param string $sender   The sender of the message
2595          * @param SimpleXMLElement $data     The message object
2596          *
2597          * @return bool Success
2598          * @throws \Exception
2599          */
2600         private static function receiveRetraction(array $importer, string $sender, SimpleXMLElement $data)
2601         {
2602                 $target_type = XML::unescape($data->target_type);
2603
2604                 $contact = self::contactByHandle($importer['uid'], $sender);
2605                 if (!$contact && (in_array($target_type, ['Contact', 'Person']))) {
2606                         Logger::notice("cannot find contact for sender: " . $sender . " and user " . $importer['uid']);
2607                         return false;
2608                 }
2609
2610                 if (!$contact) {
2611                         $contact = [];
2612                 }
2613
2614                 Logger::info("Got retraction for " . $target_type . ", sender " . $sender . " and user " . $importer['uid']);
2615
2616                 switch ($target_type) {
2617                         case 'Comment':
2618                         case 'Like':
2619                         case 'Post':
2620                         case 'Reshare':
2621                         case 'StatusMessage':
2622                                 return self::itemRetraction($importer, $contact, $data);
2623
2624                         case 'PollParticipation':
2625                         case 'Photo':
2626                                 // Currently unsupported
2627                                 break;
2628
2629                         default:
2630                                 Logger::notice("Unknown target type " . $target_type);
2631                                 return false;
2632                 }
2633                 return true;
2634         }
2635
2636         /**
2637          * Checks if an incoming message is wanted
2638          *
2639          * @param array  $item
2640          * @param string $author
2641          * @param string $body
2642          * @param int    $direction Indicates if the message had been fetched or pushed (self::PUSHED, self::FETCHED, self::FORCED_FETCH)
2643          *
2644          * @return boolean Is the message wanted?
2645          */
2646         private static function isSolicitedMessage(array $item, string $author, string $body, int $direction): bool
2647         {
2648                 $contact = Contact::getByURL($author);
2649                 if (DBA::exists('contact', ['`nurl` = ? AND `uid` != ? AND `rel` IN (?, ?)', $contact['nurl'], 0, Contact::FRIEND, Contact::SHARING])) {
2650                         Logger::debug('Author has got followers - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri'], 'author' => $author]);
2651                         return true;
2652                 }
2653
2654                 if ($direction == self::FORCED_FETCH) {
2655                         Logger::debug('Post is a forced fetch - accepted', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri'], 'author' => $author]);
2656                         return true;
2657                 }
2658
2659                 $tags = array_column(Tag::getByURIId($item['uri-id'], [Tag::HASHTAG]), 'name');
2660                 if (Relay::isSolicitedPost($tags, $body, $contact['id'], $item['uri'], Protocol::DIASPORA)) {
2661                         Logger::debug('Post is accepted because of the relay settings', ['uri-id' => $item['uri-id'], 'guid' => $item['guid'], 'url' => $item['uri'], 'author' => $author]);
2662                         return true;
2663                 } else {
2664                         return false;
2665                 }
2666         }
2667
2668         /**
2669          * Store an attached photo in the post-media table
2670          *
2671          * @param int $uriid
2672          * @param object $photo
2673          * @return void
2674          */
2675         private static function storePhotoAsMedia(int $uriid, $photo)
2676         {
2677                 // @TODO Need to find object type, roland@f.haeder.net
2678                 Logger::debug('photo='.get_class($photo));
2679                 $data = [];
2680                 $data['uri-id'] = $uriid;
2681                 $data['type'] = Post\Media::IMAGE;
2682                 $data['url'] = XML::unescape($photo->remote_photo_path) . XML::unescape($photo->remote_photo_name);
2683                 $data['height'] = (int)XML::unescape($photo->height ?? 0);
2684                 $data['width'] = (int)XML::unescape($photo->width ?? 0);
2685                 $data['description'] = XML::unescape($photo->text ?? '');
2686
2687                 Post\Media::insert($data);
2688         }
2689
2690         /**
2691          * Receives status messages
2692          *
2693          * @param array            $importer  Array of the importer user
2694          * @param SimpleXMLElement $data      The message object
2695          * @param string           $xml       The original XML of the message
2696          * @param int              $direction Indicates if the message had been fetched or pushed (self::PUSHED, self::FETCHED, self::FORCED_FETCH)
2697          *
2698          * @return int|bool The message id of the newly created item or false on error
2699          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2700          * @throws \ImagickException
2701          */
2702         private static function receiveStatusMessage(array $importer, SimpleXMLElement $data, string $xml, int $direction)
2703         {
2704                 $author = XML::unescape($data->author);
2705                 $guid = XML::unescape($data->guid);
2706                 $created_at = DateTimeFormat::utc(XML::unescape($data->created_at));
2707                 $public = XML::unescape($data->public);
2708                 $text = XML::unescape($data->text);
2709                 $provider_display_name = XML::unescape($data->provider_display_name);
2710
2711                 $contact = self::allowedContactByHandle($importer, $author, false);
2712                 if (!$contact) {
2713                         return false;
2714                 }
2715
2716                 if (!empty($contact['gsid'])) {
2717                         GServer::setProtocol($contact['gsid'], Post\DeliveryData::DIASPORA);
2718                 }
2719
2720                 $message_id = self::messageExists($importer['uid'], $guid);
2721                 if ($message_id) {
2722                         return true;
2723                 }
2724
2725                 $address = [];
2726                 if ($data->location) {
2727                         foreach ($data->location->children() as $fieldname => $data) {
2728                                 $address[$fieldname] = XML::unescape($data);
2729                         }
2730                 }
2731
2732                 $raw_body = $body = Markdown::toBBCode($text);
2733
2734                 $datarray = [];
2735
2736                 $datarray['guid'] = $guid;
2737                 $datarray['uri'] = $datarray['thr-parent'] = self::getUriFromGuid($author, $guid);
2738                 $datarray['uri-id'] = ItemURI::insert(['uri' => $datarray['uri'], 'guid' => $datarray['guid']]);
2739
2740                 // Attach embedded pictures to the body
2741                 if ($data->photo) {
2742                         foreach ($data->photo as $photo) {
2743                                 self::storePhotoAsMedia($datarray['uri-id'], $photo);
2744                         }
2745
2746                         $datarray['object-type'] = Activity\ObjectType::IMAGE;
2747                         $datarray['post-type'] = Item::PT_IMAGE;
2748                 } elseif ($data->poll) {
2749                         $datarray['object-type'] = Activity\ObjectType::NOTE;
2750                         $datarray['post-type'] = Item::PT_POLL;
2751                 } else {
2752                         $datarray['object-type'] = Activity\ObjectType::NOTE;
2753                         $datarray['post-type'] = Item::PT_NOTE;
2754                 }
2755
2756                 /// @todo enable support for polls
2757                 //if ($data->poll) {
2758                 //      foreach ($data->poll as $poll)
2759                 //              print_r($poll);
2760                 //      die("poll!\n");
2761                 //}
2762
2763                 /// @todo enable support for events
2764
2765                 $datarray['uid'] = $importer['uid'];
2766                 $datarray['contact-id'] = $contact['id'];
2767                 $datarray['network'] = Protocol::DIASPORA;
2768
2769                 $datarray['author-link'] = $contact['url'];
2770                 $datarray['author-id'] = Contact::getIdForURL($contact['url'], 0);
2771
2772                 $datarray['owner-link'] = $datarray['author-link'];
2773                 $datarray['owner-id'] = $datarray['author-id'];
2774
2775                 $datarray['verb'] = Activity::POST;
2776                 $datarray['gravity'] = GRAVITY_PARENT;
2777
2778                 $datarray['protocol'] = Conversation::PARCEL_DIASPORA;
2779                 $datarray['source'] = $xml;
2780                 $datarray['direction'] = in_array($direction, [self::FETCHED, self::FORCED_FETCH]) ? Conversation::PULL : Conversation::PUSH;
2781
2782                 if (in_array($direction, [self::FETCHED, self::FORCED_FETCH])) {
2783                         $datarray['post-reason'] = Item::PR_FETCHED;
2784                 } elseif ($datarray['uid'] == 0) {
2785                         $datarray['post-reason'] = Item::PR_GLOBAL;
2786                 }
2787
2788                 $datarray['body'] = self::replacePeopleGuid($body, $contact['url']);
2789                 $datarray['raw-body'] = self::replacePeopleGuid($raw_body, $contact['url']);
2790
2791                 self::storeMentions($datarray['uri-id'], $text);
2792                 Tag::storeRawTagsFromBody($datarray['uri-id'], $datarray['body']);
2793
2794                 if (!self::isSolicitedMessage($datarray, $author, $body, $direction)) {
2795                         DBA::delete('item-uri', ['uri' => $datarray['uri']]);
2796                         return false;
2797                 }
2798
2799                 if ($provider_display_name != '') {
2800                         $datarray['app'] = $provider_display_name;
2801                 }
2802
2803                 $datarray['plink'] = self::plink($author, $guid);
2804                 $datarray['private'] = (($public == 'false') ? Item::PRIVATE : Item::PUBLIC);
2805                 $datarray['changed'] = $datarray['created'] = $datarray['edited'] = $created_at;
2806
2807                 if (isset($address['address'])) {
2808                         $datarray['location'] = $address['address'];
2809                 }
2810
2811                 if (isset($address['lat']) && isset($address['lng'])) {
2812                         $datarray['coord'] = $address['lat'] . " " . $address['lng'];
2813                 }
2814
2815                 self::fetchGuid($datarray);
2816
2817                 if (Item::isTooOld($datarray)) {
2818                         Logger::info('Status is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]);
2819                         return false;
2820                 }
2821
2822                 $message_id = Item::insert($datarray);
2823
2824                 self::sendParticipation($contact, $datarray);
2825
2826                 if ($message_id) {
2827                         Logger::info("Stored item " . $datarray['guid'] . " with message id " . $message_id);
2828                         if ($datarray['uid'] == 0) {
2829                                 Item::distribute($message_id);
2830                         }
2831                         return true;
2832                 } else {
2833                         return false;
2834                 }
2835         }
2836
2837         /* ************************************************************************************** *
2838          * Here are all the functions that are needed to transmit data with the Diaspora protocol *
2839          * ************************************************************************************** */
2840
2841         /**
2842          * returnes the handle of a contact
2843          *
2844          * @param array $contact contact array
2845          *
2846          * @return string the handle in the format user@domain.tld
2847          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2848          */
2849         private static function myHandle(array $contact): string
2850         {
2851                 if (!empty($contact['addr'])) {
2852                         return $contact['addr'];
2853                 }
2854
2855                 // Normally we should have a filled "addr" field - but in the past this wasn't the case
2856                 // So - just in case - we build the the address here.
2857                 if ($contact['nickname'] != '') {
2858                         $nick = $contact['nickname'];
2859                 } else {
2860                         $nick = $contact['nick'];
2861                 }
2862
2863                 return $nick . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3);
2864         }
2865
2866
2867         /**
2868          * Creates the data for a private message in the new format
2869          *
2870          * @param string $msg     The message that is to be transmitted
2871          * @param array  $user    The record of the sender
2872          * @param array  $contact Target of the communication
2873          * @param string $prvkey  The private key of the sender
2874          * @param string $pubkey  The public key of the receiver
2875          *
2876          * @return string The encrypted data
2877          * @throws \Exception
2878          */
2879         public static function encodePrivateData(string $msg, array $user, array $contact, string $prvkey, string $pubkey): string
2880         {
2881                 Logger::debug("Message: ".$msg);
2882
2883                 // without a public key nothing will work
2884                 if (!$pubkey) {
2885                         Logger::notice("pubkey missing: contact id: ".$contact["id"]);
2886                         return false;
2887                 }
2888
2889                 $aes_key = random_bytes(32);
2890                 $b_aes_key = base64_encode($aes_key);
2891                 $iv = random_bytes(16);
2892                 $b_iv = base64_encode($iv);
2893
2894                 $ciphertext = self::aesEncrypt($aes_key, $iv, $msg);
2895
2896                 $json = json_encode(['iv' => $b_iv, 'key' => $b_aes_key]);
2897
2898                 $encrypted_key_bundle = '';
2899                 if (!@openssl_public_encrypt($json, $encrypted_key_bundle, $pubkey)) {
2900                         return false;
2901                 }
2902
2903                 $json_object = json_encode(
2904                         [
2905                                 'aes_key' => base64_encode($encrypted_key_bundle),
2906                                 'encrypted_magic_envelope' => base64_encode($ciphertext)
2907                         ]
2908                 );
2909
2910                 return $json_object;
2911         }
2912
2913         /**
2914          * Creates the envelope for the "fetch" endpoint and for the new format
2915          *
2916          * @param string $msg  The message that is to be transmitted
2917          * @param array  $user The record of the sender
2918          *
2919          * @return string The envelope
2920          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2921          */
2922         public static function buildMagicEnvelope(string $msg, array $user): string
2923         {
2924                 $b64url_data = Strings::base64UrlEncode($msg);
2925                 $data = str_replace(["\n", "\r", " ", "\t"], ['', '', '', ''], $b64url_data);
2926
2927                 $key_id = Strings::base64UrlEncode(self::myHandle($user));
2928                 $type = 'application/xml';
2929                 $encoding = 'base64url';
2930                 $alg = 'RSA-SHA256';
2931                 $signable_data = $data . '.' . Strings::base64UrlEncode($type) . '.' . Strings::base64UrlEncode($encoding) . '.' . Strings::base64UrlEncode($alg);
2932
2933                 // Fallback if the private key wasn't transmitted in the expected field
2934                 if ($user['uprvkey'] == '') {
2935                         $user['uprvkey'] = $user['prvkey'];
2936                 }
2937
2938                 $signature = Crypto::rsaSign($signable_data, $user['uprvkey']);
2939                 $sig = Strings::base64UrlEncode($signature);
2940
2941                 $xmldata = [
2942                         'me:env' => [
2943                                 'me:data' => $data,
2944                                 '@attributes' => ['type' => $type],
2945                                 'me:encoding' => $encoding,
2946                                 'me:alg' => $alg,
2947                                 'me:sig' => $sig,
2948                                 '@attributes2' => ['key_id' => $key_id]
2949                         ]
2950                 ];
2951
2952                 $namespaces = ['me' => 'http://salmon-protocol.org/ns/magic-env'];
2953
2954                 return XML::fromArray($xmldata, $xml, false, $namespaces);
2955         }
2956
2957         /**
2958          * Create the envelope for a message
2959          *
2960          * @param string $msg     The message that is to be transmitted
2961          * @param array  $user    The record of the sender
2962          * @param array  $contact Target of the communication
2963          * @param string $prvkey  The private key of the sender
2964          * @param string $pubkey  The public key of the receiver
2965          * @param bool   $public  Is the message public?
2966          *
2967          * @return string The message that will be transmitted to other servers
2968          * @throws \Exception
2969          */
2970         public static function buildMessage(string $msg, array $user, array $contact, string $prvkey, string $pubkey, bool $public = false): string
2971         {
2972                 // The message is put into an envelope with the sender's signature
2973                 $envelope = self::buildMagicEnvelope($msg, $user);
2974
2975                 // Private messages are put into a second envelope, encrypted with the receivers public key
2976                 if (!$public) {
2977                         $envelope = self::encodePrivateData($envelope, $user, $contact, $prvkey, $pubkey);
2978                 }
2979
2980                 return $envelope;
2981         }
2982
2983         /**
2984          * Creates a signature for a message
2985          *
2986          * @param array $owner   the array of the owner of the message
2987          * @param array $message The message that is to be signed
2988          *
2989          * @return string The signature
2990          */
2991         private static function signature(array $owner, array $message): string
2992         {
2993                 $sigmsg = $message;
2994                 unset($sigmsg['author_signature']);
2995                 unset($sigmsg['parent_author_signature']);
2996
2997                 $signed_text = implode(';', $sigmsg);
2998
2999                 return base64_encode(Crypto::rsaSign($signed_text, $owner['uprvkey'], 'sha256'));
3000         }
3001
3002         /**
3003          * Transmit a message to a target server
3004          *
3005          * @param array  $owner        the array of the item owner
3006          * @param array  $contact      Target of the communication
3007          * @param string $envelope     The message that is to be transmitted
3008          * @param bool   $public_batch Is it a public post?
3009          * @param string $guid         message guid
3010          *
3011          * @return int Result of the transmission
3012          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3013          * @throws \ImagickException
3014          */
3015         private static function transmit(array $owner, array $contact, string $envelope, bool $public_batch, string $guid = ''): int
3016         {
3017                 $enabled = intval(DI::config()->get('system', 'diaspora_enabled'));
3018                 if (!$enabled) {
3019                         return 200;
3020                 }
3021
3022                 $logid = Strings::getRandomHex(4);
3023
3024                 // We always try to use the data from the fcontact table.
3025                 // This is important for transmitting data to Friendica servers.
3026                 if (!empty($contact['addr'])) {
3027                         $fcontact = FContact::getByURL($contact['addr']);
3028                         if (!empty($fcontact)) {
3029                                 $dest_url = ($public_batch ? $fcontact['batch'] : $fcontact['notify']);
3030                         }
3031                 }
3032
3033                 if (empty($dest_url)) {
3034                         $dest_url = ($public_batch ? $contact['batch'] : $contact['notify']);
3035                 }
3036
3037                 if (!$dest_url) {
3038                         Logger::notice("no url for contact: " . $contact['id'] . " batch mode =" . $public_batch);
3039                         return 0;
3040                 }
3041
3042                 Logger::notice("transmit: " . $logid . "-" . $guid . " " . $dest_url);
3043
3044                 if (!intval(DI::config()->get('system', 'diaspora_test'))) {
3045                         $content_type = (($public_batch) ? 'application/magic-envelope+xml' : 'application/json');
3046
3047                         $postResult = DI::httpClient()->post($dest_url . '/', $envelope, ['Content-Type' => $content_type]);
3048                         $return_code = $postResult->getReturnCode();
3049                 } else {
3050                         Logger::notice('test_mode');
3051                         return 200;
3052                 }
3053
3054                 Logger::notice("transmit: " . $logid . "-" . $guid . " to " . $dest_url . " returns: " . $return_code);
3055
3056                 return $return_code ? $return_code : -1;
3057         }
3058
3059
3060         /**
3061          * Build the post xml
3062          *
3063          * @param string $type    The message type
3064          * @param array  $message The message data
3065          *
3066          * @return string The post XML
3067          */
3068         public static function buildPostXml(string $type, array $message): string
3069         {
3070                 $data = [$type => $message];
3071
3072                 return XML::fromArray($data, $xml);
3073         }
3074
3075         /**
3076          * Builds and transmit messages
3077          *
3078          * @param array  $owner        the array of the item owner
3079          * @param array  $contact      Target of the communication
3080          * @param string $type         The message type
3081          * @param array  $message      The message data
3082          * @param bool   $public_batch Is it a public post?
3083          * @param string $guid         message guid
3084          *
3085          * @return int Result of the transmission
3086          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3087          * @throws \ImagickException
3088          */
3089         private static function buildAndTransmit(array $owner, array $contact, string $type, array $message, bool $public_batch = false, string $guid = '')
3090         {
3091                 $msg = self::buildPostXml($type, $message);
3092
3093                 // Fallback if the private key wasn't transmitted in the expected field
3094                 if (empty($owner['uprvkey'])) {
3095                         $owner['uprvkey'] = $owner['prvkey'];
3096                 }
3097
3098                 // When sending content to Friendica contacts using the Diaspora protocol
3099                 // we have to fetch the public key from the fcontact.
3100                 // This is due to the fact that legacy DFRN had unique keys for every contact.
3101                 $pubkey = $contact['pubkey'];
3102                 if (!empty($contact['addr'])) {
3103                         $fcontact = FContact::getByURL($contact['addr']);
3104                         if (!empty($fcontact)) {
3105                                 $pubkey = $fcontact['pubkey'];
3106                         }
3107                 } else {
3108                         // The "addr" field should always be filled.
3109                         // If this isn't the case, it will raise a notice some lines later.
3110                         // And in the log we will see where it came from and we can handle it there.
3111                         Logger::notice('Empty addr', ['contact' => $contact ?? [], 'callstack' => System::callstack(20)]);
3112                 }
3113
3114                 $envelope = self::buildMessage($msg, $owner, $contact, $owner['uprvkey'], $pubkey, $public_batch);
3115
3116                 $return_code = self::transmit($owner, $contact, $envelope, $public_batch, $guid);
3117
3118                 Logger::info('Transmitted message', ['owner' => $owner['uid'], 'target' => $contact['addr'], 'type' => $type, 'guid' => $guid, 'result' => $return_code]);
3119
3120                 return $return_code;
3121         }
3122
3123         /**
3124          * sends a participation (Used to get all further updates)
3125          *
3126          * @param array $contact Target of the communication
3127          * @param array $item    Item array
3128          *
3129          * @return int The result of the transmission
3130          * @throws \Exception
3131          */
3132         private static function sendParticipation(array $contact, array $item): int
3133         {
3134                 // Don't send notifications for private postings
3135                 if ($item['private'] == Item::PRIVATE) {
3136                         return 0;
3137                 }
3138
3139                 $cachekey = 'diaspora:sendParticipation:' . $item['guid'];
3140
3141                 $result = DI::cache()->get($cachekey);
3142                 if (!is_null($result)) {
3143                         return -1;
3144                 }
3145
3146                 // Fetch some user id to have a valid handle to transmit the participation.
3147                 // In fact it doesn't matter which user sends this - but it is needed by the protocol.
3148                 // If the item belongs to a user, we take this user id.
3149                 if ($item['uid'] == 0) {
3150                         // @todo Possibly use an administrator account?
3151                         $condition = ['verified' => true, 'blocked' => false,
3152                                 'account_removed' => false, 'account_expired' => false, 'account-type' => User::ACCOUNT_TYPE_PERSON];
3153                         $first_user = DBA::selectFirst('user', ['uid'], $condition, ['order' => ['uid']]);
3154                         $owner = User::getOwnerDataById($first_user['uid']);
3155                 } else {
3156                         $owner = User::getOwnerDataById($item['uid']);
3157                 }
3158
3159                 $author = self::myHandle($owner);
3160
3161                 $message = [
3162                         'author' => $author,
3163                         'guid' => System::createUUID(),
3164                         'parent_type' => 'Post',
3165                         'parent_guid' => $item['guid']
3166                 ];
3167
3168                 Logger::info("Send participation for " . $item['guid'] . " by " . $author);
3169
3170                 // It doesn't matter what we store, we only want to avoid sending repeated notifications for the same item
3171                 DI::cache()->set($cachekey, $item['guid'], Duration::QUARTER_HOUR);
3172
3173                 return self::buildAndTransmit($owner, $contact, 'participation', $message);
3174         }
3175
3176         /**
3177          * sends an account migration
3178          *
3179          * @param array $owner   the array of the item owner
3180          * @param array $contact Target of the communication
3181          * @param int   $uid     User ID
3182          *
3183          * @return int The result of the transmission
3184          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3185          * @throws \ImagickException
3186          */
3187         public static function sendAccountMigration(array $owner, array $contact, int $uid): int
3188         {
3189                 $old_handle = DI::pConfig()->get($uid, 'system', 'previous_addr');
3190                 $profile = self::createProfileData($uid);
3191
3192                 $signed_text = 'AccountMigration:'.$old_handle.':'.$profile['author'];
3193                 $signature = base64_encode(Crypto::rsaSign($signed_text, $owner['uprvkey'], 'sha256'));
3194
3195                 $message = [
3196                         'author' => $old_handle,
3197                         'profile' => $profile,
3198                         'signature' => $signature
3199                 ];
3200
3201                 Logger::info('Send account migration', ['msg' => $message]);
3202
3203                 return self::buildAndTransmit($owner, $contact, 'account_migration', $message);
3204         }
3205
3206         /**
3207          * Sends a "share" message
3208          *
3209          * @param array $owner   the array of the item owner
3210          * @param array $contact Target of the communication
3211          *
3212          * @return int The result of the transmission
3213          * @throws \Exception
3214          */
3215         public static function sendShare(array $owner, array $contact): int
3216         {
3217                 /**
3218                  * @todo support the different possible combinations of "following" and "sharing"
3219                  * Currently, Diaspora only interprets the "sharing" field
3220                  *
3221                  * Before switching this code productive, we have to check all "sendShare" calls if "rel" is set correctly
3222                  */
3223
3224                 /*
3225                 switch ($contact["rel"]) {
3226                         case Contact::FRIEND:
3227                                 $following = true;
3228                                 $sharing = true;
3229
3230                         case Contact::SHARING:
3231                                 $following = false;
3232                                 $sharing = true;
3233
3234                         case Contact::FOLLOWER:
3235                                 $following = true;
3236                                 $sharing = false;
3237                 }
3238                 */
3239
3240                 $message = [
3241                         'author' => self::myHandle($owner),
3242                         'recipient' => $contact['addr'],
3243                         'following' => 'true',
3244                         'sharing' => 'true'
3245                 ];
3246
3247                 Logger::info('Send share', ['msg' => $message]);
3248
3249                 return self::buildAndTransmit($owner, $contact, 'contact', $message);
3250         }
3251
3252         /**
3253          * sends an "unshare"
3254          *
3255          * @param array $owner   the array of the item owner
3256          * @param array $contact Target of the communication
3257          *
3258          * @return int The result of the transmission
3259          * @throws \Exception
3260          */
3261         public static function sendUnshare(array $owner, array $contact): int
3262         {
3263                 $message = [
3264                         'author' => self::myHandle($owner),
3265                         'recipient' => $contact['addr'],
3266                         'following' => 'false',
3267                         'sharing' => 'false'
3268                 ];
3269
3270                 Logger::info('Send unshare', ['msg' => $message]);
3271
3272                 return self::buildAndTransmit($owner, $contact, 'contact', $message);
3273         }
3274
3275         /**
3276          * Checks a message body if it is a reshare
3277          *
3278          * @param string $body     The message body that is to be check
3279          * @param bool   $complete Should it be a complete check or a simple check?
3280          *
3281          * @return array|bool Reshare details or "false" if no reshare
3282          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3283          * @throws \ImagickException
3284          */
3285         public static function isReshare(string $body, bool $complete = true)
3286         {
3287                 $body = trim($body);
3288
3289                 $reshared = Item::getShareArray(['body' => $body]);
3290                 if (empty($reshared)) {
3291                         return false;
3292                 }
3293
3294                 // Skip if it isn't a pure repeated messages
3295                 // Does it start with a share?
3296                 if (!empty($reshared['comment']) && $complete) {
3297                         return false;
3298                 }
3299
3300                 if (!empty($reshared['guid']) && $complete) {
3301                         $condition = ['guid' => $reshared['guid'], 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
3302                         $item = Post::selectFirst(['contact-id'], $condition);
3303                         if (DBA::isResult($item)) {
3304                                 $ret = [];
3305                                 $ret['root_handle'] = self::handleFromContact($item['contact-id']);
3306                                 $ret['root_guid'] = $reshared['guid'];
3307                                 return $ret;
3308                         } elseif ($complete) {
3309                                 // We are resharing something that isn't a DFRN or Diaspora post.
3310                                 // So we have to return "false" on "$complete" to not trigger a reshare.
3311                                 return false;
3312                         }
3313                 } elseif (empty($reshared['guid']) && $complete) {
3314                         return false;
3315                 }
3316
3317                 $ret = [];
3318
3319                 if (!empty($reshared['profile']) && ($cid = Contact::getIdForURL($reshared['profile']))) {
3320                         $contact = DBA::selectFirst('contact', ['addr'], ['id' => $cid]);
3321                         if (!empty($contact['addr'])) {
3322                                 $ret['root_handle'] = $contact['addr'];
3323                         }
3324                 }
3325
3326                 if (empty($ret) && !$complete) {
3327                         return true;
3328                 }
3329
3330                 return $ret;
3331         }
3332
3333         /**
3334          * Create an event array
3335          *
3336          * @param integer $event_id The id of the event
3337          *
3338          * @return array with event data
3339          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3340          */
3341         private static function buildEvent(string $event_id): array
3342         {
3343                 $event = DBA::selectFirst('event', [], ['id' => $event_id]);
3344                 if (!DBA::isResult($event)) {
3345                         return [];
3346                 }
3347
3348                 $eventdata = [];
3349
3350                 $owner = User::getOwnerDataById($event['uid']);
3351                 if (!$owner) {
3352                         return [];
3353                 }
3354
3355                 $eventdata['author'] = self::myHandle($owner);
3356
3357                 if ($event['guid']) {
3358                         $eventdata['guid'] = $event['guid'];
3359                 }
3360
3361                 $mask = DateTimeFormat::ATOM;
3362
3363                 /// @todo - establish "all day" events in Friendica
3364                 $eventdata['all_day'] = 'false';
3365
3366                 $eventdata['timezone'] = 'UTC';
3367
3368                 if ($event['start']) {
3369                         $eventdata['start'] = DateTimeFormat::utc($event['start'], $mask);
3370                 }
3371                 if ($event['finish'] && !$event['nofinish']) {
3372                         $eventdata['end'] = DateTimeFormat::utc($event['finish'], $mask);
3373                 }
3374                 if ($event['summary']) {
3375                         $eventdata['summary'] = html_entity_decode(BBCode::toMarkdown($event['summary']));
3376                 }
3377                 if ($event['desc']) {
3378                         $eventdata['description'] = html_entity_decode(BBCode::toMarkdown($event['desc']));
3379                 }
3380                 if ($event['location']) {
3381                         $event['location'] = preg_replace("/\[map\](.*?)\[\/map\]/ism", '$1', $event['location']);
3382                         $coord = Map::getCoordinates($event['location']);
3383
3384                         $location = [];
3385                         $location['address'] = html_entity_decode(BBCode::toMarkdown($event['location']));
3386                         if (!empty($coord['lat']) && !empty($coord['lon'])) {
3387                                 $location['lat'] = $coord['lat'];
3388                                 $location['lng'] = $coord['lon'];
3389                         } else {
3390                                 $location['lat'] = 0;
3391                                 $location['lng'] = 0;
3392                         }
3393                         $eventdata['location'] = $location;
3394                 }
3395
3396                 return $eventdata;
3397         }
3398
3399         /**
3400          * Create a post (status message or reshare)
3401          *
3402          * @param array $item  The item that will be exported
3403          * @param array $owner the array of the item owner
3404          *
3405          * @return array
3406          * 'type' -> Message type ("status_message" or "reshare")
3407          * 'message' -> Array of XML elements of the status
3408          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3409          * @throws \ImagickException
3410          */
3411         public static function buildStatus(array $item, array $owner)
3412         {
3413                 $cachekey = 'diaspora:buildStatus:' . $item['guid'];
3414
3415                 $result = DI::cache()->get($cachekey);
3416                 if (!is_null($result)) {
3417                         return $result;
3418                 }
3419
3420                 $myaddr = self::myHandle($owner);
3421
3422                 $public = ($item['private'] == Item::PRIVATE ? 'false' : 'true');
3423                 $created = DateTimeFormat::utc($item['received'], DateTimeFormat::ATOM);
3424                 $edited = DateTimeFormat::utc($item['edited'] ?? $item['created'], DateTimeFormat::ATOM);
3425
3426                 // Detect a share element and do a reshare
3427                 if (($item['private'] != Item::PRIVATE) && ($ret = self::isReshare($item['body']))) {
3428                         $message = [
3429                                 'author' => $myaddr,
3430                                 'guid' => $item['guid'],
3431                                 'created_at' => $created,
3432                                 'root_author' => $ret['root_handle'],
3433                                 'root_guid' => $ret['root_guid'],
3434                                 'provider_display_name' => $item['app'],
3435                                 'public' => $public
3436                         ];
3437
3438                         $type = 'reshare';
3439                 } else {
3440                         $title = $item['title'];
3441                         $body = Post\Media::addAttachmentsToBody($item['uri-id'], $item['body']);
3442
3443                         // Fetch the title from an attached link - if there is one
3444                         if (empty($item['title']) && DI::pConfig()->get($owner['uid'], 'system', 'attach_link_title')) {
3445                                 $page_data = BBCode::getAttachmentData($item['body']);
3446                                 if (!empty($page_data['type']) && !empty($page_data['title']) && ($page_data['type'] == 'link')) {
3447                                         $title = $page_data['title'];
3448                                 }
3449                         }
3450
3451                         if ($item['author-link'] != $item['owner-link']) {
3452                                 $body = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'],
3453                                         $item['plink'], $item['created']) . $body . '[/share]';
3454                         }
3455
3456                         // convert to markdown
3457                         $body = html_entity_decode(BBCode::toMarkdown($body));
3458
3459                         // Adding the title
3460                         if (strlen($title)) {
3461                                 $body = '### ' . html_entity_decode($title) . "\n\n" . $body;
3462                         }
3463
3464                         $attachments = Post\Media::getByURIId($item['uri-id'], [Post\Media::DOCUMENT, Post\Media::TORRENT, Post\Media::UNKNOWN]);
3465                         if (!empty($attachments)) {
3466                                 $body .= "\n[hr]\n";
3467                                 foreach ($attachments as $attachment) {
3468                                         $body .= "[" . $attachment['description'] . "](" . $attachment['url'] . ")\n";
3469                                 }
3470                         }
3471
3472                         $location = [];
3473
3474                         if ($item['location'] != '')
3475                                 $location['address'] = $item['location'];
3476
3477                         if ($item['coord'] != '') {
3478                                 $coord = explode(' ', $item['coord']);
3479                                 $location['lat'] = $coord[0];
3480                                 $location['lng'] = $coord[1];
3481                         }
3482
3483                         $message = [
3484                                 'author' => $myaddr,
3485                                 'guid' => $item['guid'],
3486                                 'created_at' => $created,
3487                                 'edited_at' => $edited,
3488                                 'public' => $public,
3489                                 'text' => $body,
3490                                 'provider_display_name' => $item['app'],
3491                                 'location' => $location
3492                         ];
3493
3494                         // Diaspora rejects messages when they contain a location without "lat" or "lng"
3495                         if (!isset($location['lat']) || !isset($location['lng'])) {
3496                                 unset($message['location']);
3497                         }
3498
3499                         if ($item['event-id'] > 0) {
3500                                 $event = self::buildEvent($item['event-id']);
3501                                 if (count($event)) {
3502                                         $message['event'] = $event;
3503
3504                                         if (!empty($event['location']['address']) &&
3505                                                 !empty($event['location']['lat']) &&
3506                                                 !empty($event['location']['lng'])) {
3507                                                 $message['location'] = $event['location'];
3508                                         }
3509
3510                                         /// @todo Once Diaspora supports it, we will remove the body and the location hack above
3511                                         // $message['text'] = '';
3512                                 }
3513                         }
3514
3515                         $type = 'status_message';
3516                 }
3517
3518                 $msg = [
3519                         'type' => $type,
3520                         'message' => $message
3521                 ];
3522
3523                 DI::cache()->set($cachekey, $msg, Duration::QUARTER_HOUR);
3524
3525                 return $msg;
3526         }
3527
3528         private static function prependParentAuthorMention(string $body, string $profile_url): string
3529         {
3530                 $profile = Contact::getByURL($profile_url, false, ['addr', 'name']);
3531                 if (!empty($profile['addr'])
3532                         && !strstr($body, $profile['addr'])
3533                         && !strstr($body, $profile_url)
3534                 ) {
3535                         $body = '@[url=' . $profile_url . ']' . $profile['name'] . '[/url] ' . $body;
3536                 }
3537
3538                 return $body;
3539         }
3540
3541         /**
3542          * Sends a post
3543          *
3544          * @param array $item         The item that will be exported
3545          * @param array $owner        the array of the item owner
3546          * @param array $contact      Target of the communication
3547          * @param bool  $public_batch Is it a public post?
3548          *
3549          * @return int The result of the transmission
3550          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3551          * @throws \ImagickException
3552          */
3553         public static function sendStatus(array $item, array $owner, array $contact, bool $public_batch = false): int
3554         {
3555                 $status = self::buildStatus($item, $owner);
3556
3557                 return self::buildAndTransmit($owner, $contact, $status['type'], $status['message'], $public_batch, $item['guid']);
3558         }
3559
3560         /**
3561          * Creates a "like" object
3562          *
3563          * @param array $item  The item that will be exported
3564          * @param array $owner the array of the item owner
3565          *
3566          * @return array|bool The data for a "like" or false on error
3567          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3568          */
3569         private static function constructLike(array $item, array $owner)
3570         {
3571                 $parent = Post::selectFirst(['guid', 'uri', 'thr-parent'], ['uri' => $item['thr-parent']]);
3572                 if (!DBA::isResult($parent)) {
3573                         return false;
3574                 }
3575
3576                 $target_type = ($parent['uri'] === $parent['thr-parent'] ? 'Post' : 'Comment');
3577                 $positive = null;
3578                 if ($item['verb'] === Activity::LIKE) {
3579                         $positive = 'true';
3580                 } elseif ($item['verb'] === Activity::DISLIKE) {
3581                         $positive = 'false';
3582                 }
3583
3584                 return [
3585                         'author' => self::myHandle($owner),
3586                         'guid' => $item['guid'],
3587                         'parent_guid' => $parent['guid'],
3588                         'parent_type' => $target_type,
3589                         'positive' => $positive,
3590                         'author_signature' => ''
3591                 ];
3592         }
3593
3594         /**
3595          * Creates an "EventParticipation" object
3596          *
3597          * @param array $item  The item that will be exported
3598          * @param array $owner the array of the item owner
3599          *
3600          * @return array|bool The data for an "EventParticipation" or false on error
3601          * @throws \Exception
3602          */
3603         private static function constructAttend(array $item, array $owner)
3604         {
3605                 $parent = Post::selectFirst(['guid'], ['uri' => $item['thr-parent']]);
3606                 if (!DBA::isResult($parent)) {
3607                         return false;
3608                 }
3609
3610                 switch ($item['verb']) {
3611                         case Activity::ATTEND:
3612                                 $attend_answer = 'accepted';
3613                                 break;
3614                         case Activity::ATTENDNO:
3615                                 $attend_answer = 'declined';
3616                                 break;
3617                         case Activity::ATTENDMAYBE:
3618                                 $attend_answer = 'tentative';
3619                                 break;
3620                         default:
3621                                 Logger::notice('Unknown verb '.$item['verb'].' in item '.$item['guid']);
3622                                 return false;
3623                 }
3624
3625                 return [
3626                         'author' => self::myHandle($owner),
3627                         'guid' => $item['guid'],
3628                         'parent_guid' => $parent['guid'],
3629                         'status' => $attend_answer,
3630                         'author_signature' => ''
3631                 ];
3632         }
3633
3634         /**
3635          * Creates the object for a comment
3636          *
3637          * @param array $item  The item that will be exported
3638          * @param array $owner the array of the item owner
3639          *
3640          * @return array|false The data for a comment
3641          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3642          */
3643         private static function constructComment(array $item, array $owner)
3644         {
3645                 $cachekey = 'diaspora:constructComment:' . $item['guid'];
3646
3647                 $result = DI::cache()->get($cachekey);
3648                 if (!is_null($result)) {
3649                         return $result;
3650                 }
3651
3652                 $toplevel_item = Post::selectFirst(['guid', 'author-id', 'author-link', 'gravity'], ['id' => $item['parent'], 'parent' => $item['parent']]);
3653                 if (!DBA::isResult($toplevel_item)) {
3654                         Logger::error('Missing parent conversation item', ['parent' => $item['parent']]);
3655                         return false;
3656                 }
3657
3658                 $thread_parent_item = $toplevel_item;
3659                 if ($item['thr-parent'] != $item['parent-uri']) {
3660                         $thread_parent_item = Post::selectFirst(['guid', 'author-id', 'author-link', 'gravity'], ['uri' => $item['thr-parent'], 'uid' => $item['uid']]);
3661                 }
3662
3663                 $body = Post\Media::addAttachmentsToBody($item['uri-id'], $item['body']);
3664
3665                 // The replied to autor mention is prepended for clarity if:
3666                 // - Item replied isn't yours
3667                 // - Item is public or explicit mentions are disabled
3668                 // - Implicit mentions are enabled
3669                 if (
3670                         $item['author-id'] != $thread_parent_item['author-id']
3671                         && ($thread_parent_item['gravity'] != GRAVITY_PARENT)
3672                         && (empty($item['uid']) || !Feature::isEnabled($item['uid'], 'explicit_mentions'))
3673                         && !DI::config()->get('system', 'disable_implicit_mentions')
3674                 ) {
3675                         $body = self::prependParentAuthorMention($body, $thread_parent_item['author-link']);
3676                 }
3677
3678                 $text = html_entity_decode(BBCode::toMarkdown($body));
3679                 $created = DateTimeFormat::utc($item['created'], DateTimeFormat::ATOM);
3680                 $edited = DateTimeFormat::utc($item['edited'], DateTimeFormat::ATOM);
3681
3682                 $comment = [
3683                         'author'      => self::myHandle($owner),
3684                         'guid'        => $item['guid'],
3685                         'created_at'  => $created,
3686                         'edited_at'   => $edited,
3687                         'parent_guid' => $toplevel_item['guid'],
3688                         'text'        => $text,
3689                         'author_signature' => ''
3690                 ];
3691
3692                 // Send the thread parent guid only if it is a threaded comment
3693                 if ($item['thr-parent'] != $item['parent-uri']) {
3694                         $comment['thread_parent_guid'] = $thread_parent_item['guid'];
3695                 }
3696
3697                 DI::cache()->set($cachekey, $comment, Duration::QUARTER_HOUR);
3698
3699                 return $comment;
3700         }
3701
3702         /**
3703          * Send a like or a comment
3704          *
3705          * @param array $item         The item that will be exported
3706          * @param array $owner        the array of the item owner
3707          * @param array $contact      Target of the communication
3708          * @param bool  $public_batch Is it a public post?
3709          *
3710          * @return int The result of the transmission
3711          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3712          * @throws \ImagickException
3713          */
3714         public static function sendFollowup(array $item, array $owner, array $contact, bool $public_batch = false): int
3715         {
3716                 if (in_array($item['verb'], [Activity::ATTEND, Activity::ATTENDNO, Activity::ATTENDMAYBE])) {
3717                         $message = self::constructAttend($item, $owner);
3718                         $type = 'event_participation';
3719                 } elseif (in_array($item['verb'], [Activity::LIKE, Activity::DISLIKE])) {
3720                         $message = self::constructLike($item, $owner);
3721                         $type = 'like';
3722                 } elseif (!in_array($item['verb'], [Activity::FOLLOW, Activity::TAG])) {
3723                         $message = self::constructComment($item, $owner);
3724                         $type = 'comment';
3725                 }
3726
3727                 if (empty($message)) {
3728                         return -1;
3729                 }
3730
3731                 $message['author_signature'] = self::signature($owner, $message);
3732
3733                 return self::buildAndTransmit($owner, $contact, $type, $message, $public_batch, $item['guid']);
3734         }
3735
3736         /**
3737          * Relays messages (like, comment, retraction) to other servers if we are the thread owner
3738          *
3739          * @param array $item         The item that will be exported
3740          * @param array $owner        the array of the item owner
3741          * @param array $contact      Target of the communication
3742          * @param bool  $public_batch Is it a public post?
3743          *
3744          * @return int The result of the transmission
3745          * @throws \Exception
3746          */
3747         public static function sendRelay(array $item, array $owner, array $contact, bool $public_batch = false): int
3748         {
3749                 if ($item['deleted']) {
3750                         return self::sendRetraction($item, $owner, $contact, $public_batch, true);
3751                 } elseif (in_array($item['verb'], [Activity::LIKE, Activity::DISLIKE])) {
3752                         $type = 'like';
3753                 } else {
3754                         $type = 'comment';
3755                 }
3756
3757                 Logger::info("Got relayable data " . $type . " for item " . $item['guid'] . " (" . $item['id'] . ")");
3758
3759                 $msg = json_decode($item['signed_text'], true);
3760
3761                 $message = [];
3762                 if (is_array($msg)) {
3763                         foreach ($msg as $field => $data) {
3764                                 if (!$item['deleted']) {
3765                                         if ($field == 'diaspora_handle') {
3766                                                 $field = 'author';
3767                                         }
3768                                         if ($field == 'target_type') {
3769                                                 $field = 'parent_type';
3770                                         }
3771                                 }
3772
3773                                 $message[$field] = $data;
3774                         }
3775                 } else {
3776                         Logger::info("Signature text for item " . $item["guid"] . " (" . $item["id"] . ") couldn't be extracted: " . $item['signed_text']);
3777                 }
3778
3779                 $message['parent_author_signature'] = self::signature($owner, $message);
3780
3781                 Logger::info('Relayed data', ['msg' => $message]);
3782
3783                 return self::buildAndTransmit($owner, $contact, $type, $message, $public_batch, $item['guid']);
3784         }
3785
3786         /**
3787          * Sends a retraction (deletion) of a message, like or comment
3788          *
3789          * @param array $item         The item that will be exported
3790          * @param array $owner        the array of the item owner
3791          * @param array $contact      Target of the communication
3792          * @param bool  $public_batch Is it a public post?
3793          * @param bool  $relay        Is the retraction transmitted from a relay?
3794          *
3795          * @return int The result of the transmission
3796          * @throws \Exception
3797          */
3798         public static function sendRetraction(array $item, array $owner, array $contact, bool $public_batch = false, bool $relay = false): int
3799         {
3800                 $itemaddr = self::handleFromContact($item['contact-id'], $item['author-id']);
3801
3802                 $msg_type = 'retraction';
3803
3804                 if ($item['gravity'] == GRAVITY_PARENT) {
3805                         $target_type = 'Post';
3806                 } elseif (in_array($item['verb'], [Activity::LIKE, Activity::DISLIKE])) {
3807                         $target_type = 'Like';
3808                 } else {
3809                         $target_type = 'Comment';
3810                 }
3811
3812                 $message = [
3813                         'author' => $itemaddr,
3814                         'target_guid' => $item['guid'],
3815                         'target_type' => $target_type
3816                 ];
3817
3818                 Logger::info('Got message', ['msg' => $message]);
3819
3820                 return self::buildAndTransmit($owner, $contact, $msg_type, $message, $public_batch, $item['guid']);
3821         }
3822
3823         /**
3824          * Sends a mail
3825          *
3826          * @param array $item    The item that will be exported
3827          * @param array $owner   The owner
3828          * @param array $contact Target of the communication
3829          *
3830          * @return int The result of the transmission
3831          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3832          * @throws \ImagickException
3833          */
3834         public static function sendMail(array $item, array $owner, array $contact): int
3835         {
3836                 $myaddr = self::myHandle($owner);
3837
3838                 $cnv = DBA::selectFirst('conv', [], ['id' => $item['convid'], 'uid' => $item['uid']]);
3839                 if (!DBA::isResult($cnv)) {
3840                         Logger::notice("conversation not found.");
3841                         return -1;
3842                 }
3843
3844                 $body = BBCode::toMarkdown($item['body']);
3845                 $created = DateTimeFormat::utc($item['created'], DateTimeFormat::ATOM);
3846
3847                 $msg = [
3848                         'author' => $myaddr,
3849                         'guid' => $item['guid'],
3850                         'conversation_guid' => $cnv['guid'],
3851                         'text' => $body,
3852                         'created_at' => $created,
3853                 ];
3854
3855                 if ($item['reply']) {
3856                         $message = $msg;
3857                         $type = 'message';
3858                 } else {
3859                         $message = [
3860                                 'author' => $cnv['creator'],
3861                                 'guid' => $cnv['guid'],
3862                                 'subject' => $cnv['subject'],
3863                                 'created_at' => DateTimeFormat::utc($cnv['created'], DateTimeFormat::ATOM),
3864                                 'participants' => $cnv['recips'],
3865                                 'message' => $msg
3866                         ];
3867
3868                         $type = 'conversation';
3869                 }
3870
3871                 return self::buildAndTransmit($owner, $contact, $type, $message, false, $item['guid']);
3872         }
3873
3874         /**
3875          * Split a name into first name and last name
3876          *
3877          * @param string $name The name
3878          *
3879          * @return array The array with "first" and "last"
3880          */
3881         public static function splitName(string $name): array
3882         {
3883                 $name = trim($name);
3884
3885                 // Is the name longer than 64 characters? Then cut the rest of it.
3886                 if (strlen($name) > 64) {
3887                         if ((strpos($name, ' ') <= 64) && (strpos($name, ' ') !== false)) {
3888                                 $name = trim(substr($name, 0, strrpos(substr($name, 0, 65), ' ')));
3889                         } else {
3890                                 $name = substr($name, 0, 64);
3891                         }
3892                 }
3893
3894                 // Take the first word as first name
3895                 $first = ((strpos($name, ' ') ? trim(substr($name, 0, strpos($name, ' '))) : $name));
3896                 $last = (($first === $name) ? '' : trim(substr($name, strlen($first))));
3897                 if ((strlen($first) < 32) && (strlen($last) < 32)) {
3898                         return ['first' => $first, 'last' => $last];
3899                 }
3900
3901                 // Take the last word as last name
3902                 $first = ((strrpos($name, ' ') ? trim(substr($name, 0, strrpos($name, ' '))) : $name));
3903                 $last = (($first === $name) ? '' : trim(substr($name, strlen($first))));
3904
3905                 if ((strlen($first) < 32) && (strlen($last) < 32)) {
3906                         return ['first' => $first, 'last' => $last];
3907                 }
3908
3909                 // Take the first 32 characters if there is no space in the first 32 characters
3910                 if ((strpos($name, ' ') > 32) || (strpos($name, ' ') === false)) {
3911                         $first = substr($name, 0, 32);
3912                         $last = substr($name, 32);
3913                         return ['first' => $first, 'last' => $last];
3914                 }
3915
3916                 $first = trim(substr($name, 0, strrpos(substr($name, 0, 33), ' ')));
3917                 $last = (($first === $name) ? '' : trim(substr($name, strlen($first))));
3918
3919                 // Check if the last name is longer than 32 characters
3920                 if (strlen($last) > 32) {
3921                         if (strpos($last, ' ') <= 32) {
3922                                 $last = trim(substr($last, 0, strrpos(substr($last, 0, 33), ' ')));
3923                         } else {
3924                                 $last = substr($last, 0, 32);
3925                         }
3926                 }
3927
3928                 return ['first' => $first, 'last' => $last];
3929         }
3930
3931         /**
3932          * Create profile data
3933          *
3934          * @param int $uid The user id
3935          *
3936          * @return array The profile data
3937          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3938          */
3939         private static function createProfileData(int $uid): array
3940         {
3941                 $profile = DBA::selectFirst('owner-view', ['uid', 'addr', 'name', 'location', 'net-publish', 'dob', 'about', 'pub_keywords'], ['uid' => $uid]);
3942                 if (!DBA::isResult($profile)) {
3943                         return [];
3944                 }
3945
3946                 $handle = $profile['addr'];
3947
3948                 $split_name = self::splitName($profile['name']);
3949                 $first = $split_name['first'];
3950                 $last = $split_name['last'];
3951
3952                 $large = DI::baseUrl().'/photo/custom/300/'.$profile['uid'].'.jpg';
3953                 $medium = DI::baseUrl().'/photo/custom/100/'.$profile['uid'].'.jpg';
3954                 $small = DI::baseUrl().'/photo/custom/50/'  .$profile['uid'].'.jpg';
3955                 $searchable = ($profile['net-publish'] ? 'true' : 'false');
3956
3957                 $dob = null;
3958                 $about = null;
3959                 $location = null;
3960                 $tags = null;
3961                 if ($searchable === 'true') {
3962                         $dob = '';
3963
3964                         if ($profile['dob'] && ($profile['dob'] > '0000-00-00')) {
3965                                 [$year, $month, $day] = sscanf($profile['dob'], '%4d-%2d-%2d');
3966                                 if ($year < 1004) {
3967                                         $year = 1004;
3968                                 }
3969                                 $dob = DateTimeFormat::utc($year . '-' . $month . '-'. $day, 'Y-m-d');
3970                         }
3971
3972                         $about = BBCode::toMarkdown($profile['about']);
3973
3974                         $location = $profile['location'];
3975                         $tags = '';
3976                         if ($profile['pub_keywords']) {
3977                                 $kw = str_replace(',', ' ', $profile['pub_keywords']);
3978                                 $kw = str_replace('  ', ' ', $kw);
3979                                 $arr = explode(' ', $kw);
3980                                 if (count($arr)) {
3981                                         for ($x = 0; $x < 5; $x ++) {
3982                                                 if (!empty($arr[$x])) {
3983                                                         $tags .= '#'. trim($arr[$x]) .' ';
3984                                                 }
3985                                         }
3986                                 }
3987                         }
3988                         $tags = trim($tags);
3989                 }
3990
3991                 return [
3992                         'author' => $handle,
3993                         'first_name' => $first,
3994                         'last_name' => $last,
3995                         'image_url' => $large,
3996                         'image_url_medium' => $medium,
3997                         'image_url_small' => $small,
3998                         'birthday' => $dob,
3999                         'bio' => $about,
4000                         'location' => $location,
4001                         'searchable' => $searchable,
4002                         'nsfw' => 'false',
4003                         'tag_string' => $tags
4004                 ];
4005         }
4006
4007         /**
4008          * Sends profile data
4009          *
4010          * @param int   $uid    The user id
4011          * @param array $recips optional, default empty array
4012          * @return void
4013          * @throws \Exception
4014          */
4015         public static function sendProfile(int $uid, array $recips = [])
4016         {
4017                 if (!$uid) {
4018                         return;
4019                 }
4020
4021                 $owner = User::getOwnerDataById($uid);
4022                 if (!$owner) {
4023                         return;
4024                 }
4025
4026                 if (!$recips) {
4027                         $recips = DBA::selectToArray('contact', [], ['network' => Protocol::DIASPORA, 'uid' => $uid, 'rel' => [Contact::FOLLOWER, Contact::FRIEND]]);
4028                 }
4029
4030                 if (!$recips) {
4031                         return;
4032                 }
4033
4034                 $message = self::createProfileData($uid);
4035
4036                 // @ToDo Split this into single worker jobs
4037                 foreach ($recips as $recip) {
4038                         Logger::info("Send updated profile data for user " . $uid . " to contact " . $recip['id']);
4039                         self::buildAndTransmit($owner, $recip, 'profile', $message);
4040                 }
4041         }
4042
4043         /**
4044          * Creates the signature for likes that are created on our system
4045          *
4046          * @param integer $uid  The user of that comment
4047          * @param array   $item Item array
4048          *
4049          * @return array|bool Signed content or false on error
4050          * @throws \Exception
4051          */
4052         public static function createLikeSignature(int $uid, array $item)
4053         {
4054                 $owner = User::getOwnerDataById($uid);
4055                 if (empty($owner)) {
4056                         Logger::info('No owner post, so not storing signature');
4057                         return false;
4058                 }
4059
4060                 if (!in_array($item['verb'], [Activity::LIKE, Activity::DISLIKE])) {
4061                         return false;
4062                 }
4063
4064                 $message = self::constructLike($item, $owner);
4065                 if ($message === false) {
4066                         return false;
4067                 }
4068
4069                 $message['author_signature'] = self::signature($owner, $message);
4070
4071                 return $message;
4072         }
4073
4074         /**
4075          * Creates the signature for Comments that are created on our system
4076          *
4077          * @param array   $item Item array
4078          *
4079          * @return array|bool Signed content or false on error
4080          * @throws \Exception
4081          */
4082         public static function createCommentSignature(array $item)
4083         {
4084                 if (!empty($item['author-link'])) {
4085                         $url = $item['author-link'];
4086                 } else {
4087                         $contact = Contact::getById($item['author-id'], ['url']);
4088                         if (empty($contact['url'])) {
4089                                 Logger::warning('Author Contact not found', ['author-id' => $item['author-id']]);
4090                                 return false;
4091                         }
4092                         $url = $contact['url'];
4093                 }
4094
4095                 $uid = User::getIdForURL($url);
4096                 if (empty($uid)) {
4097                         Logger::info('No owner post, so not storing signature', ['url' => $contact['url']]);
4098                         return false;
4099                 }
4100
4101                 $owner = User::getOwnerDataById($uid);
4102                 if (empty($owner)) {
4103                         Logger::info('No owner post, so not storing signature');
4104                         return false;
4105                 }
4106
4107                 // This is only needed for the automated tests
4108                 if (empty($owner['uprvkey'])) {
4109                         return false;
4110                 }
4111
4112                 $message = self::constructComment($item, $owner);
4113                 if ($message === false) {
4114                         return false;
4115                 }
4116
4117                 $message['author_signature'] = self::signature($owner, $message);
4118
4119                 return $message;
4120         }
4121
4122         public static function performReshare(int $UriId, int $uid): int
4123         {
4124                 $fields = ['uri-id', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink'];
4125                 $item = Post::selectFirst($fields, ['uri-id' => $UriId, 'uid' => [$uid, 0], 'private' => [Item::PUBLIC, Item::UNLISTED]]);
4126                 if (!DBA::isResult($item)) {
4127                         return 0;
4128                 }
4129
4130                 if (strpos($item['body'], '[/share]') !== false) {
4131                         $pos = strpos($item['body'], '[share');
4132                         $post = substr($item['body'], $pos);
4133                 } else {
4134                         $post = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid']);
4135
4136                         if (!empty($item['title'])) {
4137                                 $post .= '[h3]' . $item['title'] . "[/h3]\n";
4138                         }
4139
4140                         $post .= $item['body'];
4141                         $post .= '[/share]';
4142                 }
4143
4144                 $owner  = User::getOwnerDataById($uid);
4145                 $author = Contact::getPublicIdByUserId($uid);
4146
4147                 $item = [
4148                         'uid'        => $uid,
4149                         'verb'       => Activity::POST,
4150                         'contact-id' => $owner['id'],
4151                         'author-id'  => $author,
4152                         'owner-id'   => $author,
4153                         'body'       => $post,
4154                         'allow_cid'  => $owner['allow_cid'] ?? '',
4155                         'allow_gid'  => $owner['allow_gid']?? '',
4156                         'deny_cid'   => $owner['deny_cid'] ?? '',
4157                         'deny_gid'   => $owner['deny_gid'] ?? '',
4158                 ];
4159
4160                 if (!empty($item['allow_cid'] . $item['allow_gid'] . $item['deny_cid'] . $item['deny_gid'])) {
4161                         $item['private'] = Item::PRIVATE;
4162                 } elseif (DI::pConfig()->get($uid, 'system', 'unlisted')) {
4163                         $item['private'] = Item::UNLISTED;
4164                 } else {
4165                         $item['private'] = Item::PUBLIC;
4166                 }
4167
4168                 // Don't trigger the addons
4169                 $item['api_source'] = false;
4170
4171                 return Item::insert($item, true);
4172         }
4173 }