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