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