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