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