]> git.mxchange.org Git - friendica.git/blob - diaspora.php
e3a3dcd78c2e05d37d177b9f5b4a6e78db2cceb5
[friendica.git] / diaspora.php
1 <?php
2 /**
3  * @file include/diaspora.php
4  * @brief The implementation of the diaspora protocol
5  *
6  * Checklist:
7  *
8  * Checked:
9  * - send status
10  * - send comment
11  * - send like
12  * - send mail
13  * - send status retraction
14  * - send comment retraction on own post
15  * - send like retraction on own post
16  * - send comment retraction on diaspora post
17  * - send like retraction on diaspora post
18  * - receive status
19  * - receive reshare
20  * - receive comment
21  * - receive like
22  * - receive connect request
23  * - receive profile data
24  * - receive mail
25  * - receive comment retraction
26  * - receive like retraction
27  * - relay comment
28  * - relay like
29  * - relay comment retraction from diaspora
30  * - relay comment retraction from friendica
31  * - relay like retraction from diaspora
32  * - relay like retraction from friendica
33  * - send share
34  *
35  * Should work:
36  * - receive account deletion
37  * - send unshare
38  *
39  * Unchecked:
40  */
41
42 require_once("include/items.php");
43 require_once("include/bb2diaspora.php");
44 require_once("include/Scrape.php");
45 require_once("include/Contact.php");
46 require_once("include/Photo.php");
47 require_once("include/socgraph.php");
48 require_once("include/group.php");
49 require_once("include/xml.php");
50 require_once("include/datetime.php");
51 require_once("include/queue_fn.php");
52
53 /**
54  * @brief This class contain functions to create and send Diaspora XML files
55  *
56  */
57 class diaspora {
58
59         /**
60          * @brief Return a list of relay servers
61          *
62          * This is an experimental Diaspora feature.
63          *
64          * @return array of relay servers
65          */
66         public static function relay_list() {
67
68                 $serverdata = get_config("system", "relay_server");
69                 if ($serverdata == "")
70                         return array();
71
72                 $relay = array();
73
74                 $servers = explode(",", $serverdata);
75
76                 foreach($servers AS $server) {
77                         $server = trim($server);
78                         $batch = $server."/receive/public";
79
80                         $relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch));
81
82                         if (!$relais) {
83                                 $addr = "relay@".str_replace("http://", "", normalise_link($server));
84
85                                 $r = q("INSERT INTO `contact` (`uid`, `created`, `name`, `nick`, `addr`, `url`, `nurl`, `batch`, `network`, `rel`, `blocked`, `pending`, `writable`, `name-date`, `uri-date`, `avatar-date`)
86                                         VALUES (0, '%s', '%s', 'relay', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, '%s', '%s', '%s')",
87                                         datetime_convert(),
88                                         dbesc($addr),
89                                         dbesc($addr),
90                                         dbesc($server),
91                                         dbesc(normalise_link($server)),
92                                         dbesc($batch),
93                                         dbesc(NETWORK_DIASPORA),
94                                         intval(CONTACT_IS_FOLLOWER),
95                                         dbesc(datetime_convert()),
96                                         dbesc(datetime_convert()),
97                                         dbesc(datetime_convert())
98                                 );
99
100                                 $relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch));
101                                 if ($relais)
102                                         $relay[] = $relais[0];
103                         } else
104                                 $relay[] = $relais[0];
105                 }
106
107                 return $relay;
108         }
109
110         /**
111          * @brief repairs a signature that was double encoded
112          *
113          * The function is unused at the moment. It was copied from the old implementation.
114          *
115          * @param string $signature The signature
116          * @param string $handle The handle of the signature owner
117          * @param integer $level This value is only set inside this function to avoid endless loops
118          *
119          * @return string the repaired signature
120          */
121         private function repair_signature($signature, $handle = "", $level = 1) {
122
123                 if ($signature == "")
124                         return ($signature);
125
126                 if (base64_encode(base64_decode(base64_decode($signature))) == base64_decode($signature)) {
127                         $signature = base64_decode($signature);
128                         logger("Repaired double encoded signature from Diaspora/Hubzilla handle ".$handle." - level ".$level, LOGGER_DEBUG);
129
130                         // Do a recursive call to be able to fix even multiple levels
131                         if ($level < 10)
132                                 $signature = self::repair_signature($signature, $handle, ++$level);
133                 }
134
135                 return($signature);
136         }
137
138         /**
139          * @brief: Decodes incoming Diaspora message
140          *
141          * @param array $importer Array of the importer user
142          * @param string $xml urldecoded Diaspora salmon
143          *
144          * @return array
145          * 'message' -> decoded Diaspora XML message
146          * 'author' -> author diaspora handle
147          * 'key' -> author public key (converted to pkcs#8)
148          */
149         public static function decode($importer, $xml) {
150
151                 $public = false;
152                 $basedom = parse_xml_string($xml);
153
154                 if (!is_object($basedom))
155                         return false;
156
157                 $children = $basedom->children('https://joindiaspora.com/protocol');
158
159                 if($children->header) {
160                         $public = true;
161                         $author_link = str_replace('acct:','',$children->header->author_id);
162                 } else {
163
164                         $encrypted_header = json_decode(base64_decode($children->encrypted_header));
165
166                         $encrypted_aes_key_bundle = base64_decode($encrypted_header->aes_key);
167                         $ciphertext = base64_decode($encrypted_header->ciphertext);
168
169                         $outer_key_bundle = '';
170                         openssl_private_decrypt($encrypted_aes_key_bundle,$outer_key_bundle,$importer['prvkey']);
171
172                         $j_outer_key_bundle = json_decode($outer_key_bundle);
173
174                         $outer_iv = base64_decode($j_outer_key_bundle->iv);
175                         $outer_key = base64_decode($j_outer_key_bundle->key);
176
177                         $decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $outer_key, $ciphertext, MCRYPT_MODE_CBC, $outer_iv);
178
179
180                         $decrypted = pkcs5_unpad($decrypted);
181
182                         logger('decrypted: '.$decrypted, LOGGER_DEBUG);
183                         $idom = parse_xml_string($decrypted,false);
184
185                         $inner_iv = base64_decode($idom->iv);
186                         $inner_aes_key = base64_decode($idom->aes_key);
187
188                         $author_link = str_replace('acct:','',$idom->author_id);
189                 }
190
191                 $dom = $basedom->children(NAMESPACE_SALMON_ME);
192
193                 // figure out where in the DOM tree our data is hiding
194
195                 if($dom->provenance->data)
196                         $base = $dom->provenance;
197                 elseif($dom->env->data)
198                         $base = $dom->env;
199                 elseif($dom->data)
200                         $base = $dom;
201
202                 if (!$base) {
203                         logger('unable to locate salmon data in xml');
204                         http_status_exit(400);
205                 }
206
207
208                 // Stash the signature away for now. We have to find their key or it won't be good for anything.
209                 $signature = base64url_decode($base->sig);
210
211                 // unpack the  data
212
213                 // strip whitespace so our data element will return to one big base64 blob
214                 $data = str_replace(array(" ","\t","\r","\n"),array("","","",""),$base->data);
215
216
217                 // stash away some other stuff for later
218
219                 $type = $base->data[0]->attributes()->type[0];
220                 $keyhash = $base->sig[0]->attributes()->keyhash[0];
221                 $encoding = $base->encoding;
222                 $alg = $base->alg;
223
224
225                 $signed_data = $data.'.'.base64url_encode($type).'.'.base64url_encode($encoding).'.'.base64url_encode($alg);
226
227
228                 // decode the data
229                 $data = base64url_decode($data);
230
231
232                 if($public)
233                         $inner_decrypted = $data;
234                 else {
235
236                         // Decode the encrypted blob
237
238                         $inner_encrypted = base64_decode($data);
239                         $inner_decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $inner_encrypted, MCRYPT_MODE_CBC, $inner_iv);
240                         $inner_decrypted = pkcs5_unpad($inner_decrypted);
241                 }
242
243                 if (!$author_link) {
244                         logger('Could not retrieve author URI.');
245                         http_status_exit(400);
246                 }
247                 // Once we have the author URI, go to the web and try to find their public key
248                 // (first this will look it up locally if it is in the fcontact cache)
249                 // This will also convert diaspora public key from pkcs#1 to pkcs#8
250
251                 logger('Fetching key for '.$author_link);
252                 $key = self::key($author_link);
253
254                 if (!$key) {
255                         logger('Could not retrieve author key.');
256                         http_status_exit(400);
257                 }
258
259                 $verify = rsa_verify($signed_data,$signature,$key);
260
261                 if (!$verify) {
262                         logger('Message did not verify. Discarding.');
263                         http_status_exit(400);
264                 }
265
266                 logger('Message verified.');
267
268                 return array('message' => (string)$inner_decrypted,
269                                 'author' => unxmlify($author_link),
270                                 'key' => (string)$key);
271
272         }
273
274
275         /**
276          * @brief Dispatches public messages and find the fitting receivers
277          *
278          * @param array $msg The post that will be dispatched
279          *
280          * @return int The message id of the generated message, "true" or "false" if there was an error
281          */
282         public static function dispatch_public($msg) {
283
284                 $enabled = intval(get_config("system", "diaspora_enabled"));
285                 if (!$enabled) {
286                         logger("diaspora is disabled");
287                         return false;
288                 }
289
290                 // Use a dummy importer to import the data for the public copy
291                 $importer = array("uid" => 0, "page-flags" => PAGE_FREELOVE);
292                 $message_id = self::dispatch($importer,$msg);
293
294                 // Now distribute it to the followers
295                 $r = q("SELECT `user`.* FROM `user` WHERE `user`.`uid` IN
296                         (SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s')
297                         AND NOT `account_expired` AND NOT `account_removed`",
298                         dbesc(NETWORK_DIASPORA),
299                         dbesc($msg["author"])
300                 );
301                 if($r) {
302                         foreach($r as $rr) {
303                                 logger("delivering to: ".$rr["username"]);
304                                 self::dispatch($rr,$msg);
305                         }
306                 } else
307                         logger("No subscribers for ".$msg["author"]." ".print_r($msg, true));
308
309                 return $message_id;
310         }
311
312         /**
313          * @brief Dispatches the different message types to the different functions
314          *
315          * @param array $importer Array of the importer user
316          * @param array $msg The post that will be dispatched
317          *
318          * @return int The message id of the generated message, "true" or "false" if there was an error
319          */
320         public static function dispatch($importer, $msg) {
321
322                 // The sender is the handle of the contact that sent the message.
323                 // This will often be different with relayed messages (for example "like" and "comment")
324                 $sender = $msg["author"];
325
326                 if (!diaspora::valid_posting($msg, $fields)) {
327                         logger("Invalid posting");
328                         return false;
329                 }
330
331                 $type = $fields->getName();
332
333                 logger("Received message type ".$type." from ".$sender." for user ".$importer["uid"], LOGGER_DEBUG);
334
335                 switch ($type) {
336                         case "account_deletion":
337                                 return self::receive_account_deletion($importer, $fields);
338
339                         case "comment":
340                                 return self::receive_comment($importer, $sender, $fields, $msg["message"]);
341
342                         case "contact":
343                                 return self::receive_contact_request($importer, $fields);
344
345                         case "conversation":
346                                 return self::receive_conversation($importer, $msg, $fields);
347
348                         case "like":
349                                 return self::receive_like($importer, $sender, $fields);
350
351                         case "message":
352                                 return self::receive_message($importer, $fields);
353
354                         case "participation": // Not implemented
355                                 return self::receive_participation($importer, $fields);
356
357                         case "photo": // Not implemented
358                                 return self::receive_photo($importer, $fields);
359
360                         case "poll_participation": // Not implemented
361                                 return self::receive_poll_participation($importer, $fields);
362
363                         case "profile":
364                                 return self::receive_profile($importer, $fields);
365
366                         case "reshare":
367                                 return self::receive_reshare($importer, $fields, $msg["message"]);
368
369                         case "retraction":
370                                 return self::receive_retraction($importer, $sender, $fields);
371
372                         case "status_message":
373                                 return self::receive_status_message($importer, $fields, $msg["message"]);
374
375                         default:
376                                 logger("Unknown message type ".$type);
377                                 return false;
378                 }
379
380                 return true;
381         }
382
383         /**
384          * @brief Checks if a posting is valid and fetches the data fields.
385          *
386          * This function does not only check the signature.
387          * It also does the conversion between the old and the new diaspora format.
388          *
389          * @param array $msg Array with the XML, the sender handle and the sender signature
390          * @param object $fields SimpleXML object that contains the posting when it is valid
391          *
392          * @return bool Is the posting valid?
393          */
394         private function valid_posting($msg, &$fields) {
395
396                 $data = parse_xml_string($msg["message"], false);
397
398                 if (!is_object($data))
399                         return false;
400
401                 $first_child = $data->getName();
402
403                 // Is this the new or the old version?
404                 if ($data->getName() == "XML") {
405                         $oldXML = true;
406                         foreach ($data->post->children() as $child)
407                                 $element = $child;
408                 } else {
409                         $oldXML = false;
410                         $element = $data;
411                 }
412
413                 $type = $element->getName();
414                 $orig_type = $type;
415
416                 // All retractions are handled identically from now on.
417                 // In the new version there will only be "retraction".
418                 if (in_array($type, array("signed_retraction", "relayable_retraction")))
419                         $type = "retraction";
420
421                 if ($type == "request")
422                         $type = "contact";
423
424                 $fields = new SimpleXMLElement("<".$type."/>");
425
426                 $signed_data = "";
427
428                 foreach ($element->children() AS $fieldname => $entry) {
429                         if ($oldXML) {
430                                 // Translation for the old XML structure
431                                 if ($fieldname == "diaspora_handle")
432                                         $fieldname = "author";
433
434                                 if ($fieldname == "participant_handles")
435                                         $fieldname = "participants";
436
437                                 if (in_array($type, array("like", "participation"))) {
438                                         if ($fieldname == "target_type")
439                                                 $fieldname = "parent_type";
440                                 }
441
442                                 if ($fieldname == "sender_handle")
443                                         $fieldname = "author";
444
445                                 if ($fieldname == "recipient_handle")
446                                         $fieldname = "recipient";
447
448                                 if ($fieldname == "root_diaspora_id")
449                                         $fieldname = "root_author";
450
451                                 if ($type == "retraction") {
452                                         if ($fieldname == "post_guid")
453                                                 $fieldname = "target_guid";
454
455                                         if ($fieldname == "type")
456                                                 $fieldname = "target_type";
457                                 }
458                         }
459
460                         if ($fieldname == "author_signature")
461                                 $author_signature = base64_decode($entry);
462                         elseif ($fieldname == "parent_author_signature")
463                                 $parent_author_signature = base64_decode($entry);
464                         elseif ($fieldname != "target_author_signature") {
465                                 if ($signed_data != "") {
466                                         $signed_data .= ";";
467                                         $signed_data_parent .= ";";
468                                 }
469
470                                 $signed_data .= $entry;
471                         }
472                         if (!in_array($fieldname, array("parent_author_signature", "target_author_signature")) OR
473                                 ($orig_type == "relayable_retraction"))
474                                 xml::copy($entry, $fields, $fieldname);
475                 }
476
477                 // This is something that shouldn't happen at all.
478                 if (in_array($type, array("status_message", "reshare", "profile")))
479                         if ($msg["author"] != $fields->author) {
480                                 logger("Message handle is not the same as envelope sender. Quitting this message.");
481                                 return false;
482                         }
483
484                 // Only some message types have signatures. So we quit here for the other types.
485                 if (!in_array($type, array("comment", "message", "like")))
486                         return true;
487
488                 // No author_signature? This is a must, so we quit.
489                 if (!isset($author_signature))
490                         return false;
491
492                 if (isset($parent_author_signature)) {
493                         $key = self::key($msg["author"]);
494
495                         if (!rsa_verify($signed_data, $parent_author_signature, $key, "sha256"))
496                                 return false;
497                 }
498
499                 $key = self::key($fields->author);
500
501                 return rsa_verify($signed_data, $author_signature, $key, "sha256");
502         }
503
504         /**
505          * @brief Fetches the public key for a given handle
506          *
507          * @param string $handle The handle
508          *
509          * @return string The public key
510          */
511         private function key($handle) {
512                 $handle = strval($handle);
513
514                 logger("Fetching diaspora key for: ".$handle);
515
516                 $r = self::person_by_handle($handle);
517                 if($r)
518                         return $r["pubkey"];
519
520                 return "";
521         }
522
523         /**
524          * @brief Fetches data for a given handle
525          *
526          * @param string $handle The handle
527          *
528          * @return array the queried data
529          */
530         private function person_by_handle($handle) {
531
532                 $r = q("SELECT * FROM `fcontact` WHERE `network` = '%s' AND `addr` = '%s' LIMIT 1",
533                         dbesc(NETWORK_DIASPORA),
534                         dbesc($handle)
535                 );
536                 if ($r) {
537                         $person = $r[0];
538                         logger("In cache ".print_r($r,true), LOGGER_DEBUG);
539
540                         // update record occasionally so it doesn't get stale
541                         $d = strtotime($person["updated"]." +00:00");
542                         if ($d < strtotime("now - 14 days"))
543                                 $update = true;
544                 }
545
546                 if (!$person OR $update) {
547                         logger("create or refresh", LOGGER_DEBUG);
548                         $r = probe_url($handle, PROBE_DIASPORA);
549
550                         // Note that Friendica contacts will return a "Diaspora person"
551                         // if Diaspora connectivity is enabled on their server
552                         if ($r AND ($r["network"] === NETWORK_DIASPORA)) {
553                                 self::add_fcontact($r, $update);
554                                 $person = $r;
555                         }
556                 }
557                 return $person;
558         }
559
560         /**
561          * @brief Updates the fcontact table
562          *
563          * @param array $arr The fcontact data
564          * @param bool $update Update or insert?
565          *
566          * @return string The id of the fcontact entry
567          */
568         private function add_fcontact($arr, $update = false) {
569
570                 if($update) {
571                         $r = q("UPDATE `fcontact` SET
572                                         `name` = '%s',
573                                         `photo` = '%s',
574                                         `request` = '%s',
575                                         `nick` = '%s',
576                                         `addr` = '%s',
577                                         `batch` = '%s',
578                                         `notify` = '%s',
579                                         `poll` = '%s',
580                                         `confirm` = '%s',
581                                         `alias` = '%s',
582                                         `pubkey` = '%s',
583                                         `updated` = '%s'
584                                 WHERE `url` = '%s' AND `network` = '%s'",
585                                         dbesc($arr["name"]),
586                                         dbesc($arr["photo"]),
587                                         dbesc($arr["request"]),
588                                         dbesc($arr["nick"]),
589                                         dbesc($arr["addr"]),
590                                         dbesc($arr["batch"]),
591                                         dbesc($arr["notify"]),
592                                         dbesc($arr["poll"]),
593                                         dbesc($arr["confirm"]),
594                                         dbesc($arr["alias"]),
595                                         dbesc($arr["pubkey"]),
596                                         dbesc(datetime_convert()),
597                                         dbesc($arr["url"]),
598                                         dbesc($arr["network"])
599                                 );
600                 } else {
601                         $r = q("INSERT INTO `fcontact` (`url`,`name`,`photo`,`request`,`nick`,`addr`,
602                                         `batch`, `notify`,`poll`,`confirm`,`network`,`alias`,`pubkey`,`updated`)
603                                 VALUES ('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
604                                         dbesc($arr["url"]),
605                                         dbesc($arr["name"]),
606                                         dbesc($arr["photo"]),
607                                         dbesc($arr["request"]),
608                                         dbesc($arr["nick"]),
609                                         dbesc($arr["addr"]),
610                                         dbesc($arr["batch"]),
611                                         dbesc($arr["notify"]),
612                                         dbesc($arr["poll"]),
613                                         dbesc($arr["confirm"]),
614                                         dbesc($arr["network"]),
615                                         dbesc($arr["alias"]),
616                                         dbesc($arr["pubkey"]),
617                                         dbesc(datetime_convert())
618                                 );
619                 }
620
621                 return $r;
622         }
623
624         /**
625          * @brief get a handle (user@domain.tld) from a given contact id or gcontact id
626          *
627          * @param int $contact_id The id in the contact table
628          * @param int $gcontact_id The id in the gcontact table
629          *
630          * @return string the handle
631          */
632         public static function handle_from_contact($contact_id, $gcontact_id = 0) {
633                 $handle = False;
634
635                 logger("contact id is ".$contact_id." - gcontact id is ".$gcontact_id, LOGGER_DEBUG);
636
637                 if ($gcontact_id != 0) {
638                         $r = q("SELECT `addr` FROM `gcontact` WHERE `id` = %d AND `addr` != ''",
639                                 intval($gcontact_id));
640                         if ($r)
641                                 return $r[0]["addr"];
642                 }
643
644                 $r = q("SELECT `network`, `addr`, `self`, `url`, `nick` FROM `contact` WHERE `id` = %d",
645                         intval($contact_id));
646                 if ($r) {
647                         $contact = $r[0];
648
649                         logger("contact 'self' = ".$contact['self']." 'url' = ".$contact['url'], LOGGER_DEBUG);
650
651                         if($contact['addr'] != "")
652                                 $handle = $contact['addr'];
653                         else {
654                                 $baseurl_start = strpos($contact['url'],'://') + 3;
655                                 $baseurl_length = strpos($contact['url'],'/profile') - $baseurl_start; // allows installations in a subdirectory--not sure how Diaspora will handle
656                                 $baseurl = substr($contact['url'], $baseurl_start, $baseurl_length);
657                                 $handle = $contact['nick'].'@'.$baseurl;
658                         }
659                 }
660
661                 return $handle;
662         }
663
664         /**
665          * @brief Get a contact id for a given handle
666          *
667          * @param int $uid The user id
668          * @param string $handle The handle in the format user@domain.tld
669          *
670          * @return The contact id
671          */
672         private function contact_by_handle($uid, $handle) {
673                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
674                         intval($uid),
675                         dbesc($handle)
676                 );
677
678                 if ($r)
679                         return $r[0];
680
681                 $handle_parts = explode("@", $handle);
682                 $nurl_sql = "%%://".$handle_parts[1]."%%/profile/".$handle_parts[0];
683                 $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` LIKE '%s' LIMIT 1",
684                         dbesc(NETWORK_DFRN),
685                         intval($uid),
686                         dbesc($nurl_sql)
687                 );
688                 if($r)
689                         return $r[0];
690
691                 return false;
692         }
693
694         /**
695          * @brief Check if posting is allowed for this contact
696          *
697          * @param array $importer Array of the importer user
698          * @param array $contact The contact that is checked
699          * @param bool $is_comment Is the check for a comment?
700          *
701          * @return bool is the contact allowed to post?
702          */
703         private function post_allow($importer, $contact, $is_comment = false) {
704
705                 // perhaps we were already sharing with this person. Now they're sharing with us.
706                 // That makes us friends.
707                 // Normally this should have handled by getting a request - but this could get lost
708                 if($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
709                         q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
710                                 intval(CONTACT_IS_FRIEND),
711                                 intval($contact["id"]),
712                                 intval($importer["uid"])
713                         );
714                         $contact["rel"] = CONTACT_IS_FRIEND;
715                         logger("defining user ".$contact["nick"]." as friend");
716                 }
717
718                 if(($contact["blocked"]) || ($contact["readonly"]) || ($contact["archive"]))
719                         return false;
720                 if($contact["rel"] == CONTACT_IS_SHARING || $contact["rel"] == CONTACT_IS_FRIEND)
721                         return true;
722                 if($contact["rel"] == CONTACT_IS_FOLLOWER)
723                         if(($importer["page-flags"] == PAGE_COMMUNITY) OR $is_comment)
724                                 return true;
725
726                 // Messages for the global users are always accepted
727                 if ($importer["uid"] == 0)
728                         return true;
729
730                 return false;
731         }
732
733         /**
734          * @brief Fetches the contact id for a handle and checks if posting is allowed
735          *
736          * @param array $importer Array of the importer user
737          * @param string $handle The checked handle in the format user@domain.tld
738          * @param bool $is_comment Is the check for a comment?
739          *
740          * @return array The contact data
741          */
742         private function allowed_contact_by_handle($importer, $handle, $is_comment = false) {
743                 $contact = self::contact_by_handle($importer["uid"], $handle);
744                 if (!$contact) {
745                         logger("A Contact for handle ".$handle." and user ".$importer["uid"]." was not found");
746                         return false;
747                 }
748
749                 if (!self::post_allow($importer, $contact, $is_comment)) {
750                         logger("The handle: ".$handle." is not allowed to post to user ".$importer["uid"]);
751                         return false;
752                 }
753                 return $contact;
754         }
755
756         /**
757          * @brief Does the message already exists on the system?
758          *
759          * @param int $uid The user id
760          * @param string $guid The guid of the message
761          *
762          * @return int|bool message id if the message already was stored into the system - or false.
763          */
764         private function message_exists($uid, $guid) {
765                 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
766                         intval($uid),
767                         dbesc($guid)
768                 );
769
770                 if($r) {
771                         logger("message ".$guid." already exists for user ".$uid);
772                         return $r[0]["id"];
773                 }
774
775                 return false;
776         }
777
778         /**
779          * @brief Checks for links to posts in a message
780          *
781          * @param array $item The item array
782          */
783         private function fetch_guid($item) {
784                 preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
785                         function ($match) use ($item){
786                                 return(self::fetch_guid_sub($match, $item));
787                         },$item["body"]);
788         }
789
790         /**
791          * @brief sub function of "fetch_guid" which checks for links in messages
792          *
793          * @param array $match array containing a link that has to be checked for a message link
794          * @param array $item The item array
795          */
796         private function fetch_guid_sub($match, $item) {
797                 if (!self::store_by_guid($match[1], $item["author-link"]))
798                         self::store_by_guid($match[1], $item["owner-link"]);
799         }
800
801         /**
802          * @brief Fetches an item with a given guid from a given server
803          *
804          * @param string $guid the message guid
805          * @param string $server The server address
806          * @param int $uid The user id of the user
807          *
808          * @return int the message id of the stored message or false
809          */
810         private function store_by_guid($guid, $server, $uid = 0) {
811                 $serverparts = parse_url($server);
812                 $server = $serverparts["scheme"]."://".$serverparts["host"];
813
814                 logger("Trying to fetch item ".$guid." from ".$server, LOGGER_DEBUG);
815
816                 $msg = self::message($guid, $server);
817
818                 if (!$msg)
819                         return false;
820
821                 logger("Successfully fetched item ".$guid." from ".$server, LOGGER_DEBUG);
822
823                 // Now call the dispatcher
824                 return self::dispatch_public($msg);
825         }
826
827         /**
828          * @brief Fetches a message from a server
829          *
830          * @param string $guid message guid
831          * @param string $server The url of the server
832          * @param int $level Endless loop prevention
833          *
834          * @return array
835          *      'message' => The message XML
836          *      'author' => The author handle
837          *      'key' => The public key of the author
838          */
839         private function message($guid, $server, $level = 0) {
840
841                 if ($level > 5)
842                         return false;
843
844                 // This will work for Diaspora and newer Friendica servers
845                 $source_url = $server."/p/".$guid.".xml";
846                 $x = fetch_url($source_url);
847                 if(!$x)
848                         return false;
849
850                 $source_xml = parse_xml_string($x, false);
851
852                 if (!is_object($source_xml))
853                         return false;
854
855                 if ($source_xml->post->reshare) {
856                         // Reshare of a reshare - old Diaspora version
857                         return self::message($source_xml->post->reshare->root_guid, $server, ++$level);
858                 } elseif ($source_xml->getName() == "reshare") {
859                         // Reshare of a reshare - new Diaspora version
860                         return self::message($source_xml->root_guid, $server, ++$level);
861                 }
862
863                 $author = "";
864
865                 // Fetch the author - for the old and the new Diaspora version
866                 if ($source_xml->post->status_message->diaspora_handle)
867                         $author = (string)$source_xml->post->status_message->diaspora_handle;
868                 elseif ($source_xml->author AND ($source_xml->getName() == "status_message"))
869                         $author = (string)$source_xml->author;
870
871                 // If this isn't a "status_message" then quit
872                 if (!$author)
873                         return false;
874
875                 $msg = array("message" => $x, "author" => $author);
876
877                 $msg["key"] = self::key($msg["author"]);
878
879                 return $msg;
880         }
881
882         /**
883          * @brief Fetches the item record of a given guid
884          *
885          * @param int $uid The user id
886          * @param string $guid message guid
887          * @param string $author The handle of the item
888          * @param array $contact The contact of the item owner
889          *
890          * @return array the item record
891          */
892         private function parent_item($uid, $guid, $author, $contact) {
893                 $r = q("SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
894                                 `author-name`, `author-link`, `author-avatar`,
895                                 `owner-name`, `owner-link`, `owner-avatar`
896                         FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
897                         intval($uid), dbesc($guid));
898
899                 if(!$r) {
900                         $result = self::store_by_guid($guid, $contact["url"], $uid);
901
902                         if (!$result) {
903                                 $person = self::person_by_handle($author);
904                                 $result = self::store_by_guid($guid, $person["url"], $uid);
905                         }
906
907                         if ($result) {
908                                 logger("Fetched missing item ".$guid." - result: ".$result, LOGGER_DEBUG);
909
910                                 $r = q("SELECT `id`, `body`, `wall`, `uri`, `private`, `origin`,
911                                                 `author-name`, `author-link`, `author-avatar`,
912                                                 `owner-name`, `owner-link`, `owner-avatar`
913                                         FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
914                                         intval($uid), dbesc($guid));
915                         }
916                 }
917
918                 if (!$r) {
919                         logger("parent item not found: parent: ".$guid." - user: ".$uid);
920                         return false;
921                 } else {
922                         logger("parent item found: parent: ".$guid." - user: ".$uid);
923                         return $r[0];
924                 }
925         }
926
927         /**
928          * @brief returns contact details
929          *
930          * @param array $contact The default contact if the person isn't found
931          * @param array $person The record of the person
932          * @param int $uid The user id
933          *
934          * @return array
935          *      'cid' => contact id
936          *      'network' => network type
937          */
938         private function author_contact_by_url($contact, $person, $uid) {
939
940                 $r = q("SELECT `id`, `network` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
941                         dbesc(normalise_link($person["url"])), intval($uid));
942                 if ($r) {
943                         $cid = $r[0]["id"];
944                         $network = $r[0]["network"];
945                 } else {
946                         $cid = $contact["id"];
947                         $network = NETWORK_DIASPORA;
948                 }
949
950                 return (array("cid" => $cid, "network" => $network));
951         }
952
953         /**
954          * @brief Is the profile a hubzilla profile?
955          *
956          * @param string $url The profile link
957          *
958          * @return bool is it a hubzilla server?
959          */
960         public static function is_redmatrix($url) {
961                 return(strstr($url, "/channel/"));
962         }
963
964         /**
965          * @brief Generate a post link with a given handle and message guid
966          *
967          * @param string $addr The user handle
968          * @param string $guid message guid
969          *
970          * @return string the post link
971          */
972         private function plink($addr, $guid) {
973                 $r = q("SELECT `url`, `nick`, `network` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", dbesc($addr));
974
975                 // Fallback
976                 if (!$r)
977                         return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
978
979                 // Friendica contacts are often detected as Diaspora contacts in the "fcontact" table
980                 // So we try another way as well.
981                 $s = q("SELECT `network` FROM `gcontact` WHERE `nurl`='%s' LIMIT 1", dbesc(normalise_link($r[0]["url"])));
982                 if ($s)
983                         $r[0]["network"] = $s[0]["network"];
984
985                 if ($r[0]["network"] == NETWORK_DFRN)
986                         return(str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/"));
987
988                 if (self::is_redmatrix($r[0]["url"]))
989                         return $r[0]["url"]."/?f=&mid=".$guid;
990
991                 return "https://".substr($addr,strpos($addr,"@")+1)."/posts/".$guid;
992         }
993
994         /**
995          * @brief Processes an account deletion
996          *
997          * @param array $importer Array of the importer user
998          * @param object $data The message object
999          *
1000          * @return bool Success
1001          */
1002         private function receive_account_deletion($importer, $data) {
1003                 $author = notags(unxmlify($data->author));
1004
1005                 $contact = self::contact_by_handle($importer["uid"], $author);
1006                 if (!$contact) {
1007                         logger("cannot find contact for author: ".$author);
1008                         return false;
1009                 }
1010
1011                 // We now remove the contact
1012                 contact_remove($contact["id"]);
1013                 return true;
1014         }
1015
1016         /**
1017          * @brief Processes an incoming comment
1018          *
1019          * @param array $importer Array of the importer user
1020          * @param string $sender The sender of the message
1021          * @param object $data The message object
1022          * @param string $xml The original XML of the message
1023          *
1024          * @return int The message id of the generated comment or "false" if there was an error
1025          */
1026         private function receive_comment($importer, $sender, $data, $xml) {
1027                 $guid = notags(unxmlify($data->guid));
1028                 $parent_guid = notags(unxmlify($data->parent_guid));
1029                 $text = unxmlify($data->text);
1030                 $author = notags(unxmlify($data->author));
1031
1032                 $contact = self::allowed_contact_by_handle($importer, $sender, true);
1033                 if (!$contact)
1034                         return false;
1035
1036                 $message_id = self::message_exists($importer["uid"], $guid);
1037                 if ($message_id)
1038                         return $message_id;
1039
1040                 $parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact);
1041                 if (!$parent_item)
1042                         return false;
1043
1044                 $person = self::person_by_handle($author);
1045                 if (!is_array($person)) {
1046                         logger("unable to find author details");
1047                         return false;
1048                 }
1049
1050                 // Fetch the contact id - if we know this contact
1051                 $author_contact = self::author_contact_by_url($contact, $person, $importer["uid"]);
1052
1053                 $datarray = array();
1054
1055                 $datarray["uid"] = $importer["uid"];
1056                 $datarray["contact-id"] = $author_contact["cid"];
1057                 $datarray["network"]  = $author_contact["network"];
1058
1059                 $datarray["author-name"] = $person["name"];
1060                 $datarray["author-link"] = $person["url"];
1061                 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
1062
1063                 $datarray["owner-name"] = $contact["name"];
1064                 $datarray["owner-link"] = $contact["url"];
1065                 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1066
1067                 $datarray["guid"] = $guid;
1068                 $datarray["uri"] = $author.":".$guid;
1069
1070                 $datarray["type"] = "remote-comment";
1071                 $datarray["verb"] = ACTIVITY_POST;
1072                 $datarray["gravity"] = GRAVITY_COMMENT;
1073                 $datarray["parent-uri"] = $parent_item["uri"];
1074
1075                 $datarray["object-type"] = ACTIVITY_OBJ_COMMENT;
1076                 $datarray["object"] = $xml;
1077
1078                 $datarray["body"] = diaspora2bb($text);
1079
1080                 self::fetch_guid($datarray);
1081
1082                 $message_id = item_store($datarray);
1083
1084                 if ($message_id)
1085                         logger("Stored comment ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
1086
1087                 // If we are the origin of the parent we store the original data and notify our followers
1088                 if($message_id AND $parent_item["origin"]) {
1089
1090                         // Formerly we stored the signed text, the signature and the author in different fields.
1091                         // We now store the raw data so that we are more flexible.
1092                         q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
1093                                 intval($message_id),
1094                                 dbesc(json_encode($data))
1095                         );
1096
1097                         // notify others
1098                         proc_run("php", "include/notifier.php", "comment-import", $message_id);
1099                 }
1100
1101                 return $message_id;
1102         }
1103
1104         /**
1105          * @brief processes and stores private messages
1106          *
1107          * @param array $importer Array of the importer user
1108          * @param array $contact The contact of the message
1109          * @param object $data The message object
1110          * @param array $msg Array of the processed message, author handle and key
1111          * @param object $mesg The private message
1112          * @param array $conversation The conversation record to which this message belongs
1113          *
1114          * @return bool "true" if it was successful
1115          */
1116         private function receive_conversation_message($importer, $contact, $data, $msg, $mesg, $conversation) {
1117                 $guid = notags(unxmlify($data->guid));
1118                 $subject = notags(unxmlify($data->subject));
1119                 $author = notags(unxmlify($data->author));
1120
1121                 $reply = 0;
1122
1123                 $msg_guid = notags(unxmlify($mesg->guid));
1124                 $msg_parent_guid = notags(unxmlify($mesg->parent_guid));
1125                 $msg_parent_author_signature = notags(unxmlify($mesg->parent_author_signature));
1126                 $msg_author_signature = notags(unxmlify($mesg->author_signature));
1127                 $msg_text = unxmlify($mesg->text);
1128                 $msg_created_at = datetime_convert("UTC", "UTC", notags(unxmlify($mesg->created_at)));
1129
1130                 // "diaspora_handle" is the element name from the old version
1131                 // "author" is the element name from the new version
1132                 if ($mesg->author)
1133                         $msg_author = notags(unxmlify($mesg->author));
1134                 elseif ($mesg->diaspora_handle)
1135                         $msg_author = notags(unxmlify($mesg->diaspora_handle));
1136                 else
1137                         return false;
1138
1139                 $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
1140
1141                 if($msg_conversation_guid != $guid) {
1142                         logger("message conversation guid does not belong to the current conversation.");
1143                         return false;
1144                 }
1145
1146                 $body = diaspora2bb($msg_text);
1147                 $message_uri = $msg_author.":".$msg_guid;
1148
1149                 $author_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
1150
1151                 $author_signature = base64_decode($msg_author_signature);
1152
1153                 if(strcasecmp($msg_author,$msg["author"]) == 0) {
1154                         $person = $contact;
1155                         $key = $msg["key"];
1156                 } else {
1157                         $person = self::person_by_handle($msg_author);
1158
1159                         if (is_array($person) && x($person, "pubkey"))
1160                                 $key = $person["pubkey"];
1161                         else {
1162                                 logger("unable to find author details");
1163                                         return false;
1164                         }
1165                 }
1166
1167                 if (!rsa_verify($author_signed_data, $author_signature, $key, "sha256")) {
1168                         logger("verification failed.");
1169                         return false;
1170                 }
1171
1172                 if($msg_parent_author_signature) {
1173                         $owner_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
1174
1175                         $parent_author_signature = base64_decode($msg_parent_author_signature);
1176
1177                         $key = $msg["key"];
1178
1179                         if (!rsa_verify($owner_signed_data, $parent_author_signature, $key, "sha256")) {
1180                                 logger("owner verification failed.");
1181                                 return false;
1182                         }
1183                 }
1184
1185                 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' LIMIT 1",
1186                         dbesc($message_uri)
1187                 );
1188                 if($r) {
1189                         logger("duplicate message already delivered.", LOGGER_DEBUG);
1190                         return false;
1191                 }
1192
1193                 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1194                         VALUES (%d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1195                         intval($importer["uid"]),
1196                         dbesc($msg_guid),
1197                         intval($conversation["id"]),
1198                         dbesc($person["name"]),
1199                         dbesc($person["photo"]),
1200                         dbesc($person["url"]),
1201                         intval($contact["id"]),
1202                         dbesc($subject),
1203                         dbesc($body),
1204                         0,
1205                         0,
1206                         dbesc($message_uri),
1207                         dbesc($author.":".$guid),
1208                         dbesc($msg_created_at)
1209                 );
1210
1211                 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
1212                         dbesc(datetime_convert()),
1213                         intval($conversation["id"])
1214                 );
1215
1216                 notification(array(
1217                         "type" => NOTIFY_MAIL,
1218                         "notify_flags" => $importer["notify-flags"],
1219                         "language" => $importer["language"],
1220                         "to_name" => $importer["username"],
1221                         "to_email" => $importer["email"],
1222                         "uid" =>$importer["uid"],
1223                         "item" => array("subject" => $subject, "body" => $body),
1224                         "source_name" => $person["name"],
1225                         "source_link" => $person["url"],
1226                         "source_photo" => $person["thumb"],
1227                         "verb" => ACTIVITY_POST,
1228                         "otype" => "mail"
1229                 ));
1230                 return true;
1231         }
1232
1233         /**
1234          * @brief Processes new private messages (answers to private messages are processed elsewhere)
1235          *
1236          * @param array $importer Array of the importer user
1237          * @param array $msg Array of the processed message, author handle and key
1238          * @param object $data The message object
1239          *
1240          * @return bool Success
1241          */
1242         private function receive_conversation($importer, $msg, $data) {
1243                 $guid = notags(unxmlify($data->guid));
1244                 $subject = notags(unxmlify($data->subject));
1245                 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1246                 $author = notags(unxmlify($data->author));
1247                 $participants = notags(unxmlify($data->participants));
1248
1249                 $messages = $data->message;
1250
1251                 if (!count($messages)) {
1252                         logger("empty conversation");
1253                         return false;
1254                 }
1255
1256                 $contact = self::allowed_contact_by_handle($importer, $msg["author"], true);
1257                 if (!$contact)
1258                         return false;
1259
1260                 $conversation = null;
1261
1262                 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1263                         intval($importer["uid"]),
1264                         dbesc($guid)
1265                 );
1266                 if($c)
1267                         $conversation = $c[0];
1268                 else {
1269                         $r = q("INSERT INTO `conv` (`uid`, `guid`, `creator`, `created`, `updated`, `subject`, `recips`)
1270                                 VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s')",
1271                                 intval($importer["uid"]),
1272                                 dbesc($guid),
1273                                 dbesc($author),
1274                                 dbesc(datetime_convert("UTC", "UTC", $created_at)),
1275                                 dbesc(datetime_convert()),
1276                                 dbesc($subject),
1277                                 dbesc($participants)
1278                         );
1279                         if($r)
1280                                 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1281                                         intval($importer["uid"]),
1282                                         dbesc($guid)
1283                                 );
1284
1285                         if($c)
1286                                 $conversation = $c[0];
1287                 }
1288                 if (!$conversation) {
1289                         logger("unable to create conversation.");
1290                         return;
1291                 }
1292
1293                 foreach($messages as $mesg)
1294                         self::receive_conversation_message($importer, $contact, $data, $msg, $mesg, $conversation);
1295
1296                 return true;
1297         }
1298
1299         /**
1300          * @brief Creates the body for a "like" message
1301          *
1302          * @param array $contact The contact that send us the "like"
1303          * @param array $parent_item The item array of the parent item
1304          * @param string $guid message guid
1305          *
1306          * @return string the body
1307          */
1308         private function construct_like_body($contact, $parent_item, $guid) {
1309                 $bodyverb = t('%1$s likes %2$s\'s %3$s');
1310
1311                 $ulink = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
1312                 $alink = "[url=".$parent_item["author-link"]."]".$parent_item["author-name"]."[/url]";
1313                 $plink = "[url=".App::get_baseurl()."/display/".urlencode($guid)."]".t("status")."[/url]";
1314
1315                 return sprintf($bodyverb, $ulink, $alink, $plink);
1316         }
1317
1318         /**
1319          * @brief Creates a XML object for a "like"
1320          *
1321          * @param array $importer Array of the importer user
1322          * @param array $parent_item The item array of the parent item
1323          *
1324          * @return string The XML
1325          */
1326         private function construct_like_object($importer, $parent_item) {
1327                 $objtype = ACTIVITY_OBJ_NOTE;
1328                 $link = '<link rel="alternate" type="text/html" href="'.App::get_baseurl()."/display/".$importer["nickname"]."/".$parent_item["id"].'" />';
1329                 $parent_body = $parent_item["body"];
1330
1331                 $xmldata = array("object" => array("type" => $objtype,
1332                                                 "local" => "1",
1333                                                 "id" => $parent_item["uri"],
1334                                                 "link" => $link,
1335                                                 "title" => "",
1336                                                 "content" => $parent_body));
1337
1338                 return xml::from_array($xmldata, $xml, true);
1339         }
1340
1341         /**
1342          * @brief Processes "like" messages
1343          *
1344          * @param array $importer Array of the importer user
1345          * @param string $sender The sender of the message
1346          * @param object $data The message object
1347          *
1348          * @return int The message id of the generated like or "false" if there was an error
1349          */
1350         private function receive_like($importer, $sender, $data) {
1351                 $positive = notags(unxmlify($data->positive));
1352                 $guid = notags(unxmlify($data->guid));
1353                 $parent_type = notags(unxmlify($data->parent_type));
1354                 $parent_guid = notags(unxmlify($data->parent_guid));
1355                 $author = notags(unxmlify($data->author));
1356
1357                 // likes on comments aren't supported by Diaspora - only on posts
1358                 // But maybe this will be supported in the future, so we will accept it.
1359                 if (!in_array($parent_type, array("Post", "Comment")))
1360                         return false;
1361
1362                 $contact = self::allowed_contact_by_handle($importer, $sender, true);
1363                 if (!$contact)
1364                         return false;
1365
1366                 $message_id = self::message_exists($importer["uid"], $guid);
1367                 if ($message_id)
1368                         return $message_id;
1369
1370                 $parent_item = self::parent_item($importer["uid"], $parent_guid, $author, $contact);
1371                 if (!$parent_item)
1372                         return false;
1373
1374                 $person = self::person_by_handle($author);
1375                 if (!is_array($person)) {
1376                         logger("unable to find author details");
1377                         return false;
1378                 }
1379
1380                 // Fetch the contact id - if we know this contact
1381                 $author_contact = self::author_contact_by_url($contact, $person, $importer["uid"]);
1382
1383                 // "positive" = "false" would be a Dislike - wich isn't currently supported by Diaspora
1384                 // We would accept this anyhow.
1385                 if ($positive == "true")
1386                         $verb = ACTIVITY_LIKE;
1387                 else
1388                         $verb = ACTIVITY_DISLIKE;
1389
1390                 $datarray = array();
1391
1392                 $datarray["uid"] = $importer["uid"];
1393                 $datarray["contact-id"] = $author_contact["cid"];
1394                 $datarray["network"]  = $author_contact["network"];
1395
1396                 $datarray["author-name"] = $person["name"];
1397                 $datarray["author-link"] = $person["url"];
1398                 $datarray["author-avatar"] = ((x($person,"thumb")) ? $person["thumb"] : $person["photo"]);
1399
1400                 $datarray["owner-name"] = $contact["name"];
1401                 $datarray["owner-link"] = $contact["url"];
1402                 $datarray["owner-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1403
1404                 $datarray["guid"] = $guid;
1405                 $datarray["uri"] = $author.":".$guid;
1406
1407                 $datarray["type"] = "activity";
1408                 $datarray["verb"] = $verb;
1409                 $datarray["gravity"] = GRAVITY_LIKE;
1410                 $datarray["parent-uri"] = $parent_item["uri"];
1411
1412                 $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
1413                 $datarray["object"] = self::construct_like_object($importer, $parent_item);
1414
1415                 $datarray["body"] = self::construct_like_body($contact, $parent_item, $guid);
1416
1417                 $message_id = item_store($datarray);
1418
1419                 if ($message_id)
1420                         logger("Stored like ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
1421
1422                 // If we are the origin of the parent we store the original data and notify our followers
1423                 if($message_id AND $parent_item["origin"]) {
1424
1425                         // Formerly we stored the signed text, the signature and the author in different fields.
1426                         // We now store the raw data so that we are more flexible.
1427                         q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
1428                                 intval($message_id),
1429                                 dbesc(json_encode($data))
1430                         );
1431
1432                         // notify others
1433                         proc_run("php", "include/notifier.php", "comment-import", $message_id);
1434                 }
1435
1436                 return $message_id;
1437         }
1438
1439         /**
1440          * @brief Processes private messages
1441          *
1442          * @param array $importer Array of the importer user
1443          * @param object $data The message object
1444          *
1445          * @return bool Success?
1446          */
1447         private function receive_message($importer, $data) {
1448                 $guid = notags(unxmlify($data->guid));
1449                 $parent_guid = notags(unxmlify($data->parent_guid));
1450                 $text = unxmlify($data->text);
1451                 $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
1452                 $author = notags(unxmlify($data->author));
1453                 $conversation_guid = notags(unxmlify($data->conversation_guid));
1454
1455                 $contact = self::allowed_contact_by_handle($importer, $author, true);
1456                 if (!$contact)
1457                         return false;
1458
1459                 $conversation = null;
1460
1461                 $c = q("SELECT * FROM `conv` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1462                         intval($importer["uid"]),
1463                         dbesc($conversation_guid)
1464                 );
1465                 if($c)
1466                         $conversation = $c[0];
1467                 else {
1468                         logger("conversation not available.");
1469                         return false;
1470                 }
1471
1472                 $reply = 0;
1473
1474                 $body = diaspora2bb($text);
1475                 $message_uri = $author.":".$guid;
1476
1477                 $person = self::person_by_handle($author);
1478                 if (!$person) {
1479                         logger("unable to find author details");
1480                         return false;
1481                 }
1482
1483                 $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1484                         dbesc($message_uri),
1485                         intval($importer["uid"])
1486                 );
1487                 if($r) {
1488                         logger("duplicate message already delivered.", LOGGER_DEBUG);
1489                         return false;
1490                 }
1491
1492                 q("INSERT INTO `mail` (`uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`)
1493                                 VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1494                         intval($importer["uid"]),
1495                         dbesc($guid),
1496                         intval($conversation["id"]),
1497                         dbesc($person["name"]),
1498                         dbesc($person["photo"]),
1499                         dbesc($person["url"]),
1500                         intval($contact["id"]),
1501                         dbesc($conversation["subject"]),
1502                         dbesc($body),
1503                         0,
1504                         1,
1505                         dbesc($message_uri),
1506                         dbesc($author.":".$parent_guid),
1507                         dbesc($created_at)
1508                 );
1509
1510                 q("UPDATE `conv` SET `updated` = '%s' WHERE `id` = %d",
1511                         dbesc(datetime_convert()),
1512                         intval($conversation["id"])
1513                 );
1514
1515                 return true;
1516         }
1517
1518         /**
1519          * @brief Processes participations - unsupported by now
1520          *
1521          * @param array $importer Array of the importer user
1522          * @param object $data The message object
1523          *
1524          * @return bool always true
1525          */
1526         private function receive_participation($importer, $data) {
1527                 // I'm not sure if we can fully support this message type
1528                 return true;
1529         }
1530
1531         /**
1532          * @brief Processes photos - unneeded
1533          *
1534          * @param array $importer Array of the importer user
1535          * @param object $data The message object
1536          *
1537          * @return bool always true
1538          */
1539         private function receive_photo($importer, $data) {
1540                 // There doesn't seem to be a reason for this function, since the photo data is transmitted in the status message as well
1541                 return true;
1542         }
1543
1544         /**
1545          * @brief Processes poll participations - unssupported
1546          *
1547          * @param array $importer Array of the importer user
1548          * @param object $data The message object
1549          *
1550          * @return bool always true
1551          */
1552         private function receive_poll_participation($importer, $data) {
1553                 // We don't support polls by now
1554                 return true;
1555         }
1556
1557         /**
1558          * @brief Processes incoming profile updates
1559          *
1560          * @param array $importer Array of the importer user
1561          * @param object $data The message object
1562          *
1563          * @return bool Success
1564          */
1565         private function receive_profile($importer, $data) {
1566                 $author = notags(unxmlify($data->author));
1567
1568                 $contact = self::contact_by_handle($importer["uid"], $author);
1569                 if (!$contact)
1570                         return false;
1571
1572                 $name = unxmlify($data->first_name).((strlen($data->last_name)) ? " ".unxmlify($data->last_name) : "");
1573                 $image_url = unxmlify($data->image_url);
1574                 $birthday = unxmlify($data->birthday);
1575                 $location = diaspora2bb(unxmlify($data->location));
1576                 $about = diaspora2bb(unxmlify($data->bio));
1577                 $gender = unxmlify($data->gender);
1578                 $searchable = (unxmlify($data->searchable) == "true");
1579                 $nsfw = (unxmlify($data->nsfw) == "true");
1580                 $tags = unxmlify($data->tag_string);
1581
1582                 $tags = explode("#", $tags);
1583
1584                 $keywords = array();
1585                 foreach ($tags as $tag) {
1586                         $tag = trim(strtolower($tag));
1587                         if ($tag != "")
1588                                 $keywords[] = $tag;
1589                 }
1590
1591                 $keywords = implode(", ", $keywords);
1592
1593                 $handle_parts = explode("@", $author);
1594                 $nick = $handle_parts[0];
1595
1596                 if($name === "")
1597                         $name = $handle_parts[0];
1598
1599                 if( preg_match("|^https?://|", $image_url) === 0)
1600                         $image_url = "http://".$handle_parts[1].$image_url;
1601
1602                 update_contact_avatar($image_url, $importer["uid"], $contact["id"]);
1603
1604                 // Generic birthday. We don't know the timezone. The year is irrelevant.
1605
1606                 $birthday = str_replace("1000", "1901", $birthday);
1607
1608                 if ($birthday != "")
1609                         $birthday = datetime_convert("UTC", "UTC", $birthday, "Y-m-d");
1610
1611                 // this is to prevent multiple birthday notifications in a single year
1612                 // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year
1613
1614                 if(substr($birthday,5) === substr($contact["bd"],5))
1615                         $birthday = $contact["bd"];
1616
1617                 $r = q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `name-date` = '%s', `bd` = '%s',
1618                                 `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d AND `uid` = %d",
1619                         dbesc($name),
1620                         dbesc($nick),
1621                         dbesc($author),
1622                         dbesc(datetime_convert()),
1623                         dbesc($birthday),
1624                         dbesc($location),
1625                         dbesc($about),
1626                         dbesc($keywords),
1627                         dbesc($gender),
1628                         intval($contact["id"]),
1629                         intval($importer["uid"])
1630                 );
1631
1632                 if ($searchable) {
1633                         poco_check($contact["url"], $name, NETWORK_DIASPORA, $image_url, $about, $location, $gender, $keywords, "",
1634                                 datetime_convert(), 2, $contact["id"], $importer["uid"]);
1635                 }
1636
1637                 $gcontact = array("url" => $contact["url"], "network" => NETWORK_DIASPORA, "generation" => 2,
1638                                         "photo" => $image_url, "name" => $name, "location" => $location,
1639                                         "about" => $about, "birthday" => $birthday, "gender" => $gender,
1640                                         "addr" => $author, "nick" => $nick, "keywords" => $keywords,
1641                                         "hide" => !$searchable, "nsfw" => $nsfw);
1642
1643                 update_gcontact($gcontact);
1644
1645                 logger("Profile of contact ".$contact["id"]." stored for user ".$importer["uid"], LOGGER_DEBUG);
1646
1647                 return true;
1648         }
1649
1650         /**
1651          * @brief Processes incoming friend requests
1652          *
1653          * @param array $importer Array of the importer user
1654          * @param array $contact The contact that send the request
1655          */
1656         private function receive_request_make_friend($importer, $contact) {
1657
1658                 $a = get_app();
1659
1660                 if($contact["rel"] == CONTACT_IS_FOLLOWER && in_array($importer["page-flags"], array(PAGE_FREELOVE))) {
1661                         q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d",
1662                                 intval(CONTACT_IS_FRIEND),
1663                                 intval($contact["id"]),
1664                                 intval($importer["uid"])
1665                         );
1666                 }
1667                 // send notification
1668
1669                 $r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
1670                         intval($importer["uid"])
1671                 );
1672
1673                 if($r && !$r[0]["hide-friends"] && !$contact["hidden"] && intval(get_pconfig($importer["uid"], "system", "post_newfriend"))) {
1674
1675                         $self = q("SELECT * FROM `contact` WHERE `self` AND `uid` = %d LIMIT 1",
1676                                 intval($importer["uid"])
1677                         );
1678
1679                         // they are not CONTACT_IS_FOLLOWER anymore but that's what we have in the array
1680
1681                         if($self && $contact["rel"] == CONTACT_IS_FOLLOWER) {
1682
1683                                 $arr = array();
1684                                 $arr["uri"] = $arr["parent-uri"] = item_new_uri($a->get_hostname(), $importer["uid"]);
1685                                 $arr["uid"] = $importer["uid"];
1686                                 $arr["contact-id"] = $self[0]["id"];
1687                                 $arr["wall"] = 1;
1688                                 $arr["type"] = 'wall';
1689                                 $arr["gravity"] = 0;
1690                                 $arr["origin"] = 1;
1691                                 $arr["author-name"] = $arr["owner-name"] = $self[0]["name"];
1692                                 $arr["author-link"] = $arr["owner-link"] = $self[0]["url"];
1693                                 $arr["author-avatar"] = $arr["owner-avatar"] = $self[0]["thumb"];
1694                                 $arr["verb"] = ACTIVITY_FRIEND;
1695                                 $arr["object-type"] = ACTIVITY_OBJ_PERSON;
1696
1697                                 $A = "[url=".$self[0]["url"]."]".$self[0]["name"]."[/url]";
1698                                 $B = "[url=".$contact["url"]."]".$contact["name"]."[/url]";
1699                                 $BPhoto = "[url=".$contact["url"]."][img]".$contact["thumb"]."[/img][/url]";
1700                                 $arr["body"] = sprintf(t("%1$s is now friends with %2$s"), $A, $B)."\n\n\n".$Bphoto;
1701
1702                                 $arr["object"] = self::construct_new_friend_object($contact);
1703
1704                                 $arr["last-child"] = 1;
1705
1706                                 $arr["allow_cid"] = $user[0]["allow_cid"];
1707                                 $arr["allow_gid"] = $user[0]["allow_gid"];
1708                                 $arr["deny_cid"]  = $user[0]["deny_cid"];
1709                                 $arr["deny_gid"]  = $user[0]["deny_gid"];
1710
1711                                 $i = item_store($arr);
1712                                 if($i)
1713                                         proc_run("php", "include/notifier.php", "activity", $i);
1714                         }
1715                 }
1716         }
1717
1718         /**
1719          * @brief Creates a XML object for a "new friend" message
1720          *
1721          * @param array $contact Array of the contact
1722          *
1723          * @return string The XML
1724          */
1725         private function construct_new_friend_object($contact) {
1726                 $objtype = ACTIVITY_OBJ_PERSON;
1727                 $link = '<link rel="alternate" type="text/html" href="'.$contact["url"].'" />'."\n".
1728                         '<link rel="photo" type="image/jpeg" href="'.$contact["thumb"].'" />'."\n";
1729
1730                 $xmldata = array("object" => array("type" => $objtype,
1731                                                 "title" => $contact["name"],
1732                                                 "id" => $contact["url"]."/".$contact["name"],
1733                                                 "link" => $link));
1734
1735                 return xml::from_array($xmldata, $xml, true);
1736         }
1737
1738         /**
1739          * @brief Processes incoming sharing notification
1740          *
1741          * @param array $importer Array of the importer user
1742          * @param object $data The message object
1743          *
1744          * @return bool Success
1745          */
1746         private function receive_contact_request($importer, $data) {
1747                 $author = unxmlify($data->author);
1748                 $recipient = unxmlify($data->recipient);
1749
1750                 if (!$author || !$recipient)
1751                         return false;
1752
1753                 // the current protocol version doesn't know these fields
1754                 // That means that we will assume their existance
1755                 if (isset($data->following))
1756                         $following = (unxmlify($data->following) == "true");
1757                 else
1758                         $following = true;
1759
1760                 if (isset($data->sharing))
1761                         $sharing = (unxmlify($data->sharing) == "true");
1762                 else
1763                         $sharing = true;
1764
1765                 $contact = self::contact_by_handle($importer["uid"],$author);
1766
1767                 // perhaps we were already sharing with this person. Now they're sharing with us.
1768                 // That makes us friends.
1769                 if ($contact) {
1770                         if ($following AND $sharing) {
1771                                 self::receive_request_make_friend($importer, $contact);
1772                                 return true;
1773                         } else /// @todo Handle all possible variations of adding and retracting of permissions
1774                                 return false;
1775                 }
1776
1777                 if (!$following AND $sharing AND in_array($importer["page-flags"], array(PAGE_SOAPBOX, PAGE_NORMAL))) {
1778                         logger("Author ".$author." wants to share with us - but doesn't want to listen. Request is ignored.", LOGGER_DEBUG);
1779                         return false;
1780                 } elseif (!$following AND !$sharing) {
1781                         logger("Author ".$author." doesn't want anything - and we don't know the author. Request is ignored.", LOGGER_DEBUG);
1782                         return false;
1783                 }
1784
1785                 $ret = self::person_by_handle($author);
1786
1787                 if (!$ret || ($ret["network"] != NETWORK_DIASPORA)) {
1788                         logger("Cannot resolve diaspora handle ".$author." for ".$recipient);
1789                         return false;
1790                 }
1791
1792                 $batch = (($ret["batch"]) ? $ret["batch"] : implode("/", array_slice(explode("/", $ret["url"]), 0, 3))."/receive/public");
1793
1794                 $r = q("INSERT INTO `contact` (`uid`, `network`,`addr`,`created`,`url`,`nurl`,`batch`,`name`,`nick`,`photo`,`pubkey`,`notify`,`poll`,`blocked`,`priority`)
1795                         VALUES (%d, '%s', '%s', '%s', '%s','%s','%s','%s','%s','%s','%s','%s','%s',%d,%d)",
1796                         intval($importer["uid"]),
1797                         dbesc($ret["network"]),
1798                         dbesc($ret["addr"]),
1799                         datetime_convert(),
1800                         dbesc($ret["url"]),
1801                         dbesc(normalise_link($ret["url"])),
1802                         dbesc($batch),
1803                         dbesc($ret["name"]),
1804                         dbesc($ret["nick"]),
1805                         dbesc($ret["photo"]),
1806                         dbesc($ret["pubkey"]),
1807                         dbesc($ret["notify"]),
1808                         dbesc($ret["poll"]),
1809                         1,
1810                         2
1811                 );
1812
1813                 // find the contact record we just created
1814
1815                 $contact_record = self::contact_by_handle($importer["uid"],$author);
1816
1817                 if (!$contact_record) {
1818                         logger("unable to locate newly created contact record.");
1819                         return;
1820                 }
1821
1822                 $g = q("SELECT `def_gid` FROM `user` WHERE `uid` = %d LIMIT 1",
1823                         intval($importer["uid"])
1824                 );
1825
1826                 if($g && intval($g[0]["def_gid"]))
1827                         group_add_member($importer["uid"], "", $contact_record["id"], $g[0]["def_gid"]);
1828
1829                 if($importer["page-flags"] == PAGE_NORMAL) {
1830
1831                         $hash = random_string().(string)time();   // Generate a confirm_key
1832
1833                         $ret = q("INSERT INTO `intro` (`uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime`)
1834                                 VALUES (%d, %d, %d, %d, '%s', '%s', '%s')",
1835                                 intval($importer["uid"]),
1836                                 intval($contact_record["id"]),
1837                                 0,
1838                                 0,
1839                                 dbesc(t("Sharing notification from Diaspora network")),
1840                                 dbesc($hash),
1841                                 dbesc(datetime_convert())
1842                         );
1843                 } else {
1844
1845                         // automatic friend approval
1846
1847                         update_contact_avatar($contact_record["photo"],$importer["uid"],$contact_record["id"]);
1848
1849                         // technically they are sharing with us (CONTACT_IS_SHARING),
1850                         // but if our page-type is PAGE_COMMUNITY or PAGE_SOAPBOX
1851                         // we are going to change the relationship and make them a follower.
1852
1853                         if (($importer["page-flags"] == PAGE_FREELOVE) AND $sharing AND $following)
1854                                 $new_relation = CONTACT_IS_FRIEND;
1855                         elseif (($importer["page-flags"] == PAGE_FREELOVE) AND $sharing)
1856                                 $new_relation = CONTACT_IS_SHARING;
1857                         else
1858                                 $new_relation = CONTACT_IS_FOLLOWER;
1859
1860                         $r = q("UPDATE `contact` SET `rel` = %d,
1861                                 `name-date` = '%s',
1862                                 `uri-date` = '%s',
1863                                 `blocked` = 0,
1864                                 `pending` = 0,
1865                                 `writable` = 1
1866                                 WHERE `id` = %d
1867                                 ",
1868                                 intval($new_relation),
1869                                 dbesc(datetime_convert()),
1870                                 dbesc(datetime_convert()),
1871                                 intval($contact_record["id"])
1872                         );
1873
1874                         $u = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer["uid"]));
1875                         if($u)
1876                                 $ret = self::send_share($u[0], $contact_record);
1877                 }
1878
1879                 return true;
1880         }
1881
1882         /**
1883          * @brief Fetches a message with a given guid
1884          *
1885          * @param string $guid message guid
1886          * @param string $orig_author handle of the original post
1887          * @param string $author handle of the sharer
1888          *
1889          * @return array The fetched item
1890          */
1891         private function original_item($guid, $orig_author, $author) {
1892
1893                 // Do we already have this item?
1894                 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
1895                                 `author-name`, `author-link`, `author-avatar`
1896                                 FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
1897                         dbesc($guid));
1898
1899                 if($r) {
1900                         logger("reshared message ".$guid." already exists on system.");
1901
1902                         // Maybe it is already a reshared item?
1903                         // Then refetch the content, if it is a reshare from a reshare.
1904                         // If it is a reshared post from another network then reformat to avoid display problems with two share elements
1905                         if (self::is_reshare($r[0]["body"], true))
1906                                 $r = array();
1907                         elseif (self::is_reshare($r[0]["body"], false)) {
1908                                 $r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"]));
1909
1910                                 // Add OEmbed and other information to the body
1911                                 $r[0]["body"] = add_page_info_to_body($r[0]["body"], false, true);
1912
1913                                 return $r[0];
1914                         } else
1915                                 return $r[0];
1916                 }
1917
1918                 if (!$r) {
1919                         $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1);
1920                         logger("1st try: reshared message ".$guid." will be fetched from original server: ".$server);
1921                         $item_id = self::store_by_guid($guid, $server);
1922
1923                         if (!$item_id) {
1924                                 $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1);
1925                                 logger("2nd try: reshared message ".$guid." will be fetched from original server: ".$server);
1926                                 $item_id = self::store_by_guid($guid, $server);
1927                         }
1928
1929                         // Deactivated by now since there is a risk that someone could manipulate postings through this method
1930 /*                      if (!$item_id) {
1931                                 $server = "https://".substr($author, strpos($author, "@") + 1);
1932                                 logger("3rd try: reshared message ".$guid." will be fetched from sharer's server: ".$server);
1933                                 $item_id = self::store_by_guid($guid, $server);
1934                         }
1935                         if (!$item_id) {
1936                                 $server = "http://".substr($author, strpos($author, "@") + 1);
1937                                 logger("4th try: reshared message ".$guid." will be fetched from sharer's server: ".$server);
1938                                 $item_id = self::store_by_guid($guid, $server);
1939                         }
1940 */
1941                         if ($item_id) {
1942                                 $r = q("SELECT `body`, `tag`, `app`, `created`, `object-type`, `uri`, `guid`,
1943                                                 `author-name`, `author-link`, `author-avatar`
1944                                         FROM `item` WHERE `id` = %d AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1",
1945                                         intval($item_id));
1946
1947                                 if ($r)
1948                                         return $r[0];
1949
1950                         }
1951                 }
1952                 return false;
1953         }
1954
1955         /**
1956          * @brief Processes a reshare message
1957          *
1958          * @param array $importer Array of the importer user
1959          * @param object $data The message object
1960          * @param string $xml The original XML of the message
1961          *
1962          * @return int the message id
1963          */
1964         private function receive_reshare($importer, $data, $xml) {
1965                 $root_author = notags(unxmlify($data->root_author));
1966                 $root_guid = notags(unxmlify($data->root_guid));
1967                 $guid = notags(unxmlify($data->guid));
1968                 $author = notags(unxmlify($data->author));
1969                 $public = notags(unxmlify($data->public));
1970                 $created_at = notags(unxmlify($data->created_at));
1971
1972                 $contact = self::allowed_contact_by_handle($importer, $author, false);
1973                 if (!$contact)
1974                         return false;
1975
1976                 $message_id = self::message_exists($importer["uid"], $guid);
1977                 if ($message_id)
1978                         return $message_id;
1979
1980                 $original_item = self::original_item($root_guid, $root_author, $author);
1981                 if (!$original_item)
1982                         return false;
1983
1984                 $orig_url = App::get_baseurl()."/display/".$original_item["guid"];
1985
1986                 $datarray = array();
1987
1988                 $datarray["uid"] = $importer["uid"];
1989                 $datarray["contact-id"] = $contact["id"];
1990                 $datarray["network"]  = NETWORK_DIASPORA;
1991
1992                 $datarray["author-name"] = $contact["name"];
1993                 $datarray["author-link"] = $contact["url"];
1994                 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
1995
1996                 $datarray["owner-name"] = $datarray["author-name"];
1997                 $datarray["owner-link"] = $datarray["author-link"];
1998                 $datarray["owner-avatar"] = $datarray["author-avatar"];
1999
2000                 $datarray["guid"] = $guid;
2001                 $datarray["uri"] = $datarray["parent-uri"] = $author.":".$guid;
2002
2003                 $datarray["verb"] = ACTIVITY_POST;
2004                 $datarray["gravity"] = GRAVITY_PARENT;
2005
2006                 $datarray["object"] = $xml;
2007
2008                 $prefix = share_header($original_item["author-name"], $original_item["author-link"], $original_item["author-avatar"],
2009                                         $original_item["guid"], $original_item["created"], $orig_url);
2010                 $datarray["body"] = $prefix.$original_item["body"]."[/share]";
2011
2012                 $datarray["tag"] = $original_item["tag"];
2013                 $datarray["app"]  = $original_item["app"];
2014
2015                 $datarray["plink"] = self::plink($author, $guid);
2016                 $datarray["private"] = (($public == "false") ? 1 : 0);
2017                 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = datetime_convert("UTC", "UTC", $created_at);
2018
2019                 $datarray["object-type"] = $original_item["object-type"];
2020
2021                 self::fetch_guid($datarray);
2022                 $message_id = item_store($datarray);
2023
2024                 if ($message_id)
2025                         logger("Stored reshare ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2026
2027                 return $message_id;
2028         }
2029
2030         /**
2031          * @brief Processes retractions
2032          *
2033          * @param array $importer Array of the importer user
2034          * @param array $contact The contact of the item owner
2035          * @param object $data The message object
2036          *
2037          * @return bool success
2038          */
2039         private function item_retraction($importer, $contact, $data) {
2040                 $target_type = notags(unxmlify($data->target_type));
2041                 $target_guid = notags(unxmlify($data->target_guid));
2042                 $author = notags(unxmlify($data->author));
2043
2044                 $person = self::person_by_handle($author);
2045                 if (!is_array($person)) {
2046                         logger("unable to find author detail for ".$author);
2047                         return false;
2048                 }
2049
2050                 $r = q("SELECT `id`, `parent`, `parent-uri`, `author-link` FROM `item` WHERE `guid` = '%s' AND `uid` = %d AND NOT `file` LIKE '%%[%%' LIMIT 1",
2051                         dbesc($target_guid),
2052                         intval($importer["uid"])
2053                 );
2054                 if (!$r)
2055                         return false;
2056
2057                 // Only delete it if the author really fits
2058                 if (!link_compare($r[0]["author-link"], $person["url"])) {
2059                         logger("Item author ".$r[0]["author-link"]." doesn't fit to expected contact ".$person["url"], LOGGER_DEBUG);
2060                         return false;
2061                 }
2062
2063                 // Check if the sender is the thread owner
2064                 $p = q("SELECT `id`, `author-link`, `origin` FROM `item` WHERE `id` = %d",
2065                         intval($r[0]["parent"]));
2066
2067                 // Only delete it if the parent author really fits
2068                 if (!link_compare($p[0]["author-link"], $contact["url"]) AND !link_compare($r[0]["author-link"], $contact["url"])) {
2069                         logger("Thread author ".$p[0]["author-link"]." and item author ".$r[0]["author-link"]." don't fit to expected contact ".$contact["url"], LOGGER_DEBUG);
2070                         return false;
2071                 }
2072
2073                 // Currently we don't have a central deletion function that we could use in this case. The function "item_drop" doesn't work for that case
2074                 q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = '' WHERE `id` = %d",
2075                         dbesc(datetime_convert()),
2076                         dbesc(datetime_convert()),
2077                         intval($r[0]["id"])
2078                 );
2079                 delete_thread($r[0]["id"], $r[0]["parent-uri"]);
2080
2081                 logger("Deleted target ".$target_guid." (".$r[0]["id"].") from user ".$importer["uid"]." parent: ".$p[0]["id"], LOGGER_DEBUG);
2082
2083                 // Now check if the retraction needs to be relayed by us
2084                 if($p[0]["origin"]) {
2085                         // notify others
2086                         proc_run("php", "include/notifier.php", "drop", $r[0]["id"]);
2087                 }
2088
2089                 return true;
2090         }
2091
2092         /**
2093          * @brief Receives retraction messages
2094          *
2095          * @param array $importer Array of the importer user
2096          * @param string $sender The sender of the message
2097          * @param object $data The message object
2098          *
2099          * @return bool Success
2100          */
2101         private function receive_retraction($importer, $sender, $data) {
2102                 $target_type = notags(unxmlify($data->target_type));
2103
2104                 $contact = self::contact_by_handle($importer["uid"], $sender);
2105                 if (!$contact) {
2106                         logger("cannot find contact for sender: ".$sender." and user ".$importer["uid"]);
2107                         return false;
2108                 }
2109
2110                 logger("Got retraction for ".$target_type.", sender ".$sender." and user ".$importer["uid"], LOGGER_DEBUG);
2111
2112                 switch ($target_type) {
2113                         case "Comment":
2114                         case "Like":
2115                         case "Post": // "Post" will be supported in a future version
2116                         case "Reshare":
2117                         case "StatusMessage":
2118                                 return self::item_retraction($importer, $contact, $data);;
2119
2120                         case "Person":
2121                                 /// @todo What should we do with an "unshare"?
2122                                 // Removing the contact isn't correct since we still can read the public items
2123                                 //contact_remove($contact["id"]);
2124                                 return true;
2125
2126                         default:
2127                                 logger("Unknown target type ".$target_type);
2128                                 return false;
2129                 }
2130                 return true;
2131         }
2132
2133         /**
2134          * @brief Receives status messages
2135          *
2136          * @param array $importer Array of the importer user
2137          * @param object $data The message object
2138          * @param string $xml The original XML of the message
2139          *
2140          * @return int The message id of the newly created item
2141          */
2142         private function receive_status_message($importer, $data, $xml) {
2143
2144                 $raw_message = unxmlify($data->raw_message);
2145                 $guid = notags(unxmlify($data->guid));
2146                 $author = notags(unxmlify($data->author));
2147                 $public = notags(unxmlify($data->public));
2148                 $created_at = notags(unxmlify($data->created_at));
2149                 $provider_display_name = notags(unxmlify($data->provider_display_name));
2150
2151                 /// @todo enable support for polls
2152                 //if ($data->poll) {
2153                 //      foreach ($data->poll AS $poll)
2154                 //              print_r($poll);
2155                 //      die("poll!\n");
2156                 //}
2157                 $contact = self::allowed_contact_by_handle($importer, $author, false);
2158                 if (!$contact)
2159                         return false;
2160
2161                 $message_id = self::message_exists($importer["uid"], $guid);
2162                 if ($message_id)
2163                         return $message_id;
2164
2165                 $address = array();
2166                 if ($data->location)
2167                         foreach ($data->location->children() AS $fieldname => $data)
2168                                 $address[$fieldname] = notags(unxmlify($data));
2169
2170                 $body = diaspora2bb($raw_message);
2171
2172                 $datarray = array();
2173
2174                 // Attach embedded pictures to the body
2175                 if ($data->photo) {
2176                         foreach ($data->photo AS $photo)
2177                                 $body = "[img]".unxmlify($photo->remote_photo_path).
2178                                         unxmlify($photo->remote_photo_name)."[/img]\n".$body;
2179
2180                         $datarray["object-type"] = ACTIVITY_OBJ_PHOTO;
2181                 } else {
2182                         $datarray["object-type"] = ACTIVITY_OBJ_NOTE;
2183
2184                         // Add OEmbed and other information to the body
2185                         if (!self::is_redmatrix($contact["url"]))
2186                                 $body = add_page_info_to_body($body, false, true);
2187                 }
2188
2189                 $datarray["uid"] = $importer["uid"];
2190                 $datarray["contact-id"] = $contact["id"];
2191                 $datarray["network"] = NETWORK_DIASPORA;
2192
2193                 $datarray["author-name"] = $contact["name"];
2194                 $datarray["author-link"] = $contact["url"];
2195                 $datarray["author-avatar"] = ((x($contact,"thumb")) ? $contact["thumb"] : $contact["photo"]);
2196
2197                 $datarray["owner-name"] = $datarray["author-name"];
2198                 $datarray["owner-link"] = $datarray["author-link"];
2199                 $datarray["owner-avatar"] = $datarray["author-avatar"];
2200
2201                 $datarray["guid"] = $guid;
2202                 $datarray["uri"] = $datarray["parent-uri"] = $author.":".$guid;
2203
2204                 $datarray["verb"] = ACTIVITY_POST;
2205                 $datarray["gravity"] = GRAVITY_PARENT;
2206
2207                 $datarray["object"] = $xml;
2208
2209                 $datarray["body"] = $body;
2210
2211                 if ($provider_display_name != "")
2212                         $datarray["app"] = $provider_display_name;
2213
2214                 $datarray["plink"] = self::plink($author, $guid);
2215                 $datarray["private"] = (($public == "false") ? 1 : 0);
2216                 $datarray["changed"] = $datarray["created"] = $datarray["edited"] = datetime_convert("UTC", "UTC", $created_at);
2217
2218                 if (isset($address["address"]))
2219                         $datarray["location"] = $address["address"];
2220
2221                 if (isset($address["lat"]) AND isset($address["lng"]))
2222                         $datarray["coord"] = $address["lat"]." ".$address["lng"];
2223
2224                 self::fetch_guid($datarray);
2225                 $message_id = item_store($datarray);
2226
2227                 if ($message_id)
2228                         logger("Stored item ".$datarray["guid"]." with message id ".$message_id, LOGGER_DEBUG);
2229
2230                 return $message_id;
2231         }
2232
2233         /* ************************************************************************************** *
2234          * Here are all the functions that are needed to transmit data with the Diaspora protocol *
2235          * ************************************************************************************** */
2236
2237         /**
2238          * @brief returnes the handle of a contact
2239          *
2240          * @param array $me contact array
2241          *
2242          * @return string the handle in the format user@domain.tld
2243          */
2244         private function my_handle($contact) {
2245                 if ($contact["addr"] != "")
2246                         return $contact["addr"];
2247
2248                 // Normally we should have a filled "addr" field - but in the past this wasn't the case
2249                 // So - just in case - we build the the address here.
2250                 if ($contact["nickname"] != "")
2251                         $nick = $contact["nickname"];
2252                 else
2253                         $nick = $contact["nick"];
2254
2255                 return $nick."@".substr(App::get_baseurl(), strpos(App::get_baseurl(),"://") + 3);
2256         }
2257
2258         /**
2259          * @brief Creates the envelope for a public message
2260          *
2261          * @param string $msg The message that is to be transmitted
2262          * @param array $user The record of the sender
2263          * @param array $contact Target of the communication
2264          * @param string $prvkey The private key of the sender
2265          * @param string $pubkey The public key of the receiver
2266          *
2267          * @return string The envelope
2268          */
2269         private function build_public_message($msg, $user, $contact, $prvkey, $pubkey) {
2270
2271                 logger("Message: ".$msg, LOGGER_DATA);
2272
2273                 $handle = self::my_handle($user);
2274
2275                 $b64url_data = base64url_encode($msg);
2276
2277                 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
2278
2279                 $type = "application/xml";
2280                 $encoding = "base64url";
2281                 $alg = "RSA-SHA256";
2282
2283                 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
2284
2285                 $signature = rsa_sign($signable_data,$prvkey);
2286                 $sig = base64url_encode($signature);
2287
2288                 $xmldata = array("diaspora" => array("header" => array("author_id" => $handle),
2289                                                 "me:env" => array("me:encoding" => "base64url",
2290                                                                 "me:alg" => "RSA-SHA256",
2291                                                                 "me:data" => $data,
2292                                                                 "@attributes" => array("type" => "application/xml"),
2293                                                                 "me:sig" => $sig)));
2294
2295                 $namespaces = array("" => "https://joindiaspora.com/protocol",
2296                                 "me" => "http://salmon-protocol.org/ns/magic-env");
2297
2298                 $magic_env = xml::from_array($xmldata, $xml, false, $namespaces);
2299
2300                 logger("magic_env: ".$magic_env, LOGGER_DATA);
2301                 return $magic_env;
2302         }
2303
2304         /**
2305          * @brief Creates the envelope for a private message
2306          *
2307          * @param string $msg The message that is to be transmitted
2308          * @param array $user The record of the sender
2309          * @param array $contact Target of the communication
2310          * @param string $prvkey The private key of the sender
2311          * @param string $pubkey The public key of the receiver
2312          *
2313          * @return string The envelope
2314          */
2315         private function build_private_message($msg, $user, $contact, $prvkey, $pubkey) {
2316
2317                 logger("Message: ".$msg, LOGGER_DATA);
2318
2319                 // without a public key nothing will work
2320
2321                 if (!$pubkey) {
2322                         logger("pubkey missing: contact id: ".$contact["id"]);
2323                         return false;
2324                 }
2325
2326                 $inner_aes_key = random_string(32);
2327                 $b_inner_aes_key = base64_encode($inner_aes_key);
2328                 $inner_iv = random_string(16);
2329                 $b_inner_iv = base64_encode($inner_iv);
2330
2331                 $outer_aes_key = random_string(32);
2332                 $b_outer_aes_key = base64_encode($outer_aes_key);
2333                 $outer_iv = random_string(16);
2334                 $b_outer_iv = base64_encode($outer_iv);
2335
2336                 $handle = self::my_handle($user);
2337
2338                 $padded_data = pkcs5_pad($msg,16);
2339                 $inner_encrypted = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $padded_data, MCRYPT_MODE_CBC, $inner_iv);
2340
2341                 $b64_data = base64_encode($inner_encrypted);
2342
2343
2344                 $b64url_data = base64url_encode($b64_data);
2345                 $data = str_replace(array("\n", "\r", " ", "\t"), array("", "", "", ""), $b64url_data);
2346
2347                 $type = "application/xml";
2348                 $encoding = "base64url";
2349                 $alg = "RSA-SHA256";
2350
2351                 $signable_data = $data.".".base64url_encode($type).".".base64url_encode($encoding).".".base64url_encode($alg);
2352
2353                 $signature = rsa_sign($signable_data,$prvkey);
2354                 $sig = base64url_encode($signature);
2355
2356                 $xmldata = array("decrypted_header" => array("iv" => $b_inner_iv,
2357                                                         "aes_key" => $b_inner_aes_key,
2358                                                         "author_id" => $handle));
2359
2360                 $decrypted_header = xml::from_array($xmldata, $xml, true);
2361                 $decrypted_header = pkcs5_pad($decrypted_header,16);
2362
2363                 $ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $outer_aes_key, $decrypted_header, MCRYPT_MODE_CBC, $outer_iv);
2364
2365                 $outer_json = json_encode(array("iv" => $b_outer_iv, "key" => $b_outer_aes_key));
2366
2367                 $encrypted_outer_key_bundle = "";
2368                 openssl_public_encrypt($outer_json, $encrypted_outer_key_bundle, $pubkey);
2369
2370                 $b64_encrypted_outer_key_bundle = base64_encode($encrypted_outer_key_bundle);
2371
2372                 logger("outer_bundle: ".$b64_encrypted_outer_key_bundle." key: ".$pubkey, LOGGER_DATA);
2373
2374                 $encrypted_header_json_object = json_encode(array("aes_key" => base64_encode($encrypted_outer_key_bundle),
2375                                                                 "ciphertext" => base64_encode($ciphertext)));
2376                 $cipher_json = base64_encode($encrypted_header_json_object);
2377
2378                 $xmldata = array("diaspora" => array("encrypted_header" => $cipher_json,
2379                                                 "me:env" => array("me:encoding" => "base64url",
2380                                                                 "me:alg" => "RSA-SHA256",
2381                                                                 "me:data" => $data,
2382                                                                 "@attributes" => array("type" => "application/xml"),
2383                                                                 "me:sig" => $sig)));
2384
2385                 $namespaces = array("" => "https://joindiaspora.com/protocol",
2386                                 "me" => "http://salmon-protocol.org/ns/magic-env");
2387
2388                 $magic_env = xml::from_array($xmldata, $xml, false, $namespaces);
2389
2390                 logger("magic_env: ".$magic_env, LOGGER_DATA);
2391                 return $magic_env;
2392         }
2393
2394         /**
2395          * @brief Create the envelope for a message
2396          *
2397          * @param string $msg The message that is to be transmitted
2398          * @param array $user The record of the sender
2399          * @param array $contact Target of the communication
2400          * @param string $prvkey The private key of the sender
2401          * @param string $pubkey The public key of the receiver
2402          * @param bool $public Is the message public?
2403          *
2404          * @return string The message that will be transmitted to other servers
2405          */
2406         private function build_message($msg, $user, $contact, $prvkey, $pubkey, $public = false) {
2407
2408                 if ($public)
2409                         $magic_env =  self::build_public_message($msg,$user,$contact,$prvkey,$pubkey);
2410                 else
2411                         $magic_env =  self::build_private_message($msg,$user,$contact,$prvkey,$pubkey);
2412
2413                 // The data that will be transmitted is double encoded via "urlencode", strange ...
2414                 $slap = "xml=".urlencode(urlencode($magic_env));
2415                 return $slap;
2416         }
2417
2418         /**
2419          * @brief Creates a signature for a message
2420          *
2421          * @param array $owner the array of the owner of the message
2422          * @param array $message The message that is to be signed
2423          *
2424          * @return string The signature
2425          */
2426         private function signature($owner, $message) {
2427                 $sigmsg = $message;
2428                 unset($sigmsg["author_signature"]);
2429                 unset($sigmsg["parent_author_signature"]);
2430
2431                 $signed_text = implode(";", $sigmsg);
2432
2433                 return base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
2434         }
2435
2436         /**
2437          * @brief Transmit a message to a target server
2438          *
2439          * @param array $owner the array of the item owner
2440          * @param array $contact Target of the communication
2441          * @param string $slap The message that is to be transmitted
2442          * @param bool $public_batch Is it a public post?
2443          * @param bool $queue_run Is the transmission called from the queue?
2444          * @param string $guid message guid
2445          *
2446          * @return int Result of the transmission
2447          */
2448         public static function transmit($owner, $contact, $slap, $public_batch, $queue_run=false, $guid = "") {
2449
2450                 $a = get_app();
2451
2452                 $enabled = intval(get_config("system", "diaspora_enabled"));
2453                 if(!$enabled)
2454                         return 200;
2455
2456                 $logid = random_string(4);
2457                 $dest_url = (($public_batch) ? $contact["batch"] : $contact["notify"]);
2458                 if (!$dest_url) {
2459                         logger("no url for contact: ".$contact["id"]." batch mode =".$public_batch);
2460                         return 0;
2461                 }
2462
2463                 logger("transmit: ".$logid."-".$guid." ".$dest_url);
2464
2465                 if (!$queue_run && was_recently_delayed($contact["id"])) {
2466                         $return_code = 0;
2467                 } else {
2468                         if (!intval(get_config("system", "diaspora_test"))) {
2469                                 post_url($dest_url."/", $slap);
2470                                 $return_code = $a->get_curl_code();
2471                         } else {
2472                                 logger("test_mode");
2473                                 return 200;
2474                         }
2475                 }
2476
2477                 logger("transmit: ".$logid."-".$guid." returns: ".$return_code);
2478
2479                 if(!$return_code || (($return_code == 503) && (stristr($a->get_curl_headers(), "retry-after")))) {
2480                         logger("queue message");
2481
2482                         $r = q("SELECT `id` FROM `queue` WHERE `cid` = %d AND `network` = '%s' AND `content` = '%s' AND `batch` = %d LIMIT 1",
2483                                 intval($contact["id"]),
2484                                 dbesc(NETWORK_DIASPORA),
2485                                 dbesc($slap),
2486                                 intval($public_batch)
2487                         );
2488                         if($r) {
2489                                 logger("add_to_queue ignored - identical item already in queue");
2490                         } else {
2491                                 // queue message for redelivery
2492                                 add_to_queue($contact["id"], NETWORK_DIASPORA, $slap, $public_batch);
2493                         }
2494                 }
2495
2496                 return(($return_code) ? $return_code : (-1));
2497         }
2498
2499
2500         /**
2501          * @brief Builds and transmit messages
2502          *
2503          * @param array $owner the array of the item owner
2504          * @param array $contact Target of the communication
2505          * @param string $type The message type
2506          * @param array $message The message data
2507          * @param bool $public_batch Is it a public post?
2508          * @param string $guid message guid
2509          * @param bool $spool Should the transmission be spooled or transmitted?
2510          *
2511          * @return int Result of the transmission
2512          */
2513         private function build_and_transmit($owner, $contact, $type, $message, $public_batch = false, $guid = "", $spool = false) {
2514
2515                 $data = array("XML" => array("post" => array($type => $message)));
2516
2517                 $msg = xml::from_array($data, $xml);
2518
2519                 logger('message: '.$msg, LOGGER_DATA);
2520                 logger('send guid '.$guid, LOGGER_DEBUG);
2521
2522                 $slap = self::build_message($msg, $owner, $contact, $owner['uprvkey'], $contact['pubkey'], $public_batch);
2523
2524                 if ($spool) {
2525                         add_to_queue($contact['id'], NETWORK_DIASPORA, $slap, $public_batch);
2526                         return true;
2527                 } else
2528                         $return_code = self::transmit($owner, $contact, $slap, $public_batch, false, $guid);
2529
2530                 logger("guid: ".$item["guid"]." result ".$return_code, LOGGER_DEBUG);
2531
2532                 return $return_code;
2533         }
2534
2535         /**
2536          * @brief Sends a "share" message
2537          *
2538          * @param array $owner the array of the item owner
2539          * @param array $contact Target of the communication
2540          *
2541          * @return int The result of the transmission
2542          */
2543         public static function send_share($owner,$contact) {
2544
2545                 $message = array("sender_handle" => self::my_handle($owner),
2546                                 "recipient_handle" => $contact["addr"]);
2547
2548                 return self::build_and_transmit($owner, $contact, "request", $message);
2549         }
2550
2551         /**
2552          * @brief sends an "unshare"
2553          *
2554          * @param array $owner the array of the item owner
2555          * @param array $contact Target of the communication
2556          *
2557          * @return int The result of the transmission
2558          */
2559         public static function send_unshare($owner,$contact) {
2560
2561                 $message = array("post_guid" => $owner["guid"],
2562                                 "diaspora_handle" => self::my_handle($owner),
2563                                 "type" => "Person");
2564
2565                 return self::build_and_transmit($owner, $contact, "retraction", $message);
2566         }
2567
2568         /**
2569          * @brief Checks a message body if it is a reshare
2570          *
2571          * @param string $body The message body that is to be check
2572          * @param bool $complete Should it be a complete check or a simple check?
2573          *
2574          * @return array|bool Reshare details or "false" if no reshare
2575          */
2576         public static function is_reshare($body, $complete = true) {
2577                 $body = trim($body);
2578
2579                 // Skip if it isn't a pure repeated messages
2580                 // Does it start with a share?
2581                 if (strpos($body, "[share") > 0)
2582                         return(false);
2583
2584                 // Does it end with a share?
2585                 if (strlen($body) > (strrpos($body, "[/share]") + 8))
2586                         return(false);
2587
2588                 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
2589                 // Skip if there is no shared message in there
2590                 if ($body == $attributes)
2591                         return(false);
2592
2593                 // If we don't do the complete check we quit here
2594                 if (!$complete)
2595                         return true;
2596
2597                 $guid = "";
2598                 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
2599                 if ($matches[1] != "")
2600                         $guid = $matches[1];
2601
2602                 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
2603                 if ($matches[1] != "")
2604                         $guid = $matches[1];
2605
2606                 if ($guid != "") {
2607                         $r = q("SELECT `contact-id` FROM `item` WHERE `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1",
2608                                 dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA);
2609                         if ($r) {
2610                                 $ret= array();
2611                                 $ret["root_handle"] = self::handle_from_contact($r[0]["contact-id"]);
2612                                 $ret["root_guid"] = $guid;
2613                                 return($ret);
2614                         }
2615                 }
2616
2617                 $profile = "";
2618                 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
2619                 if ($matches[1] != "")
2620                         $profile = $matches[1];
2621
2622                 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
2623                 if ($matches[1] != "")
2624                         $profile = $matches[1];
2625
2626                 $ret= array();
2627
2628                 $ret["root_handle"] = preg_replace("=https?://(.*)/u/(.*)=ism", "$2@$1", $profile);
2629                 if (($ret["root_handle"] == $profile) OR ($ret["root_handle"] == ""))
2630                         return(false);
2631
2632                 $link = "";
2633                 preg_match("/link='(.*?)'/ism", $attributes, $matches);
2634                 if ($matches[1] != "")
2635                         $link = $matches[1];
2636
2637                 preg_match('/link="(.*?)"/ism', $attributes, $matches);
2638                 if ($matches[1] != "")
2639                         $link = $matches[1];
2640
2641                 $ret["root_guid"] = preg_replace("=https?://(.*)/posts/(.*)=ism", "$2", $link);
2642                 if (($ret["root_guid"] == $link) OR (trim($ret["root_guid"]) == ""))
2643                         return(false);
2644
2645                 return($ret);
2646         }
2647
2648         /**
2649          * @brief Sends a post
2650          *
2651          * @param array $item The item that will be exported
2652          * @param array $owner the array of the item owner
2653          * @param array $contact Target of the communication
2654          * @param bool $public_batch Is it a public post?
2655          *
2656          * @return int The result of the transmission
2657          */
2658         public static function send_status($item, $owner, $contact, $public_batch = false) {
2659
2660                 $myaddr = self::my_handle($owner);
2661
2662                 $public = (($item["private"]) ? "false" : "true");
2663
2664                 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d H:i:s \U\T\C');
2665
2666                 // Detect a share element and do a reshare
2667                 if (!$item['private'] AND ($ret = self::is_reshare($item["body"]))) {
2668                         $message = array("root_diaspora_id" => $ret["root_handle"],
2669                                         "root_guid" => $ret["root_guid"],
2670                                         "guid" => $item["guid"],
2671                                         "diaspora_handle" => $myaddr,
2672                                         "public" => $public,
2673                                         "created_at" => $created,
2674                                         "provider_display_name" => $item["app"]);
2675
2676                         $type = "reshare";
2677                 } else {
2678                         $title = $item["title"];
2679                         $body = $item["body"];
2680
2681                         // convert to markdown
2682                         $body = html_entity_decode(bb2diaspora($body));
2683
2684                         // Adding the title
2685                         if(strlen($title))
2686                                 $body = "## ".html_entity_decode($title)."\n\n".$body;
2687
2688                         if ($item["attach"]) {
2689                                 $cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism', $item["attach"], $matches, PREG_SET_ORDER);
2690                                 if(cnt) {
2691                                         $body .= "\n".t("Attachments:")."\n";
2692                                         foreach($matches as $mtch)
2693                                                 $body .= "[".$mtch[3]."](".$mtch[1].")\n";
2694                                 }
2695                         }
2696
2697                         $location = array();
2698
2699                         if ($item["location"] != "")
2700                                 $location["address"] = $item["location"];
2701
2702                         if ($item["coord"] != "") {
2703                                 $coord = explode(" ", $item["coord"]);
2704                                 $location["lat"] = $coord[0];
2705                                 $location["lng"] = $coord[1];
2706                         }
2707
2708                         $message = array("raw_message" => $body,
2709                                         "location" => $location,
2710                                         "guid" => $item["guid"],
2711                                         "diaspora_handle" => $myaddr,
2712                                         "public" => $public,
2713                                         "created_at" => $created,
2714                                         "provider_display_name" => $item["app"]);
2715
2716                         if (count($location) == 0)
2717                                 unset($message["location"]);
2718
2719                         $type = "status_message";
2720                 }
2721
2722                 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
2723         }
2724
2725         /**
2726          * @brief Creates a "like" object
2727          *
2728          * @param array $item The item that will be exported
2729          * @param array $owner the array of the item owner
2730          *
2731          * @return array The data for a "like"
2732          */
2733         private function construct_like($item, $owner) {
2734
2735                 $p = q("SELECT `guid`, `uri`, `parent-uri` FROM `item` WHERE `uri` = '%s' LIMIT 1",
2736                         dbesc($item["thr-parent"]));
2737                 if(!$p)
2738                         return false;
2739
2740                 $parent = $p[0];
2741
2742                 $target_type = ($parent["uri"] === $parent["parent-uri"] ? "Post" : "Comment");
2743                 $positive = "true";
2744
2745                 return(array("positive" => $positive,
2746                                 "guid" => $item["guid"],
2747                                 "target_type" => $target_type,
2748                                 "parent_guid" => $parent["guid"],
2749                                 "author_signature" => "",
2750                                 "diaspora_handle" => self::my_handle($owner)));
2751         }
2752
2753         /**
2754          * @brief Creates the object for a comment
2755          *
2756          * @param array $item The item that will be exported
2757          * @param array $owner the array of the item owner
2758          *
2759          * @return array The data for a comment
2760          */
2761         private function construct_comment($item, $owner) {
2762
2763                 $p = q("SELECT `guid` FROM `item` WHERE `parent` = %d AND `id` = %d LIMIT 1",
2764                         intval($item["parent"]),
2765                         intval($item["parent"])
2766                 );
2767
2768                 if (!$p)
2769                         return false;
2770
2771                 $parent = $p[0];
2772
2773                 $text = html_entity_decode(bb2diaspora($item["body"]));
2774
2775                 return(array("guid" => $item["guid"],
2776                                 "parent_guid" => $parent["guid"],
2777                                 "author_signature" => "",
2778                                 "text" => $text,
2779                                 "diaspora_handle" => self::my_handle($owner)));
2780         }
2781
2782         /**
2783          * @brief Send a like or a comment
2784          *
2785          * @param array $item The item that will be exported
2786          * @param array $owner the array of the item owner
2787          * @param array $contact Target of the communication
2788          * @param bool $public_batch Is it a public post?
2789          *
2790          * @return int The result of the transmission
2791          */
2792         public static function send_followup($item,$owner,$contact,$public_batch = false) {
2793
2794                 if($item['verb'] === ACTIVITY_LIKE) {
2795                         $message = self::construct_like($item, $owner);
2796                         $type = "like";
2797                 } else {
2798                         $message = self::construct_comment($item, $owner);
2799                         $type = "comment";
2800                 }
2801
2802                 if (!$message)
2803                         return false;
2804
2805                 $message["author_signature"] = self::signature($owner, $message);
2806
2807                 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
2808         }
2809
2810         /**
2811          * @brief Creates a message from a signature record entry
2812          *
2813          * @param array $item The item that will be exported
2814          * @param array $signature The entry of the "sign" record
2815          *
2816          * @return string The message
2817          */
2818         private function message_from_signature($item, $signature) {
2819
2820                 // Split the signed text
2821                 $signed_parts = explode(";", $signature['signed_text']);
2822
2823                 if ($item["deleted"])
2824                         $message = array("parent_author_signature" => "",
2825                                         "target_guid" => $signed_parts[0],
2826                                         "target_type" => $signed_parts[1],
2827                                         "sender_handle" => $signature['signer'],
2828                                         "target_author_signature" => $signature['signature']);
2829                 elseif ($item['verb'] === ACTIVITY_LIKE)
2830                         $message = array("positive" => $signed_parts[0],
2831                                         "guid" => $signed_parts[1],
2832                                         "target_type" => $signed_parts[2],
2833                                         "parent_guid" => $signed_parts[3],
2834                                         "parent_author_signature" => "",
2835                                         "author_signature" => $signature['signature'],
2836                                         "diaspora_handle" => $signed_parts[4]);
2837                 else {
2838                         // Remove the comment guid
2839                         $guid = array_shift($signed_parts);
2840
2841                         // Remove the parent guid
2842                         $parent_guid = array_shift($signed_parts);
2843
2844                         // Remove the handle
2845                         $handle = array_pop($signed_parts);
2846
2847                         // Glue the parts together
2848                         $text = implode(";", $signed_parts);
2849
2850                         $message = array("guid" => $guid,
2851                                         "parent_guid" => $parent_guid,
2852                                         "parent_author_signature" => "",
2853                                         "author_signature" => $signature['signature'],
2854                                         "text" => implode(";", $signed_parts),
2855                                         "diaspora_handle" => $handle);
2856                 }
2857                 return $message;
2858         }
2859
2860         /**
2861          * @brief Relays messages (like, comment, retraction) to other servers if we are the thread owner
2862          *
2863          * @param array $item The item that will be exported
2864          * @param array $owner the array of the item owner
2865          * @param array $contact Target of the communication
2866          * @param bool $public_batch Is it a public post?
2867          *
2868          * @return int The result of the transmission
2869          */
2870         public static function send_relay($item, $owner, $contact, $public_batch = false) {
2871
2872                 if ($item["deleted"])
2873                         return self::send_retraction($item, $owner, $contact, $public_batch, true);
2874                 elseif ($item['verb'] === ACTIVITY_LIKE)
2875                         $type = "like";
2876                 else
2877                         $type = "comment";
2878
2879                 logger("Got relayable data ".$type." for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
2880
2881                 // fetch the original signature
2882
2883                 $r = q("SELECT `signed_text`, `signature`, `signer` FROM `sign` WHERE `iid` = %d LIMIT 1",
2884                         intval($item["id"]));
2885
2886                 if (!$r) {
2887                         logger("Couldn't fetch signatur for item ".$item["guid"]." (".$item["id"].")", LOGGER_DEBUG);
2888                         return false;
2889                 }
2890
2891                 $signature = $r[0];
2892
2893                 // Old way - is used by the internal Friendica functions
2894                 /// @todo Change all signatur storing functions to the new format
2895                 if ($signature['signed_text'] AND $signature['signature'] AND $signature['signer'])
2896                         $message = self::message_from_signature($item, $signature);
2897                 else {// New way
2898                         $msg = json_decode($signature['signed_text'], true);
2899
2900                         $message = array();
2901                         if (is_array($msg)) {
2902                                 foreach ($msg AS $field => $data) {
2903                                         if (!$item["deleted"]) {
2904                                                 if ($field == "author")
2905                                                         $field = "diaspora_handle";
2906                                                 if ($field == "parent_type")
2907                                                         $field = "target_type";
2908                                         }
2909
2910                                         $message[$field] = $data;
2911                                 }
2912                         } else
2913                                 logger("Signature text for item ".$item["guid"]." (".$item["id"].") couldn't be extracted: ".$signature['signed_text'], LOGGER_DEBUG);
2914                 }
2915
2916                 $message["parent_author_signature"] = self::signature($owner, $message);
2917
2918                 logger("Relayed data ".print_r($message, true), LOGGER_DEBUG);
2919
2920                 return self::build_and_transmit($owner, $contact, $type, $message, $public_batch, $item["guid"]);
2921         }
2922
2923         /**
2924          * @brief Sends a retraction (deletion) of a message, like or comment
2925          *
2926          * @param array $item The item that will be exported
2927          * @param array $owner the array of the item owner
2928          * @param array $contact Target of the communication
2929          * @param bool $public_batch Is it a public post?
2930          * @param bool $relay Is the retraction transmitted from a relay?
2931          *
2932          * @return int The result of the transmission
2933          */
2934         public static function send_retraction($item, $owner, $contact, $public_batch = false, $relay = false) {
2935
2936                 $itemaddr = self::handle_from_contact($item["contact-id"], $item["gcontact-id"]);
2937
2938                 // Check whether the retraction is for a top-level post or whether it's a relayable
2939                 if ($item["uri"] !== $item["parent-uri"]) {
2940                         $msg_type = "relayable_retraction";
2941                         $target_type = (($item["verb"] === ACTIVITY_LIKE) ? "Like" : "Comment");
2942                 } else {
2943                         $msg_type = "signed_retraction";
2944                         $target_type = "StatusMessage";
2945                 }
2946
2947                 if ($relay AND ($item["uri"] !== $item["parent-uri"]))
2948                         $signature = "parent_author_signature";
2949                 else
2950                         $signature = "target_author_signature";
2951
2952                 $signed_text = $item["guid"].";".$target_type;
2953
2954                 $message = array("target_guid" => $item['guid'],
2955                                 "target_type" => $target_type,
2956                                 "sender_handle" => $itemaddr,
2957                                 $signature => base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256')));
2958
2959                 logger("Got message ".print_r($message, true), LOGGER_DEBUG);
2960
2961                 return self::build_and_transmit($owner, $contact, $msg_type, $message, $public_batch, $item["guid"]);
2962         }
2963
2964         /**
2965          * @brief Sends a mail
2966          *
2967          * @param array $item The item that will be exported
2968          * @param array $owner The owner
2969          * @param array $contact Target of the communication
2970          *
2971          * @return int The result of the transmission
2972          */
2973         public static function send_mail($item, $owner, $contact) {
2974
2975                 $myaddr = self::my_handle($owner);
2976
2977                 $r = q("SELECT * FROM `conv` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2978                         intval($item["convid"]),
2979                         intval($item["uid"])
2980                 );
2981
2982                 if (!$r) {
2983                         logger("conversation not found.");
2984                         return;
2985                 }
2986                 $cnv = $r[0];
2987
2988                 $conv = array(
2989                         "guid" => $cnv["guid"],
2990                         "subject" => $cnv["subject"],
2991                         "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d H:i:s \U\T\C'),
2992                         "diaspora_handle" => $cnv["creator"],
2993                         "participant_handles" => $cnv["recips"]
2994                 );
2995
2996                 $body = bb2diaspora($item["body"]);
2997                 $created = datetime_convert("UTC", "UTC", $item["created"], 'Y-m-d H:i:s \U\T\C');
2998
2999                 $signed_text = $item["guid"].";".$cnv["guid"].";".$body.";".$created.";".$myaddr.";".$cnv['guid'];
3000                 $sig = base64_encode(rsa_sign($signed_text, $owner["uprvkey"], "sha256"));
3001
3002                 $msg = array(
3003                         "guid" => $item["guid"],
3004                         "parent_guid" => $cnv["guid"],
3005                         "parent_author_signature" => $sig,
3006                         "author_signature" => $sig,
3007                         "text" => $body,
3008                         "created_at" => $created,
3009                         "diaspora_handle" => $myaddr,
3010                         "conversation_guid" => $cnv["guid"]
3011                 );
3012
3013                 if ($item["reply"]) {
3014                         $message = $msg;
3015                         $type = "message";
3016                 } else {
3017                         $message = array("guid" => $cnv["guid"],
3018                                         "subject" => $cnv["subject"],
3019                                         "created_at" => datetime_convert("UTC", "UTC", $cnv['created'], 'Y-m-d H:i:s \U\T\C'),
3020                                         "message" => $msg,
3021                                         "diaspora_handle" => $cnv["creator"],
3022                                         "participant_handles" => $cnv["recips"]);
3023
3024                         $type = "conversation";
3025                 }
3026
3027                 return self::build_and_transmit($owner, $contact, $type, $message, false, $item["guid"]);
3028         }
3029
3030         /**
3031          * @brief Sends profile data
3032          *
3033          * @param int $uid The user id
3034          */
3035         public static function send_profile($uid) {
3036
3037                 if (!$uid)
3038                         return;
3039
3040                 $recips = q("SELECT `id`,`name`,`network`,`pubkey`,`notify` FROM `contact` WHERE `network` = '%s'
3041                         AND `uid` = %d AND `rel` != %d",
3042                         dbesc(NETWORK_DIASPORA),
3043                         intval($uid),
3044                         intval(CONTACT_IS_SHARING)
3045                 );
3046                 if (!$recips)
3047                         return;
3048
3049                 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.*, `user`.`prvkey` AS `uprvkey`, `contact`.`addr`
3050                         FROM `profile`
3051                         INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
3052                         INNER JOIN `contact` ON `profile`.`uid` = `contact`.`uid`
3053                         WHERE `user`.`uid` = %d AND `profile`.`is-default` AND `contact`.`self` LIMIT 1",
3054                         intval($uid)
3055                 );
3056
3057                 if (!$r)
3058                         return;
3059
3060                 $profile = $r[0];
3061
3062                 $handle = $profile["addr"];
3063                 $first = ((strpos($profile['name'],' ')
3064                         ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']));
3065                 $last = (($first === $profile['name']) ? '' : trim(substr($profile['name'], strlen($first))));
3066                 $large = App::get_baseurl().'/photo/custom/300/'.$profile['uid'].'.jpg';
3067                 $medium = App::get_baseurl().'/photo/custom/100/'.$profile['uid'].'.jpg';
3068                 $small = App::get_baseurl().'/photo/custom/50/'  .$profile['uid'].'.jpg';
3069                 $searchable = (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false');
3070
3071                 if ($searchable === 'true') {
3072                         $dob = '1000-00-00';
3073
3074                         if (($profile['dob']) && ($profile['dob'] != '0000-00-00'))
3075                                 $dob = ((intval($profile['dob'])) ? intval($profile['dob']) : '1000') .'-'. datetime_convert('UTC','UTC',$profile['dob'],'m-d');
3076
3077                         $about = $profile['about'];
3078                         $about = strip_tags(bbcode($about));
3079
3080                         $location = formatted_location($profile);
3081                         $tags = '';
3082                         if ($profile['pub_keywords']) {
3083                                 $kw = str_replace(',',' ',$profile['pub_keywords']);
3084                                 $kw = str_replace('  ',' ',$kw);
3085                                 $arr = explode(' ',$profile['pub_keywords']);
3086                                 if (count($arr)) {
3087                                         for($x = 0; $x < 5; $x ++) {
3088                                                 if (trim($arr[$x]))
3089                                                         $tags .= '#'. trim($arr[$x]) .' ';
3090                                         }
3091                                 }
3092                         }
3093                         $tags = trim($tags);
3094                 }
3095
3096                 $message = array("diaspora_handle" => $handle,
3097                                 "first_name" => $first,
3098                                 "last_name" => $last,
3099                                 "image_url" => $large,
3100                                 "image_url_medium" => $medium,
3101                                 "image_url_small" => $small,
3102                                 "birthday" => $dob,
3103                                 "gender" => $profile['gender'],
3104                                 "bio" => $about,
3105                                 "location" => $location,
3106                                 "searchable" => $searchable,
3107                                 "tag_string" => $tags);
3108
3109                 foreach($recips as $recip)
3110                         self::build_and_transmit($profile, $recip, "profile", $message, false, "", true);
3111         }
3112
3113         /**
3114          * @brief Stores the signature for likes that are created on our system
3115          *
3116          * @param array $contact The contact array of the "like"
3117          * @param int $post_id The post id of the "like"
3118          *
3119          * @return bool Success
3120          */
3121         public static function store_like_signature($contact, $post_id) {
3122
3123                 $enabled = intval(get_config('system','diaspora_enabled'));
3124                 if (!$enabled) {
3125                         logger('Diaspora support disabled, not storing like signature', LOGGER_DEBUG);
3126                         return false;
3127                 }
3128
3129                 // Is the contact the owner? Then fetch the private key
3130                 if (!$contact['self'] OR ($contact['uid'] == 0)) {
3131                         logger("No owner post, so not storing signature", LOGGER_DEBUG);
3132                         return false;
3133                 }
3134
3135                 $r = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($contact['uid']));
3136                 if(!$r)
3137                         return false;
3138
3139                 $contact["uprvkey"] = $r[0]['prvkey'];
3140
3141                 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", intval($post_id));
3142                 if (!$r)
3143                         return false;
3144
3145                 if (!in_array($r[0]["verb"], array(ACTIVITY_LIKE, ACTIVITY_DISLIKE)))
3146                         return false;
3147
3148                 $message = self::construct_like($r[0], $contact);
3149                 $message["author_signature"] = self::signature($contact, $message);
3150
3151                 // In the future we will store the signature more flexible to support new fields.
3152                 // Right now we cannot change this since old Friendica versions (prior to 3.5) can only handle this format.
3153                 // (We are transmitting this data here via DFRN)
3154
3155                 $signed_text = $message["positive"].";".$message["guid"].";".$message["target_type"].";".
3156                                 $message["parent_guid"].";".$message["diaspora_handle"];
3157
3158                 q("INSERT INTO `sign` (`iid`,`signed_text`,`signature`,`signer`) VALUES (%d,'%s','%s','%s')",
3159                         intval($post_id),
3160                         dbesc($signed_text),
3161                         dbesc($message["author_signature"]),
3162                         dbesc($message["diaspora_handle"])
3163                 );
3164
3165                 // This here will replace the lines above, once Diaspora changed its protocol
3166                 //q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
3167                 //      intval($message_id),
3168                 //      dbesc(json_encode($message))
3169                 //);
3170
3171                 logger('Stored diaspora like signature');
3172                 return true;
3173         }
3174
3175         /**
3176          * @brief Stores the signature for comments that are created on our system
3177          *
3178          * @param array $item The item array of the comment
3179          * @param array $contact The contact array of the item owner
3180          * @param string $uprvkey The private key of the sender
3181          * @param int $message_id The message id of the comment
3182          *
3183          * @return bool Success
3184          */
3185         public static function store_comment_signature($item, $contact, $uprvkey, $message_id) {
3186
3187                 if ($uprvkey == "") {
3188                         logger('No private key, so not storing comment signature', LOGGER_DEBUG);
3189                         return false;
3190                 }
3191
3192                 $enabled = intval(get_config('system','diaspora_enabled'));
3193                 if (!$enabled) {
3194                         logger('Diaspora support disabled, not storing comment signature', LOGGER_DEBUG);
3195                         return false;
3196                 }
3197
3198                 $contact["uprvkey"] = $uprvkey;
3199
3200                 $message = self::construct_comment($item, $contact);
3201                 $message["author_signature"] = self::signature($contact, $message);
3202
3203                 // In the future we will store the signature more flexible to support new fields.
3204                 // Right now we cannot change this since old Friendica versions (prior to 3.5) can only handle this format.
3205                 // (We are transmitting this data here via DFRN)
3206                 $signed_text = $message["guid"].";".$message["parent_guid"].";".
3207                                 $message["text"].";".$message["diaspora_handle"];
3208
3209                 q("INSERT INTO `sign` (`iid`,`signed_text`,`signature`,`signer`) VALUES (%d,'%s','%s','%s')",
3210                         intval($message_id),
3211                         dbesc($signed_text),
3212                         dbesc($message["author_signature"]),
3213                         dbesc($message["diaspora_handle"])
3214                 );
3215
3216                 // This here will replace the lines above, once Diaspora changed its protocol
3217                 //q("INSERT INTO `sign` (`iid`,`signed_text`) VALUES (%d,'%s')",
3218                 //      intval($message_id),
3219                 //      dbesc(json_encode($message))
3220                 //);
3221
3222                 logger('Stored diaspora comment signature');
3223                 return true;
3224         }
3225 }
3226 ?>