]> git.mxchange.org Git - friendica.git/blob - include/diaspora.php
Merge pull request #169 from michal-s/master
[friendica.git] / include / diaspora.php
1 <?php
2
3 require_once('include/crypto.php');
4 require_once('include/items.php');
5 require_once('include/bb2diaspora.php');
6 require_once('include/contact_selectors.php');
7
8 function diaspora_dispatch($importer,$msg) {
9
10         $parsed_xml = parse_xml_string($msg['message'],false);
11
12         $xmlbase = $parsed_xml->post;
13
14         if($xmlbase->request) {
15                 diaspora_request($importer,$xmlbase->request);
16         }
17         elseif($xmlbase->status_message) {
18                 diaspora_post($importer,$xmlbase->status_message);
19         }
20         elseif($xmlbase->comment) {
21                 diaspora_comment($importer,$xmlbase->comment,$msg);
22         }
23         elseif($xmlbase->like) {
24                 diaspora_like($importer,$xmlbase->like,$msg);
25         }
26         elseif($xmlbase->retraction) {
27                 diaspora_retraction($importer,$xmlbase->retraction,$msg);
28         }
29         elseif($xmlbase->photo) {
30                 diaspora_photo($importer,$xmlbase->photo,$msg);
31         }
32         else {
33                 logger('diaspora_dispatch: unknown message type: ' . print_r($xmlbase,true));
34         }
35         return;
36 }
37
38 function diaspora_get_contact_by_handle($uid,$handle) {
39         $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `addr` = '%s' LIMIT 1",
40                 dbesc(NETWORK_DIASPORA),
41                 intval($uid),
42                 dbesc($handle)
43         );
44         if($r && count($r))
45                 return $r[0];
46         return false;
47 }
48
49 function find_diaspora_person_by_handle($handle) {
50         $r = q("select * from fcontact where network = '%s' and addr = '%s' limit 1",
51                 dbesc(NETWORK_DIASPORA),
52                 dbesc($handle)
53         );
54         if(count($r)) {
55                 // update record occasionally so it doesn't get stale
56                 $d = strtotime($r[0]['updated'] . ' +00:00');
57                 if($d < strtotime('now - 14 days')) {
58                         q("delete from fcontact where id = %d limit 1",
59                                 intval($r[0]['id'])
60                         );
61                 }
62                 else
63                         return $r[0];
64         }
65         require_once('include/Scrape.php');
66         $r = probe_url($handle, PROBE_DIASPORA);
67         if((count($r)) && ($r['network'] === NETWORK_DIASPORA)) {
68                 add_fcontact($r);
69                 return ($r);
70         }
71         return false;
72 }
73
74
75 function get_diaspora_key($uri) {
76         logger('Fetching diaspora key for: ' . $uri);
77
78         $r = find_diaspora_person_by_handle($uri);
79         if($r)
80                 return $r['pubkey'];
81         return '';
82 }
83
84
85 function diaspora_msg_build($msg,$user,$contact,$prvkey,$pubkey) {
86         $a = get_app();
87
88         logger('diaspora_msg_build: ' . $msg, LOGGER_DATA);
89
90         $inner_aes_key = random_string(32);
91         $b_inner_aes_key = base64_encode($inner_aes_key);
92         $inner_iv = random_string(16);
93         $b_inner_iv = base64_encode($inner_iv);
94
95         $outer_aes_key = random_string(32);
96         $b_outer_aes_key = base64_encode($outer_aes_key);
97         $outer_iv = random_string(16);
98         $b_outer_iv = base64_encode($outer_iv);
99         
100         $handle = 'acct:' . $user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
101
102         $padded_data = pkcs5_pad($msg,16);
103         $inner_encrypted = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $padded_data, MCRYPT_MODE_CBC, $inner_iv);
104
105         $b64_data = base64_encode($inner_encrypted);
106
107
108         $b64url_data = base64url_encode($b64_data);
109         $b64url_stripped = str_replace(array("\n","\r"," ","\t"),array('','','',''),$b64url_data);
110     $lines = str_split($b64url_stripped,60);
111     $data = implode("\n",$lines);
112         $data = $data . (($data[-1] != "\n") ? "\n" : '') ;
113         $type = 'application/atom+xml';
114         $encoding = 'base64url';
115         $alg = 'RSA-SHA256';
116
117         $signable_data = $data  . '.' . base64url_encode($type) . "\n" . '.' 
118                 . base64url_encode($encoding) . "\n" . '.' . base64url_encode($alg) . "\n";
119
120         $signature = rsa_sign($signable_data,$prvkey);
121         $sig = base64url_encode($signature);
122
123 $decrypted_header = <<< EOT
124 <decrypted_header>
125   <iv>$b_inner_iv</iv>
126   <aes_key>$b_inner_aes_key</aes_key>
127   <author>
128     <name>{$user['username']}</name>
129     <uri>$handle</uri>
130   </author>
131 </decrypted_header>
132 EOT;
133
134         $decrypted_header = pkcs5_pad($decrypted_header,16);
135
136         $ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $outer_aes_key, $decrypted_header, MCRYPT_MODE_CBC, $outer_iv);
137
138         $outer_json = json_encode(array('iv' => $b_outer_iv,'key' => $b_outer_aes_key));
139
140         $encrypted_outer_key_bundle = '';
141         openssl_public_encrypt($outer_json,$encrypted_outer_key_bundle,$pubkey);
142
143         $b64_encrypted_outer_key_bundle = base64_encode($encrypted_outer_key_bundle);
144
145         logger('outer_bundle: ' . $b64_encrypted_outer_key_bundle . ' key: ' . $pubkey, LOGGER_DATA);
146
147         $encrypted_header_json_object = json_encode(array('aes_key' => base64_encode($encrypted_outer_key_bundle), 
148                 'ciphertext' => base64_encode($ciphertext)));
149         $cipher_json = base64_encode($encrypted_header_json_object);
150
151         $encrypted_header = '<encrypted_header>' . $cipher_json . '</encrypted_header>';
152
153 $magic_env = <<< EOT
154 <?xml version='1.0' encoding='UTF-8'?>
155 <entry xmlns='http://www.w3.org/2005/Atom'>
156   $encrypted_header
157   <me:env xmlns:me="http://salmon-protocol.org/ns/magic-env">
158     <me:encoding>base64url</me:encoding>
159     <me:alg>RSA-SHA256</me:alg>
160     <me:data type="application/atom+xml">$data</me:data>
161     <me:sig>$sig</me:sig>
162   </me:env>
163 </entry>
164 EOT;
165
166         logger('diaspora_msg_build: magic_env: ' . $magic_env, LOGGER_DATA);
167         return $magic_env;
168
169 }
170
171 /**
172  *
173  * diaspora_decode($importer,$xml)
174  *   array $importer -> from user table
175  *   string $xml -> urldecoded Diaspora salmon 
176  *
177  * Returns array
178  * 'message' -> decoded Diaspora XML message
179  * 'author' -> author diaspora handle
180  * 'key' -> author public key (converted to pkcs#8)
181  *
182  * Author and key are used elsewhere to save a lookup for verifying replies and likes
183  */
184
185
186 function diaspora_decode($importer,$xml) {
187
188         $basedom = parse_xml_string($xml);
189
190         $atom = $basedom->children(NAMESPACE_ATOM1);
191
192         // Diaspora devs: This is kind of sucky - 'encrypted_header' does not belong in the atom namespace
193
194         $encrypted_header = json_decode(base64_decode($atom->encrypted_header));
195         
196         $encrypted_aes_key_bundle = base64_decode($encrypted_header->aes_key);
197         $ciphertext = base64_decode($encrypted_header->ciphertext);
198
199         $outer_key_bundle = '';
200         openssl_private_decrypt($encrypted_aes_key_bundle,$outer_key_bundle,$importer['prvkey']);
201
202         $j_outer_key_bundle = json_decode($outer_key_bundle);
203
204         $outer_iv = base64_decode($j_outer_key_bundle->iv);
205         $outer_key = base64_decode($j_outer_key_bundle->key);
206
207         $decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $outer_key, $ciphertext, MCRYPT_MODE_CBC, $outer_iv);
208
209
210         $decrypted = pkcs5_unpad($decrypted);
211
212         /**
213          * $decrypted now contains something like
214          *
215          *  <decrypted_header>
216          *     <iv>8e+G2+ET8l5BPuW0sVTnQw==</iv>
217          *     <aes_key>UvSMb4puPeB14STkcDWq+4QE302Edu15oaprAQSkLKU=</aes_key>
218          *     <author>
219          *       <name>Ryan Hughes</name>
220          *       <uri>acct:galaxor@diaspora.pirateship.org</uri>
221          *     </author>
222          *  </decrypted_header>
223          */
224
225         logger('decrypted: ' . $decrypted, LOGGER_DEBUG);
226         $idom = parse_xml_string($decrypted,false);
227
228         $inner_iv = base64_decode($idom->iv);
229         $inner_aes_key = base64_decode($idom->aes_key);
230
231         $author_link = str_replace('acct:','',$idom->author->uri);
232
233         $dom = $basedom->children(NAMESPACE_SALMON_ME);
234
235         // figure out where in the DOM tree our data is hiding
236
237         if($dom->provenance->data)
238                 $base = $dom->provenance;
239         elseif($dom->env->data)
240                 $base = $dom->env;
241         elseif($dom->data)
242                 $base = $dom;
243         
244         if(! $base) {
245                 logger('mod-diaspora: unable to locate salmon data in xml ');
246                 http_status_exit(400);
247         }
248
249
250         // Stash the signature away for now. We have to find their key or it won't be good for anything.
251         $signature = base64url_decode($base->sig);
252
253         // unpack the  data
254
255         // strip whitespace so our data element will return to one big base64 blob
256         $data = str_replace(array(" ","\t","\r","\n"),array("","","",""),$base->data);
257
258         // Add back the 60 char linefeeds
259
260         // This completely violates the entire principle of salmon magic signatures,
261         // which was to have a message signing format that was completely ambivalent to linefeeds 
262         // and transport whitespace mangling, and base64 wrapping rules. Guess what? PHP and Ruby 
263         // use different linelengths for base64 output. 
264
265     $lines = str_split($data,60);
266     $data = implode("\n",$lines);
267
268
269         // stash away some other stuff for later
270
271         $type = $base->data[0]->attributes()->type[0];
272         $keyhash = $base->sig[0]->attributes()->keyhash[0];
273         $encoding = $base->encoding;
274         $alg = $base->alg;
275
276         // I can't even begin to tell you how sucky this is. Please read the spec.
277
278         $signed_data = $data  . (($data[-1] != "\n") ? "\n" : '') . '.' . base64url_encode($type) . "\n" . '.' . base64url_encode($encoding) . "\n" . '.' . base64url_encode($alg) . "\n";
279
280
281         // decode the data
282         $data = base64url_decode($data);
283
284         // Now pull out the inner encrypted blob
285
286         $inner_encrypted = base64_decode($data);
287
288         $inner_decrypted = 
289         $inner_decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $inner_encrypted, MCRYPT_MODE_CBC, $inner_iv);
290
291         $inner_decrypted = pkcs5_unpad($inner_decrypted);
292
293         if(! $author_link) {
294                 logger('mod-diaspora: Could not retrieve author URI.');
295                 http_status_exit(400);
296         }
297
298         // Once we have the author URI, go to the web and try to find their public key
299         // (first this will look it up locally if it is in the fcontact cache)
300         // This will also convert diaspora public key from pkcs#1 to pkcs#8
301
302         logger('mod-diaspora: Fetching key for ' . $author_link );
303         $key = get_diaspora_key($author_link);
304
305         if(! $key) {
306                 logger('mod-diaspora: Could not retrieve author key.');
307                 http_status_exit(400);
308         }
309
310         $verify = rsa_verify($signed_data,$signature,$key);
311
312         if(! $verify) {
313                 logger('mod-diaspora: Message did not verify. Discarding.');
314                 http_status_exit(400);
315         }
316
317         logger('mod-diaspora: Message verified.');
318
319         return array('message' => $inner_decrypted, 'author' => $author_link, 'key' => $key);
320
321 }
322
323         
324
325 function diaspora_request($importer,$xml) {
326
327         $sender_handle = unxmlify($xml->sender_handle);
328         $recipient_handle = unxmlify($xml->recipient_handle);
329
330         if(! $sender_handle || ! $recipient_handle)
331                 return;
332          
333         $contact = diaspora_get_contact_by_handle($importer['uid'],$sender_handle);
334
335
336         if($contact) {
337
338                 // perhaps we were already sharing with this person. Now they're sharing with us.
339                 // That makes us friends.
340
341                 if($contact['rel'] == CONTACT_IS_FOLLOWER) {
342                         q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d LIMIT 1",
343                                 intval(CONTACT_IS_FRIEND),
344                                 intval($contact['id']),
345                                 intval($importer['uid'])
346                         );
347                 }
348                 // send notification?
349                 return;
350         }
351         
352         $ret = find_diaspora_person_by_handle($sender_handle);
353
354
355         if((! count($ret)) || ($ret['network'] != NETWORK_DIASPORA)) {
356                 logger('diaspora_request: Cannot resolve diaspora handle ' . $sender_handle . ' for ' . $recipient_handle);
357                 return;
358         }
359
360         $r = q("INSERT INTO `contact` (`uid`, `network`,`addr`,`created`,`url`,`name`,`nick`,`photo`,`pubkey`,`notify`,`poll`,`blocked`,`priority`)
361                 VALUES ( %d, '%s', '%s', '%s','%s','%s','%s','%s','%s','%s','%s',%d,%d) ",
362                 intval($importer['uid']),
363                 dbesc($ret['network']),
364                 dbesc($ret['addr']),
365                 datetime_convert(),
366                 dbesc($ret['url']),
367                 dbesc($ret['name']),
368                 dbesc($ret['nick']),
369                 dbesc($ret['photo']),
370                 dbesc($ret['pubkey']),
371                 dbesc($ret['notify']),
372                 dbesc($ret['poll']),
373                 1,
374                 2
375         );
376                  
377         // find the contact record we just created
378
379         $contact_record = diaspora_get_contact_by_handle($importer['uid'],$sender_handle);
380
381         $hash = random_string() . (string) time();   // Generate a confirm_key
382         
383         if($contact_record) {
384                 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime` )
385                         VALUES ( %d, %d, %d, %d, '%s', '%s', '%s' )",
386                         intval($importer['uid']),
387                         intval($contact_record['id']),
388                         0,
389                         0,
390                         dbesc( t('Sharing notification from Diaspora network')),
391                         dbesc($hash),
392                         dbesc(datetime_convert())
393                 );
394         }
395
396         return;
397 }
398
399 function diaspora_post($importer,$xml) {
400
401         $guid = notags(unxmlify($xml->guid));
402         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
403
404         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
405         if(! $contact)
406                 return;
407
408         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
409                 logger('diaspora_post: Ignoring this author.');
410                 http_status_exit(202);
411                 // NOTREACHED
412         }
413
414         $message_id = $diaspora_handle . ':' . $guid;
415         $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1",
416                 intval($importer['uid']),
417                 dbesc($message_id),
418                 dbesc($guid)
419         );
420         if(count($r)) {
421                 logger('diaspora_post: message exists: ' . $guid);
422                 return;
423         }
424
425     // allocate a guid on our system - we aren't fixing any collisions.
426         // we're ignoring them
427
428         $g = q("select * from guid where guid = '%s' limit 1",
429                 dbesc($guid)
430         );
431         if(! count($g)) {
432                 q("insert into guid ( guid ) values ( '%s' )",
433                         dbesc($guid)
434                 );
435         }
436
437         $created = unxmlify($xml->created_at);
438         $private = ((unxmlify($xml->public) == 'false') ? 1 : 0);
439
440         $body = diaspora2bb($xml->raw_message);
441
442         $datarray = array();
443         $datarray['uid'] = $importer['uid'];
444         $datarray['contact-id'] = $contact['id'];
445         $datarray['wall'] = 0;
446         $datarray['guid'] = $guid;
447         $datarray['uri'] = $datarray['parent-uri'] = $message_id;
448         $datarray['created'] = $datarray['edited'] = datetime_convert('UTC','UTC',$created);
449         $datarray['private'] = $private;
450         $datarray['parent'] = 0;
451         $datarray['owner-name'] = $contact['name'];
452         $datarray['owner-link'] = $contact['url'];
453         $datarray['owner-avatar'] = $contact['thumb'];
454         $datarray['author-name'] = $contact['name'];
455         $datarray['author-link'] = $contact['url'];
456         $datarray['author-avatar'] = $contact['thumb'];
457         $datarray['body'] = $body;
458         $datarray['app']  = 'Diaspora';
459
460         $message_id = item_store($datarray);
461
462         if($message_id) {
463                 q("update item set plink = '%s' where id = %d limit 1",
464                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
465                         intval($message_id)
466                 );
467         }
468
469         return;
470
471 }
472
473 function diaspora_comment($importer,$xml,$msg) {
474
475         $guid = notags(unxmlify($xml->guid));
476         $parent_guid = notags(unxmlify($xml->parent_guid));
477         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
478         $target_type = notags(unxmlify($xml->target_type));
479         $text = unxmlify($xml->text);
480         $author_signature = notags(unxmlify($xml->author_signature));
481
482         $parent_author_signature = (($xml->parent_author_signature) ? notags(unxmlify($xml->parent_author_signature)) : '');
483
484         $text = $xml->text;
485
486         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
487         if(! $contact) {
488                 logger('diaspora_comment: cannot find contact: ' . $msg['author']);
489                 return;
490         }
491
492         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
493                 logger('diaspora_comment: Ignoring this author.');
494                 http_status_exit(202);
495                 // NOTREACHED
496         }
497
498         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
499                 intval($importer['uid']),
500                 dbesc($guid)
501         );
502         if(count($r)) {
503                 logger('diaspora_comment: our comment just got relayed back to us (or there was a guid collision) : ' . $guid);
504                 return;
505         }
506
507         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
508                 intval($importer['uid']),
509                 dbesc($parent_guid)
510         );
511         if(! count($r)) {
512                 logger('diaspora_comment: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
513                 return;
514         }
515         $parent_item = $r[0];
516
517         $author_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle;
518
519         $author_signature = base64_decode($author_signature);
520
521         if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
522                 $person = $contact;
523                 $key = $msg['key'];
524         }
525         else {
526                 $person = find_diaspora_person_by_handle($diaspora_handle);     
527
528                 if(is_array($person) && x($person,'pubkey'))
529                         $key = $person['pubkey'];
530                 else {
531                         logger('diaspora_comment: unable to find author details');
532                         return;
533                 }
534         }
535
536         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha')) {
537                 logger('diaspora_comment: verification failed.');
538                 return;
539         }
540
541
542         if($parent_author_signature) {
543                 $owner_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle;
544
545                 $parent_author_signature = base64_decode($parent_author_signature);
546
547                 $key = $msg['key'];
548
549                 if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha')) {
550                         logger('diaspora_comment: owner verification failed.');
551                         return;
552                 }
553         }
554
555         // Phew! Everything checks out. Now create an item.
556
557         $body = diaspora2bb($text);
558
559         $message_id = $diaspora_handle . ':' . $guid;
560
561         $datarray = array();
562         $datarray['uid'] = $importer['uid'];
563         $datarray['contact-id'] = $contact['id'];
564         $datarray['wall'] = $parent_item['wall'];
565         $datarray['gravity'] = GRAVITY_COMMENT;
566         $datarray['guid'] = $guid;
567         $datarray['uri'] = $message_id;
568         $datarray['parent-uri'] = $parent_item['uri'];
569
570         // No timestamps for comments? OK, we'll the use current time.
571         $datarray['created'] = $datarray['edited'] = datetime_convert();
572         $datarray['private'] = $parent_item['private'];
573
574         $datarray['owner-name'] = $contact['name'];
575         $datarray['owner-link'] = $contact['url'];
576         $datarray['owner-avatar'] = $contact['thumb'];
577
578         $datarray['author-name'] = $person['name'];
579         $datarray['author-link'] = $person['url'];
580         $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
581         $datarray['body'] = $body;
582         $datarray['app']  = 'Diaspora';
583
584         $message_id = item_store($datarray);
585
586         if($message_id) {
587                 q("update item set plink = '%s' where id = %d limit 1",
588                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
589                         intval($message_id)
590                 );
591         }
592
593         if(! $parent_author_signature) {
594                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
595                         intval($message_id),
596                         dbesc($author_signed_data),
597                         dbesc(base64_encode($author_signature)),
598                         dbesc($diaspora_handle)
599                 );
600
601                 // if the message isn't already being relayed, notify others
602                 // the existence of parent_author_signature means the parent_author or owner
603                 // is already relaying.
604
605                 proc_run('php','include/notifier.php','comment',$message_id);
606         }
607         return;
608 }
609
610 function diaspora_photo($importer,$xml,$msg) {
611
612         $remote_photo_path = notags(unxmlify($xml->remote_photo_path));
613
614         $remote_photo_name = notags(unxmlify($xml->remote_photo_name));
615
616         $status_message_guid = notags(unxmlify($xml->status_message_guid));
617
618         $guid = notags(unxmlify($xml->guid));
619
620         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
621
622         $public = notags(unxmlify($xml->public));
623
624         $created_at = notags(unxmlify($xml_created_at));
625
626
627         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
628         if(! $contact)
629                 return;
630
631         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
632                 logger('diaspora_photo: Ignoring this author.');
633                 http_status_exit(202);
634                 // NOTREACHED
635         }
636
637         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
638                 intval($importer['uid']),
639                 dbesc($status_message_guid)
640         );
641         if(! count($r)) {
642                 logger('diaspora_photo: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
643                 return;
644         }
645         $parent_item = $r[0];
646
647         $link_text = '[img]' . $remote_photo_path . $remote_photo_name . '[/img]' . "\n";
648
649         $r = q("update item set `body` = '%s' where `id` = %d and `uid` = %d limit 1",
650                 dbesc($link_text . $parent_item['body']),
651                 intval($parent_item['id']),
652                 intval($parent_item['uid'])
653         );
654
655         return;
656 }
657
658
659
660
661 function diaspora_like($importer,$xml,$msg) {
662
663         $a = get_app();
664         $guid = notags(unxmlify($xml->guid));
665         $parent_guid = notags(unxmlify($xml->parent_guid));
666         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
667         $target_type = notags(unxmlify($xml->target_type));
668         $positive = notags(unxmlify($xml->positive));
669         $author_signature = notags(unxmlify($xml->author_signature));
670
671         $parent_author_signature = (($xml->parent_author_signature) ? notags(unxmlify($xml->parent_author_signature)) : '');
672
673         // likes on comments not supported here and likes on photos not supported by Diaspora
674
675         if($target_type !== 'Post')
676                 return;
677
678         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
679         if(! $contact) {
680                 logger('diaspora_like: cannot find contact: ' . $msg['author']);
681                 return;
682         }
683
684         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
685                 logger('diaspora_like: Ignoring this author.');
686                 http_status_exit(202);
687                 // NOTREACHED
688         }
689
690         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
691                 intval($importer['uid']),
692                 dbesc($parent_guid)
693         );
694         if(! count($r)) {
695                 logger('diaspora_like: parent item not found: ' . $guid);
696                 return;
697         }
698
699         $parent_item = $r[0];
700
701         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
702                 intval($importer['uid']),
703                 dbesc($guid)
704         );
705         if(count($r)) {
706                 if($positive === 'true') {
707                         logger('diaspora_like: duplicate like: ' . $guid);
708                         return;
709                 } 
710                 if($positive === 'false') {
711                         q("UPDATE `item` SET `deleted` = 1 WHERE `id` = %d AND `uid` = %d LIMIT 1",
712                                 intval($r[0]['id']),
713                                 intval($importer['uid'])
714                         );
715                         // FIXME
716                         //  send notification via proc_run()
717                         return;
718                 }
719         }
720         if($positive === 'false') {
721                 logger('diaspora_like: unlike received with no corresponding like');
722                 return; 
723         }
724
725         $author_signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle;
726
727         $author_signature = base64_decode($author_signature);
728
729         if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
730                 $person = $contact;
731                 $key = $msg['key'];
732         }
733         else {
734                 $person = find_diaspora_person_by_handle($diaspora_handle);     
735                 if(is_array($person) && x($person,'pubkey'))
736                         $key = $person['pubkey'];
737                 else {
738                         logger('diaspora_like: unable to find author details');
739                         return;
740                 }
741         }
742
743         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha')) {
744                 logger('diaspora_like: verification failed.');
745                 return;
746         }
747
748         if($parent_author_signature) {
749
750                 $owner_signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle;
751
752                 $parent_author_signature = base64_decode($parent_author_signature);
753
754                 $key = $msg['key'];
755
756                 if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha')) {
757                         logger('diaspora_like: owner verification failed.');
758                         return;
759                 }
760         }
761
762         // Phew! Everything checks out. Now create an item.
763
764         $uri = $diaspora_handle . ':' . $guid;
765
766         $activity = ACTIVITY_LIKE;
767         $post_type = (($parent_item['resource-id']) ? t('photo') : t('status'));
768         $objtype = (($parent_item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); 
769         $link = xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . '" />' . "\n") ;
770         $body = $parent_item['body'];
771
772         $obj = <<< EOT
773
774         <object>
775                 <type>$objtype</type>
776                 <local>1</local>
777                 <id>{$parent_item['uri']}</id>
778                 <link>$link</link>
779                 <title></title>
780                 <content>$body</content>
781         </object>
782 EOT;
783         $bodyverb = t('%1$s likes %2$s\'s %3$s');
784
785         $arr = array();
786
787         $arr['uri'] = $uri;
788         $arr['uid'] = $importer['uid'];
789         $arr['guid'] = $guid;
790         $arr['contact-id'] = $contact['id'];
791         $arr['type'] = 'activity';
792         $arr['wall'] = $parent_item['wall'];
793         $arr['gravity'] = GRAVITY_LIKE;
794         $arr['parent'] = $parent_item['id'];
795         $arr['parent-uri'] = $parent_item['uri'];
796
797         $arr['owner-name'] = $contact['name'];
798         $arr['owner-link'] = $contact['url'];
799         $arr['owner-avatar'] = $contact['thumb'];
800
801         $arr['author-name'] = $person['name'];
802         $arr['author-link'] = $person['url'];
803         $arr['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
804         
805         $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
806         $alink = '[url=' . $parent_item['author-link'] . ']' . $parent_item['author-name'] . '[/url]';
807         $plink = '[url=' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . ']' . $post_type . '[/url]';
808         $arr['body'] =  sprintf( $bodyverb, $ulink, $alink, $plink );
809
810         $arr['app']  = 'Diaspora';
811
812         $arr['private'] = $parent_item['private'];
813         $arr['verb'] = $activity;
814         $arr['object-type'] = $objtype;
815         $arr['object'] = $obj;
816         $arr['visible'] = 1;
817         $arr['unseen'] = 1;
818         $arr['last-child'] = 0;
819
820         $message_id = item_store($arr);
821
822
823         if($message_id) {
824                 q("update item set plink = '%s' where id = %d limit 1",
825                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
826                         intval($message_id)
827                 );
828         }
829
830         if(! $parent_author_signature) {
831                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
832                         intval($message_id),
833                         dbesc($author_signed_data),
834                         dbesc(base64_encode($author_signature)),
835                         dbesc($diaspora_handle)
836                 );
837         }
838
839         // if the message isn't already being relayed, notify others
840         // the existence of parent_author_signature means the parent_author or owner
841         // is already relaying.
842
843         if(! $parent_author_signature)
844                 proc_run('php','include/notifier.php','comment',$message_id);
845
846         return;
847 }
848
849 function diaspora_retraction($importer,$xml) {
850
851         $guid = notags(unxmlify($xml->guid));
852         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
853         $type = notags(unxmlify($xml->type));
854
855         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
856         if(! $contact)
857                 return;
858
859         if($type === 'Person') {
860                 contact_remove($contact['id']);
861         }
862         elseif($type === 'Post') {
863                 $r = q("select * from item where guid = '%s' and uid = %d limit 1",
864                         dbesc('guid'),
865                         intval($importer['uid'])
866                 );
867                 if(count($r)) {
868                         if(link_compare($r[0]['author-link'],$contact['url'])) {
869                                 q("update item set `deleted` = 1, `changed` = '%s' where `id` = %d limit 1",
870                                         dbesc(datetime_convert()),                      
871                                         intval($r[0]['id'])
872                                 );
873                         }
874                 }
875         }
876
877         http_exit_status(202);
878         // NOTREACHED
879 }
880
881 function diaspora_share($me,$contact) {
882         $a = get_app();
883         $myaddr = $me['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
884         $theiraddr = $contact['addr'];
885
886         $tpl = get_markup_template('diaspora_share.tpl');
887         $msg = replace_macros($tpl, array(
888                 '$sender' => $myaddr,
889                 '$recipient' => $theiraddr
890         ));
891
892         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
893
894         return(diaspora_transmit($owner,$contact,$slap));
895 }
896
897 function diaspora_unshare($me,$contact) {
898
899         $a = get_app();
900         $myaddr = $me['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
901
902         $tpl = get_markup_template('diaspora_retract.tpl');
903         $msg = replace_macros($tpl, array(
904                 '$guid'   => $me['guid'],
905                 '$type'   => 'Person',
906                 '$handle' => $myaddr
907         ));
908
909         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
910
911         return(diaspora_transmit($owner,$contact,$slap));
912
913 }
914
915
916
917 function diaspora_send_status($item,$owner,$contact) {
918
919         $a = get_app();
920         $myaddr = $owner['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
921         $theiraddr = $contact['addr'];
922
923         $images = array();
924
925         $body = $item['body'];
926
927         $cnt = preg_match_all('|\[img\](.*?)\[\/img\]|',$body,$matches,PREG_SET_ORDER);
928         if($cnt) {
929                 foreach($matches as $mtch) {
930                         $detail = array();
931                         $detail['str'] = $mtch[0];
932                         $detail['path'] = dirname($mtch[1]) . '/';
933                         $detail['file'] = basename($mtch[1]);
934                         $detail['guid'] = $item['guid'];
935                         $detail['handle'] = $myaddr;
936                         $images[] = $detail;
937                         $body = str_replace($detail['str'],t('link'),$body);
938                 }
939         }       
940
941         $body = xmlify(html_entity_decode(bb2diaspora($body)));
942
943         $public = (($item['private']) ? 'false' : 'true');
944
945         require_once('include/datetime.php');
946         $created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C');
947
948         $tpl = get_markup_template('diaspora_post.tpl');
949         $msg = replace_macros($tpl, array(
950                 '$body' => $body,
951                 '$guid' => $item['guid'],
952                 '$handle' => xmlify($myaddr),
953                 '$public' => $public,
954                 '$created' => $created
955         ));
956
957         logger('diaspora_send_status: ' . $owner['username'] . ' -> ' . $contact['name'] . ' base message: ' . $msg, LOGGER_DATA);
958
959         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'])));
960
961         $return_code = diaspora_transmit($owner,$contact,$slap);
962
963         if(count($images)) {
964                 diaspora_send_images($item,$owner,$contact,$images);
965         }
966
967         return $return_code;
968 }
969
970
971 function diaspora_send_images($item,$owner,$contact,$images) {
972         $a = get_app();
973         if(! count($images))
974                 return;
975         $mysite = substr($a->get_baseurl(),strpos($a->get_baseurl(),'://') + 3) . '/photo';
976
977         $tpl = get_markup_template('diaspora_photo.tpl');
978         foreach($images as $image) {
979                 if(! stristr($image['path'],$mysite))
980                         continue;
981                 $resource = str_replace('.jpg','',$image['file']);
982                 $resource = substr($resource,0,strpos($resource,'-'));
983
984                 $r = q("select * from photo where `resource-id` = '%s' and `uid` = %d limit 1",
985                         dbesc($resource),
986                         intval($owner['uid'])
987                 );
988                 if(! count($r))
989                         continue;
990                 $public = (($r[0]['allow_cid'] || $r[0]['allow_gid'] || $r[0]['deny_cid'] || $r[0]['deny_gid']) ? 'false' : 'true' );
991                 $msg = replace_macros($tpl,array(               
992                         '$path' => xmlify($image['path']),
993                         '$filename' => xmlify($image['file']),
994                         '$msg_guid' => xmlify($image['guid']),
995                         '$guid' => xmlify($r[0]['guid']),
996                         '$handle' => xmlify($image['handle']),
997                         '$public' => xmlify($public),
998                         '$created_at' => xmlify(datetime_convert('UTC','UTC',$r[0]['created'],'Y-m-d H:i:s \U\T\C'))
999                 ));
1000
1001
1002                 logger('diaspora_send_photo: base message: ' . $msg, LOGGER_DATA);
1003                 $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'])));
1004
1005                 diaspora_transmit($owner,$contact,$slap);
1006         }
1007
1008 }
1009
1010 function diaspora_send_followup($item,$owner,$contact) {
1011
1012         $a = get_app();
1013         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1014         $theiraddr = $contact['addr'];
1015
1016         $p = q("select guid from item where parent = %d limit 1",
1017                 $item['parent']
1018         );
1019         if(count($p))
1020                 $parent_guid = $p[0]['guid'];
1021         else
1022                 return;
1023
1024         if($item['verb'] === ACTIVITY_LIKE) {
1025                 $tpl = get_markup_template('diaspora_like.tpl');
1026                 $like = true;
1027                 $target_type = 'Post';
1028                 $positive = (($item['deleted']) ? 'false' : 'true');
1029         }
1030         else {
1031                 $tpl = get_markup_template('diaspora_comment.tpl');
1032                 $like = false;
1033         }
1034
1035         $text = html_entity_decode(bb2diaspora($item['body']));
1036
1037         // sign it
1038
1039         if($like)
1040                 $signed_text = $item['guid'] . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $myaddr;
1041         else
1042                 $signed_text = $item['guid'] . ';' . $parent_guid . ';' . $text . ';' . $myaddr;
1043
1044         $authorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha'));
1045
1046         $msg = replace_macros($tpl,array(
1047                 '$guid' => xmlify($item['guid']),
1048                 '$parent_guid' => xmlify($parent_guid),
1049                 '$target_type' =>xmlify($target_type),
1050                 '$authorsig' => xmlify($authorsig),
1051                 '$body' => xmlify($text),
1052                 '$positive' => xmlify($positive),
1053                 '$handle' => xmlify($myaddr)
1054         ));
1055
1056         logger('diaspora_followup: base message: ' . $msg, LOGGER_DATA);
1057
1058         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'])));
1059
1060         return(diaspora_transmit($owner,$contact,$slap));
1061 }
1062
1063
1064 function diaspora_send_relay($item,$owner,$contact) {
1065
1066
1067         $a = get_app();
1068         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1069         $theiraddr = $contact['addr'];
1070
1071
1072         $p = q("select guid from item where parent = %d limit 1",
1073                 $item['parent']
1074         );
1075         if(count($p))
1076                 $parent_guid = $p[0]['guid'];
1077         else
1078                 return;
1079
1080         if($item['verb'] === ACTIVITY_LIKE) {
1081                 $tpl = get_markup_template('diaspora_like_relay.tpl');
1082                 $like = true;
1083                 $target_type = 'Post';
1084                 $positive = (($item['deleted']) ? 'false' : 'true');
1085         }
1086         else {
1087                 $tpl = get_markup_template('diaspora_comment_relay.tpl');
1088                 $like = false;
1089         }
1090
1091         $body = $item['body'];
1092
1093         $text = html_entity_decode(bb2diaspora($body));
1094
1095         // fetch the original signature if somebody sent the post to us to relay
1096         // If we are relaying for a reply originating on our own account, there wasn't a 'send to relay'
1097         // action. It wasn't needed. In that case create the original signature and the 
1098         // owner (parent author) signature
1099         // comments from other networks will be relayed under our name, with a brief 
1100         // preamble to describe what's happening and noting the real author
1101
1102         $r = q("select * from sign where iid = %d limit 1",
1103                 intval($item['id'])
1104         );
1105         if(count($r)) { 
1106                 $orig_sign = $r[0];
1107                 $signed_text = $orig_sign['signed_text'];
1108                 $authorsig = $orig_sign['signature'];
1109                 $handle = $orig_sign['signer'];
1110         }
1111         else {
1112
1113                 $itemcontact = q("select * from contact where `id` = %d limit 1",
1114                         intval($item['contact-id'])
1115                 );
1116                 if(count($itemcontact)) {
1117                         if(! $itemcontact[0]['self']) {
1118                                 $prefix = sprintf( t('[Relayed] Comment authored by %s from network %s'),
1119                                         '['. $item['author-name'] . ']' . '(' . $item['author-link'] . ')',  
1120                                         network_to_name($itemcontact['network'])) . "\n";
1121                                 $body = $prefix . $body;
1122                         }
1123                 }
1124                 else {
1125
1126                         if($like)
1127                                 $signed_text = $item['guid'] . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $myaddr;
1128                         else
1129                                 $signed_text = $item['guid'] . ';' . $parent_guid . ';' . $text . ';' . $myaddr;
1130
1131                         $authorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha'));
1132
1133                         q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1134                                 intval($item['id']),
1135                                 dbesc($signed_text),
1136                                 dbesc(base64_encode($authorsig)),
1137                                 dbesc($myaddr)
1138                         );
1139                         $handle = $myaddr;
1140                 }
1141         }
1142
1143         // sign it
1144
1145         $parentauthorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha'));
1146
1147         $msg = replace_macros($tpl,array(
1148                 '$guid' => xmlify($item['guid']),
1149                 '$parent_guid' => xmlify($parent_guid),
1150                 '$target_type' =>xmlify($target_type),
1151                 '$authorsig' => xmlify($orig_sign['signature']),
1152                 '$parentsig' => xmlify($parentauthorsig),
1153                 '$body' => xmlify($text),
1154                 '$positive' => xmlify($positive),
1155                 '$handle' => xmlify($handle)
1156         ));
1157
1158         logger('diaspora_relay_comment: base message: ' . $msg, LOGGER_DATA);
1159
1160         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'])));
1161
1162         return(diaspora_transmit($owner,$contact,$slap));
1163
1164 }
1165
1166
1167
1168 function diaspora_send_retraction($item,$owner,$contact) {
1169
1170         $a = get_app();
1171         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1172
1173         $tpl = get_markup_template('diaspora_retract.tpl');
1174         $msg = replace_macros($tpl, array(
1175                 '$guid'   => $item['guid'],
1176                 '$type'   => 'Post',
1177                 '$handle' => $myaddr
1178         ));
1179
1180         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'])));
1181
1182         return(diaspora_transmit($owner,$contact,$slap));
1183 }
1184
1185
1186
1187 function diaspora_transmit($owner,$contact,$slap) {
1188
1189         $a = get_app();
1190
1191         post_url($contact['notify'] . '/',$slap);
1192         $return_code = $a->get_curl_code();
1193         logger('diaspora_transmit: returns: ' . $return_code);
1194
1195         if(! $return_code) {
1196                 logger('diaspora_transmit: queue message');
1197                 // queue message for redelivery
1198                 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
1199                         VALUES ( %d, '%s', '%s', '%s') ",
1200                         intval($contact['id']),
1201                         dbesc(datetime_convert()),
1202                         dbesc(datetime_convert()),
1203                         dbesc($slap)
1204                 );
1205         }
1206
1207         return(($return_code) ? $return_code : (-1));
1208 }