]> git.mxchange.org Git - friendica.git/blob - include/diaspora.php
3ab4542462f8a0852ace3f91360baf0a80efff7a
[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 require_once('include/queue_fn.php');
8
9
10 function diaspora_dispatch_public($msg) {
11
12         $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 ",
13                 dbesc(NETWORK_DIASPORA),
14                 dbesc($msg['author'])
15         );
16         if(count($r)) {
17                 foreach($r as $rr) {
18                         logger('diaspora_public: delivering to: ' . $rr['username']);
19                         diaspora_dispatch($rr,$msg);
20                 }
21         }
22         else
23                 logger('diaspora_public: no subscribers');
24 }
25
26
27
28 function diaspora_dispatch($importer,$msg) {
29
30         $ret = 0;
31
32         // php doesn't like dashes in variable names
33
34         $msg['message'] = str_replace(
35                         array('<activity_streams-photo>','</activity_streams-photo>'),
36                         array('<asphoto>','</asphoto>'),
37                         $msg['message']);
38
39
40         $parsed_xml = parse_xml_string($msg['message'],false);
41
42         $xmlbase = $parsed_xml->post;
43
44         logger('diaspora_dispatch: ' . print_r($xmlbase,true), LOGGER_DEBUG);
45
46
47         if($xmlbase->request) {
48                 $ret = diaspora_request($importer,$xmlbase->request);
49         }
50         elseif($xmlbase->status_message) {
51                 $ret = diaspora_post($importer,$xmlbase->status_message);
52         }
53         elseif($xmlbase->profile) {
54                 $ret = diaspora_profile($importer,$xmlbase->profile);
55         }
56         elseif($xmlbase->comment) {
57                 $ret = diaspora_comment($importer,$xmlbase->comment,$msg);
58         }
59         elseif($xmlbase->like) {
60                 $ret = diaspora_like($importer,$xmlbase->like,$msg);
61         }
62         elseif($xmlbase->asphoto) {
63                 $ret = diaspora_asphoto($importer,$xmlbase->asphoto);
64         }
65         elseif($xmlbase->reshare) {
66                 $ret = diaspora_reshare($importer,$xmlbase->reshare);
67         }
68         elseif($xmlbase->retraction) {
69                 $ret = diaspora_retraction($importer,$xmlbase->retraction,$msg);
70         }
71         elseif($xmlbase->signed_retraction) {
72                 $ret = diaspora_signed_retraction($importer,$xmlbase->retraction,$msg);
73         }
74         elseif($xmlbase->photo) {
75                 $ret = diaspora_photo($importer,$xmlbase->photo,$msg);
76         }
77         elseif($xmlbase->conversation) {
78                 $ret = diaspora_conversation($importer,$xmlbase->conversation,$msg);
79         }
80         elseif($xmlbase->message) {
81                 $ret = diaspora_message($importer,$xmlbase->message,$msg);
82         }
83         else {
84                 logger('diaspora_dispatch: unknown message type: ' . print_r($xmlbase,true));
85         }
86         return $ret;
87 }
88
89 function diaspora_get_contact_by_handle($uid,$handle) {
90         $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `addr` = '%s' LIMIT 1",
91                 dbesc(NETWORK_DIASPORA),
92                 intval($uid),
93                 dbesc($handle)
94         );
95         if($r && count($r))
96                 return $r[0];
97         return false;
98 }
99
100 function find_diaspora_person_by_handle($handle) {
101         $update = false;
102         $r = q("select * from fcontact where network = '%s' and addr = '%s' limit 1",
103                 dbesc(NETWORK_DIASPORA),
104                 dbesc($handle)
105         );
106         if(count($r)) {
107                 logger('find_diaspora_person_by handle: in cache ' . print_r($r,true), LOGGER_DEBUG);
108                 // update record occasionally so it doesn't get stale
109                 $d = strtotime($r[0]['updated'] . ' +00:00');
110                 if($d > strtotime('now - 14 days'))
111                         return $r[0];
112                 $update = true;
113         }
114         logger('find_diaspora_person_by_handle: refresh',LOGGER_DEBUG);
115         require_once('include/Scrape.php');
116         $r = probe_url($handle, PROBE_DIASPORA);
117         if((count($r)) && ($r['network'] === NETWORK_DIASPORA)) {
118                 add_fcontact($r,$update);
119                 return ($r);
120         }
121         return false;
122 }
123
124
125 function get_diaspora_key($uri) {
126         logger('Fetching diaspora key for: ' . $uri);
127
128         $r = find_diaspora_person_by_handle($uri);
129         if($r)
130                 return $r['pubkey'];
131         return '';
132 }
133
134
135 function diaspora_pubmsg_build($msg,$user,$contact,$prvkey,$pubkey) {
136         $a = get_app();
137
138         logger('diaspora_pubmsg_build: ' . $msg, LOGGER_DATA);
139
140         
141         $handle = $user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
142
143 //      $b64_data = base64_encode($msg);
144 //      $b64url_data = base64url_encode($b64_data);
145
146         $b64url_data = base64url_encode($msg);
147
148         $data = str_replace(array("\n","\r"," ","\t"),array('','','',''),$b64url_data);
149
150         $type = 'application/xml';
151         $encoding = 'base64url';
152         $alg = 'RSA-SHA256';
153
154         $signable_data = $data  . '.' . base64url_encode($type) . '.' 
155                 . base64url_encode($encoding) . '.' . base64url_encode($alg) ;
156
157         $signature = rsa_sign($signable_data,$prvkey);
158         $sig = base64url_encode($signature);
159
160 $magic_env = <<< EOT
161 <?xml version='1.0' encoding='UTF-8'?>
162 <diaspora xmlns="https://joindiaspora.com/protocol" xmlns:me="http://salmon-protocol.org/ns/magic-env" >
163   <header>
164     <author_id>$handle</author_id>
165   </header>
166   <me:env>
167     <me:encoding>base64url</me:encoding>
168     <me:alg>RSA-SHA256</me:alg>
169     <me:data type="application/xml">$data</me:data>
170     <me:sig>$sig</me:sig>
171   </me:env>
172 </diaspora>
173 EOT;
174
175         logger('diaspora_pubmsg_build: magic_env: ' . $magic_env, LOGGER_DATA);
176         return $magic_env;
177
178 }
179
180
181
182
183 function diaspora_msg_build($msg,$user,$contact,$prvkey,$pubkey,$public = false) {
184         $a = get_app();
185
186         if($public)
187                 return diaspora_pubmsg_build($msg,$user,$contact,$prvkey,$pubkey);
188
189         logger('diaspora_msg_build: ' . $msg, LOGGER_DATA);
190
191         // without a public key nothing will work
192
193         if(! $pubkey) {
194                 logger('diaspora_msg_build: pubkey missing: contact id: ' . $contact['id']);
195                 return '';
196         }
197
198         $inner_aes_key = random_string(32);
199         $b_inner_aes_key = base64_encode($inner_aes_key);
200         $inner_iv = random_string(16);
201         $b_inner_iv = base64_encode($inner_iv);
202
203         $outer_aes_key = random_string(32);
204         $b_outer_aes_key = base64_encode($outer_aes_key);
205         $outer_iv = random_string(16);
206         $b_outer_iv = base64_encode($outer_iv);
207         
208         $handle = $user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
209
210         $padded_data = pkcs5_pad($msg,16);
211         $inner_encrypted = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $padded_data, MCRYPT_MODE_CBC, $inner_iv);
212
213         $b64_data = base64_encode($inner_encrypted);
214
215
216         $b64url_data = base64url_encode($b64_data);
217         $data = str_replace(array("\n","\r"," ","\t"),array('','','',''),$b64url_data);
218
219         $type = 'application/xml';
220         $encoding = 'base64url';
221         $alg = 'RSA-SHA256';
222
223         $signable_data = $data  . '.' . base64url_encode($type) . '.' 
224                 . base64url_encode($encoding) . '.' . base64url_encode($alg) ;
225
226         $signature = rsa_sign($signable_data,$prvkey);
227         $sig = base64url_encode($signature);
228
229 $decrypted_header = <<< EOT
230 <decrypted_header>
231   <iv>$b_inner_iv</iv>
232   <aes_key>$b_inner_aes_key</aes_key>
233   <author_id>$handle</author_id>
234 </decrypted_header>
235 EOT;
236
237         $decrypted_header = pkcs5_pad($decrypted_header,16);
238
239         $ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $outer_aes_key, $decrypted_header, MCRYPT_MODE_CBC, $outer_iv);
240
241         $outer_json = json_encode(array('iv' => $b_outer_iv,'key' => $b_outer_aes_key));
242
243         $encrypted_outer_key_bundle = '';
244         openssl_public_encrypt($outer_json,$encrypted_outer_key_bundle,$pubkey);
245
246         $b64_encrypted_outer_key_bundle = base64_encode($encrypted_outer_key_bundle);
247
248         logger('outer_bundle: ' . $b64_encrypted_outer_key_bundle . ' key: ' . $pubkey, LOGGER_DATA);
249
250         $encrypted_header_json_object = json_encode(array('aes_key' => base64_encode($encrypted_outer_key_bundle), 
251                 'ciphertext' => base64_encode($ciphertext)));
252         $cipher_json = base64_encode($encrypted_header_json_object);
253
254         $encrypted_header = '<encrypted_header>' . $cipher_json . '</encrypted_header>';
255
256 $magic_env = <<< EOT
257 <?xml version='1.0' encoding='UTF-8'?>
258 <diaspora xmlns="https://joindiaspora.com/protocol" xmlns:me="http://salmon-protocol.org/ns/magic-env" >
259   $encrypted_header
260   <me:env>
261     <me:encoding>base64url</me:encoding>
262     <me:alg>RSA-SHA256</me:alg>
263     <me:data type="application/xml">$data</me:data>
264     <me:sig>$sig</me:sig>
265   </me:env>
266 </diaspora>
267 EOT;
268
269         logger('diaspora_msg_build: magic_env: ' . $magic_env, LOGGER_DATA);
270         return $magic_env;
271
272 }
273
274 /**
275  *
276  * diaspora_decode($importer,$xml)
277  *   array $importer -> from user table
278  *   string $xml -> urldecoded Diaspora salmon 
279  *
280  * Returns array
281  * 'message' -> decoded Diaspora XML message
282  * 'author' -> author diaspora handle
283  * 'key' -> author public key (converted to pkcs#8)
284  *
285  * Author and key are used elsewhere to save a lookup for verifying replies and likes
286  */
287
288
289 function diaspora_decode($importer,$xml) {
290
291         $public = false;
292         $basedom = parse_xml_string($xml);
293
294         $children = $basedom->children('https://joindiaspora.com/protocol');
295
296         if($children->header) {
297                 $public = true;
298                 $author_link = str_replace('acct:','',$children->header->author_id);
299         }
300         else {
301
302                 $encrypted_header = json_decode(base64_decode($children->encrypted_header));
303         
304                 $encrypted_aes_key_bundle = base64_decode($encrypted_header->aes_key);
305                 $ciphertext = base64_decode($encrypted_header->ciphertext);
306
307                 $outer_key_bundle = '';
308                 openssl_private_decrypt($encrypted_aes_key_bundle,$outer_key_bundle,$importer['prvkey']);
309
310                 $j_outer_key_bundle = json_decode($outer_key_bundle);
311
312                 $outer_iv = base64_decode($j_outer_key_bundle->iv);
313                 $outer_key = base64_decode($j_outer_key_bundle->key);
314
315                 $decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $outer_key, $ciphertext, MCRYPT_MODE_CBC, $outer_iv);
316
317
318                 $decrypted = pkcs5_unpad($decrypted);
319
320                 /**
321                  * $decrypted now contains something like
322                  *
323                  *  <decrypted_header>
324                  *     <iv>8e+G2+ET8l5BPuW0sVTnQw==</iv>
325                  *     <aes_key>UvSMb4puPeB14STkcDWq+4QE302Edu15oaprAQSkLKU=</aes_key>
326
327 ***** OBSOLETE
328
329                  *     <author>
330                  *       <name>Ryan Hughes</name>
331                  *       <uri>acct:galaxor@diaspora.pirateship.org</uri>
332                  *     </author>
333
334 ***** CURRENT
335
336                  *     <author_id>galaxor@diaspora.priateship.org</author_id>
337
338 ***** END DIFFS
339
340                  *  </decrypted_header>
341                  */
342
343                 logger('decrypted: ' . $decrypted, LOGGER_DEBUG);
344                 $idom = parse_xml_string($decrypted,false);
345
346                 $inner_iv = base64_decode($idom->iv);
347                 $inner_aes_key = base64_decode($idom->aes_key);
348
349                 $author_link = str_replace('acct:','',$idom->author_id);
350
351         }
352
353         $dom = $basedom->children(NAMESPACE_SALMON_ME);
354
355         // figure out where in the DOM tree our data is hiding
356
357         if($dom->provenance->data)
358                 $base = $dom->provenance;
359         elseif($dom->env->data)
360                 $base = $dom->env;
361         elseif($dom->data)
362                 $base = $dom;
363         
364         if(! $base) {
365                 logger('mod-diaspora: unable to locate salmon data in xml ');
366                 http_status_exit(400);
367         }
368
369
370         // Stash the signature away for now. We have to find their key or it won't be good for anything.
371         $signature = base64url_decode($base->sig);
372
373         // unpack the  data
374
375         // strip whitespace so our data element will return to one big base64 blob
376         $data = str_replace(array(" ","\t","\r","\n"),array("","","",""),$base->data);
377
378
379         // stash away some other stuff for later
380
381         $type = $base->data[0]->attributes()->type[0];
382         $keyhash = $base->sig[0]->attributes()->keyhash[0];
383         $encoding = $base->encoding;
384         $alg = $base->alg;
385
386
387         $signed_data = $data  . '.' . base64url_encode($type) . '.' . base64url_encode($encoding) . '.' . base64url_encode($alg);
388
389
390         // decode the data
391         $data = base64url_decode($data);
392
393
394         if($public) {
395                 $inner_decrypted = $data;
396         }
397         else {
398
399                 // Decode the encrypted blob
400
401                 $inner_encrypted = base64_decode($data);
402                 $inner_decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $inner_aes_key, $inner_encrypted, MCRYPT_MODE_CBC, $inner_iv);
403                 $inner_decrypted = pkcs5_unpad($inner_decrypted);
404         }
405
406         if(! $author_link) {
407                 logger('mod-diaspora: Could not retrieve author URI.');
408                 http_status_exit(400);
409         }
410
411         // Once we have the author URI, go to the web and try to find their public key
412         // (first this will look it up locally if it is in the fcontact cache)
413         // This will also convert diaspora public key from pkcs#1 to pkcs#8
414
415         logger('mod-diaspora: Fetching key for ' . $author_link );
416         $key = get_diaspora_key($author_link);
417
418         if(! $key) {
419                 logger('mod-diaspora: Could not retrieve author key.');
420                 http_status_exit(400);
421         }
422
423         $verify = rsa_verify($signed_data,$signature,$key);
424
425         if(! $verify) {
426                 logger('mod-diaspora: Message did not verify. Discarding.');
427                 http_status_exit(400);
428         }
429
430         logger('mod-diaspora: Message verified.');
431
432         return array('message' => $inner_decrypted, 'author' => $author_link, 'key' => $key);
433
434 }
435
436         
437 function diaspora_request($importer,$xml) {
438
439         $a = get_app();
440
441         $sender_handle = unxmlify($xml->sender_handle);
442         $recipient_handle = unxmlify($xml->recipient_handle);
443
444         if(! $sender_handle || ! $recipient_handle)
445                 return;
446          
447         $contact = diaspora_get_contact_by_handle($importer['uid'],$sender_handle);
448
449         if($contact) {
450
451                 // perhaps we were already sharing with this person. Now they're sharing with us.
452                 // That makes us friends.
453
454                 if($contact['rel'] == CONTACT_IS_FOLLOWER) {
455                         q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d LIMIT 1",
456                                 intval(CONTACT_IS_FRIEND),
457                                 intval($contact['id']),
458                                 intval($importer['uid'])
459                         );
460                 }
461                 // send notification
462
463                 $r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
464                         intval($importer['uid'])
465                 );
466
467                 if((count($r)) && ($r[0]['hide-friends'] == 0)) {
468                         require_once('include/items.php');
469
470                         $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
471                                 intval($importer['uid'])
472                         );
473
474                         // they are not CONTACT_IS_FOLLOWER anymore but that's what we have in the array
475
476                         if(count($self) && $contact['rel'] == CONTACT_IS_FOLLOWER) {
477
478                                 $arr = array();
479                                 $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), $importer['uid']); 
480                                 $arr['uid'] = $importer['uid'];
481                                 $arr['contact-id'] = $self[0]['id'];
482                                 $arr['wall'] = 1;
483                                 $arr['type'] = 'wall';
484                                 $arr['gravity'] = 0;
485                                 $arr['origin'] = 1;
486                                 $arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
487                                 $arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
488                                 $arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
489                                 $arr['verb'] = ACTIVITY_FRIEND;
490                                 $arr['object-type'] = ACTIVITY_OBJ_PERSON;
491                                 
492                                 $A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
493                                 $B = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
494                                 $BPhoto = '[url=' . $contact['url'] . ']' . '[img]' . $contact['thumb'] . '[/img][/url]';
495                                 $arr['body'] =  sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto;
496
497                                 $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $contact['name'] . '</title>'
498                                         . '<id>' . $contact['url'] . '/' . $contact['name'] . '</id>';
499                                 $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $contact['url'] . '" />' . "\n");
500                                 $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $contact['thumb'] . '" />' . "\n");
501                                 $arr['object'] .= '</link></object>' . "\n";
502                                 $arr['last-child'] = 1;
503
504                                 $arr['allow_cid'] = $user[0]['allow_cid'];
505                                 $arr['allow_gid'] = $user[0]['allow_gid'];
506                                 $arr['deny_cid']  = $user[0]['deny_cid'];
507                                 $arr['deny_gid']  = $user[0]['deny_gid'];
508
509                                 $i = item_store($arr);
510                                 if($i)
511                                 proc_run('php',"include/notifier.php","activity","$i");
512
513                         }
514
515                 }
516
517                 return;
518         }
519         
520         $ret = find_diaspora_person_by_handle($sender_handle);
521
522
523         if((! count($ret)) || ($ret['network'] != NETWORK_DIASPORA)) {
524                 logger('diaspora_request: Cannot resolve diaspora handle ' . $sender_handle . ' for ' . $recipient_handle);
525                 return;
526         }
527
528         $batch = (($ret['batch']) ? $ret['batch'] : implode('/', array_slice(explode('/',$ret['url']),0,3)) . '/receive/public');
529
530         $r = q("INSERT INTO `contact` (`uid`, `network`,`addr`,`created`,`url`,`nurl`,`batch`,`name`,`nick`,`photo`,`pubkey`,`notify`,`poll`,`blocked`,`priority`)
531                 VALUES ( %d, '%s', '%s', '%s', '%s','%s','%s','%s','%s','%s','%s','%s','%s',%d,%d) ",
532                 intval($importer['uid']),
533                 dbesc($ret['network']),
534                 dbesc($ret['addr']),
535                 datetime_convert(),
536                 dbesc($ret['url']),
537                 dbesc(normalise_link($ret['url'])),
538                 dbesc($batch),
539                 dbesc($ret['name']),
540                 dbesc($ret['nick']),
541                 dbesc($ret['photo']),
542                 dbesc($ret['pubkey']),
543                 dbesc($ret['notify']),
544                 dbesc($ret['poll']),
545                 1,
546                 2
547         );
548                  
549         // find the contact record we just created
550
551         $contact_record = diaspora_get_contact_by_handle($importer['uid'],$sender_handle);
552
553         $hash = random_string() . (string) time();   // Generate a confirm_key
554         
555         if($contact_record) {
556                 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime` )
557                         VALUES ( %d, %d, %d, %d, '%s', '%s', '%s' )",
558                         intval($importer['uid']),
559                         intval($contact_record['id']),
560                         0,
561                         0,
562                         dbesc( t('Sharing notification from Diaspora network')),
563                         dbesc($hash),
564                         dbesc(datetime_convert())
565                 );
566         }
567
568         return;
569 }
570
571 function diaspora_post($importer,$xml) {
572
573         $a = get_app();
574         $guid = notags(unxmlify($xml->guid));
575         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
576
577         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
578         if(! $contact)
579                 return;
580
581         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
582                 logger('diaspora_post: Ignoring this author.');
583                 return 202;
584         }
585
586         $message_id = $diaspora_handle . ':' . $guid;
587         $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1",
588                 intval($importer['uid']),
589                 dbesc($message_id),
590                 dbesc($guid)
591         );
592         if(count($r)) {
593                 logger('diaspora_post: message exists: ' . $guid);
594                 return;
595         }
596
597     // allocate a guid on our system - we aren't fixing any collisions.
598         // we're ignoring them
599
600         $g = q("select * from guid where guid = '%s' limit 1",
601                 dbesc($guid)
602         );
603         if(! count($g)) {
604                 q("insert into guid ( guid ) values ( '%s' )",
605                         dbesc($guid)
606                 );
607         }
608
609         $created = unxmlify($xml->created_at);
610         $private = ((unxmlify($xml->public) == 'false') ? 1 : 0);
611
612         $body = diaspora2bb($xml->raw_message);
613
614         $datarray = array();
615
616         $str_tags = '';
617
618         $tags = get_tags($body);
619
620         if(count($tags)) {
621                 foreach($tags as $tag) {
622                         if(strpos($tag,'#') === 0) {
623                                 if(strpos($tag,'[url='))
624                                         continue;
625                                 $basetag = str_replace('_',' ',substr($tag,1));
626                                 $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
627                                 if(strlen($str_tags))
628                                         $str_tags .= ',';
629                                 $str_tags .= '#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
630                                 continue;
631                         }
632                 }
633         }
634
635         $cnt = preg_match_all('/@\[url=(.*?)\[\/url\]/ism',$body,$matches,PREG_SET_ORDER);
636         if($cnt) {
637                 foreach($matches as $mtch) {
638                         if(strlen($str_tags))
639                                 $str_tags .= ',';
640                         $str_tags .= '@[url=' . $mtch[1] . '[/url]';    
641                 }
642         }
643
644         $datarray['uid'] = $importer['uid'];
645         $datarray['contact-id'] = $contact['id'];
646         $datarray['wall'] = 0;
647         $datarray['guid'] = $guid;
648         $datarray['uri'] = $datarray['parent-uri'] = $message_id;
649         $datarray['created'] = $datarray['edited'] = datetime_convert('UTC','UTC',$created);
650         $datarray['private'] = $private;
651         $datarray['parent'] = 0;
652         $datarray['owner-name'] = $contact['name'];
653         $datarray['owner-link'] = $contact['url'];
654         $datarray['owner-avatar'] = $contact['thumb'];
655         $datarray['author-name'] = $contact['name'];
656         $datarray['author-link'] = $contact['url'];
657         $datarray['author-avatar'] = $contact['thumb'];
658         $datarray['body'] = $body;
659         $datarray['tag'] = $str_tags;
660         $datarray['app']  = 'Diaspora';
661
662         // if empty content it might be a photo that hasn't arrived yet. If a photo arrives, we'll make it visible.
663
664         $datarray['visible'] = ((strlen($body)) ? 1 : 0);
665
666         $message_id = item_store($datarray);
667
668         if($message_id) {
669                 q("update item set plink = '%s' where id = %d limit 1",
670                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
671                         intval($message_id)
672                 );
673         }
674
675         return;
676
677 }
678
679 function diaspora_reshare($importer,$xml) {
680
681         logger('diaspora_reshare: init: ' . print_r($xml,true));
682
683         $a = get_app();
684         $guid = notags(unxmlify($xml->guid));
685         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
686
687
688         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
689         if(! $contact)
690                 return;
691
692         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
693                 logger('diaspora_reshare: Ignoring this author: ' . $diaspora_handle . ' ' . print_r($xml,true));
694                 return 202;
695         }
696
697         $message_id = $diaspora_handle . ':' . $guid;
698         $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1",
699                 intval($importer['uid']),
700                 dbesc($message_id),
701                 dbesc($guid)
702         );
703         if(count($r)) {
704                 logger('diaspora_reshare: message exists: ' . $guid);
705                 return;
706         }
707
708         $orig_author = notags(unxmlify($xml->root_diaspora_id));
709         $orig_guid = notags(unxmlify($xml->root_guid));
710
711         $source_url = 'https://' . substr($orig_author,strpos($orig_author,'@')+1) . '/p/' . $orig_guid . '.xml';
712         $x = fetch_url($source_url);
713         if(! $x)
714                 $x = fetch_url(str_replace('https://','http://',$source_url));
715         if(! $x) {
716                 logger('diaspora_reshare: unable to fetch source url ' . $source_url);
717                 return;
718         }
719         logger('diaspora_reshare: source: ' . $x);
720
721         $x = str_replace(array('<activity_streams-photo>','</activity_streams-photo>'),array('<asphoto>','</asphoto>'),$x);
722         $source_xml = parse_xml_string($x,false);
723
724         if(strlen($source_xml->post->asphoto->objectId) && ($source_xml->post->asphoto->objectId != 0) && ($source_xml->post->asphoto->image_url)) {
725                 $body = '[url=' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '][img]' . notags(unxmlify($source_xml->post->asphoto->objectId)) . '[/img][/url]' . "\n";
726                 $body = scale_diaspora_images($body,false);
727         }
728         elseif($source_xml->post->asphoto->image_url) {
729                 $body = '[img]' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '[/img]' . "\n";
730                 $body = scale_diaspora_images($body);
731         }
732         elseif($source_xml->post->status_message) {
733                 $body = diaspora2bb($source_xml->post->status_message->raw_message);
734                 $body = scale_diaspora_images($body);
735
736         }
737         else {
738                 logger('diaspora_reshare: no reshare content found: ' . print_r($source_xml,true));
739                 return;
740         }
741         if(! $body) {
742                 logger('diaspora_reshare: empty body: source= ' . $x);
743                 return;
744         }
745
746         $person = find_diaspora_person_by_handle($orig_author);
747
748         if(is_array($person) && x($person,'name') && x($person,'url'))
749                 $details = '[url=' . $person['url'] . ']' . $person['name'] . '[/url]';
750         else
751                 $details = $orig_author;
752         
753         $prefix = '&#x2672; ' . $details . "\n"; 
754
755
756     // allocate a guid on our system - we aren't fixing any collisions.
757         // we're ignoring them
758
759         $g = q("select * from guid where guid = '%s' limit 1",
760                 dbesc($guid)
761         );
762         if(! count($g)) {
763                 q("insert into guid ( guid ) values ( '%s' )",
764                         dbesc($guid)
765                 );
766         }
767
768         $created = unxmlify($xml->created_at);
769         $private = ((unxmlify($xml->public) == 'false') ? 1 : 0);
770
771         $datarray = array();
772
773         $str_tags = '';
774
775         $tags = get_tags($body);
776
777         if(count($tags)) {
778                 foreach($tags as $tag) {
779                         if(strpos($tag,'#') === 0) {
780                                 if(strpos($tag,'[url='))
781                                         continue;
782                                 $basetag = str_replace('_',' ',substr($tag,1));
783                                 $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
784                                 if(strlen($str_tags))
785                                         $str_tags .= ',';
786                                 $str_tags .= '#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
787                                 continue;
788                         }
789                 }
790         }
791         
792         $datarray['uid'] = $importer['uid'];
793         $datarray['contact-id'] = $contact['id'];
794         $datarray['wall'] = 0;
795         $datarray['guid'] = $guid;
796         $datarray['uri'] = $datarray['parent-uri'] = $message_id;
797         $datarray['created'] = $datarray['edited'] = datetime_convert('UTC','UTC',$created);
798         $datarray['private'] = $private;
799         $datarray['parent'] = 0;
800         $datarray['owner-name'] = $contact['name'];
801         $datarray['owner-link'] = $contact['url'];
802         $datarray['owner-avatar'] = $contact['thumb'];
803         $datarray['author-name'] = $contact['name'];
804         $datarray['author-link'] = $contact['url'];
805         $datarray['author-avatar'] = $contact['thumb'];
806         $datarray['body'] = $prefix . $body;
807         $datarray['tag'] = $str_tags;
808         $datarray['app']  = 'Diaspora';
809
810         $message_id = item_store($datarray);
811
812         if($message_id) {
813                 q("update item set plink = '%s' where id = %d limit 1",
814                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
815                         intval($message_id)
816                 );
817         }
818
819         return;
820
821 }
822
823
824 function diaspora_asphoto($importer,$xml) {
825         logger('diaspora_asphoto called');
826
827         $a = get_app();
828         $guid = notags(unxmlify($xml->guid));
829         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
830
831         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
832         if(! $contact)
833                 return;
834
835         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
836                 logger('diaspora_asphoto: Ignoring this author.');
837                 return 202;
838         }
839
840         $message_id = $diaspora_handle . ':' . $guid;
841         $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1",
842                 intval($importer['uid']),
843                 dbesc($message_id),
844                 dbesc($guid)
845         );
846         if(count($r)) {
847                 logger('diaspora_asphoto: message exists: ' . $guid);
848                 return;
849         }
850
851     // allocate a guid on our system - we aren't fixing any collisions.
852         // we're ignoring them
853
854         $g = q("select * from guid where guid = '%s' limit 1",
855                 dbesc($guid)
856         );
857         if(! count($g)) {
858                 q("insert into guid ( guid ) values ( '%s' )",
859                         dbesc($guid)
860                 );
861         }
862
863         $created = unxmlify($xml->created_at);
864         $private = ((unxmlify($xml->public) == 'false') ? 1 : 0);
865
866         if(strlen($xml->objectId) && ($xml->objectId != 0) && ($xml->image_url)) {
867                 $body = '[url=' . notags(unxmlify($xml->image_url)) . '][img]' . notags(unxmlify($xml->objectId)) . '[/img][/url]' . "\n";
868                 $body = scale_diaspora_images($body,false);
869         }
870         elseif($xml->image_url) {
871                 $body = '[img]' . notags(unxmlify($xml->image_url)) . '[/img]' . "\n";
872                 $body = scale_diaspora_images($body);
873         }
874         else {
875                 logger('diaspora_asphoto: no photo url found.');
876                 return;
877         }
878
879         $datarray = array();
880
881         
882         $datarray['uid'] = $importer['uid'];
883         $datarray['contact-id'] = $contact['id'];
884         $datarray['wall'] = 0;
885         $datarray['guid'] = $guid;
886         $datarray['uri'] = $datarray['parent-uri'] = $message_id;
887         $datarray['created'] = $datarray['edited'] = datetime_convert('UTC','UTC',$created);
888         $datarray['private'] = $private;
889         $datarray['parent'] = 0;
890         $datarray['owner-name'] = $contact['name'];
891         $datarray['owner-link'] = $contact['url'];
892         $datarray['owner-avatar'] = $contact['thumb'];
893         $datarray['author-name'] = $contact['name'];
894         $datarray['author-link'] = $contact['url'];
895         $datarray['author-avatar'] = $contact['thumb'];
896         $datarray['body'] = $body;
897         
898         $datarray['app']  = 'Diaspora/Cubbi.es';
899
900         $message_id = item_store($datarray);
901
902         if($message_id) {
903                 q("update item set plink = '%s' where id = %d limit 1",
904                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
905                         intval($message_id)
906                 );
907         }
908
909         return;
910
911 }
912
913
914
915
916
917
918 function diaspora_comment($importer,$xml,$msg) {
919
920         $a = get_app();
921         $guid = notags(unxmlify($xml->guid));
922         $parent_guid = notags(unxmlify($xml->parent_guid));
923         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
924         $target_type = notags(unxmlify($xml->target_type));
925         $text = unxmlify($xml->text);
926         $author_signature = notags(unxmlify($xml->author_signature));
927
928         $parent_author_signature = (($xml->parent_author_signature) ? notags(unxmlify($xml->parent_author_signature)) : '');
929
930         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
931         if(! $contact) {
932                 logger('diaspora_comment: cannot find contact: ' . $msg['author']);
933                 return;
934         }
935
936         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
937                 logger('diaspora_comment: Ignoring this author.');
938                 return 202;
939         }
940
941         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
942                 intval($importer['uid']),
943                 dbesc($guid)
944         );
945         if(count($r)) {
946                 logger('diaspora_comment: our comment just got relayed back to us (or there was a guid collision) : ' . $guid);
947                 return;
948         }
949
950         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
951                 intval($importer['uid']),
952                 dbesc($parent_guid)
953         );
954         if(! count($r)) {
955                 logger('diaspora_comment: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
956                 return;
957         }
958         $parent_item = $r[0];
959
960         $author_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle;
961
962         $author_signature = base64_decode($author_signature);
963
964         if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
965                 $person = $contact;
966                 $key = $msg['key'];
967         }
968         else {
969                 $person = find_diaspora_person_by_handle($diaspora_handle);     
970
971                 if(is_array($person) && x($person,'pubkey'))
972                         $key = $person['pubkey'];
973                 else {
974                         logger('diaspora_comment: unable to find author details');
975                         return;
976                 }
977         }
978
979         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
980                 logger('diaspora_comment: verification failed.');
981                 return;
982         }
983
984         if($parent_author_signature) {
985                 $owner_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle;
986
987                 $parent_author_signature = base64_decode($parent_author_signature);
988
989                 $key = $msg['key'];
990
991                 if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha256')) {
992                         logger('diaspora_comment: owner verification failed.');
993                         return;
994                 }
995         }
996
997         // Phew! Everything checks out. Now create an item.
998
999         $body = diaspora2bb($text);
1000
1001         $message_id = $diaspora_handle . ':' . $guid;
1002
1003         $datarray = array();
1004
1005         $str_tags = '';
1006
1007         $tags = get_tags($body);
1008
1009         if(count($tags)) {
1010                 foreach($tags as $tag) {
1011                         if(strpos($tag,'#') === 0) {
1012                                 if(strpos($tag,'[url='))
1013                                         continue;
1014                                 $basetag = str_replace('_',' ',substr($tag,1));
1015                                 $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
1016                                 if(strlen($str_tags))
1017                                         $str_tags .= ',';
1018                                 $str_tags .= '#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
1019                                 continue;
1020                         }
1021                 }
1022         }
1023
1024         $datarray['uid'] = $importer['uid'];
1025         $datarray['contact-id'] = $contact['id'];
1026         $datarray['wall'] = $parent_item['wall'];
1027         $datarray['gravity'] = GRAVITY_COMMENT;
1028         $datarray['guid'] = $guid;
1029         $datarray['uri'] = $message_id;
1030         $datarray['parent-uri'] = $parent_item['uri'];
1031
1032         // No timestamps for comments? OK, we'll the use current time.
1033         $datarray['created'] = $datarray['edited'] = datetime_convert();
1034         $datarray['private'] = $parent_item['private'];
1035
1036         $datarray['owner-name'] = $parent_item['owner-name'];
1037         $datarray['owner-link'] = $parent_item['owner-link'];
1038         $datarray['owner-avatar'] = $parent_item['owner-avatar'];
1039
1040         $datarray['author-name'] = $person['name'];
1041         $datarray['author-link'] = $person['url'];
1042         $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
1043         $datarray['body'] = $body;
1044         $datarray['tag'] = $str_tags;
1045
1046         // We can't be certain what the original app is if the message is relayed.
1047         if(($parent_item['origin']) && (! $parent_author_signature)) 
1048                 $datarray['app']  = 'Diaspora';
1049
1050         $message_id = item_store($datarray);
1051
1052         if($message_id) {
1053                 q("update item set plink = '%s' where id = %d limit 1",
1054                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
1055                         intval($message_id)
1056                 );
1057         }
1058
1059         if(($parent_item['origin']) && (! $parent_author_signature)) {
1060                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1061                         intval($message_id),
1062                         dbesc($author_signed_data),
1063                         dbesc(base64_encode($author_signature)),
1064                         dbesc($diaspora_handle)
1065                 );
1066
1067                 // if the message isn't already being relayed, notify others
1068                 // the existence of parent_author_signature means the parent_author or owner
1069                 // is already relaying.
1070
1071                 proc_run('php','include/notifier.php','comment',$message_id);
1072         }
1073         return;
1074 }
1075
1076
1077
1078
1079 function diaspora_conversation($importer,$xml,$msg) {
1080
1081         $a = get_app();
1082
1083         $guid = notags(unxmlify($xml->guid));
1084         $subject = notags(unxmlify($xml->subject));
1085         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1086         $participant_handles = notags(unxmlify($xml->participant_handles));
1087         $created_at = datetime_convert('UTC','UTC',notags(unxmlify($xml->created_at)));
1088
1089         $parent_uri = $diaspora_handle . ':' . $guid;
1090  
1091         $messages = $xml->message;
1092
1093         if(! count($messages)) {
1094                 logger('diaspora_conversation: empty conversation');
1095                 return;
1096         }
1097
1098         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
1099         if(! $contact) {
1100                 logger('diaspora_conversation: cannot find contact: ' . $msg['author']);
1101                 return;
1102         }
1103
1104         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
1105                 logger('diaspora_conversation: Ignoring this author.');
1106                 return 202;
1107         }
1108
1109         $conversation = null;
1110
1111         $c = q("select * from conv where uid = %d and guid = '%s' limit 1",
1112                 intval($importer['uid']),
1113                 dbesc($guid)
1114         );
1115         if(count($c))
1116                 $conversation = $c[0];
1117         else {
1118                 $r = q("insert into conv (uid,guid,creator,created,updated,subject,recips) values(%d, '%s', '%s', '%s', '%s', '%s', '%s') ",
1119                         intval($importer['uid']),
1120                         dbesc($guid),
1121                         dbesc($diaspora_handle),
1122                         dbesc(datetime_convert('UTC','UTC',$created_at)),
1123                         dbesc(datetime_convert()),
1124                         dbesc($subject),
1125                         dbesc($participant_handles)
1126                 );
1127                 if($r)
1128                         $c = q("select * from conv where uid = %d and guid = '%s' limit 1",
1129                 intval($importer['uid']),
1130             dbesc($guid)
1131         );
1132             if(count($c))
1133             $conversation = $c[0];
1134         }
1135         if(! $conversation) {
1136                 logger('diaspora_conversation: unable to create conversation.');
1137                 return;
1138         }
1139
1140         foreach($messages as $mesg) {
1141
1142                 $reply = 0;
1143
1144                 $msg_guid = notags(unxmlify($mesg->guid));
1145                 $msg_parent_guid = notags(unxmlify($mesg->parent_guid));
1146                 $msg_parent_author_signature = notags(unxmlify($mesg->parent_author_signature));
1147                 $msg_author_signature = notags(unxmlify($mesg->author_signature));
1148                 $msg_text = unxmlify($mesg->text);
1149                 $msg_created_at = datetime_convert('UTC','UTC',notags(unxmlify($mesg->created_at)));
1150                 $msg_diaspora_handle = notags(unxmlify($mesg->diaspora_handle));
1151                 $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
1152                 if($msg_conversation_guid != $guid) {
1153                         logger('diaspora_conversation: message conversation guid does not belong to the current conversation. ' . $xml);
1154                         continue;
1155                 }
1156
1157                 $body = diaspora2bb($msg_text);
1158                 $message_id = $msg_diaspora_handle . ':' . $msg_guid;
1159
1160                 $author_signed_data = $msg_guid . ';' . $msg_parent_guid . ';' . $msg_text . ';' . unxmlify($mesg->created_at) . ';' . $msg_diaspora_handle . ';' . $msg_conversation_guid;
1161
1162                 $author_signature = base64_decode($msg_author_signature);
1163
1164                 if(strcasecmp($msg_diaspora_handle,$msg['author']) == 0) {
1165                         $person = $contact;
1166                         $key = $msg['key'];
1167                 }
1168                 else {
1169                         $person = find_diaspora_person_by_handle($msg_diaspora_handle); 
1170
1171                         if(is_array($person) && x($person,'pubkey'))
1172                                 $key = $person['pubkey'];
1173                         else {
1174                                 logger('diaspora_conversation: unable to find author details');
1175                                 continue;
1176                         }
1177                 }
1178
1179                 if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
1180                         logger('diaspora_conversation: verification failed.');
1181                         continue;
1182                 }
1183
1184                 if($msg_parent_author_signature) {
1185                         $owner_signed_data = $msg_guid . ';' . $msg_parent_guid . ';' . $msg_text . ';' . unxmlify($mesg->created_at) . ';' . $msg_diaspora_handle . ';' . $msg_conversation_guid;
1186
1187                         $parent_author_signature = base64_decode($msg_parent_author_signature);
1188
1189                         $key = $msg['key'];
1190
1191                         if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha256')) {
1192                                 logger('diaspora_conversation: owner verification failed.');
1193                                 continue;
1194                         }
1195                 }
1196
1197                 $r = q("select id from mail where `uri` = '%s' limit 1",
1198                         dbesc($message_id)
1199                 );
1200                 if(count($r)) {
1201                         logger('diaspora_conversation: duplicate message already delivered.', LOGGER_DEBUG);
1202                         continue;
1203                 }
1204
1205                 q("insert into mail ( `uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`) values ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1206                         intval($importer['uid']),
1207                         dbesc($msg_guid),
1208                         intval($conversation['id']),
1209                         dbesc($person['name']),
1210                         dbesc($person['photo']),
1211                         dbesc($person['url']),
1212                         intval($contact['id']),  
1213                         dbesc($subject),
1214                         dbesc($body),
1215                         0,
1216                         0,
1217                         dbesc($message_id),
1218                         dbesc($parent_uri),
1219                         dbesc($msg_created_at)
1220                 );                      
1221
1222                 q("update conv set updated = '%s' where id = %d limit 1",
1223                         dbesc(datetime_convert()),
1224                         intval($conversation['id'])
1225                 );              
1226         }       
1227
1228         return;
1229 }
1230
1231 function diaspora_message($importer,$xml,$msg) {
1232
1233         $a = get_app();
1234
1235         $msg_guid = notags(unxmlify($xml->guid));
1236         $msg_parent_guid = notags(unxmlify($xml->parent_guid));
1237         $msg_parent_author_signature = notags(unxmlify($xml->parent_author_signature));
1238         $msg_author_signature = notags(unxmlify($xml->author_signature));
1239         $msg_text = unxmlify($xml->text);
1240         $msg_created_at = datetime_convert('UTC','UTC',notags(unxmlify($xml->created_at)));
1241         $msg_diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1242         $msg_conversation_guid = notags(unxmlify($xml->conversation_guid));
1243
1244         $parent_uri = $diaspora_handle . ':' . $msg_parent_guid;
1245  
1246         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg_diaspora_handle);
1247         if(! $contact) {
1248                 logger('diaspora_message: cannot find contact: ' . $msg_diaspora_handle);
1249                 return;
1250         }
1251
1252         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
1253                 logger('diaspora_message: Ignoring this author.');
1254                 return 202;
1255         }
1256
1257         $conversation = null;
1258
1259         $c = q("select * from conv where uid = %d and guid = '%s' limit 1",
1260                 intval($importer['uid']),
1261                 dbesc($msg_conversation_guid)
1262         );
1263         if(count($c))
1264                 $conversation = $c[0];
1265         else {
1266                 logger('diaspora_message: conversation not available.');
1267                 return;
1268         }
1269
1270         $reply = 0;
1271                         
1272         $body = diaspora2bb($msg_text);
1273         $message_id = $msg_diaspora_handle . ':' . $msg_guid;
1274
1275         $author_signed_data = $msg_guid . ';' . $msg_parent_guid . ';' . $msg_text . ';' . unxmlify($xml->created_at) . ';' . $msg_diaspora_handle . ';' . $msg_conversation_guid;
1276
1277
1278         $author_signature = base64_decode($msg_author_signature);
1279
1280         $person = find_diaspora_person_by_handle($msg_diaspora_handle); 
1281         if(is_array($person) && x($person,'pubkey'))
1282                 $key = $person['pubkey'];
1283         else {
1284                 logger('diaspora_message: unable to find author details');
1285                 return;
1286         }
1287
1288         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
1289                 logger('diaspora_message: verification failed.');
1290                 return;
1291         }
1292
1293         $r = q("select id from mail where `uri` = '%s' and uid = %d limit 1",
1294                 dbesc($message_id),
1295                 intval($importer['uid'])
1296         );
1297         if(count($r)) {
1298                 logger('diaspora_message: duplicate message already delivered.', LOGGER_DEBUG);
1299                 return;
1300         }
1301
1302         q("insert into mail ( `uid`, `guid`, `convid`, `from-name`,`from-photo`,`from-url`,`contact-id`,`title`,`body`,`seen`,`reply`,`uri`,`parent-uri`,`created`) values ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, '%s','%s','%s')",
1303                 intval($importer['uid']),
1304                 dbesc($msg_guid),
1305                 intval($conversation['id']),
1306                 dbesc($person['name']),
1307                 dbesc($person['photo']),
1308                 dbesc($person['url']),
1309                 intval($contact['id']),  
1310                 dbesc($conversation['subject']),
1311                 dbesc($body),
1312                 0,
1313                 1,
1314                 dbesc($message_id),
1315                 dbesc($parent_uri),
1316                 dbesc($msg_created_at)
1317         );                      
1318
1319         q("update conv set updated = '%s' where id = %d limit 1",
1320                 dbesc(datetime_convert()),
1321                 intval($conversation['id'])
1322         );              
1323         
1324         return;
1325 }
1326
1327
1328 function diaspora_photo($importer,$xml,$msg) {
1329
1330         $a = get_app();
1331         $remote_photo_path = notags(unxmlify($xml->remote_photo_path));
1332
1333         $remote_photo_name = notags(unxmlify($xml->remote_photo_name));
1334
1335         $status_message_guid = notags(unxmlify($xml->status_message_guid));
1336
1337         $guid = notags(unxmlify($xml->guid));
1338
1339         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1340
1341         $public = notags(unxmlify($xml->public));
1342
1343         $created_at = notags(unxmlify($xml_created_at));
1344
1345
1346         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
1347         if(! $contact)
1348                 return;
1349
1350         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
1351                 logger('diaspora_photo: Ignoring this author.');
1352                 return 202;
1353         }
1354
1355         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1356                 intval($importer['uid']),
1357                 dbesc($status_message_guid)
1358         );
1359         if(! count($r)) {
1360                 logger('diaspora_photo: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
1361                 return;
1362         }
1363         $parent_item = $r[0];
1364
1365         $link_text = '[img]' . $remote_photo_path . $remote_photo_name . '[/img]' . "\n";
1366
1367         $link_text = scale_diaspora_images($link_text);
1368
1369         if(strpos($parent_item['body'],$link_text) === false) {
1370                 $r = q("update item set `body` = '%s', `visible` = 1 where `id` = %d and `uid` = %d limit 1",
1371                         dbesc($link_text . $parent_item['body']),
1372                         intval($parent_item['id']),
1373                         intval($parent_item['uid'])
1374                 );
1375         }
1376
1377         return;
1378 }
1379
1380
1381
1382
1383 function diaspora_like($importer,$xml,$msg) {
1384
1385         $a = get_app();
1386         $guid = notags(unxmlify($xml->guid));
1387         $parent_guid = notags(unxmlify($xml->parent_guid));
1388         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1389         $target_type = notags(unxmlify($xml->target_type));
1390         $positive = notags(unxmlify($xml->positive));
1391         $author_signature = notags(unxmlify($xml->author_signature));
1392
1393         $parent_author_signature = (($xml->parent_author_signature) ? notags(unxmlify($xml->parent_author_signature)) : '');
1394
1395         // likes on comments not supported here and likes on photos not supported by Diaspora
1396
1397         if($target_type !== 'Post')
1398                 return;
1399
1400         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
1401         if(! $contact) {
1402                 logger('diaspora_like: cannot find contact: ' . $msg['author']);
1403                 return;
1404         }
1405
1406         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
1407                 logger('diaspora_like: Ignoring this author.');
1408                 return 202;
1409         }
1410
1411         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1412                 intval($importer['uid']),
1413                 dbesc($parent_guid)
1414         );
1415         if(! count($r)) {
1416                 logger('diaspora_like: parent item not found: ' . $guid);
1417                 return;
1418         }
1419
1420         $parent_item = $r[0];
1421
1422         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1423                 intval($importer['uid']),
1424                 dbesc($guid)
1425         );
1426         if(count($r)) {
1427                 if($positive === 'true') {
1428                         logger('diaspora_like: duplicate like: ' . $guid);
1429                         return;
1430                 } 
1431                 if($positive === 'false') {
1432                         q("UPDATE `item` SET `deleted` = 1 WHERE `id` = %d AND `uid` = %d LIMIT 1",
1433                                 intval($r[0]['id']),
1434                                 intval($importer['uid'])
1435                         );
1436                         // FIXME
1437                         //  send notification via proc_run()
1438                         return;
1439                 }
1440         }
1441         if($positive === 'false') {
1442                 logger('diaspora_like: unlike received with no corresponding like');
1443                 return; 
1444         }
1445
1446         $author_signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle;
1447
1448         $author_signature = base64_decode($author_signature);
1449
1450         if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
1451                 $person = $contact;
1452                 $key = $msg['key'];
1453         }
1454         else {
1455                 $person = find_diaspora_person_by_handle($diaspora_handle);     
1456                 if(is_array($person) && x($person,'pubkey'))
1457                         $key = $person['pubkey'];
1458                 else {
1459                         logger('diaspora_like: unable to find author details');
1460                         return;
1461                 }
1462         }
1463
1464         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
1465                 logger('diaspora_like: verification failed.');
1466                 return;
1467         }
1468
1469         if($parent_author_signature) {
1470
1471                 $owner_signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle;
1472
1473                 $parent_author_signature = base64_decode($parent_author_signature);
1474
1475                 $key = $msg['key'];
1476
1477                 if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha256')) {
1478                         logger('diaspora_like: owner verification failed.');
1479                         return;
1480                 }
1481         }
1482
1483         // Phew! Everything checks out. Now create an item.
1484
1485         $uri = $diaspora_handle . ':' . $guid;
1486
1487         $activity = ACTIVITY_LIKE;
1488         $post_type = (($parent_item['resource-id']) ? t('photo') : t('status'));
1489         $objtype = (($parent_item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); 
1490         $link = xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . '" />' . "\n") ;
1491         $body = $parent_item['body'];
1492
1493         $obj = <<< EOT
1494
1495         <object>
1496                 <type>$objtype</type>
1497                 <local>1</local>
1498                 <id>{$parent_item['uri']}</id>
1499                 <link>$link</link>
1500                 <title></title>
1501                 <content>$body</content>
1502         </object>
1503 EOT;
1504         $bodyverb = t('%1$s likes %2$s\'s %3$s');
1505
1506         $arr = array();
1507
1508         $arr['uri'] = $uri;
1509         $arr['uid'] = $importer['uid'];
1510         $arr['guid'] = $guid;
1511         $arr['contact-id'] = $contact['id'];
1512         $arr['type'] = 'activity';
1513         $arr['wall'] = $parent_item['wall'];
1514         $arr['gravity'] = GRAVITY_LIKE;
1515         $arr['parent'] = $parent_item['id'];
1516         $arr['parent-uri'] = $parent_item['uri'];
1517
1518         $arr['owner-name'] = $parent_item['name'];
1519         $arr['owner-link'] = $parent_item['url'];
1520         $arr['owner-avatar'] = $parent_item['thumb'];
1521
1522         $arr['author-name'] = $person['name'];
1523         $arr['author-link'] = $person['url'];
1524         $arr['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
1525         
1526         $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
1527         $alink = '[url=' . $parent_item['author-link'] . ']' . $parent_item['author-name'] . '[/url]';
1528         $plink = '[url=' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . ']' . $post_type . '[/url]';
1529         $arr['body'] =  sprintf( $bodyverb, $ulink, $alink, $plink );
1530
1531         $arr['app']  = 'Diaspora';
1532
1533         $arr['private'] = $parent_item['private'];
1534         $arr['verb'] = $activity;
1535         $arr['object-type'] = $objtype;
1536         $arr['object'] = $obj;
1537         $arr['visible'] = 1;
1538         $arr['unseen'] = 1;
1539         $arr['last-child'] = 0;
1540
1541         $message_id = item_store($arr);
1542
1543
1544         if($message_id) {
1545                 q("update item set plink = '%s' where id = %d limit 1",
1546                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
1547                         intval($message_id)
1548                 );
1549         }
1550
1551         if(! $parent_author_signature) {
1552                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1553                         intval($message_id),
1554                         dbesc($author_signed_data),
1555                         dbesc(base64_encode($author_signature)),
1556                         dbesc($diaspora_handle)
1557                 );
1558         }
1559
1560         // if the message isn't already being relayed, notify others
1561         // the existence of parent_author_signature means the parent_author or owner
1562         // is already relaying. The parent_item['origin'] indicates the message was created on our system
1563
1564         if(($parent_item['origin']) && (! $parent_author_signature))
1565                 proc_run('php','include/notifier.php','comment',$message_id);
1566
1567         return;
1568 }
1569
1570 function diaspora_retraction($importer,$xml) {
1571
1572         $guid = notags(unxmlify($xml->guid));
1573         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1574         $type = notags(unxmlify($xml->type));
1575
1576         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
1577         if(! $contact)
1578                 return;
1579
1580         if($type === 'Person') {
1581                 require_once('include/Contact.php');
1582                 contact_remove($contact['id']);
1583         }
1584         elseif($type === 'Post') {
1585                 $r = q("select * from item where guid = '%s' and uid = %d limit 1",
1586                         dbesc('guid'),
1587                         intval($importer['uid'])
1588                 );
1589                 if(count($r)) {
1590                         if(link_compare($r[0]['author-link'],$contact['url'])) {
1591                                 q("update item set `deleted` = 1, `changed` = '%s' where `id` = %d limit 1",
1592                                         dbesc(datetime_convert()),                      
1593                                         intval($r[0]['id'])
1594                                 );
1595                         }
1596                 }
1597         }
1598
1599         return 202;
1600         // NOTREACHED
1601 }
1602
1603 function diaspora_signed_retraction($importer,$xml) {
1604
1605         $guid = notags(unxmlify($xml->target_guid));
1606         $diaspora_handle = notags(unxmlify($xml->sender_handle));
1607         $type = notags(unxmlify($xml->target_type));
1608         $sig = notags(unxmlify($xml->target_author_signature));
1609
1610         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
1611         if(! $contact)
1612                 return;
1613
1614         // this may not yet work for comments. Need to see how the relaying works
1615         // and figure out who signs it.
1616
1617
1618         $signed_data = $guid . ';' . $type ;
1619
1620         $sig = base64_decode($sig);
1621
1622         $key = $msg['key'];
1623
1624         if(! rsa_verify($signed_data,$sig,$key,'sha256')) {
1625                 logger('diaspora_signed_retraction: owner verification failed.' . print_r($msg,true));
1626                 return;
1627         }
1628
1629         if($type === 'StatusMessage') {
1630                 $r = q("select * from item where guid = '%s' and uid = %d limit 1",
1631                         dbesc('guid'),
1632                         intval($importer['uid'])
1633                 );
1634                 if(count($r)) {
1635                         if(link_compare($r[0]['author-link'],$contact['url'])) {
1636                                 q("update item set `deleted` = 1, `changed` = '%s' where `id` = %d limit 1",
1637                                         dbesc(datetime_convert()),                      
1638                                         intval($r[0]['id'])
1639                                 );
1640                         }
1641                 }
1642         }
1643
1644         return 202;
1645         // NOTREACHED
1646 }
1647
1648 function diaspora_profile($importer,$xml) {
1649
1650         $a = get_app();
1651         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1652
1653         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
1654         if(! $contact)
1655                 return;
1656
1657         if($contact['blocked']) {
1658                 logger('diaspora_post: Ignoring this author.');
1659                 return 202;
1660         }
1661
1662         $name = unxmlify($xml->first_name) . ((strlen($xml->last_name)) ? ' ' . unxmlify($xml->last_name) : '');
1663         $image_url = unxmlify($xml->image_url);
1664         $birthday = unxmlify($xml->birthday);
1665
1666         $r = q("SELECT DISTINCT ( `resource-id` ) FROM `photo` WHERE  `uid` = %d AND `contact-id` = %d AND `album` = 'Contact Photos' ",
1667                 intval($importer['uid']),
1668                 intval($contact['id'])
1669         );
1670         $oldphotos = ((count($r)) ? $r : null);
1671
1672         require_once('include/Photo.php');
1673
1674         $images = import_profile_photo($image_url,$importer['uid'],$contact['id']);
1675         
1676         // Generic birthday. We don't know the timezone. The year is irrelevant. 
1677
1678         $birthday = str_replace('1000','1901',$birthday);
1679
1680         $birthday = datetime_convert('UTC','UTC',$birthday,'Y-m-d');
1681
1682         $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",
1683                 dbesc($name),
1684                 dbesc(datetime_convert()),
1685                 dbesc($images[0]),
1686                 dbesc($images[1]),
1687                 dbesc($images[2]),
1688                 dbesc(datetime_convert()),
1689                 dbesc($birthday),
1690                 intval($contact['id']),
1691                 intval($importer['uid'])
1692         ); 
1693
1694         if($r) {
1695                 if($oldphotos) {
1696                         foreach($oldphotos as $ph) {
1697                                 q("DELETE FROM `photo` WHERE `uid` = %d AND `contact-id` = %d AND `album` = 'Contact Photos' AND `resource-id` = '%s' ",
1698                                         intval($importer['uid']),
1699                                         intval($contact['id']),
1700                                         dbesc($ph['resource-id'])
1701                                 );
1702                         }
1703                 }
1704         }       
1705
1706         return;
1707
1708 }
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731 function diaspora_share($me,$contact) {
1732         $a = get_app();
1733         $myaddr = $me['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1734         $theiraddr = $contact['addr'];
1735
1736         $tpl = get_markup_template('diaspora_share.tpl');
1737         $msg = replace_macros($tpl, array(
1738                 '$sender' => $myaddr,
1739                 '$recipient' => $theiraddr
1740         ));
1741
1742         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
1743
1744         return(diaspora_transmit($owner,$contact,$slap, false));
1745 }
1746
1747 function diaspora_unshare($me,$contact) {
1748
1749         $a = get_app();
1750         $myaddr = $me['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1751
1752         $tpl = get_markup_template('diaspora_retract.tpl');
1753         $msg = replace_macros($tpl, array(
1754                 '$guid'   => $me['guid'],
1755                 '$type'   => 'Person',
1756                 '$handle' => $myaddr
1757         ));
1758
1759         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
1760
1761         return(diaspora_transmit($owner,$contact,$slap, false));
1762
1763 }
1764
1765
1766
1767 function diaspora_send_status($item,$owner,$contact,$public_batch = false) {
1768
1769         $a = get_app();
1770         $myaddr = $owner['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1771         $theiraddr = $contact['addr'];
1772
1773         $images = array();
1774
1775         $body = $item['body'];
1776
1777 /*
1778         // We're trying to match Diaspora's split message/photo protocol but
1779         // all the photos are displayed on D* as links and not img's - even
1780         // though we're sending pretty much precisely what they send us when
1781         // doing the same operation.  
1782         // Commented out for now, we'll use bb2diaspora to convert photos to markdown
1783         // which seems to get through intact.
1784
1785         $cnt = preg_match_all('|\[img\](.*?)\[\/img\]|',$body,$matches,PREG_SET_ORDER);
1786         if($cnt) {
1787                 foreach($matches as $mtch) {
1788                         $detail = array();
1789                         $detail['str'] = $mtch[0];
1790                         $detail['path'] = dirname($mtch[1]) . '/';
1791                         $detail['file'] = basename($mtch[1]);
1792                         $detail['guid'] = $item['guid'];
1793                         $detail['handle'] = $myaddr;
1794                         $images[] = $detail;
1795                         $body = str_replace($detail['str'],$mtch[1],$body);
1796                 }
1797         }       
1798 */
1799
1800         $body = xmlify(html_entity_decode(bb2diaspora($body)));
1801
1802         if($item['attach']) {
1803                 $cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism',$item['attach'],$matches,PREG_SET_ORDER);
1804                 if(cnt) {
1805                         $body .= "\n" . t('Attachments:') . "\n";
1806                         foreach($matches as $mtch) {
1807                                 $body .= '[' . $mtch[3] . '](' . $mtch[1] . ')' . "\n";
1808                         }
1809                 }
1810         }       
1811
1812
1813         $public = (($item['private']) ? 'false' : 'true');
1814
1815         require_once('include/datetime.php');
1816         $created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C');
1817
1818         $tpl = get_markup_template('diaspora_post.tpl');
1819         $msg = replace_macros($tpl, array(
1820                 '$body' => $body,
1821                 '$guid' => $item['guid'],
1822                 '$handle' => xmlify($myaddr),
1823                 '$public' => $public,
1824                 '$created' => $created
1825         ));
1826
1827         logger('diaspora_send_status: ' . $owner['username'] . ' -> ' . $contact['name'] . ' base message: ' . $msg, LOGGER_DATA);
1828
1829         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
1830
1831         $return_code = diaspora_transmit($owner,$contact,$slap,$public_batch);
1832
1833         if(count($images)) {
1834                 diaspora_send_images($item,$owner,$contact,$images,$public_batch);
1835         }
1836
1837         return $return_code;
1838 }
1839
1840
1841 function diaspora_send_images($item,$owner,$contact,$images,$public_batch = false) {
1842         $a = get_app();
1843         if(! count($images))
1844                 return;
1845         $mysite = substr($a->get_baseurl(),strpos($a->get_baseurl(),'://') + 3) . '/photo';
1846
1847         $tpl = get_markup_template('diaspora_photo.tpl');
1848         foreach($images as $image) {
1849                 if(! stristr($image['path'],$mysite))
1850                         continue;
1851                 $resource = str_replace('.jpg','',$image['file']);
1852                 $resource = substr($resource,0,strpos($resource,'-'));
1853
1854                 $r = q("select * from photo where `resource-id` = '%s' and `uid` = %d limit 1",
1855                         dbesc($resource),
1856                         intval($owner['uid'])
1857                 );
1858                 if(! count($r))
1859                         continue;
1860                 $public = (($r[0]['allow_cid'] || $r[0]['allow_gid'] || $r[0]['deny_cid'] || $r[0]['deny_gid']) ? 'false' : 'true' );
1861                 $msg = replace_macros($tpl,array(               
1862                         '$path' => xmlify($image['path']),
1863                         '$filename' => xmlify($image['file']),
1864                         '$msg_guid' => xmlify($image['guid']),
1865                         '$guid' => xmlify($r[0]['guid']),
1866                         '$handle' => xmlify($image['handle']),
1867                         '$public' => xmlify($public),
1868                         '$created_at' => xmlify(datetime_convert('UTC','UTC',$r[0]['created'],'Y-m-d H:i:s \U\T\C'))
1869                 ));
1870
1871
1872                 logger('diaspora_send_photo: base message: ' . $msg, LOGGER_DATA);
1873                 $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
1874
1875                 diaspora_transmit($owner,$contact,$slap,$public_batch);
1876         }
1877
1878 }
1879
1880 function diaspora_send_followup($item,$owner,$contact,$public_batch = false) {
1881
1882         $a = get_app();
1883         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1884         $theiraddr = $contact['addr'];
1885
1886         $p = q("select guid from item where parent = %d limit 1",
1887                 $item['parent']
1888         );
1889         if(count($p))
1890                 $parent_guid = $p[0]['guid'];
1891         else
1892                 return;
1893
1894         if($item['verb'] === ACTIVITY_LIKE) {
1895                 $tpl = get_markup_template('diaspora_like.tpl');
1896                 $like = true;
1897                 $target_type = 'Post';
1898                 $positive = (($item['deleted']) ? 'false' : 'true');
1899         }
1900         else {
1901                 $tpl = get_markup_template('diaspora_comment.tpl');
1902                 $like = false;
1903         }
1904
1905         $text = html_entity_decode(bb2diaspora($item['body']));
1906
1907         // sign it
1908
1909         if($like)
1910                 $signed_text = $item['guid'] . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $myaddr;
1911         else
1912                 $signed_text = $item['guid'] . ';' . $parent_guid . ';' . $text . ';' . $myaddr;
1913
1914         $authorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
1915
1916         $msg = replace_macros($tpl,array(
1917                 '$guid' => xmlify($item['guid']),
1918                 '$parent_guid' => xmlify($parent_guid),
1919                 '$target_type' =>xmlify($target_type),
1920                 '$authorsig' => xmlify($authorsig),
1921                 '$body' => xmlify($text),
1922                 '$positive' => xmlify($positive),
1923                 '$handle' => xmlify($myaddr)
1924         ));
1925
1926         logger('diaspora_followup: base message: ' . $msg, LOGGER_DATA);
1927
1928         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
1929
1930         return(diaspora_transmit($owner,$contact,$slap,$public_batch));
1931 }
1932
1933
1934 function diaspora_send_relay($item,$owner,$contact,$public_batch = false) {
1935
1936
1937         $a = get_app();
1938         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1939         $theiraddr = $contact['addr'];
1940
1941
1942         $p = q("select guid from item where parent = %d limit 1",
1943                 $item['parent']
1944         );
1945         if(count($p))
1946                 $parent_guid = $p[0]['guid'];
1947         else
1948                 return;
1949
1950         if($item['verb'] === ACTIVITY_LIKE) {
1951                 $tpl = get_markup_template('diaspora_like_relay.tpl');
1952                 $like = true;
1953                 $target_type = 'Post';
1954                 $positive = (($item['deleted']) ? 'false' : 'true');
1955         }
1956         else {
1957                 $tpl = get_markup_template('diaspora_comment_relay.tpl');
1958                 $like = false;
1959         }
1960
1961         $body = $item['body'];
1962
1963         $text = html_entity_decode(bb2diaspora($body));
1964
1965         // fetch the original signature if somebody sent the post to us to relay
1966         // If we are relaying for a reply originating on our own account, there wasn't a 'send to relay'
1967         // action. It wasn't needed. In that case create the original signature and the 
1968         // owner (parent author) signature
1969         // comments from other networks will be relayed under our name, with a brief 
1970         // preamble to describe what's happening and noting the real author
1971
1972         $r = q("select * from sign where iid = %d limit 1",
1973                 intval($item['id'])
1974         );
1975         if(count($r)) { 
1976                 $orig_sign = $r[0];
1977                 $signed_text = $orig_sign['signed_text'];
1978                 $authorsig = $orig_sign['signature'];
1979                 $handle = $orig_sign['signer'];
1980         }
1981         else {
1982
1983                 $itemcontact = q("select * from contact where `id` = %d limit 1",
1984                         intval($item['contact-id'])
1985                 );
1986                 if(count($itemcontact)) {
1987                         if(! $itemcontact[0]['self']) {
1988                                 $prefix = sprintf( t('[Relayed] Comment authored by %s from network %s'),
1989                                         '['. $item['author-name'] . ']' . '(' . $item['author-link'] . ')',  
1990                                         network_to_name($itemcontact['network'])) . "\n";
1991                                 $body = $prefix . $body;
1992                         }
1993                 }
1994                 else {
1995
1996                         if($like)
1997                                 $signed_text = $item['guid'] . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $myaddr;
1998                         else
1999                                 $signed_text = $item['guid'] . ';' . $parent_guid . ';' . $text . ';' . $myaddr;
2000
2001                         $authorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
2002
2003                         q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
2004                                 intval($item['id']),
2005                                 dbesc($signed_text),
2006                                 dbesc(base64_encode($authorsig)),
2007                                 dbesc($myaddr)
2008                         );
2009                         $handle = $myaddr;
2010                 }
2011         }
2012
2013         // sign it
2014
2015         $parentauthorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
2016
2017         $msg = replace_macros($tpl,array(
2018                 '$guid' => xmlify($item['guid']),
2019                 '$parent_guid' => xmlify($parent_guid),
2020                 '$target_type' =>xmlify($target_type),
2021                 '$authorsig' => xmlify($orig_sign['signature']),
2022                 '$parentsig' => xmlify($parentauthorsig),
2023                 '$body' => xmlify($text),
2024                 '$positive' => xmlify($positive),
2025                 '$handle' => xmlify($handle)
2026         ));
2027
2028         logger('diaspora_relay_comment: base message: ' . $msg, LOGGER_DATA);
2029
2030         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
2031
2032         return(diaspora_transmit($owner,$contact,$slap,$public_batch));
2033
2034 }
2035
2036
2037
2038 function diaspora_send_retraction($item,$owner,$contact,$public_batch = false) {
2039
2040         $a = get_app();
2041         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
2042
2043         $signed_text = $item['guid'] . ';' . 'StatusMessage';
2044
2045         $tpl = get_markup_template('diaspora_signed_retract.tpl');
2046         $msg = replace_macros($tpl, array(
2047                 '$guid'   => $item['guid'],
2048                 '$type'   => 'StatusMessage',
2049                 '$handle' => $myaddr,
2050                 '$signature' => base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'))
2051         ));
2052
2053         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
2054
2055         return(diaspora_transmit($owner,$contact,$slap,$public_batch));
2056 }
2057
2058 function diaspora_send_mail($item,$owner,$contact) {
2059
2060         $a = get_app();
2061         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
2062
2063         $r = q("select * from conv where id = %d and uid = %d limit 1",
2064                 intval($item['convid']),
2065                 intval($item['uid'])
2066         );
2067
2068         if(! count($r)) {
2069                 logger('diaspora_send_mail: conversation not found.');
2070                 return;
2071         }
2072         $cnv = $r[0];
2073
2074         $conv = array(
2075                 'guid' => xmlify($cnv['guid']),
2076                 'subject' => xmlify($cnv['subject']),
2077                 'created_at' => xmlify(datetime_convert('UTC','UTC',$cnv['created'],'Y-m-d H:i:s \U\T\C')),
2078                 'diaspora_handle' => xmlify($cnv['creator']),
2079                 'participant_handles' => xmlify($cnv['recips'])
2080         );
2081
2082         $body = bb2diaspora($item['body']);
2083         $created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C');
2084  
2085         $signed_text =  $item['guid'] . ';' . $cnv['guid'] . ';' . $body .  ';' 
2086                 . $created . ';' . $myaddr . ';' . $cnv['guid'];
2087
2088         $sig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
2089
2090         $msg = array(
2091                 'guid' => xmlify($item['guid']),
2092                 'parent_guid' => xmlify($cnv['guid']),
2093                 'parent_author_signature' => (($item['reply']) ? null : xmlify($sig)),
2094                 'author_signature' => xmlify($sig),
2095                 'text' => xmlify($body),
2096                 'created_at' => xmlify($created),
2097                 'diaspora_handle' => xmlify($myaddr),
2098                 'conversation_guid' => xmlify($cnv['guid'])
2099         );
2100
2101         if($item['reply']) {
2102                 $tpl = get_markup_template('diaspora_message.tpl');
2103                 $xmsg = replace_macros($tpl, array('$msg' => $msg));
2104         }
2105         else {
2106                 $conv['messages'] = array($msg);
2107                 $tpl = get_markup_template('diaspora_conversation.tpl');
2108                 $xmsg = replace_macros($tpl, array('$conv' => $conv));
2109         }
2110
2111         logger('diaspora_conversation: ' . print_r($xmsg,true), LOGGER_DATA);
2112
2113         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($xmsg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],false)));
2114
2115         return(diaspora_transmit($owner,$contact,$slap,false));
2116
2117
2118 }
2119
2120 function diaspora_transmit($owner,$contact,$slap,$public_batch) {
2121
2122         $a = get_app();
2123         $logid = random_string(4);
2124         $dest_url = (($public_batch) ? $contact['batch'] : $contact['notify']);
2125         if(! $dest_url) {
2126                 logger('diaspora_transmit: no url for contact: ' . $contact['id'] . ' batch mode =' . $public_batch);
2127                 return 0;
2128         } 
2129
2130         logger('diaspora_transmit: ' . $logid . ' ' . $dest_url);
2131
2132         post_url($dest_url . '/', $slap);
2133
2134         $return_code = $a->get_curl_code();
2135         logger('diaspora_transmit: ' . $logid . ' returns: ' . $return_code);
2136
2137         if((! $return_code) || (($return_code == 503) && (stristr($a->get_curl_headers(),'retry-after')))) {
2138                 logger('diaspora_transmit: queue message');
2139
2140                 $r = q("SELECT id from queue where cid = %d and network = '%s' and content = '%s' and batch = %d limit 1",
2141                         intval($contact['id']),
2142                         dbesc(NETWORK_DIASPORA),
2143                         dbesc($slap),
2144                         intval($public_batch)
2145                 );
2146                 if(count($r)) {
2147                         logger('diaspora_transmit: add_to_queue ignored - identical item already in queue');
2148                 }
2149                 else {
2150                         // queue message for redelivery
2151                         add_to_queue($contact['id'],NETWORK_DIASPORA,$slap,$public_batch);
2152                 }
2153         }
2154
2155
2156         return(($return_code) ? $return_code : (-1));
2157 }