]> git.mxchange.org Git - friendica.git/blob - include/diaspora.php
send diaspora share notification back to originator for auto friending
[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->signed_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']) && (! $contact['hidden'])) {
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
531
532         $r = q("INSERT INTO `contact` (`uid`, `network`,`addr`,`created`,`url`,`nurl`,`batch`,`name`,`nick`,`photo`,`pubkey`,`notify`,`poll`,`blocked`,`priority`)
533                 VALUES ( %d, '%s', '%s', '%s', '%s','%s','%s','%s','%s','%s','%s','%s','%s',%d,%d) ",
534                 intval($importer['uid']),
535                 dbesc($ret['network']),
536                 dbesc($ret['addr']),
537                 datetime_convert(),
538                 dbesc($ret['url']),
539                 dbesc(normalise_link($ret['url'])),
540                 dbesc($batch),
541                 dbesc($ret['name']),
542                 dbesc($ret['nick']),
543                 dbesc($ret['photo']),
544                 dbesc($ret['pubkey']),
545                 dbesc($ret['notify']),
546                 dbesc($ret['poll']),
547                 1,
548                 2
549         );
550                  
551         // find the contact record we just created
552
553         $contact_record = diaspora_get_contact_by_handle($importer['uid'],$sender_handle);
554
555         if(! $contact_record) {
556                 logger('diaspora_request: unable to locate newly created contact record.');
557                 return;
558         }
559
560         if($importer['page-flags'] == PAGE_NORMAL) {
561
562                 $hash = random_string() . (string) time();   // Generate a confirm_key
563         
564                 $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `note`, `hash`, `datetime` )
565                         VALUES ( %d, %d, %d, %d, '%s', '%s', '%s' )",
566                         intval($importer['uid']),
567                         intval($contact_record['id']),
568                         0,
569                         0,
570                         dbesc( t('Sharing notification from Diaspora network')),
571                         dbesc($hash),
572                         dbesc(datetime_convert())
573                 );
574         }
575         else {
576
577                 // automatic friend approval
578
579                 require_once('include/Photo.php');
580
581                 $photos = import_profile_photo($contact_record['photo'],$importer['uid'],$contact_record['id']);
582                 
583                 // technically they are sharing with us (CONTACT_IS_SHARING), 
584                 // but if our page-type is PAGE_COMMUNITY or PAGE_SOAPBOX
585                 // we are going to change the relationship and make them a follower.
586
587                 if($importer['page-flags'] == PAGE_FREELOVE)
588                         $new_relation = CONTACT_IS_FRIEND;
589                 else
590                         $new_relation = CONTACT_IS_FOLLOWER;
591
592                 $r = q("UPDATE `contact` SET 
593                         `photo` = '%s', 
594                         `thumb` = '%s',
595                         `micro` = '%s', 
596                         `rel` = %d, 
597                         `name-date` = '%s', 
598                         `uri-date` = '%s', 
599                         `avatar-date` = '%s', 
600                         `blocked` = 0, 
601                         `pending` = 0,
602                         WHERE `id` = %d LIMIT 1
603                         ",
604                         dbesc($photos[0]),
605                         dbesc($photos[1]),
606                         dbesc($photos[2]),
607                         intval($new_relation),
608                         dbesc(datetime_convert()),
609                         dbesc(datetime_convert()),
610                         dbesc(datetime_convert()),
611                         intval($contact_record['id'])
612                 );
613
614                 $u = q("select * from user where id = %d limit 1",intval($importer['uid']));
615                 if($u)
616                         $ret = diaspora_share($u[0],$contact_record);
617         }
618
619         return;
620 }
621
622 function diaspora_post($importer,$xml) {
623
624         $a = get_app();
625         $guid = notags(unxmlify($xml->guid));
626         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
627
628         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
629         if(! $contact)
630                 return;
631
632         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
633                 logger('diaspora_post: Ignoring this author.');
634                 return 202;
635         }
636
637         $message_id = $diaspora_handle . ':' . $guid;
638         $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1",
639                 intval($importer['uid']),
640                 dbesc($message_id),
641                 dbesc($guid)
642         );
643         if(count($r)) {
644                 logger('diaspora_post: message exists: ' . $guid);
645                 return;
646         }
647
648     // allocate a guid on our system - we aren't fixing any collisions.
649         // we're ignoring them
650
651         $g = q("select * from guid where guid = '%s' limit 1",
652                 dbesc($guid)
653         );
654         if(! count($g)) {
655                 q("insert into guid ( guid ) values ( '%s' )",
656                         dbesc($guid)
657                 );
658         }
659
660         $created = unxmlify($xml->created_at);
661         $private = ((unxmlify($xml->public) == 'false') ? 1 : 0);
662
663         $body = diaspora2bb($xml->raw_message);
664
665         $datarray = array();
666
667         $str_tags = '';
668
669         $tags = get_tags($body);
670
671         if(count($tags)) {
672                 foreach($tags as $tag) {
673                         if(strpos($tag,'#') === 0) {
674                                 if(strpos($tag,'[url='))
675                                         continue;
676                                 $basetag = str_replace('_',' ',substr($tag,1));
677                                 $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
678                                 if(strlen($str_tags))
679                                         $str_tags .= ',';
680                                 $str_tags .= '#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
681                                 continue;
682                         }
683                 }
684         }
685
686         $cnt = preg_match_all('/@\[url=(.*?)\[\/url\]/ism',$body,$matches,PREG_SET_ORDER);
687         if($cnt) {
688                 foreach($matches as $mtch) {
689                         if(strlen($str_tags))
690                                 $str_tags .= ',';
691                         $str_tags .= '@[url=' . $mtch[1] . '[/url]';    
692                 }
693         }
694
695         $datarray['uid'] = $importer['uid'];
696         $datarray['contact-id'] = $contact['id'];
697         $datarray['wall'] = 0;
698         $datarray['guid'] = $guid;
699         $datarray['uri'] = $datarray['parent-uri'] = $message_id;
700         $datarray['created'] = $datarray['edited'] = datetime_convert('UTC','UTC',$created);
701         $datarray['private'] = $private;
702         $datarray['parent'] = 0;
703         $datarray['owner-name'] = $contact['name'];
704         $datarray['owner-link'] = $contact['url'];
705         $datarray['owner-avatar'] = $contact['thumb'];
706         $datarray['author-name'] = $contact['name'];
707         $datarray['author-link'] = $contact['url'];
708         $datarray['author-avatar'] = $contact['thumb'];
709         $datarray['body'] = $body;
710         $datarray['tag'] = $str_tags;
711         $datarray['app']  = 'Diaspora';
712
713         // if empty content it might be a photo that hasn't arrived yet. If a photo arrives, we'll make it visible.
714
715         $datarray['visible'] = ((strlen($body)) ? 1 : 0);
716
717         $message_id = item_store($datarray);
718
719         if($message_id) {
720                 q("update item set plink = '%s' where id = %d limit 1",
721                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
722                         intval($message_id)
723                 );
724         }
725
726         return;
727
728 }
729
730 function diaspora_reshare($importer,$xml) {
731
732         logger('diaspora_reshare: init: ' . print_r($xml,true));
733
734         $a = get_app();
735         $guid = notags(unxmlify($xml->guid));
736         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
737
738
739         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
740         if(! $contact)
741                 return;
742
743         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
744                 logger('diaspora_reshare: Ignoring this author: ' . $diaspora_handle . ' ' . print_r($xml,true));
745                 return 202;
746         }
747
748         $message_id = $diaspora_handle . ':' . $guid;
749         $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1",
750                 intval($importer['uid']),
751                 dbesc($message_id),
752                 dbesc($guid)
753         );
754         if(count($r)) {
755                 logger('diaspora_reshare: message exists: ' . $guid);
756                 return;
757         }
758
759         $orig_author = notags(unxmlify($xml->root_diaspora_id));
760         $orig_guid = notags(unxmlify($xml->root_guid));
761
762         $source_url = 'https://' . substr($orig_author,strpos($orig_author,'@')+1) . '/p/' . $orig_guid . '.xml';
763         $x = fetch_url($source_url);
764         if(! $x)
765                 $x = fetch_url(str_replace('https://','http://',$source_url));
766         if(! $x) {
767                 logger('diaspora_reshare: unable to fetch source url ' . $source_url);
768                 return;
769         }
770         logger('diaspora_reshare: source: ' . $x);
771
772         $x = str_replace(array('<activity_streams-photo>','</activity_streams-photo>'),array('<asphoto>','</asphoto>'),$x);
773         $source_xml = parse_xml_string($x,false);
774
775         if(strlen($source_xml->post->asphoto->objectId) && ($source_xml->post->asphoto->objectId != 0) && ($source_xml->post->asphoto->image_url)) {
776                 $body = '[url=' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '][img]' . notags(unxmlify($source_xml->post->asphoto->objectId)) . '[/img][/url]' . "\n";
777                 $body = scale_diaspora_images($body,false);
778         }
779         elseif($source_xml->post->asphoto->image_url) {
780                 $body = '[img]' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '[/img]' . "\n";
781                 $body = scale_diaspora_images($body);
782         }
783         elseif($source_xml->post->status_message) {
784                 $body = diaspora2bb($source_xml->post->status_message->raw_message);
785                 $body = scale_diaspora_images($body);
786
787         }
788         else {
789                 logger('diaspora_reshare: no reshare content found: ' . print_r($source_xml,true));
790                 return;
791         }
792         if(! $body) {
793                 logger('diaspora_reshare: empty body: source= ' . $x);
794                 return;
795         }
796
797         $person = find_diaspora_person_by_handle($orig_author);
798
799         if(is_array($person) && x($person,'name') && x($person,'url'))
800                 $details = '[url=' . $person['url'] . ']' . $person['name'] . '[/url]';
801         else
802                 $details = $orig_author;
803         
804         $prefix = '&#x2672; ' . $details . "\n"; 
805
806
807     // allocate a guid on our system - we aren't fixing any collisions.
808         // we're ignoring them
809
810         $g = q("select * from guid where guid = '%s' limit 1",
811                 dbesc($guid)
812         );
813         if(! count($g)) {
814                 q("insert into guid ( guid ) values ( '%s' )",
815                         dbesc($guid)
816                 );
817         }
818
819         $created = unxmlify($xml->created_at);
820         $private = ((unxmlify($xml->public) == 'false') ? 1 : 0);
821
822         $datarray = array();
823
824         $str_tags = '';
825
826         $tags = get_tags($body);
827
828         if(count($tags)) {
829                 foreach($tags as $tag) {
830                         if(strpos($tag,'#') === 0) {
831                                 if(strpos($tag,'[url='))
832                                         continue;
833                                 $basetag = str_replace('_',' ',substr($tag,1));
834                                 $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
835                                 if(strlen($str_tags))
836                                         $str_tags .= ',';
837                                 $str_tags .= '#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
838                                 continue;
839                         }
840                 }
841         }
842         
843         $datarray['uid'] = $importer['uid'];
844         $datarray['contact-id'] = $contact['id'];
845         $datarray['wall'] = 0;
846         $datarray['guid'] = $guid;
847         $datarray['uri'] = $datarray['parent-uri'] = $message_id;
848         $datarray['created'] = $datarray['edited'] = datetime_convert('UTC','UTC',$created);
849         $datarray['private'] = $private;
850         $datarray['parent'] = 0;
851         $datarray['owner-name'] = $contact['name'];
852         $datarray['owner-link'] = $contact['url'];
853         $datarray['owner-avatar'] = $contact['thumb'];
854         $datarray['author-name'] = $contact['name'];
855         $datarray['author-link'] = $contact['url'];
856         $datarray['author-avatar'] = $contact['thumb'];
857         $datarray['body'] = $prefix . $body;
858         $datarray['tag'] = $str_tags;
859         $datarray['app']  = 'Diaspora';
860
861         $message_id = item_store($datarray);
862
863         if($message_id) {
864                 q("update item set plink = '%s' where id = %d limit 1",
865                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
866                         intval($message_id)
867                 );
868         }
869
870         return;
871
872 }
873
874
875 function diaspora_asphoto($importer,$xml) {
876         logger('diaspora_asphoto called');
877
878         $a = get_app();
879         $guid = notags(unxmlify($xml->guid));
880         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
881
882         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
883         if(! $contact)
884                 return;
885
886         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
887                 logger('diaspora_asphoto: Ignoring this author.');
888                 return 202;
889         }
890
891         $message_id = $diaspora_handle . ':' . $guid;
892         $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1",
893                 intval($importer['uid']),
894                 dbesc($message_id),
895                 dbesc($guid)
896         );
897         if(count($r)) {
898                 logger('diaspora_asphoto: message exists: ' . $guid);
899                 return;
900         }
901
902     // allocate a guid on our system - we aren't fixing any collisions.
903         // we're ignoring them
904
905         $g = q("select * from guid where guid = '%s' limit 1",
906                 dbesc($guid)
907         );
908         if(! count($g)) {
909                 q("insert into guid ( guid ) values ( '%s' )",
910                         dbesc($guid)
911                 );
912         }
913
914         $created = unxmlify($xml->created_at);
915         $private = ((unxmlify($xml->public) == 'false') ? 1 : 0);
916
917         if(strlen($xml->objectId) && ($xml->objectId != 0) && ($xml->image_url)) {
918                 $body = '[url=' . notags(unxmlify($xml->image_url)) . '][img]' . notags(unxmlify($xml->objectId)) . '[/img][/url]' . "\n";
919                 $body = scale_diaspora_images($body,false);
920         }
921         elseif($xml->image_url) {
922                 $body = '[img]' . notags(unxmlify($xml->image_url)) . '[/img]' . "\n";
923                 $body = scale_diaspora_images($body);
924         }
925         else {
926                 logger('diaspora_asphoto: no photo url found.');
927                 return;
928         }
929
930         $datarray = array();
931
932         
933         $datarray['uid'] = $importer['uid'];
934         $datarray['contact-id'] = $contact['id'];
935         $datarray['wall'] = 0;
936         $datarray['guid'] = $guid;
937         $datarray['uri'] = $datarray['parent-uri'] = $message_id;
938         $datarray['created'] = $datarray['edited'] = datetime_convert('UTC','UTC',$created);
939         $datarray['private'] = $private;
940         $datarray['parent'] = 0;
941         $datarray['owner-name'] = $contact['name'];
942         $datarray['owner-link'] = $contact['url'];
943         $datarray['owner-avatar'] = $contact['thumb'];
944         $datarray['author-name'] = $contact['name'];
945         $datarray['author-link'] = $contact['url'];
946         $datarray['author-avatar'] = $contact['thumb'];
947         $datarray['body'] = $body;
948         
949         $datarray['app']  = 'Diaspora/Cubbi.es';
950
951         $message_id = item_store($datarray);
952
953         if($message_id) {
954                 q("update item set plink = '%s' where id = %d limit 1",
955                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
956                         intval($message_id)
957                 );
958         }
959
960         return;
961
962 }
963
964
965
966
967
968
969 function diaspora_comment($importer,$xml,$msg) {
970
971         $a = get_app();
972         $guid = notags(unxmlify($xml->guid));
973         $parent_guid = notags(unxmlify($xml->parent_guid));
974         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
975         $target_type = notags(unxmlify($xml->target_type));
976         $text = unxmlify($xml->text);
977         $author_signature = notags(unxmlify($xml->author_signature));
978
979         $parent_author_signature = (($xml->parent_author_signature) ? notags(unxmlify($xml->parent_author_signature)) : '');
980
981         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
982         if(! $contact) {
983                 logger('diaspora_comment: cannot find contact: ' . $msg['author']);
984                 return;
985         }
986
987         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
988                 logger('diaspora_comment: Ignoring this author.');
989                 return 202;
990         }
991
992         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
993                 intval($importer['uid']),
994                 dbesc($guid)
995         );
996         if(count($r)) {
997                 logger('diaspora_comment: our comment just got relayed back to us (or there was a guid collision) : ' . $guid);
998                 return;
999         }
1000
1001         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1002                 intval($importer['uid']),
1003                 dbesc($parent_guid)
1004         );
1005         if(! count($r)) {
1006                 logger('diaspora_comment: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
1007                 return;
1008         }
1009         $parent_item = $r[0];
1010
1011         $author_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle;
1012
1013         $author_signature = base64_decode($author_signature);
1014
1015         if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
1016                 $person = $contact;
1017                 $key = $msg['key'];
1018         }
1019         else {
1020                 $person = find_diaspora_person_by_handle($diaspora_handle);     
1021
1022                 if(is_array($person) && x($person,'pubkey'))
1023                         $key = $person['pubkey'];
1024                 else {
1025                         logger('diaspora_comment: unable to find author details');
1026                         return;
1027                 }
1028         }
1029
1030         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
1031                 logger('diaspora_comment: verification failed.');
1032                 return;
1033         }
1034
1035         if($parent_author_signature) {
1036                 $owner_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle;
1037
1038                 $parent_author_signature = base64_decode($parent_author_signature);
1039
1040                 $key = $msg['key'];
1041
1042                 if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha256')) {
1043                         logger('diaspora_comment: owner verification failed.');
1044                         return;
1045                 }
1046         }
1047
1048         // Phew! Everything checks out. Now create an item.
1049
1050         $body = diaspora2bb($text);
1051
1052         $message_id = $diaspora_handle . ':' . $guid;
1053
1054         $datarray = array();
1055
1056         $str_tags = '';
1057
1058         $tags = get_tags($body);
1059
1060         if(count($tags)) {
1061                 foreach($tags as $tag) {
1062                         if(strpos($tag,'#') === 0) {
1063                                 if(strpos($tag,'[url='))
1064                                         continue;
1065                                 $basetag = str_replace('_',' ',substr($tag,1));
1066                                 $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
1067                                 if(strlen($str_tags))
1068                                         $str_tags .= ',';
1069                                 $str_tags .= '#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
1070                                 continue;
1071                         }
1072                 }
1073         }
1074
1075         $datarray['uid'] = $importer['uid'];
1076         $datarray['contact-id'] = $contact['id'];
1077         $datarray['wall'] = $parent_item['wall'];
1078         $datarray['gravity'] = GRAVITY_COMMENT;
1079         $datarray['guid'] = $guid;
1080         $datarray['uri'] = $message_id;
1081         $datarray['parent-uri'] = $parent_item['uri'];
1082
1083         // No timestamps for comments? OK, we'll the use current time.
1084         $datarray['created'] = $datarray['edited'] = datetime_convert();
1085         $datarray['private'] = $parent_item['private'];
1086
1087         $datarray['owner-name'] = $parent_item['owner-name'];
1088         $datarray['owner-link'] = $parent_item['owner-link'];
1089         $datarray['owner-avatar'] = $parent_item['owner-avatar'];
1090
1091         $datarray['author-name'] = $person['name'];
1092         $datarray['author-link'] = $person['url'];
1093         $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
1094         $datarray['body'] = $body;
1095         $datarray['tag'] = $str_tags;
1096
1097         // We can't be certain what the original app is if the message is relayed.
1098         if(($parent_item['origin']) && (! $parent_author_signature)) 
1099                 $datarray['app']  = 'Diaspora';
1100
1101         $message_id = item_store($datarray);
1102
1103         if($message_id) {
1104                 q("update item set plink = '%s' where id = %d limit 1",
1105                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
1106                         intval($message_id)
1107                 );
1108         }
1109
1110         if(($parent_item['origin']) && (! $parent_author_signature)) {
1111                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1112                         intval($message_id),
1113                         dbesc($author_signed_data),
1114                         dbesc(base64_encode($author_signature)),
1115                         dbesc($diaspora_handle)
1116                 );
1117
1118                 // if the message isn't already being relayed, notify others
1119                 // the existence of parent_author_signature means the parent_author or owner
1120                 // is already relaying.
1121
1122                 proc_run('php','include/notifier.php','comment',$message_id);
1123         }
1124         return;
1125 }
1126
1127
1128
1129
1130 function diaspora_conversation($importer,$xml,$msg) {
1131
1132         $a = get_app();
1133
1134         $guid = notags(unxmlify($xml->guid));
1135         $subject = notags(unxmlify($xml->subject));
1136         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1137         $participant_handles = notags(unxmlify($xml->participant_handles));
1138         $created_at = datetime_convert('UTC','UTC',notags(unxmlify($xml->created_at)));
1139
1140         $parent_uri = $diaspora_handle . ':' . $guid;
1141  
1142         $messages = $xml->message;
1143
1144         if(! count($messages)) {
1145                 logger('diaspora_conversation: empty conversation');
1146                 return;
1147         }
1148
1149         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
1150         if(! $contact) {
1151                 logger('diaspora_conversation: cannot find contact: ' . $msg['author']);
1152                 return;
1153         }
1154
1155         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
1156                 logger('diaspora_conversation: Ignoring this author.');
1157                 return 202;
1158         }
1159
1160         $conversation = null;
1161
1162         $c = q("select * from conv where uid = %d and guid = '%s' limit 1",
1163                 intval($importer['uid']),
1164                 dbesc($guid)
1165         );
1166         if(count($c))
1167                 $conversation = $c[0];
1168         else {
1169                 $r = q("insert into conv (uid,guid,creator,created,updated,subject,recips) values(%d, '%s', '%s', '%s', '%s', '%s', '%s') ",
1170                         intval($importer['uid']),
1171                         dbesc($guid),
1172                         dbesc($diaspora_handle),
1173                         dbesc(datetime_convert('UTC','UTC',$created_at)),
1174                         dbesc(datetime_convert()),
1175                         dbesc($subject),
1176                         dbesc($participant_handles)
1177                 );
1178                 if($r)
1179                         $c = q("select * from conv where uid = %d and guid = '%s' limit 1",
1180                 intval($importer['uid']),
1181             dbesc($guid)
1182         );
1183             if(count($c))
1184             $conversation = $c[0];
1185         }
1186         if(! $conversation) {
1187                 logger('diaspora_conversation: unable to create conversation.');
1188                 return;
1189         }
1190
1191         foreach($messages as $mesg) {
1192
1193                 $reply = 0;
1194
1195                 $msg_guid = notags(unxmlify($mesg->guid));
1196                 $msg_parent_guid = notags(unxmlify($mesg->parent_guid));
1197                 $msg_parent_author_signature = notags(unxmlify($mesg->parent_author_signature));
1198                 $msg_author_signature = notags(unxmlify($mesg->author_signature));
1199                 $msg_text = unxmlify($mesg->text);
1200                 $msg_created_at = datetime_convert('UTC','UTC',notags(unxmlify($mesg->created_at)));
1201                 $msg_diaspora_handle = notags(unxmlify($mesg->diaspora_handle));
1202                 $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
1203                 if($msg_conversation_guid != $guid) {
1204                         logger('diaspora_conversation: message conversation guid does not belong to the current conversation. ' . $xml);
1205                         continue;
1206                 }
1207
1208                 $body = diaspora2bb($msg_text);
1209                 $message_id = $msg_diaspora_handle . ':' . $msg_guid;
1210
1211                 $author_signed_data = $msg_guid . ';' . $msg_parent_guid . ';' . $msg_text . ';' . unxmlify($mesg->created_at) . ';' . $msg_diaspora_handle . ';' . $msg_conversation_guid;
1212
1213                 $author_signature = base64_decode($msg_author_signature);
1214
1215                 if(strcasecmp($msg_diaspora_handle,$msg['author']) == 0) {
1216                         $person = $contact;
1217                         $key = $msg['key'];
1218                 }
1219                 else {
1220                         $person = find_diaspora_person_by_handle($msg_diaspora_handle); 
1221
1222                         if(is_array($person) && x($person,'pubkey'))
1223                                 $key = $person['pubkey'];
1224                         else {
1225                                 logger('diaspora_conversation: unable to find author details');
1226                                 continue;
1227                         }
1228                 }
1229
1230                 if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
1231                         logger('diaspora_conversation: verification failed.');
1232                         continue;
1233                 }
1234
1235                 if($msg_parent_author_signature) {
1236                         $owner_signed_data = $msg_guid . ';' . $msg_parent_guid . ';' . $msg_text . ';' . unxmlify($mesg->created_at) . ';' . $msg_diaspora_handle . ';' . $msg_conversation_guid;
1237
1238                         $parent_author_signature = base64_decode($msg_parent_author_signature);
1239
1240                         $key = $msg['key'];
1241
1242                         if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha256')) {
1243                                 logger('diaspora_conversation: owner verification failed.');
1244                                 continue;
1245                         }
1246                 }
1247
1248                 $r = q("select id from mail where `uri` = '%s' limit 1",
1249                         dbesc($message_id)
1250                 );
1251                 if(count($r)) {
1252                         logger('diaspora_conversation: duplicate message already delivered.', LOGGER_DEBUG);
1253                         continue;
1254                 }
1255
1256                 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')",
1257                         intval($importer['uid']),
1258                         dbesc($msg_guid),
1259                         intval($conversation['id']),
1260                         dbesc($person['name']),
1261                         dbesc($person['photo']),
1262                         dbesc($person['url']),
1263                         intval($contact['id']),  
1264                         dbesc($subject),
1265                         dbesc($body),
1266                         0,
1267                         0,
1268                         dbesc($message_id),
1269                         dbesc($parent_uri),
1270                         dbesc($msg_created_at)
1271                 );                      
1272
1273                 q("update conv set updated = '%s' where id = %d limit 1",
1274                         dbesc(datetime_convert()),
1275                         intval($conversation['id'])
1276                 );              
1277
1278                 require_once('include/enotify.php');
1279                 notification(array(                     
1280                         'type' => NOTIFY_MAIL,
1281                         'notify_flags' => $importer['notify-flags'],
1282                         'language' => $importer['language'],
1283                         'to_name' => $importer['username'],
1284                         'to_email' => $importer['email'],
1285                         'item' => array('subject' => $subject, 'body' => $body),
1286                         'source_name' => $person['name'],
1287                         'source_link' => $person['url'],
1288                         'source_photo' => $person['thumb'],
1289                         'verb' => ACTIVITY_POST,
1290                         'otype' => 'mail'
1291                 ));
1292         }       
1293
1294         return;
1295 }
1296
1297 function diaspora_message($importer,$xml,$msg) {
1298
1299         $a = get_app();
1300
1301         $msg_guid = notags(unxmlify($xml->guid));
1302         $msg_parent_guid = notags(unxmlify($xml->parent_guid));
1303         $msg_parent_author_signature = notags(unxmlify($xml->parent_author_signature));
1304         $msg_author_signature = notags(unxmlify($xml->author_signature));
1305         $msg_text = unxmlify($xml->text);
1306         $msg_created_at = datetime_convert('UTC','UTC',notags(unxmlify($xml->created_at)));
1307         $msg_diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1308         $msg_conversation_guid = notags(unxmlify($xml->conversation_guid));
1309
1310         $parent_uri = $diaspora_handle . ':' . $msg_parent_guid;
1311  
1312         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg_diaspora_handle);
1313         if(! $contact) {
1314                 logger('diaspora_message: cannot find contact: ' . $msg_diaspora_handle);
1315                 return;
1316         }
1317
1318         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
1319                 logger('diaspora_message: Ignoring this author.');
1320                 return 202;
1321         }
1322
1323         $conversation = null;
1324
1325         $c = q("select * from conv where uid = %d and guid = '%s' limit 1",
1326                 intval($importer['uid']),
1327                 dbesc($msg_conversation_guid)
1328         );
1329         if(count($c))
1330                 $conversation = $c[0];
1331         else {
1332                 logger('diaspora_message: conversation not available.');
1333                 return;
1334         }
1335
1336         $reply = 0;
1337                         
1338         $body = diaspora2bb($msg_text);
1339         $message_id = $msg_diaspora_handle . ':' . $msg_guid;
1340
1341         $author_signed_data = $msg_guid . ';' . $msg_parent_guid . ';' . $msg_text . ';' . unxmlify($xml->created_at) . ';' . $msg_diaspora_handle . ';' . $msg_conversation_guid;
1342
1343
1344         $author_signature = base64_decode($msg_author_signature);
1345
1346         $person = find_diaspora_person_by_handle($msg_diaspora_handle); 
1347         if(is_array($person) && x($person,'pubkey'))
1348                 $key = $person['pubkey'];
1349         else {
1350                 logger('diaspora_message: unable to find author details');
1351                 return;
1352         }
1353
1354         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
1355                 logger('diaspora_message: verification failed.');
1356                 return;
1357         }
1358
1359         $r = q("select id from mail where `uri` = '%s' and uid = %d limit 1",
1360                 dbesc($message_id),
1361                 intval($importer['uid'])
1362         );
1363         if(count($r)) {
1364                 logger('diaspora_message: duplicate message already delivered.', LOGGER_DEBUG);
1365                 return;
1366         }
1367
1368         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')",
1369                 intval($importer['uid']),
1370                 dbesc($msg_guid),
1371                 intval($conversation['id']),
1372                 dbesc($person['name']),
1373                 dbesc($person['photo']),
1374                 dbesc($person['url']),
1375                 intval($contact['id']),  
1376                 dbesc($conversation['subject']),
1377                 dbesc($body),
1378                 0,
1379                 1,
1380                 dbesc($message_id),
1381                 dbesc($parent_uri),
1382                 dbesc($msg_created_at)
1383         );                      
1384
1385         q("update conv set updated = '%s' where id = %d limit 1",
1386                 dbesc(datetime_convert()),
1387                 intval($conversation['id'])
1388         );              
1389         
1390         return;
1391 }
1392
1393
1394 function diaspora_photo($importer,$xml,$msg) {
1395
1396         $a = get_app();
1397         $remote_photo_path = notags(unxmlify($xml->remote_photo_path));
1398
1399         $remote_photo_name = notags(unxmlify($xml->remote_photo_name));
1400
1401         $status_message_guid = notags(unxmlify($xml->status_message_guid));
1402
1403         $guid = notags(unxmlify($xml->guid));
1404
1405         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1406
1407         $public = notags(unxmlify($xml->public));
1408
1409         $created_at = notags(unxmlify($xml_created_at));
1410
1411
1412         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
1413         if(! $contact)
1414                 return;
1415
1416         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
1417                 logger('diaspora_photo: Ignoring this author.');
1418                 return 202;
1419         }
1420
1421         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1422                 intval($importer['uid']),
1423                 dbesc($status_message_guid)
1424         );
1425         if(! count($r)) {
1426                 logger('diaspora_photo: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
1427                 return;
1428         }
1429         $parent_item = $r[0];
1430
1431         $link_text = '[img]' . $remote_photo_path . $remote_photo_name . '[/img]' . "\n";
1432
1433         $link_text = scale_diaspora_images($link_text);
1434
1435         if(strpos($parent_item['body'],$link_text) === false) {
1436                 $r = q("update item set `body` = '%s', `visible` = 1 where `id` = %d and `uid` = %d limit 1",
1437                         dbesc($link_text . $parent_item['body']),
1438                         intval($parent_item['id']),
1439                         intval($parent_item['uid'])
1440                 );
1441         }
1442
1443         return;
1444 }
1445
1446
1447
1448
1449 function diaspora_like($importer,$xml,$msg) {
1450
1451         $a = get_app();
1452         $guid = notags(unxmlify($xml->guid));
1453         $parent_guid = notags(unxmlify($xml->parent_guid));
1454         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1455         $target_type = notags(unxmlify($xml->target_type));
1456         $positive = notags(unxmlify($xml->positive));
1457         $author_signature = notags(unxmlify($xml->author_signature));
1458
1459         $parent_author_signature = (($xml->parent_author_signature) ? notags(unxmlify($xml->parent_author_signature)) : '');
1460
1461         // likes on comments not supported here and likes on photos not supported by Diaspora
1462
1463         if($target_type !== 'Post')
1464                 return;
1465
1466         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
1467         if(! $contact) {
1468                 logger('diaspora_like: cannot find contact: ' . $msg['author']);
1469                 return;
1470         }
1471
1472         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
1473                 logger('diaspora_like: Ignoring this author.');
1474                 return 202;
1475         }
1476
1477         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1478                 intval($importer['uid']),
1479                 dbesc($parent_guid)
1480         );
1481         if(! count($r)) {
1482                 logger('diaspora_like: parent item not found: ' . $guid);
1483                 return;
1484         }
1485
1486         $parent_item = $r[0];
1487
1488         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1489                 intval($importer['uid']),
1490                 dbesc($guid)
1491         );
1492         if(count($r)) {
1493                 if($positive === 'true') {
1494                         logger('diaspora_like: duplicate like: ' . $guid);
1495                         return;
1496                 } 
1497                 if($positive === 'false') {
1498                         q("UPDATE `item` SET `deleted` = 1 WHERE `id` = %d AND `uid` = %d LIMIT 1",
1499                                 intval($r[0]['id']),
1500                                 intval($importer['uid'])
1501                         );
1502                         // FIXME
1503                         //  send notification via proc_run()
1504                         return;
1505                 }
1506         }
1507         if($positive === 'false') {
1508                 logger('diaspora_like: unlike received with no corresponding like');
1509                 return; 
1510         }
1511
1512         $author_signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle;
1513
1514         $author_signature = base64_decode($author_signature);
1515
1516         if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
1517                 $person = $contact;
1518                 $key = $msg['key'];
1519         }
1520         else {
1521                 $person = find_diaspora_person_by_handle($diaspora_handle);     
1522                 if(is_array($person) && x($person,'pubkey'))
1523                         $key = $person['pubkey'];
1524                 else {
1525                         logger('diaspora_like: unable to find author details');
1526                         return;
1527                 }
1528         }
1529
1530         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
1531                 logger('diaspora_like: verification failed.');
1532                 return;
1533         }
1534
1535         if($parent_author_signature) {
1536
1537                 $owner_signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle;
1538
1539                 $parent_author_signature = base64_decode($parent_author_signature);
1540
1541                 $key = $msg['key'];
1542
1543                 if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha256')) {
1544                         logger('diaspora_like: owner verification failed.');
1545                         return;
1546                 }
1547         }
1548
1549         // Phew! Everything checks out. Now create an item.
1550
1551         $uri = $diaspora_handle . ':' . $guid;
1552
1553         $activity = ACTIVITY_LIKE;
1554         $post_type = (($parent_item['resource-id']) ? t('photo') : t('status'));
1555         $objtype = (($parent_item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); 
1556         $link = xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . '" />' . "\n") ;
1557         $body = $parent_item['body'];
1558
1559         $obj = <<< EOT
1560
1561         <object>
1562                 <type>$objtype</type>
1563                 <local>1</local>
1564                 <id>{$parent_item['uri']}</id>
1565                 <link>$link</link>
1566                 <title></title>
1567                 <content>$body</content>
1568         </object>
1569 EOT;
1570         $bodyverb = t('%1$s likes %2$s\'s %3$s');
1571
1572         $arr = array();
1573
1574         $arr['uri'] = $uri;
1575         $arr['uid'] = $importer['uid'];
1576         $arr['guid'] = $guid;
1577         $arr['contact-id'] = $contact['id'];
1578         $arr['type'] = 'activity';
1579         $arr['wall'] = $parent_item['wall'];
1580         $arr['gravity'] = GRAVITY_LIKE;
1581         $arr['parent'] = $parent_item['id'];
1582         $arr['parent-uri'] = $parent_item['uri'];
1583
1584         $arr['owner-name'] = $parent_item['name'];
1585         $arr['owner-link'] = $parent_item['url'];
1586         $arr['owner-avatar'] = $parent_item['thumb'];
1587
1588         $arr['author-name'] = $person['name'];
1589         $arr['author-link'] = $person['url'];
1590         $arr['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
1591         
1592         $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
1593         $alink = '[url=' . $parent_item['author-link'] . ']' . $parent_item['author-name'] . '[/url]';
1594         $plink = '[url=' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . ']' . $post_type . '[/url]';
1595         $arr['body'] =  sprintf( $bodyverb, $ulink, $alink, $plink );
1596
1597         $arr['app']  = 'Diaspora';
1598
1599         $arr['private'] = $parent_item['private'];
1600         $arr['verb'] = $activity;
1601         $arr['object-type'] = $objtype;
1602         $arr['object'] = $obj;
1603         $arr['visible'] = 1;
1604         $arr['unseen'] = 1;
1605         $arr['last-child'] = 0;
1606
1607         $message_id = item_store($arr);
1608
1609
1610         if($message_id) {
1611                 q("update item set plink = '%s' where id = %d limit 1",
1612                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
1613                         intval($message_id)
1614                 );
1615         }
1616
1617         if(! $parent_author_signature) {
1618                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1619                         intval($message_id),
1620                         dbesc($author_signed_data),
1621                         dbesc(base64_encode($author_signature)),
1622                         dbesc($diaspora_handle)
1623                 );
1624         }
1625
1626         // if the message isn't already being relayed, notify others
1627         // the existence of parent_author_signature means the parent_author or owner
1628         // is already relaying. The parent_item['origin'] indicates the message was created on our system
1629
1630         if(($parent_item['origin']) && (! $parent_author_signature))
1631                 proc_run('php','include/notifier.php','comment',$message_id);
1632
1633         return;
1634 }
1635
1636 function diaspora_retraction($importer,$xml) {
1637
1638
1639         $guid = notags(unxmlify($xml->guid));
1640         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1641         $type = notags(unxmlify($xml->type));
1642
1643         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
1644         if(! $contact)
1645                 return;
1646
1647         if($type === 'Person') {
1648                 require_once('include/Contact.php');
1649                 contact_remove($contact['id']);
1650         }
1651         elseif($type === 'Post') {
1652                 $r = q("select * from item where guid = '%s' and uid = %d limit 1",
1653                         dbesc('guid'),
1654                         intval($importer['uid'])
1655                 );
1656                 if(count($r)) {
1657                         if(link_compare($r[0]['author-link'],$contact['url'])) {
1658                                 q("update item set `deleted` = 1, `changed` = '%s' where `id` = %d limit 1",
1659                                         dbesc(datetime_convert()),                      
1660                                         intval($r[0]['id'])
1661                                 );
1662                         }
1663                 }
1664         }
1665
1666         return 202;
1667         // NOTREACHED
1668 }
1669
1670 function diaspora_signed_retraction($importer,$xml,$msg) {
1671
1672
1673         $guid = notags(unxmlify($xml->target_guid));
1674         $diaspora_handle = notags(unxmlify($xml->sender_handle));
1675         $type = notags(unxmlify($xml->target_type));
1676         $sig = notags(unxmlify($xml->target_author_signature));
1677
1678         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
1679         if(! $contact) {
1680                 logger('diaspora_signed_retraction: no contact');
1681                 return;
1682         }
1683
1684         // this may not yet work for comments. Need to see how the relaying works
1685         // and figure out who signs it.
1686
1687
1688         $signed_data = $guid . ';' . $type ;
1689
1690         $sig = base64_decode($sig);
1691
1692         $key = $msg['key'];
1693
1694         if(! rsa_verify($signed_data,$sig,$key,'sha256')) {
1695                 logger('diaspora_signed_retraction: owner verification failed.' . print_r($msg,true));
1696                 return;
1697         }
1698
1699         if($type === 'StatusMessage') {
1700                 $r = q("select * from item where guid = '%s' and uid = %d limit 1",
1701                         dbesc($guid),
1702                         intval($importer['uid'])
1703                 );
1704                 if(count($r)) {
1705                         if(link_compare($r[0]['author-link'],$contact['url'])) {
1706                                 q("update item set `deleted` = 1, `changed` = '%s' where `id` = %d limit 1",
1707                                         dbesc(datetime_convert()),                      
1708                                         intval($r[0]['id'])
1709                                 );
1710                         }
1711                 }
1712         }
1713         else
1714                 logger('diaspora_signed_retraction: unknown type: ' . $type);
1715
1716         return 202;
1717         // NOTREACHED
1718 }
1719
1720 function diaspora_profile($importer,$xml) {
1721
1722         $a = get_app();
1723         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1724
1725         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
1726         if(! $contact)
1727                 return;
1728
1729         if($contact['blocked']) {
1730                 logger('diaspora_post: Ignoring this author.');
1731                 return 202;
1732         }
1733
1734         $name = unxmlify($xml->first_name) . ((strlen($xml->last_name)) ? ' ' . unxmlify($xml->last_name) : '');
1735         $image_url = unxmlify($xml->image_url);
1736         $birthday = unxmlify($xml->birthday);
1737
1738         $r = q("SELECT DISTINCT ( `resource-id` ) FROM `photo` WHERE  `uid` = %d AND `contact-id` = %d AND `album` = 'Contact Photos' ",
1739                 intval($importer['uid']),
1740                 intval($contact['id'])
1741         );
1742         $oldphotos = ((count($r)) ? $r : null);
1743
1744         require_once('include/Photo.php');
1745
1746         $images = import_profile_photo($image_url,$importer['uid'],$contact['id']);
1747         
1748         // Generic birthday. We don't know the timezone. The year is irrelevant. 
1749
1750         $birthday = str_replace('1000','1901',$birthday);
1751
1752         $birthday = datetime_convert('UTC','UTC',$birthday,'Y-m-d');
1753
1754         // this is to prevent multiple birthday notifications in a single year
1755         // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year
1756
1757         if(substr($birthday,5) === substr($contact['bd'],5))
1758                 $birthday = $contact['bd'];
1759
1760         $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",
1761                 dbesc($name),
1762                 dbesc(datetime_convert()),
1763                 dbesc($images[0]),
1764                 dbesc($images[1]),
1765                 dbesc($images[2]),
1766                 dbesc(datetime_convert()),
1767                 dbesc($birthday),
1768                 intval($contact['id']),
1769                 intval($importer['uid'])
1770         ); 
1771
1772         if($r) {
1773                 if($oldphotos) {
1774                         foreach($oldphotos as $ph) {
1775                                 q("DELETE FROM `photo` WHERE `uid` = %d AND `contact-id` = %d AND `album` = 'Contact Photos' AND `resource-id` = '%s' ",
1776                                         intval($importer['uid']),
1777                                         intval($contact['id']),
1778                                         dbesc($ph['resource-id'])
1779                                 );
1780                         }
1781                 }
1782         }       
1783
1784         return;
1785
1786 }
1787
1788 function diaspora_share($me,$contact) {
1789         $a = get_app();
1790         $myaddr = $me['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1791         $theiraddr = $contact['addr'];
1792
1793         $tpl = get_markup_template('diaspora_share.tpl');
1794         $msg = replace_macros($tpl, array(
1795                 '$sender' => $myaddr,
1796                 '$recipient' => $theiraddr
1797         ));
1798
1799         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
1800
1801         return(diaspora_transmit($owner,$contact,$slap, false));
1802 }
1803
1804 function diaspora_unshare($me,$contact) {
1805
1806         $a = get_app();
1807         $myaddr = $me['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1808
1809         $tpl = get_markup_template('diaspora_retract.tpl');
1810         $msg = replace_macros($tpl, array(
1811                 '$guid'   => $me['guid'],
1812                 '$type'   => 'Person',
1813                 '$handle' => $myaddr
1814         ));
1815
1816         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
1817
1818         return(diaspora_transmit($owner,$contact,$slap, false));
1819
1820 }
1821
1822
1823
1824 function diaspora_send_status($item,$owner,$contact,$public_batch = false) {
1825
1826         $a = get_app();
1827         $myaddr = $owner['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1828         $theiraddr = $contact['addr'];
1829
1830         $images = array();
1831
1832         $body = $item['body'];
1833
1834 /*
1835         // We're trying to match Diaspora's split message/photo protocol but
1836         // all the photos are displayed on D* as links and not img's - even
1837         // though we're sending pretty much precisely what they send us when
1838         // doing the same operation.  
1839         // Commented out for now, we'll use bb2diaspora to convert photos to markdown
1840         // which seems to get through intact.
1841
1842         $cnt = preg_match_all('|\[img\](.*?)\[\/img\]|',$body,$matches,PREG_SET_ORDER);
1843         if($cnt) {
1844                 foreach($matches as $mtch) {
1845                         $detail = array();
1846                         $detail['str'] = $mtch[0];
1847                         $detail['path'] = dirname($mtch[1]) . '/';
1848                         $detail['file'] = basename($mtch[1]);
1849                         $detail['guid'] = $item['guid'];
1850                         $detail['handle'] = $myaddr;
1851                         $images[] = $detail;
1852                         $body = str_replace($detail['str'],$mtch[1],$body);
1853                 }
1854         }       
1855 */
1856
1857         $body = xmlify(html_entity_decode(bb2diaspora($body)));
1858
1859         if($item['attach']) {
1860                 $cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism',$item['attach'],$matches,PREG_SET_ORDER);
1861                 if(cnt) {
1862                         $body .= "\n" . t('Attachments:') . "\n";
1863                         foreach($matches as $mtch) {
1864                                 $body .= '[' . $mtch[3] . '](' . $mtch[1] . ')' . "\n";
1865                         }
1866                 }
1867         }       
1868
1869
1870         $public = (($item['private']) ? 'false' : 'true');
1871
1872         require_once('include/datetime.php');
1873         $created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C');
1874
1875         $tpl = get_markup_template('diaspora_post.tpl');
1876         $msg = replace_macros($tpl, array(
1877                 '$body' => $body,
1878                 '$guid' => $item['guid'],
1879                 '$handle' => xmlify($myaddr),
1880                 '$public' => $public,
1881                 '$created' => $created
1882         ));
1883
1884         logger('diaspora_send_status: ' . $owner['username'] . ' -> ' . $contact['name'] . ' base message: ' . $msg, LOGGER_DATA);
1885
1886         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
1887
1888         $return_code = diaspora_transmit($owner,$contact,$slap,$public_batch);
1889
1890         if(count($images)) {
1891                 diaspora_send_images($item,$owner,$contact,$images,$public_batch);
1892         }
1893
1894         return $return_code;
1895 }
1896
1897
1898 function diaspora_send_images($item,$owner,$contact,$images,$public_batch = false) {
1899         $a = get_app();
1900         if(! count($images))
1901                 return;
1902         $mysite = substr($a->get_baseurl(),strpos($a->get_baseurl(),'://') + 3) . '/photo';
1903
1904         $tpl = get_markup_template('diaspora_photo.tpl');
1905         foreach($images as $image) {
1906                 if(! stristr($image['path'],$mysite))
1907                         continue;
1908                 $resource = str_replace('.jpg','',$image['file']);
1909                 $resource = substr($resource,0,strpos($resource,'-'));
1910
1911                 $r = q("select * from photo where `resource-id` = '%s' and `uid` = %d limit 1",
1912                         dbesc($resource),
1913                         intval($owner['uid'])
1914                 );
1915                 if(! count($r))
1916                         continue;
1917                 $public = (($r[0]['allow_cid'] || $r[0]['allow_gid'] || $r[0]['deny_cid'] || $r[0]['deny_gid']) ? 'false' : 'true' );
1918                 $msg = replace_macros($tpl,array(               
1919                         '$path' => xmlify($image['path']),
1920                         '$filename' => xmlify($image['file']),
1921                         '$msg_guid' => xmlify($image['guid']),
1922                         '$guid' => xmlify($r[0]['guid']),
1923                         '$handle' => xmlify($image['handle']),
1924                         '$public' => xmlify($public),
1925                         '$created_at' => xmlify(datetime_convert('UTC','UTC',$r[0]['created'],'Y-m-d H:i:s \U\T\C'))
1926                 ));
1927
1928
1929                 logger('diaspora_send_photo: base message: ' . $msg, LOGGER_DATA);
1930                 $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
1931
1932                 diaspora_transmit($owner,$contact,$slap,$public_batch);
1933         }
1934
1935 }
1936
1937 function diaspora_send_followup($item,$owner,$contact,$public_batch = false) {
1938
1939         $a = get_app();
1940         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1941         $theiraddr = $contact['addr'];
1942
1943         $p = q("select guid from item where parent = %d limit 1",
1944                 $item['parent']
1945         );
1946         if(count($p))
1947                 $parent_guid = $p[0]['guid'];
1948         else
1949                 return;
1950
1951         if($item['verb'] === ACTIVITY_LIKE) {
1952                 $tpl = get_markup_template('diaspora_like.tpl');
1953                 $like = true;
1954                 $target_type = 'Post';
1955                 $positive = (($item['deleted']) ? 'false' : 'true');
1956         }
1957         else {
1958                 $tpl = get_markup_template('diaspora_comment.tpl');
1959                 $like = false;
1960         }
1961
1962         $text = html_entity_decode(bb2diaspora($item['body']));
1963
1964         // sign it
1965
1966         if($like)
1967                 $signed_text = $item['guid'] . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $myaddr;
1968         else
1969                 $signed_text = $item['guid'] . ';' . $parent_guid . ';' . $text . ';' . $myaddr;
1970
1971         $authorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
1972
1973         $msg = replace_macros($tpl,array(
1974                 '$guid' => xmlify($item['guid']),
1975                 '$parent_guid' => xmlify($parent_guid),
1976                 '$target_type' =>xmlify($target_type),
1977                 '$authorsig' => xmlify($authorsig),
1978                 '$body' => xmlify($text),
1979                 '$positive' => xmlify($positive),
1980                 '$handle' => xmlify($myaddr)
1981         ));
1982
1983         logger('diaspora_followup: base message: ' . $msg, LOGGER_DATA);
1984
1985         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
1986
1987         return(diaspora_transmit($owner,$contact,$slap,$public_batch));
1988 }
1989
1990
1991 function diaspora_send_relay($item,$owner,$contact,$public_batch = false) {
1992
1993
1994         $a = get_app();
1995         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1996         $theiraddr = $contact['addr'];
1997
1998
1999         $p = q("select guid from item where parent = %d limit 1",
2000                 $item['parent']
2001         );
2002         if(count($p))
2003                 $parent_guid = $p[0]['guid'];
2004         else
2005                 return;
2006
2007         if($item['verb'] === ACTIVITY_LIKE) {
2008                 $tpl = get_markup_template('diaspora_like_relay.tpl');
2009                 $like = true;
2010                 $target_type = 'Post';
2011                 $positive = (($item['deleted']) ? 'false' : 'true');
2012         }
2013         else {
2014                 $tpl = get_markup_template('diaspora_comment_relay.tpl');
2015                 $like = false;
2016         }
2017
2018         $body = $item['body'];
2019
2020         $text = html_entity_decode(bb2diaspora($body));
2021
2022         // fetch the original signature if somebody sent the post to us to relay
2023         // If we are relaying for a reply originating on our own account, there wasn't a 'send to relay'
2024         // action. It wasn't needed. In that case create the original signature and the 
2025         // owner (parent author) signature
2026         // comments from other networks will be relayed under our name, with a brief 
2027         // preamble to describe what's happening and noting the real author
2028
2029         $r = q("select * from sign where iid = %d limit 1",
2030                 intval($item['id'])
2031         );
2032         if(count($r)) { 
2033                 $orig_sign = $r[0];
2034                 $signed_text = $orig_sign['signed_text'];
2035                 $authorsig = $orig_sign['signature'];
2036                 $handle = $orig_sign['signer'];
2037         }
2038         else {
2039
2040                 $itemcontact = q("select * from contact where `id` = %d limit 1",
2041                         intval($item['contact-id'])
2042                 );
2043                 if(count($itemcontact)) {
2044                         if(! $itemcontact[0]['self']) {
2045                                 $prefix = sprintf( t('[Relayed] Comment authored by %s from network %s'),
2046                                         '['. $item['author-name'] . ']' . '(' . $item['author-link'] . ')',  
2047                                         network_to_name($itemcontact['network'])) . "\n";
2048                                 $body = $prefix . $body;
2049                         }
2050                 }
2051                 else {
2052
2053                         if($like)
2054                                 $signed_text = $item['guid'] . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $myaddr;
2055                         else
2056                                 $signed_text = $item['guid'] . ';' . $parent_guid . ';' . $text . ';' . $myaddr;
2057
2058                         $authorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
2059
2060                         q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
2061                                 intval($item['id']),
2062                                 dbesc($signed_text),
2063                                 dbesc(base64_encode($authorsig)),
2064                                 dbesc($myaddr)
2065                         );
2066                         $handle = $myaddr;
2067                 }
2068         }
2069
2070         // sign it
2071
2072         $parentauthorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
2073
2074         $msg = replace_macros($tpl,array(
2075                 '$guid' => xmlify($item['guid']),
2076                 '$parent_guid' => xmlify($parent_guid),
2077                 '$target_type' =>xmlify($target_type),
2078                 '$authorsig' => xmlify($orig_sign['signature']),
2079                 '$parentsig' => xmlify($parentauthorsig),
2080                 '$body' => xmlify($text),
2081                 '$positive' => xmlify($positive),
2082                 '$handle' => xmlify($handle)
2083         ));
2084
2085         logger('diaspora_relay_comment: base message: ' . $msg, LOGGER_DATA);
2086
2087         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
2088
2089         return(diaspora_transmit($owner,$contact,$slap,$public_batch));
2090
2091 }
2092
2093
2094
2095 function diaspora_send_retraction($item,$owner,$contact,$public_batch = false) {
2096
2097         $a = get_app();
2098         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
2099
2100         $signed_text = $item['guid'] . ';' . 'StatusMessage';
2101
2102         $tpl = get_markup_template('diaspora_signed_retract.tpl');
2103         $msg = replace_macros($tpl, array(
2104                 '$guid'   => $item['guid'],
2105                 '$type'   => 'StatusMessage',
2106                 '$handle' => $myaddr,
2107                 '$signature' => base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'))
2108         ));
2109
2110         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
2111
2112         return(diaspora_transmit($owner,$contact,$slap,$public_batch));
2113 }
2114
2115 function diaspora_send_mail($item,$owner,$contact) {
2116
2117         $a = get_app();
2118         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
2119
2120         $r = q("select * from conv where id = %d and uid = %d limit 1",
2121                 intval($item['convid']),
2122                 intval($item['uid'])
2123         );
2124
2125         if(! count($r)) {
2126                 logger('diaspora_send_mail: conversation not found.');
2127                 return;
2128         }
2129         $cnv = $r[0];
2130
2131         $conv = array(
2132                 'guid' => xmlify($cnv['guid']),
2133                 'subject' => xmlify($cnv['subject']),
2134                 'created_at' => xmlify(datetime_convert('UTC','UTC',$cnv['created'],'Y-m-d H:i:s \U\T\C')),
2135                 'diaspora_handle' => xmlify($cnv['creator']),
2136                 'participant_handles' => xmlify($cnv['recips'])
2137         );
2138
2139         $body = bb2diaspora($item['body']);
2140         $created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C');
2141  
2142         $signed_text =  $item['guid'] . ';' . $cnv['guid'] . ';' . $body .  ';' 
2143                 . $created . ';' . $myaddr . ';' . $cnv['guid'];
2144
2145         $sig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
2146
2147         $msg = array(
2148                 'guid' => xmlify($item['guid']),
2149                 'parent_guid' => xmlify($cnv['guid']),
2150                 'parent_author_signature' => (($item['reply']) ? null : xmlify($sig)),
2151                 'author_signature' => xmlify($sig),
2152                 'text' => xmlify($body),
2153                 'created_at' => xmlify($created),
2154                 'diaspora_handle' => xmlify($myaddr),
2155                 'conversation_guid' => xmlify($cnv['guid'])
2156         );
2157
2158         if($item['reply']) {
2159                 $tpl = get_markup_template('diaspora_message.tpl');
2160                 $xmsg = replace_macros($tpl, array('$msg' => $msg));
2161         }
2162         else {
2163                 $conv['messages'] = array($msg);
2164                 $tpl = get_markup_template('diaspora_conversation.tpl');
2165                 $xmsg = replace_macros($tpl, array('$conv' => $conv));
2166         }
2167
2168         logger('diaspora_conversation: ' . print_r($xmsg,true), LOGGER_DATA);
2169
2170         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($xmsg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],false)));
2171
2172         return(diaspora_transmit($owner,$contact,$slap,false));
2173
2174
2175 }
2176
2177 function diaspora_transmit($owner,$contact,$slap,$public_batch) {
2178
2179         $a = get_app();
2180         $logid = random_string(4);
2181         $dest_url = (($public_batch) ? $contact['batch'] : $contact['notify']);
2182         if(! $dest_url) {
2183                 logger('diaspora_transmit: no url for contact: ' . $contact['id'] . ' batch mode =' . $public_batch);
2184                 return 0;
2185         } 
2186
2187         logger('diaspora_transmit: ' . $logid . ' ' . $dest_url);
2188
2189         post_url($dest_url . '/', $slap);
2190
2191         $return_code = $a->get_curl_code();
2192         logger('diaspora_transmit: ' . $logid . ' returns: ' . $return_code);
2193
2194         if((! $return_code) || (($return_code == 503) && (stristr($a->get_curl_headers(),'retry-after')))) {
2195                 logger('diaspora_transmit: queue message');
2196
2197                 $r = q("SELECT id from queue where cid = %d and network = '%s' and content = '%s' and batch = %d limit 1",
2198                         intval($contact['id']),
2199                         dbesc(NETWORK_DIASPORA),
2200                         dbesc($slap),
2201                         intval($public_batch)
2202                 );
2203                 if(count($r)) {
2204                         logger('diaspora_transmit: add_to_queue ignored - identical item already in queue');
2205                 }
2206                 else {
2207                         // queue message for redelivery
2208                         add_to_queue($contact['id'],NETWORK_DIASPORA,$slap,$public_batch);
2209                 }
2210         }
2211
2212
2213         return(($return_code) ? $return_code : (-1));
2214 }