]> git.mxchange.org Git - friendica.git/blob - include/diaspora.php
don't allow fullscreen for youtube iframe - this makes it hard to visit the network...
[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
7 function diaspora_dispatch($importer,$msg) {
8
9         $parsed_xml = parse_xml_string($msg['message'],false);
10
11         $xmlbase = $parsed_xml->post;
12
13         if($xmlbase->request) {
14                 diaspora_request($importer,$xmlbase->request);
15         }
16         elseif($xmlbase->status_message) {
17                 diaspora_post($importer,$xmlbase->status_message);
18         }
19         elseif($xmlbase->comment) {
20                 diaspora_comment($importer,$xmlbase->comment,$msg);
21         }
22         elseif($xmlbase->like) {
23                 diaspora_like($importer,$xmlbase->like,$msg);
24         }
25         elseif($xmlbase->retraction) {
26                 diaspora_retraction($importer,$xmlbase->retraction,$msg);
27         }
28         elseif($xmlbase->photo) {
29                 diaspora_photo($importer,$xmlbase->photo,$msg);
30         }
31         else {
32                 logger('diaspora_dispatch: unknown message type: ' . print_r($xmlbase,true));
33         }
34         return;
35 }
36
37 function diaspora_get_contact_by_handle($uid,$handle) {
38         $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `addr` = '%s' LIMIT 1",
39                 dbesc(NETWORK_DIASPORA),
40                 intval($uid),
41                 dbesc($handle)
42         );
43         if($r && count($r))
44                 return $r[0];
45         return false;
46 }
47
48 function find_diaspora_person_by_handle($handle) {
49         $r = q("select * from fcontact where network = '%s' and addr = '%s' limit 1",
50                 dbesc(NETWORK_DIASPORA),
51                 dbesc($handle)
52         );
53         if(count($r)) {
54                 // update record occasionally so it doesn't get stale
55                 $d = strtotime($r[0]['updated'] . ' +00:00');
56                 if($d < strtotime('now - 14 days')) {
57                         q("delete from fcontact where id = %d limit 1",
58                                 intval($r[0]['id'])
59                         );
60                 }
61                 else
62                         return $r[0];
63         }
64         require_once('include/Scrape.php');
65         $r = probe_url($handle, PROBE_DIASPORA);
66         if((count($r)) && ($r['network'] === NETWORK_DIASPORA)) {
67                 add_fcontact($r);
68                 return ($r);
69         }
70         return false;
71 }
72
73
74 function get_diaspora_key($uri) {
75         logger('Fetching diaspora key for: ' . $uri);
76
77         $r = find_diaspora_person_by_handle($uri);
78         if($r)
79                 return $r['pubkey'];
80         return '';
81 }
82
83
84 function diaspora_msg_build($msg,$user,$contact,$prvkey,$pubkey) {
85         $a = get_app();
86
87         logger('diaspora_msg_build: ' . $msg, LOGGER_DATA);
88
89         $inner_aes_key = random_string(32);
90         $b_inner_aes_key = base64_encode($inner_aes_key);
91         $inner_iv = random_string(16);
92         $b_inner_iv = base64_encode($inner_iv);
93
94         $outer_aes_key = random_string(32);
95         $b_outer_aes_key = base64_encode($outer_aes_key);
96         $outer_iv = random_string(16);
97         $b_outer_iv = base64_encode($outer_iv);
98         
99         $handle = 'acct:' . $user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
100
101         $padded_data = pkcs5_pad($msg,16);
102         $inner_encrypted = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $padded_data, MCRYPT_MODE_CBC, $inner_iv);
103
104         $b64_data = base64_encode($inner_encrypted);
105
106
107         $b64url_data = base64url_encode($b64_data);
108         $b64url_stripped = str_replace(array("\n","\r"," ","\t"),array('','','',''),$b64url_data);
109     $lines = str_split($b64url_stripped,60);
110     $data = implode("\n",$lines);
111         $data = $data . (($data[-1] != "\n") ? "\n" : '') ;
112         $type = 'application/atom+xml';
113         $encoding = 'base64url';
114         $alg = 'RSA-SHA256';
115
116         $signable_data = $data  . '.' . base64url_encode($type) . "\n" . '.' 
117                 . base64url_encode($encoding) . "\n" . '.' . base64url_encode($alg) . "\n";
118
119         $signature = rsa_sign($signable_data,$prvkey);
120         $sig = base64url_encode($signature);
121
122 $decrypted_header = <<< EOT
123 <decrypted_header>
124   <iv>$b_inner_iv</iv>
125   <aes_key>$b_inner_aes_key</aes_key>
126   <author>
127     <name>{$user['username']}</name>
128     <uri>$handle</uri>
129   </author>
130 </decrypted_header>
131 EOT;
132
133         $decrypted_header = pkcs5_pad($decrypted_header,16);
134
135         $ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $outer_aes_key, $decrypted_header, MCRYPT_MODE_CBC, $outer_iv);
136
137         $outer_json = json_encode(array('iv' => $b_outer_iv,'key' => $b_outer_aes_key));
138
139         $encrypted_outer_key_bundle = '';
140         openssl_public_encrypt($outer_json,$encrypted_outer_key_bundle,$pubkey);
141
142         logger('outer_bundle_encrypt: ' . openssl_error_string());
143         $b64_encrypted_outer_key_bundle = base64_encode($encrypted_outer_key_bundle);
144
145         logger('outer_bundle: ' . $b64_encrypted_outer_key_bundle . ' key: ' . $pubkey);
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);
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                 return;
422
423     // allocate a guid on our system - we aren't fixing any collisions.
424         // we're ignoring them
425
426         $g = q("select * from guid where guid = '%s' limit 1",
427                 dbesc($guid)
428         );
429         if(! count($g)) {
430                 q("insert into guid ( guid ) values ( '%s' )",
431                         dbesc($guid)
432                 );
433         }
434
435         $created = unxmlify($xml->created_at);
436         $private = ((unxmlify($xml->public) == 'false') ? 1 : 0);
437
438         $body = diaspora2bb($xml->raw_message);
439
440         $datarray = array();
441         $datarray['uid'] = $importer['uid'];
442         $datarray['contact-id'] = $contact['id'];
443         $datarray['wall'] = 0;
444         $datarray['guid'] = $guid;
445         $datarray['uri'] = $datarray['parent-uri'] = $message_id;
446         $datarray['created'] = $datarray['edited'] = datetime_convert('UTC','UTC',$created);
447         $datarray['private'] = $private;
448         $datarray['parent'] = 0;
449         $datarray['owner-name'] = $contact['name'];
450         $datarray['owner-link'] = $contact['url'];
451         $datarray['owner-avatar'] = $contact['thumb'];
452         $datarray['author-name'] = $contact['name'];
453         $datarray['author-link'] = $contact['url'];
454         $datarray['author-avatar'] = $contact['thumb'];
455         $datarray['body'] = $body;
456
457         item_store($datarray);
458
459         return;
460
461 }
462
463 function diaspora_comment($importer,$xml,$msg) {
464
465         $guid = notags(unxmlify($xml->guid));
466         $parent_guid = notags(unxmlify($xml->parent_guid));
467         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
468         $target_type = notags(unxmlify($xml->target_type));
469         $text = unxmlify($xml->text);
470         $author_signature = notags(unxmlify($xml->author_signature));
471
472         $parent_author_signature = (($xml->parent_author_signature) ? notags(unxmlify($xml->parent_author_signature)) : '');
473
474         $text = $xml->text;
475
476         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
477         if(! $contact)
478                 return;
479
480         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
481                 logger('diaspora_comment: Ignoring this author.');
482                 http_status_exit(202);
483                 // NOTREACHED
484         }
485
486         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
487                 intval($importer['uid']),
488                 dbesc($parent_guid)
489         );
490         if(! count($r)) {
491                 logger('diaspora_comment: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
492                 return;
493         }
494         $parent_item = $r[0];
495
496         $author_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle;
497
498         $author_signature = base64_decode($author_signature);
499
500         if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
501                 $person = $contact;
502                 $key = $msg['key'];
503         }
504         else {
505                 $person = find_diaspora_person_by_handle($diaspora_handle);     
506
507                 if(is_array($person) && x($person,'pubkey'))
508                         $key = $person['pubkey'];
509                 else {
510                         logger('diaspora_comment: unable to find author details');
511                         return;
512                 }
513         }
514
515         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha')) {
516                 logger('diaspora_comment: verification failed.');
517                 return;
518         }
519
520
521         if($parent_author_signature) {
522                 $owner_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle;
523
524                 $parent_author_signature = base64_decode($parent_author_signature);
525
526                 $key = $msg['key'];
527
528                 if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha')) {
529                         logger('diaspora_comment: owner verification failed.');
530                         return;
531                 }
532         }
533
534         // Phew! Everything checks out. Now create an item.
535
536         $body = diaspora2bb($text);
537
538         $message_id = $diaspora_handle . ':' . $guid;
539
540         $datarray = array();
541         $datarray['uid'] = $importer['uid'];
542         $datarray['contact-id'] = $contact['id'];
543         $datarray['wall'] = $parent_item['wall'];
544         $datarray['gravity'] = GRAVITY_COMMENT;
545         $datarray['guid'] = $guid;
546         $datarray['uri'] = $message_id;
547         $datarray['parent-uri'] = $parent_item['uri'];
548
549         // No timestamps for comments? OK, we'll the use current time.
550         $datarray['created'] = $datarray['edited'] = datetime_convert();
551         $datarray['private'] = $parent_item['private'];
552
553         $datarray['owner-name'] = $contact['name'];
554         $datarray['owner-link'] = $contact['url'];
555         $datarray['owner-avatar'] = $contact['thumb'];
556
557         $datarray['author-name'] = $person['name'];
558         $datarray['author-link'] = $person['url'];
559         $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
560         $datarray['body'] = $body;
561
562         $message_id = item_store($datarray);
563
564         if(! $parent_author_signature) {
565                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
566                         intval($message_id),
567                         dbesc($author_signed_data),
568                         dbesc(base64_encode($author_signature)),
569                         dbesc($diaspora_handle)
570                 );
571
572                 // if the message isn't already being relayed, notify others
573                 // the existence of parent_author_signature means the parent_author or owner
574                 // is already relaying.
575
576                 proc_run('php','include/notifier.php','comment',$message_id);
577         }
578         return;
579 }
580
581 function diaspora_photo($importer,$xml,$msg) {
582
583         $remote_photo_path = notags(unxmlify($xml->remote_photo_path));
584
585         $remote_photo_name = notags(unxmlify($xml->remote_photo_name));
586
587         $status_message_guid = notags(unxmlify($xml->status_message_guid));
588
589         $guid = notags(unxmlify($xml->guid));
590
591         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
592
593         $public = notags(unxmlify($xml->public));
594
595         $created_at = notags(unxmlify($xml_created_at));
596
597
598         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
599         if(! $contact)
600                 return;
601
602         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
603                 logger('diaspora_photo: Ignoring this author.');
604                 http_status_exit(202);
605                 // NOTREACHED
606         }
607
608         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
609                 intval($importer['uid']),
610                 dbesc($status_message_guid)
611         );
612         if(! count($r)) {
613                 logger('diaspora_photo: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
614                 return;
615         }
616         $parent_item = $r[0];
617
618         $link_text = '[img]' . $remote_photo_path . $remote_photo_name . '[/img]' . "\n";
619
620         $r = q("update item set `body` = '%s' where `id` = %d and `uid` = %d limit 1",
621                 dbesc($link_text . $parent_item['body']),
622                 intval($parent_item['id']),
623                 intval($parent_item['uid'])
624         );
625
626         return;
627 }
628
629
630
631
632 function diaspora_like($importer,$xml,$msg) {
633
634         $a = get_app();
635         $guid = notags(unxmlify($xml->guid));
636         $parent_guid = notags(unxmlify($xml->parent_guid));
637         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
638         $target_type = notags(unxmlify($xml->target_type));
639         $positive = notags(unxmlify($xml->positive));
640         $author_signature = notags(unxmlify($xml->author_signature));
641
642         $parent_author_signature = (($xml->parent_author_signature) ? notags(unxmlify($xml->parent_author_signature)) : '');
643
644         // likes on comments not supported here and likes on photos not supported by Diaspora
645
646         if($target_type !== 'Post')
647                 return;
648
649         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
650         if(! $contact)
651                 return;
652
653         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
654                 logger('diaspora_like: Ignoring this author.');
655                 http_status_exit(202);
656                 // NOTREACHED
657         }
658
659         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
660                 intval($importer['uid']),
661                 dbesc($parent_guid)
662         );
663         if(! count($r)) {
664                 logger('diaspora_like: parent item not found: ' . $guid);
665                 return;
666         }
667
668         $parent_item = $r[0];
669
670         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
671                 intval($importer['uid']),
672                 dbesc($guid)
673         );
674         if(count($r)) {
675                 if($positive === 'true') {
676                         logger('diaspora_like: duplicate like: ' . $guid);
677                         return;
678                 } 
679                 if($positive === 'false') {
680                         q("UPDATE `item` SET `deleted` = 1 WHERE `id` = %d AND `uid` = %d LIMIT 1",
681                                 intval($r[0]['id']),
682                                 intval($importer['uid'])
683                         );
684                         // FIXME
685                         //  send notification via proc_run()
686                         return;
687                 }
688         }
689         if($positive === 'false') {
690                 logger('diaspora_like: unlike received with no corresponding like');
691                 return; 
692         }
693
694         $author_signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle;
695
696         $author_signature = base64_decode($author_signature);
697
698         if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
699                 $person = $contact;
700                 $key = $msg['key'];
701         }
702         else {
703                 $person = find_diaspora_person_by_handle($diaspora_handle);     
704                 if(is_array($person) && x($person,'pubkey'))
705                         $key = $person['pubkey'];
706                 else {
707                         logger('diaspora_like: unable to find author details');
708                         return;
709                 }
710         }
711
712         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha')) {
713                 logger('diaspora_like: verification failed.');
714                 return;
715         }
716
717         if($parent_author_signature) {
718 //              $owner_signed_data = $guid . ';' . $parent_guid . ';' . $target_type . ';' . $positive . ';' . $msg['author'];
719                 $owner_signed_data = $guid . ';' . $parent_guid . ';' . $target_type . ';' . $positive . ';' . $diaspora_handle;
720
721                 $parent_author_signature = base64_decode($parent_author_signature);
722
723                 $key = $msg['key'];
724
725                 if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha')) {
726                         logger('diaspora_like: owner verification failed.');
727                         return;
728                 }
729         }
730
731         // Phew! Everything checks out. Now create an item.
732
733         $uri = $diaspora_handle . ':' . $guid;
734
735         $activity = ACTIVITY_LIKE;
736         $post_type = (($parent_item['resource-id']) ? t('photo') : t('status'));
737         $objtype = (($parent_item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); 
738         $link = xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . '" />' . "\n") ;
739         $body = $parent_item['body'];
740
741         $obj = <<< EOT
742
743         <object>
744                 <type>$objtype</type>
745                 <local>1</local>
746                 <id>{$parent_item['uri']}</id>
747                 <link>$link</link>
748                 <title></title>
749                 <content>$body</content>
750         </object>
751 EOT;
752         $bodyverb = t('%1$s likes %2$s\'s %3$s');
753
754         $arr = array();
755
756         $arr['uri'] = $uri;
757         $arr['uid'] = $importer['uid'];
758         $arr['guid'] = $guid;
759         $arr['contact-id'] = $contact['id'];
760         $arr['type'] = 'activity';
761         $arr['wall'] = $parent_item['wall'];
762         $arr['gravity'] = GRAVITY_LIKE;
763         $arr['parent'] = $parent_item['id'];
764         $arr['parent-uri'] = $parent_item['uri'];
765
766         $arr['owner-name'] = $contact['name'];
767         $arr['owner-link'] = $contact['url'];
768         $arr['owner-avatar'] = $contact['thumb'];
769
770         $arr['author-name'] = $person['name'];
771         $arr['author-link'] = $person['url'];
772         $arr['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
773         
774         $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
775         $alink = '[url=' . $parent_item['author-link'] . ']' . $parent_item['author-name'] . '[/url]';
776         $plink = '[url=' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . ']' . $post_type . '[/url]';
777         $arr['body'] =  sprintf( $bodyverb, $ulink, $alink, $plink );
778
779         $arr['private'] = $parent_item['private'];
780         $arr['verb'] = $activity;
781         $arr['object-type'] = $objtype;
782         $arr['object'] = $obj;
783         $arr['visible'] = 1;
784         $arr['unseen'] = 1;
785         $arr['last-child'] = 0;
786
787         $message_id = item_store($arr);
788
789         if(! $parent_author_signature) {
790                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
791                         intval($message_id),
792                         dbesc($author_signed_data),
793                         dbesc(base64_encode($author_signature)),
794                         dbesc($diaspora_handle)
795                 );
796         }
797
798         // if the message isn't already being relayed, notify others
799         // the existence of parent_author_signature means the parent_author or owner
800         // is already relaying.
801
802         if(! $parent_author_signature)
803                 proc_run('php','include/notifier.php','comment',$message_id);
804
805         return;
806 }
807
808 function diaspora_retraction($importer,$xml) {
809
810         $guid = notags(unxmlify($xml->guid));
811         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
812         $type = notags(unxmlify($xml->type));
813
814         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
815         if(! $contact)
816                 return;
817
818         if($type === 'Person') {
819                 contact_remove($contact['id']);
820         }
821         elseif($type === 'Post') {
822                 $r = q("select * from item where guid = '%s' and uid = %d limit 1",
823                         dbesc('guid'),
824                         intval($importer['uid'])
825                 );
826                 if(count($r)) {
827                         if(link_compare($r[0]['author-link'],$contact['url'])) {
828                                 q("update item set `deleted` = 1, `changed` = '%s' where `id` = %d limit 1",
829                                         dbesc(datetime_convert()),                      
830                                         intval($r[0]['id'])
831                                 );
832                         }
833                 }
834         }
835
836         http_exit_status(202);
837         // NOTREACHED
838 }
839
840 function diaspora_share($me,$contact) {
841         $a = get_app();
842         $myaddr = $me['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
843         $theiraddr = $contact['addr'];
844
845         $tpl = get_markup_template('diaspora_share.tpl');
846         $msg = replace_macros($tpl, array(
847                 '$sender' => $myaddr,
848                 '$recipient' => $theiraddr
849         ));
850
851         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
852
853         return(diaspora_transmit($owner,$contact,$slap));
854 }
855
856 function diaspora_unshare($me,$contact) {
857
858         $a = get_app();
859         $myaddr = $me['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
860
861         $tpl = get_markup_template('diaspora_retract.tpl');
862         $msg = replace_macros($tpl, array(
863                 '$guid'   => $me['guid'],
864                 '$type'   => 'Person',
865                 '$handle' => $myaddr
866         ));
867
868         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
869
870         return(diaspora_transmit($owner,$contact,$slap));
871
872 }
873
874
875
876 function diaspora_send_status($item,$owner,$contact) {
877
878         $a = get_app();
879         $myaddr = $owner['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
880         $theiraddr = $contact['addr'];
881
882         $images = array();
883
884         $body = $item['body'];
885
886         $cnt = preg_match_all('|\[img\](.*?)\[\/img\]|',$body,$matches,PREG_SET_ORDER);
887         if($cnt) {
888                 foreach($matches as $mtch) {
889                         $detail = array();
890                         $detail['str'] = $mtch[0];
891                         $detail['path'] = dirname($mtch[1]) . '/';
892                         $detail['file'] = basename($mtch[1]);
893                         $detail['guid'] = $item['guid'];
894                         $detail['handle'] = $myaddr;
895                         $images[] = $detail;
896                         $body = str_replace($detail['str'],t('link'),$body);
897                 }
898         }       
899
900         $body = xmlify(bb2diaspora($body));
901         $public = (($item['private']) ? 'false' : 'true');
902
903         require_once('include/datetime.php');
904         $created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d h:i:s \U\T\C');
905
906         $tpl = get_markup_template('diaspora_post.tpl');
907         $msg = replace_macros($tpl, array(
908                 '$body' => $body,
909                 '$guid' => $item['guid'],
910                 '$handle' => xmlify($myaddr),
911                 '$public' => $public,
912                 '$created' => $created
913         ));
914
915         logger('diaspora_send_status: ' . $owner['username'] . ' -> ' . $contact['name'] . ' base message: ' . $msg, LOGGER_DATA);
916
917         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'])));
918
919         $return_code = diaspora_transmit($owner,$contact,$slap);
920
921         if(count($images)) {
922                 diaspora_send_images($item,$owner,$contact,$images);
923         }
924
925         return $return_code;
926 }
927
928
929 function diaspora_send_images($item,$owner,$contact,$images) {
930         $a = get_app();
931         if(! count($images))
932                 return;
933         $mysite = substr($a->get_baseurl(),strpos($a->get_baseurl(),'://') + 3) . '/photo';
934
935         $tpl = get_markup_template('diaspora_photo.tpl');
936         foreach($images as $image) {
937                 if(! stristr($image['path'],$mysite))
938                         continue;
939                 $resource = str_replace('.jpg','',$image['file']);
940                 $resource = substr($resource,0,strpos($resource,'-'));
941
942                 $r = q("select * from photo where `resource-id` = '%s' and `uid` = %d limit 1",
943                         dbesc($resource),
944                         intval($owner['uid'])
945                 );
946                 if(! count($r))
947                         continue;
948                 $public = (($r[0]['allow_cid'] || $r[0]['allow_gid'] || $r[0]['deny_cid'] || $r[0]['deny_gid']) ? 'false' : 'true' );
949                 $msg = replace_macros($tpl,array(               
950                         '$path' => xmlify($image['path']),
951                         '$filename' => xmlify($image['file']),
952                         '$msg_guid' => xmlify($image['guid']),
953                         '$guid' => xmlify($r[0]['guid']),
954                         '$handle' => xmlify($image['handle']),
955                         '$public' => xmlify($public),
956                         '$created_at' => xmlify(datetime_convert('UTC','UTC',$r[0]['created'],'Y-m-d h:i:s \U\T\C'))
957                 ));
958
959
960                 logger('diaspora_send_photo: base message: ' . $msg, LOGGER_DATA);
961                 $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'])));
962
963                 diaspora_transmit($owner,$contact,$slap);
964         }
965
966 }
967
968 function diaspora_send_followup($item,$owner,$contact) {
969
970         $a = get_app();
971         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
972         $theiraddr = $contact['addr'];
973
974         $p = q("select guid from item where parent = %d limit 1",
975                 $item['parent']
976         );
977         if(count($p))
978                 $parent_guid = $p[0]['guid'];
979         else
980                 return;
981
982         if($item['verb'] === ACTIVITY_LIKE) {
983                 $tpl = get_markup_template('diaspora_like.tpl');
984                 $like = true;
985                 $target_type = 'Post';
986                 $positive = (($item['deleted']) ? 'false' : 'true');
987         }
988         else {
989                 $tpl = get_markup_template('diaspora_comment.tpl');
990                 $like = false;
991         }
992
993         $text = bb2diaspora($item['body']);
994
995         // sign it
996
997         if($like)
998                 $signed_text = $item['guid'] . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $myaddr;
999         else
1000                 $signed_text = $item['guid'] . ';' . $parent_guid . ';' . $text . ';' . $myaddr;
1001
1002         $authorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha'));
1003
1004         $msg = replace_macros($tpl,array(
1005                 '$guid' => xmlify($item['guid']),
1006                 '$parent_guid' => xmlify($parent_guid),
1007                 '$target_type' =>xmlify($target_type),
1008                 '$authorsig' => xmlify($authorsig),
1009                 '$body' => xmlify($text),
1010                 '$positive' => xmlify($positive),
1011                 '$handle' => xmlify($myaddr)
1012         ));
1013
1014         logger('diaspora_followup: base message: ' . $msg, LOGGER_DATA);
1015
1016         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'])));
1017
1018         return(diaspora_transmit($owner,$contact,$slap));
1019 }
1020
1021
1022 function diaspora_send_relay($item,$owner,$contact) {
1023
1024
1025         $a = get_app();
1026         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1027         $theiraddr = $contact['addr'];
1028
1029
1030         $p = q("select guid from item where parent = %d limit 1",
1031                 $item['parent']
1032         );
1033         if(count($p))
1034                 $parent_guid = $p[0]['guid'];
1035         else
1036                 return;
1037
1038         // fetch the original signature 
1039         $r = q("select * from sign where iid = %d limit 1",
1040                 intval($item['id'])
1041         );
1042         if(! count($r)) 
1043                 return;
1044         $orig_sign = $r[0];
1045
1046         if($item['verb'] === ACTIVITY_LIKE) {
1047                 $tpl = get_markup_template('diaspora_like_relay.tpl');
1048                 $like = true;
1049                 $target_type = 'Post';
1050                 $positive = (($item['deleted']) ? 'false' : 'true');
1051         }
1052         else {
1053                 $tpl = get_markup_template('diaspora_comment_relay.tpl');
1054                 $like = false;
1055         }
1056
1057         $text = bb2diaspora($item['body']);
1058
1059         // sign it
1060
1061         if($like)
1062                 $parent_signed_text = $orig_sign['signed_text'];
1063         else
1064                 $parent_signed_text = $orig_sign['signed_text'];
1065
1066         $parentauthorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha'));
1067
1068         $msg = replace_macros($tpl,array(
1069                 '$guid' => xmlify($item['guid']),
1070                 '$parent_guid' => xmlify($parent_guid),
1071                 '$target_type' =>xmlify($target_type),
1072                 '$authorsig' => xmlify($orig_sign['signature']),
1073                 '$parentsig' => xmlify($parentauthorsig),
1074                 '$text' => xmlify($text),
1075                 '$positive' => xmlify($positive),
1076                 '$diaspora_handle' => xmlify($myaddr)
1077         ));
1078
1079         // fetch the original signature 
1080         $r = q("select * from sign where iid = %d limit 1",
1081                 intval($item['id'])
1082         );
1083         if(! count($r)) 
1084                 return;
1085
1086         logger('diaspora_relay_comment: base message: ' . $msg, LOGGER_DATA);
1087
1088         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'])));
1089
1090         return(diaspora_transmit($owner,$contact,$slap));
1091
1092 }
1093
1094
1095
1096 function diaspora_send_retraction($item,$owner,$contact) {
1097
1098         $a = get_app();
1099         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1100
1101         $tpl = get_markup_template('diaspora_retract.tpl');
1102         $msg = replace_macros($tpl, array(
1103                 '$guid'   => $item['guid'],
1104                 '$type'   => 'Post',
1105                 '$handle' => $myaddr
1106         ));
1107
1108         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'])));
1109
1110         return(diaspora_transmit($owner,$contact,$slap));
1111 }
1112
1113
1114
1115 function diaspora_transmit($owner,$contact,$slap) {
1116
1117         $a = get_app();
1118
1119         post_url($contact['notify'] . '/',$slap);
1120         $return_code = $a->get_curl_code();
1121         logger('diaspora_transmit: returns: ' . $return_code);
1122
1123         if(! $return_code) {
1124                 logger('diaspora_transmit: queue message');
1125                 // queue message for redelivery
1126                 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
1127                         VALUES ( %d, '%s', '%s', '%s') ",
1128                         intval($contact['id']),
1129                         dbesc(datetime_convert()),
1130                         dbesc(datetime_convert()),
1131                         dbesc($slap)
1132                 );
1133         }
1134
1135         return(($return_code) ? $return_code : (-1));
1136 }