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