]> git.mxchange.org Git - friendica.git/blob - include/diaspora.php
first shot at getting like/unlike functions to work consistently
[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         $author_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle;
1064
1065         $author_signature = base64_decode($author_signature);
1066
1067         if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
1068                 $person = $contact;
1069                 $key = $msg['key'];
1070         }
1071         else {
1072                 $person = find_diaspora_person_by_handle($diaspora_handle);     
1073
1074                 if(is_array($person) && x($person,'pubkey'))
1075                         $key = $person['pubkey'];
1076                 else {
1077                         logger('diaspora_comment: unable to find author details');
1078                         return;
1079                 }
1080         }
1081
1082         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
1083                 logger('diaspora_comment: verification failed.');
1084                 return;
1085         }
1086
1087         if($parent_author_signature) {
1088                 $owner_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle;
1089
1090                 $parent_author_signature = base64_decode($parent_author_signature);
1091
1092                 $key = $msg['key'];
1093
1094                 if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha256')) {
1095                         logger('diaspora_comment: owner verification failed.');
1096                         return;
1097                 }
1098         }
1099
1100         // Phew! Everything checks out. Now create an item.
1101
1102         $body = diaspora2bb($text);
1103
1104         $message_id = $diaspora_handle . ':' . $guid;
1105
1106         $datarray = array();
1107
1108         $str_tags = '';
1109
1110         $tags = get_tags($body);
1111
1112         if(count($tags)) {
1113                 foreach($tags as $tag) {
1114                         if(strpos($tag,'#') === 0) {
1115                                 if(strpos($tag,'[url='))
1116                                         continue;
1117
1118                                 // don't link tags that are already embedded in links
1119
1120                                 if(preg_match('/\[(.*?)' . preg_quote($tag,'/') . '(.*?)\]/',$body))
1121                                         continue;
1122                                 if(preg_match('/\[(.*?)\]\((.*?)' . preg_quote($tag,'/') . '(.*?)\)/',$body))
1123                                         continue;
1124
1125
1126                                 $basetag = str_replace('_',' ',substr($tag,1));
1127                                 $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
1128                                 if(strlen($str_tags))
1129                                         $str_tags .= ',';
1130                                 $str_tags .= '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
1131                                 continue;
1132                         }
1133                 }
1134         }
1135
1136         $datarray['uid'] = $importer['uid'];
1137         $datarray['contact-id'] = $contact['id'];
1138         $datarray['wall'] = $parent_item['wall'];
1139         $datarray['gravity'] = GRAVITY_COMMENT;
1140         $datarray['guid'] = $guid;
1141         $datarray['uri'] = $message_id;
1142         $datarray['parent-uri'] = $parent_item['uri'];
1143
1144         // No timestamps for comments? OK, we'll the use current time.
1145         $datarray['created'] = $datarray['edited'] = datetime_convert();
1146         $datarray['private'] = $parent_item['private'];
1147
1148         $datarray['owner-name'] = $parent_item['owner-name'];
1149         $datarray['owner-link'] = $parent_item['owner-link'];
1150         $datarray['owner-avatar'] = $parent_item['owner-avatar'];
1151
1152         $datarray['author-name'] = $person['name'];
1153         $datarray['author-link'] = $person['url'];
1154         $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
1155         $datarray['body'] = $body;
1156         $datarray['tag'] = $str_tags;
1157
1158         // We can't be certain what the original app is if the message is relayed.
1159         if(($parent_item['origin']) && (! $parent_author_signature)) 
1160                 $datarray['app']  = 'Diaspora';
1161
1162         $message_id = item_store($datarray);
1163
1164         if($message_id) {
1165                 q("update item set plink = '%s' where id = %d limit 1",
1166                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
1167                         intval($message_id)
1168                 );
1169         }
1170
1171         if(($parent_item['origin']) && (! $parent_author_signature)) {
1172                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1173                         intval($message_id),
1174                         dbesc($author_signed_data),
1175                         dbesc(base64_encode($author_signature)),
1176                         dbesc($diaspora_handle)
1177                 );
1178
1179                 // if the message isn't already being relayed, notify others
1180                 // the existence of parent_author_signature means the parent_author or owner
1181                 // is already relaying.
1182
1183                 proc_run('php','include/notifier.php','comment',$message_id);
1184         }
1185
1186         $myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0 ",
1187                 dbesc($parent_item['uri']),
1188                 intval($importer['uid'])
1189         );
1190
1191         if(count($myconv)) {
1192                 $importer_url = $a->get_baseurl() . '/profile/' . $importer['nickname'];
1193
1194                 foreach($myconv as $conv) {
1195
1196                         // now if we find a match, it means we're in this conversation
1197         
1198                         if(! link_compare($conv['author-link'],$importer_url))
1199                                 continue;
1200
1201                         require_once('include/enotify.php');
1202                                                                 
1203                         $conv_parent = $conv['parent'];
1204
1205                         notification(array(
1206                                 'type'         => NOTIFY_COMMENT,
1207                                 'notify_flags' => $importer['notify-flags'],
1208                                 'language'     => $importer['language'],
1209                                 'to_name'      => $importer['username'],
1210                                 'to_email'     => $importer['email'],
1211                                 'uid'          => $importer['uid'],
1212                                 'item'         => $datarray,
1213                                 'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id,
1214                                 'source_name'  => $datarray['author-name'],
1215                                 'source_link'  => $datarray['author-link'],
1216                                 'source_photo' => $datarray['author-avatar'],
1217                                 'verb'         => ACTIVITY_POST,
1218                                 'otype'        => 'item',
1219                                 'parent'       => $conv_parent,
1220
1221                         ));
1222
1223                         // only send one notification
1224                         break;
1225                 }
1226         }
1227         return;
1228 }
1229
1230
1231
1232
1233 function diaspora_conversation($importer,$xml,$msg) {
1234
1235         $a = get_app();
1236
1237         $guid = notags(unxmlify($xml->guid));
1238         $subject = notags(unxmlify($xml->subject));
1239         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1240         $participant_handles = notags(unxmlify($xml->participant_handles));
1241         $created_at = datetime_convert('UTC','UTC',notags(unxmlify($xml->created_at)));
1242
1243         $parent_uri = $diaspora_handle . ':' . $guid;
1244  
1245         $messages = $xml->message;
1246
1247         if(! count($messages)) {
1248                 logger('diaspora_conversation: empty conversation');
1249                 return;
1250         }
1251
1252         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
1253         if(! $contact) {
1254                 logger('diaspora_conversation: cannot find contact: ' . $msg['author']);
1255                 return;
1256         }
1257
1258         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
1259                 logger('diaspora_conversation: Ignoring this author.');
1260                 return 202;
1261         }
1262
1263         $conversation = null;
1264
1265         $c = q("select * from conv where uid = %d and guid = '%s' limit 1",
1266                 intval($importer['uid']),
1267                 dbesc($guid)
1268         );
1269         if(count($c))
1270                 $conversation = $c[0];
1271         else {
1272                 $r = q("insert into conv (uid,guid,creator,created,updated,subject,recips) values(%d, '%s', '%s', '%s', '%s', '%s', '%s') ",
1273                         intval($importer['uid']),
1274                         dbesc($guid),
1275                         dbesc($diaspora_handle),
1276                         dbesc(datetime_convert('UTC','UTC',$created_at)),
1277                         dbesc(datetime_convert()),
1278                         dbesc($subject),
1279                         dbesc($participant_handles)
1280                 );
1281                 if($r)
1282                         $c = q("select * from conv where uid = %d and guid = '%s' limit 1",
1283                 intval($importer['uid']),
1284             dbesc($guid)
1285         );
1286             if(count($c))
1287             $conversation = $c[0];
1288         }
1289         if(! $conversation) {
1290                 logger('diaspora_conversation: unable to create conversation.');
1291                 return;
1292         }
1293
1294         foreach($messages as $mesg) {
1295
1296                 $reply = 0;
1297
1298                 $msg_guid = notags(unxmlify($mesg->guid));
1299                 $msg_parent_guid = notags(unxmlify($mesg->parent_guid));
1300                 $msg_parent_author_signature = notags(unxmlify($mesg->parent_author_signature));
1301                 $msg_author_signature = notags(unxmlify($mesg->author_signature));
1302                 $msg_text = unxmlify($mesg->text);
1303                 $msg_created_at = datetime_convert('UTC','UTC',notags(unxmlify($mesg->created_at)));
1304                 $msg_diaspora_handle = notags(unxmlify($mesg->diaspora_handle));
1305                 $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
1306                 if($msg_conversation_guid != $guid) {
1307                         logger('diaspora_conversation: message conversation guid does not belong to the current conversation. ' . $xml);
1308                         continue;
1309                 }
1310
1311                 $body = diaspora2bb($msg_text);
1312                 $message_id = $msg_diaspora_handle . ':' . $msg_guid;
1313
1314                 $author_signed_data = $msg_guid . ';' . $msg_parent_guid . ';' . $msg_text . ';' . unxmlify($mesg->created_at) . ';' . $msg_diaspora_handle . ';' . $msg_conversation_guid;
1315
1316                 $author_signature = base64_decode($msg_author_signature);
1317
1318                 if(strcasecmp($msg_diaspora_handle,$msg['author']) == 0) {
1319                         $person = $contact;
1320                         $key = $msg['key'];
1321                 }
1322                 else {
1323                         $person = find_diaspora_person_by_handle($msg_diaspora_handle); 
1324
1325                         if(is_array($person) && x($person,'pubkey'))
1326                                 $key = $person['pubkey'];
1327                         else {
1328                                 logger('diaspora_conversation: unable to find author details');
1329                                 continue;
1330                         }
1331                 }
1332
1333                 if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
1334                         logger('diaspora_conversation: verification failed.');
1335                         continue;
1336                 }
1337
1338                 if($msg_parent_author_signature) {
1339                         $owner_signed_data = $msg_guid . ';' . $msg_parent_guid . ';' . $msg_text . ';' . unxmlify($mesg->created_at) . ';' . $msg_diaspora_handle . ';' . $msg_conversation_guid;
1340
1341                         $parent_author_signature = base64_decode($msg_parent_author_signature);
1342
1343                         $key = $msg['key'];
1344
1345                         if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha256')) {
1346                                 logger('diaspora_conversation: owner verification failed.');
1347                                 continue;
1348                         }
1349                 }
1350
1351                 $r = q("select id from mail where `uri` = '%s' limit 1",
1352                         dbesc($message_id)
1353                 );
1354                 if(count($r)) {
1355                         logger('diaspora_conversation: duplicate message already delivered.', LOGGER_DEBUG);
1356                         continue;
1357                 }
1358
1359                 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')",
1360                         intval($importer['uid']),
1361                         dbesc($msg_guid),
1362                         intval($conversation['id']),
1363                         dbesc($person['name']),
1364                         dbesc($person['photo']),
1365                         dbesc($person['url']),
1366                         intval($contact['id']),  
1367                         dbesc($subject),
1368                         dbesc($body),
1369                         0,
1370                         0,
1371                         dbesc($message_id),
1372                         dbesc($parent_uri),
1373                         dbesc($msg_created_at)
1374                 );                      
1375
1376                 q("update conv set updated = '%s' where id = %d limit 1",
1377                         dbesc(datetime_convert()),
1378                         intval($conversation['id'])
1379                 );              
1380
1381                 require_once('include/enotify.php');
1382                 notification(array(                     
1383                         'type' => NOTIFY_MAIL,
1384                         'notify_flags' => $importer['notify-flags'],
1385                         'language' => $importer['language'],
1386                         'to_name' => $importer['username'],
1387                         'to_email' => $importer['email'],
1388                         'uid' =>$importer['importer_uid'],
1389                         'item' => array('subject' => $subject, 'body' => $body),
1390                         'source_name' => $person['name'],
1391                         'source_link' => $person['url'],
1392                         'source_photo' => $person['thumb'],
1393                         'verb' => ACTIVITY_POST,
1394                         'otype' => 'mail'
1395                 ));
1396         }       
1397
1398         return;
1399 }
1400
1401 function diaspora_message($importer,$xml,$msg) {
1402
1403         $a = get_app();
1404
1405         $msg_guid = notags(unxmlify($xml->guid));
1406         $msg_parent_guid = notags(unxmlify($xml->parent_guid));
1407         $msg_parent_author_signature = notags(unxmlify($xml->parent_author_signature));
1408         $msg_author_signature = notags(unxmlify($xml->author_signature));
1409         $msg_text = unxmlify($xml->text);
1410         $msg_created_at = datetime_convert('UTC','UTC',notags(unxmlify($xml->created_at)));
1411         $msg_diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1412         $msg_conversation_guid = notags(unxmlify($xml->conversation_guid));
1413
1414         $parent_uri = $diaspora_handle . ':' . $msg_parent_guid;
1415  
1416         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg_diaspora_handle);
1417         if(! $contact) {
1418                 logger('diaspora_message: cannot find contact: ' . $msg_diaspora_handle);
1419                 return;
1420         }
1421
1422         if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { 
1423                 logger('diaspora_message: Ignoring this author.');
1424                 return 202;
1425         }
1426
1427         $conversation = null;
1428
1429         $c = q("select * from conv where uid = %d and guid = '%s' limit 1",
1430                 intval($importer['uid']),
1431                 dbesc($msg_conversation_guid)
1432         );
1433         if(count($c))
1434                 $conversation = $c[0];
1435         else {
1436                 logger('diaspora_message: conversation not available.');
1437                 return;
1438         }
1439
1440         $reply = 0;
1441                         
1442         $body = diaspora2bb($msg_text);
1443         $message_id = $msg_diaspora_handle . ':' . $msg_guid;
1444
1445         $author_signed_data = $msg_guid . ';' . $msg_parent_guid . ';' . $msg_text . ';' . unxmlify($xml->created_at) . ';' . $msg_diaspora_handle . ';' . $msg_conversation_guid;
1446
1447
1448         $author_signature = base64_decode($msg_author_signature);
1449
1450         $person = find_diaspora_person_by_handle($msg_diaspora_handle); 
1451         if(is_array($person) && x($person,'pubkey'))
1452                 $key = $person['pubkey'];
1453         else {
1454                 logger('diaspora_message: unable to find author details');
1455                 return;
1456         }
1457
1458         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
1459                 logger('diaspora_message: verification failed.');
1460                 return;
1461         }
1462
1463         $r = q("select id from mail where `uri` = '%s' and uid = %d limit 1",
1464                 dbesc($message_id),
1465                 intval($importer['uid'])
1466         );
1467         if(count($r)) {
1468                 logger('diaspora_message: duplicate message already delivered.', LOGGER_DEBUG);
1469                 return;
1470         }
1471
1472         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')",
1473                 intval($importer['uid']),
1474                 dbesc($msg_guid),
1475                 intval($conversation['id']),
1476                 dbesc($person['name']),
1477                 dbesc($person['photo']),
1478                 dbesc($person['url']),
1479                 intval($contact['id']),  
1480                 dbesc($conversation['subject']),
1481                 dbesc($body),
1482                 0,
1483                 1,
1484                 dbesc($message_id),
1485                 dbesc($parent_uri),
1486                 dbesc($msg_created_at)
1487         );                      
1488
1489         q("update conv set updated = '%s' where id = %d limit 1",
1490                 dbesc(datetime_convert()),
1491                 intval($conversation['id'])
1492         );              
1493         
1494         return;
1495 }
1496
1497
1498 function diaspora_photo($importer,$xml,$msg) {
1499
1500         $a = get_app();
1501
1502         logger('diaspora_photo: init',LOGGER_DEBUG);
1503
1504         $remote_photo_path = notags(unxmlify($xml->remote_photo_path));
1505
1506         $remote_photo_name = notags(unxmlify($xml->remote_photo_name));
1507
1508         $status_message_guid = notags(unxmlify($xml->status_message_guid));
1509
1510         $guid = notags(unxmlify($xml->guid));
1511
1512         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1513
1514         $public = notags(unxmlify($xml->public));
1515
1516         $created_at = notags(unxmlify($xml_created_at));
1517
1518         logger('diaspora_photo: status_message_guid: ' . $status_message_guid, LOGGER_DEBUG);
1519
1520         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
1521         if(! $contact) {
1522                 logger('diaspora_photo: contact record not found: ' . $msg['author'] . ' handle: ' . $diaspora_handle);
1523                 return;
1524         }
1525
1526         if(! diaspora_post_allow($importer,$contact)) {
1527                 logger('diaspora_photo: Ignoring this author.');
1528                 return 202;
1529         }
1530
1531         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1532                 intval($importer['uid']),
1533                 dbesc($status_message_guid)
1534         );
1535         if(! count($r)) {
1536                 logger('diaspora_photo: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
1537                 return;
1538         }
1539
1540         $parent_item = $r[0];
1541
1542         $link_text = '[img]' . $remote_photo_path . $remote_photo_name . '[/img]' . "\n";
1543
1544         $link_text = scale_external_images($link_text);
1545
1546         if(strpos($parent_item['body'],$link_text) === false) {
1547                 $r = q("update item set `body` = '%s', `visible` = 1 where `id` = %d and `uid` = %d limit 1",
1548                         dbesc($link_text . $parent_item['body']),
1549                         intval($parent_item['id']),
1550                         intval($parent_item['uid'])
1551                 );
1552         }
1553
1554         return;
1555 }
1556
1557
1558
1559
1560 function diaspora_like($importer,$xml,$msg) {
1561
1562         $a = get_app();
1563         $guid = notags(unxmlify($xml->guid));
1564         $parent_guid = notags(unxmlify($xml->parent_guid));
1565         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1566         $target_type = notags(unxmlify($xml->target_type));
1567         $positive = notags(unxmlify($xml->positive));
1568         $author_signature = notags(unxmlify($xml->author_signature));
1569
1570         $parent_author_signature = (($xml->parent_author_signature) ? notags(unxmlify($xml->parent_author_signature)) : '');
1571
1572         // likes on comments not supported here and likes on photos not supported by Diaspora
1573
1574         if($target_type !== 'Post')
1575                 return;
1576
1577         $contact = diaspora_get_contact_by_handle($importer['uid'],$msg['author']);
1578         if(! $contact) {
1579                 logger('diaspora_like: cannot find contact: ' . $msg['author']);
1580                 return;
1581         }
1582
1583         if(! diaspora_post_allow($importer,$contact)) {
1584                 logger('diaspora_like: Ignoring this author.');
1585                 return 202;
1586         }
1587
1588         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1589                 intval($importer['uid']),
1590                 dbesc($parent_guid)
1591         );
1592         if(! count($r)) {
1593                 logger('diaspora_like: parent item not found: ' . $guid);
1594                 return;
1595         }
1596
1597         $parent_item = $r[0];
1598
1599         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1600                 intval($importer['uid']),
1601                 dbesc($guid)
1602         );
1603         if(count($r)) {
1604                 if($positive === 'true') {
1605                         logger('diaspora_like: duplicate like: ' . $guid);
1606                         return;
1607                 } 
1608                 if($positive === 'false') {
1609                         q("UPDATE `item` SET `deleted` = 1 WHERE `id` = %d AND `uid` = %d LIMIT 1",
1610                                 intval($r[0]['id']),
1611                                 intval($importer['uid'])
1612                         );
1613                         // FIXME
1614                         //  send notification via proc_run()
1615                         return;
1616                 }
1617         }
1618         if($positive === 'false') {
1619                 logger('diaspora_like: unlike received with no corresponding like');
1620                 return; 
1621         }
1622
1623         $author_signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle;
1624
1625         $author_signature = base64_decode($author_signature);
1626
1627         if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
1628                 $person = $contact;
1629                 $key = $msg['key'];
1630         }
1631         else {
1632                 $person = find_diaspora_person_by_handle($diaspora_handle);     
1633                 if(is_array($person) && x($person,'pubkey'))
1634                         $key = $person['pubkey'];
1635                 else {
1636                         logger('diaspora_like: unable to find author details');
1637                         return;
1638                 }
1639         }
1640
1641         if(! rsa_verify($author_signed_data,$author_signature,$key,'sha256')) {
1642                 logger('diaspora_like: verification failed.');
1643                 return;
1644         }
1645
1646         if($parent_author_signature) {
1647
1648                 $owner_signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle;
1649
1650                 $parent_author_signature = base64_decode($parent_author_signature);
1651
1652                 $key = $msg['key'];
1653
1654                 if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha256')) {
1655                         logger('diaspora_like: owner verification failed.');
1656                         return;
1657                 }
1658         }
1659
1660         // Phew! Everything checks out. Now create an item.
1661
1662         $uri = $diaspora_handle . ':' . $guid;
1663
1664         $activity = ACTIVITY_LIKE;
1665         $post_type = (($parent_item['resource-id']) ? t('photo') : t('status'));
1666         $objtype = (($parent_item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); 
1667         $link = xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . '" />' . "\n") ;
1668         $body = $parent_item['body'];
1669
1670         $obj = <<< EOT
1671
1672         <object>
1673                 <type>$objtype</type>
1674                 <local>1</local>
1675                 <id>{$parent_item['uri']}</id>
1676                 <link>$link</link>
1677                 <title></title>
1678                 <content>$body</content>
1679         </object>
1680 EOT;
1681         $bodyverb = t('%1$s likes %2$s\'s %3$s');
1682
1683         $arr = array();
1684
1685         $arr['uri'] = $uri;
1686         $arr['uid'] = $importer['uid'];
1687         $arr['guid'] = $guid;
1688         $arr['contact-id'] = $contact['id'];
1689         $arr['type'] = 'activity';
1690         $arr['wall'] = $parent_item['wall'];
1691         $arr['gravity'] = GRAVITY_LIKE;
1692         $arr['parent'] = $parent_item['id'];
1693         $arr['parent-uri'] = $parent_item['uri'];
1694
1695         $arr['owner-name'] = $parent_item['name'];
1696         $arr['owner-link'] = $parent_item['url'];
1697         $arr['owner-avatar'] = $parent_item['thumb'];
1698
1699         $arr['author-name'] = $person['name'];
1700         $arr['author-link'] = $person['url'];
1701         $arr['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
1702         
1703         $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
1704         $alink = '[url=' . $parent_item['author-link'] . ']' . $parent_item['author-name'] . '[/url]';
1705         $plink = '[url=' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . ']' . $post_type . '[/url]';
1706         $arr['body'] =  sprintf( $bodyverb, $ulink, $alink, $plink );
1707
1708         $arr['app']  = 'Diaspora';
1709
1710         $arr['private'] = $parent_item['private'];
1711         $arr['verb'] = $activity;
1712         $arr['object-type'] = $objtype;
1713         $arr['object'] = $obj;
1714         $arr['visible'] = 1;
1715         $arr['unseen'] = 1;
1716         $arr['last-child'] = 0;
1717
1718         $message_id = item_store($arr);
1719
1720
1721         if($message_id) {
1722                 q("update item set plink = '%s' where id = %d limit 1",
1723                         dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
1724                         intval($message_id)
1725                 );
1726         }
1727
1728         if(! $parent_author_signature) {
1729                 q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1730                         intval($message_id),
1731                         dbesc($author_signed_data),
1732                         dbesc(base64_encode($author_signature)),
1733                         dbesc($diaspora_handle)
1734                 );
1735         }
1736
1737         // if the message isn't already being relayed, notify others
1738         // the existence of parent_author_signature means the parent_author or owner
1739         // is already relaying. The parent_item['origin'] indicates the message was created on our system
1740
1741         if(($parent_item['origin']) && (! $parent_author_signature))
1742                 proc_run('php','include/notifier.php','comment',$message_id);
1743
1744         return;
1745 }
1746
1747 function diaspora_retraction($importer,$xml) {
1748
1749
1750         $guid = notags(unxmlify($xml->guid));
1751         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1752         $type = notags(unxmlify($xml->type));
1753
1754         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
1755         if(! $contact)
1756                 return;
1757
1758         if($type === 'Person') {
1759                 require_once('include/Contact.php');
1760                 contact_remove($contact['id']);
1761         }
1762         elseif($type === 'Post') {
1763                 $r = q("select * from item where guid = '%s' and uid = %d and not file like '%%[%%' limit 1",
1764                         dbesc('guid'),
1765                         intval($importer['uid'])
1766                 );
1767                 if(count($r)) {
1768                         if(link_compare($r[0]['author-link'],$contact['url'])) {
1769                                 q("update item set `deleted` = 1, `changed` = '%s' where `id` = %d limit 1",
1770                                         dbesc(datetime_convert()),                      
1771                                         intval($r[0]['id'])
1772                                 );
1773                         }
1774                 }
1775         }
1776
1777         return 202;
1778         // NOTREACHED
1779 }
1780
1781 function diaspora_signed_retraction($importer,$xml,$msg) {
1782
1783
1784         $guid = notags(unxmlify($xml->target_guid));
1785         $diaspora_handle = notags(unxmlify($xml->sender_handle));
1786         $type = notags(unxmlify($xml->target_type));
1787         $sig = notags(unxmlify($xml->target_author_signature));
1788
1789         $parent_author_signature = (($xml->parent_author_signature) ? notags(unxmlify($xml->parent_author_signature)) : '');
1790
1791         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
1792         if(! $contact) {
1793                 logger('diaspora_signed_retraction: no contact');
1794                 return;
1795         }
1796
1797
1798         $signed_data = $guid . ';' . $type ;
1799
1800         $sig_decode = base64_decode($sig);
1801
1802         if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
1803                 $person = $contact;
1804                 $key = $msg['key'];
1805         }
1806         else {
1807                 $person = find_diaspora_person_by_handle($diaspora_handle);     
1808
1809                 if(is_array($person) && x($person,'pubkey'))
1810                         $key = $person['pubkey'];
1811                 else {
1812                         logger('diaspora_signed_retraction: unable to find author details');
1813                         return;
1814                 }
1815         }
1816
1817         if(! rsa_verify($signed_data,$sig_decode,$key,'sha256')) {
1818                 logger('diaspora_signed_retraction: retraction-owner verification failed.' . print_r($msg,true));
1819                 return;
1820         }
1821
1822         if($parent_author_signature) {
1823                 $parent_author_signature = base64_decode($parent_author_signature);
1824
1825                 $key = $msg['key'];
1826
1827                 if(! rsa_verify($signed_data,$parent_author_signature,$key,'sha256')) {
1828                         logger('diaspora_signed_retraction: failed to verify person relaying the retraction (e.g. owner of a post relaying a retracted comment');
1829                         return;
1830                 }
1831
1832         }
1833
1834         if($type === 'StatusMessage' || $type === 'Comment' || $type === 'Like') {
1835                 $r = q("select * from item where guid = '%s' and uid = %d and not file like '%%[%%' limit 1",
1836                         dbesc($guid),
1837                         intval($importer['uid'])
1838                 );
1839                 if(count($r)) {
1840                         if(link_compare($r[0]['author-link'],$contact['url'])) {
1841                                 q("update item set `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' , `title` = '' where `id` = %d limit 1",
1842                                         dbesc(datetime_convert()),                      
1843                                         dbesc(datetime_convert()),                      
1844                                         intval($r[0]['id'])
1845                                 );
1846         
1847                                 // Now check if the retraction needs to be relayed by us
1848                                 //
1849                                 // The first item in the `item` table with the parent id is the parent. However, MySQL doesn't always
1850                                 // return the items ordered by `item`.`id`, in which case the wrong item is chosen as the parent.
1851                                 // The only item with `parent` and `id` as the parent id is the parent item.
1852                                 $p = q("select origin from item where parent = %d and id = %d limit 1",
1853                                         $r[0]['parent'],
1854                                         $r[0]['parent']
1855                                 );
1856                                 if(count($p)) {
1857                                         if(($p[0]['origin']) && (! $parent_author_signature)) {
1858                                                 q("insert into sign (`retract_iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
1859                                                         $r[0]['id'],
1860                                                         dbesc($signed_data),
1861                                                         dbesc($sig),
1862                                                         dbesc($diaspora_handle)
1863                                                 );
1864
1865                                                 // the existence of parent_author_signature would have meant the parent_author or owner
1866                                                 // is already relaying.
1867                                                 logger('diaspora_signed_retraction: relaying relayable_retraction');
1868
1869                                                 proc_run('php','include/notifier.php','relayable_retraction',$r[0]['id']);
1870                                         }
1871                                 }
1872                         }
1873                 }
1874         }
1875         else
1876                 logger('diaspora_signed_retraction: unknown type: ' . $type);
1877
1878         return 202;
1879         // NOTREACHED
1880 }
1881
1882 function diaspora_profile($importer,$xml) {
1883
1884         $a = get_app();
1885         $diaspora_handle = notags(unxmlify($xml->diaspora_handle));
1886
1887         $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
1888         if(! $contact)
1889                 return;
1890
1891         if($contact['blocked']) {
1892                 logger('diaspora_post: Ignoring this author.');
1893                 return 202;
1894         }
1895
1896         $name = unxmlify($xml->first_name) . ((strlen($xml->last_name)) ? ' ' . unxmlify($xml->last_name) : '');
1897         $image_url = unxmlify($xml->image_url);
1898         $birthday = unxmlify($xml->birthday);
1899
1900         $r = q("SELECT DISTINCT ( `resource-id` ) FROM `photo` WHERE  `uid` = %d AND `contact-id` = %d AND `album` = 'Contact Photos' ",
1901                 intval($importer['uid']),
1902                 intval($contact['id'])
1903         );
1904         $oldphotos = ((count($r)) ? $r : null);
1905
1906         require_once('include/Photo.php');
1907
1908         $images = import_profile_photo($image_url,$importer['uid'],$contact['id']);
1909         
1910         // Generic birthday. We don't know the timezone. The year is irrelevant. 
1911
1912         $birthday = str_replace('1000','1901',$birthday);
1913
1914         $birthday = datetime_convert('UTC','UTC',$birthday,'Y-m-d');
1915
1916         // this is to prevent multiple birthday notifications in a single year
1917         // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year
1918
1919         if(substr($birthday,5) === substr($contact['bd'],5))
1920                 $birthday = $contact['bd'];
1921
1922         // TODO: update name on item['author-name'] if the name changed. See consume_feed()
1923         // Not doing this currently because D* protocol is scheduled for revision soon. 
1924
1925         $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",
1926                 dbesc($name),
1927                 dbesc(datetime_convert()),
1928                 dbesc($images[0]),
1929                 dbesc($images[1]),
1930                 dbesc($images[2]),
1931                 dbesc(datetime_convert()),
1932                 dbesc($birthday),
1933                 intval($contact['id']),
1934                 intval($importer['uid'])
1935         ); 
1936
1937         if($r) {
1938                 if($oldphotos) {
1939                         foreach($oldphotos as $ph) {
1940                                 q("DELETE FROM `photo` WHERE `uid` = %d AND `contact-id` = %d AND `album` = 'Contact Photos' AND `resource-id` = '%s' ",
1941                                         intval($importer['uid']),
1942                                         intval($contact['id']),
1943                                         dbesc($ph['resource-id'])
1944                                 );
1945                         }
1946                 }
1947         }       
1948
1949         return;
1950
1951 }
1952
1953 function diaspora_share($me,$contact) {
1954         $a = get_app();
1955         $myaddr = $me['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1956         $theiraddr = $contact['addr'];
1957
1958         $tpl = get_markup_template('diaspora_share.tpl');
1959         $msg = replace_macros($tpl, array(
1960                 '$sender' => $myaddr,
1961                 '$recipient' => $theiraddr
1962         ));
1963
1964         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
1965
1966         return(diaspora_transmit($owner,$contact,$slap, false));
1967 }
1968
1969 function diaspora_unshare($me,$contact) {
1970
1971         $a = get_app();
1972         $myaddr = $me['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1973
1974         $tpl = get_markup_template('diaspora_retract.tpl');
1975         $msg = replace_macros($tpl, array(
1976                 '$guid'   => $me['guid'],
1977                 '$type'   => 'Person',
1978                 '$handle' => $myaddr
1979         ));
1980
1981         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
1982
1983         return(diaspora_transmit($owner,$contact,$slap, false));
1984
1985 }
1986
1987
1988
1989 function diaspora_send_status($item,$owner,$contact,$public_batch = false) {
1990
1991         $a = get_app();
1992         $myaddr = $owner['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
1993         $theiraddr = $contact['addr'];
1994
1995         $images = array();
1996
1997         $title = $item['title'];
1998         $body = $item['body'];
1999
2000 /*
2001         // We're trying to match Diaspora's split message/photo protocol but
2002         // all the photos are displayed on D* as links and not img's - even
2003         // though we're sending pretty much precisely what they send us when
2004         // doing the same operation.  
2005         // Commented out for now, we'll use bb2diaspora to convert photos to markdown
2006         // which seems to get through intact.
2007
2008         $cnt = preg_match_all('|\[img\](.*?)\[\/img\]|',$body,$matches,PREG_SET_ORDER);
2009         if($cnt) {
2010                 foreach($matches as $mtch) {
2011                         $detail = array();
2012                         $detail['str'] = $mtch[0];
2013                         $detail['path'] = dirname($mtch[1]) . '/';
2014                         $detail['file'] = basename($mtch[1]);
2015                         $detail['guid'] = $item['guid'];
2016                         $detail['handle'] = $myaddr;
2017                         $images[] = $detail;
2018                         $body = str_replace($detail['str'],$mtch[1],$body);
2019                 }
2020         }       
2021 */
2022         $body = xmlify(html_entity_decode(bb2diaspora($body)));
2023
2024         if(strlen($title))
2025                 $body = xmlify('**' . html_entity_decode($title) . '**' . "\n") . $body;
2026
2027
2028         if($item['attach']) {
2029                 $cnt = preg_match_all('/href=\"(.*?)\"(.*?)title=\"(.*?)\"/ism',$item['attach'],$matches,PREG_SET_ORDER);
2030                 if(cnt) {
2031                         $body .= "\n" . t('Attachments:') . "\n";
2032                         foreach($matches as $mtch) {
2033                                 $body .= '[' . $mtch[3] . '](' . $mtch[1] . ')' . "\n";
2034                         }
2035                 }
2036         }       
2037
2038
2039         $public = (($item['private']) ? 'false' : 'true');
2040
2041         require_once('include/datetime.php');
2042         $created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C');
2043
2044         $tpl = get_markup_template('diaspora_post.tpl');
2045         $msg = replace_macros($tpl, array(
2046                 '$body' => $body,
2047                 '$guid' => $item['guid'],
2048                 '$handle' => xmlify($myaddr),
2049                 '$public' => $public,
2050                 '$created' => $created
2051         ));
2052
2053         logger('diaspora_send_status: ' . $owner['username'] . ' -> ' . $contact['name'] . ' base message: ' . $msg, LOGGER_DATA);
2054
2055         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
2056
2057         $return_code = diaspora_transmit($owner,$contact,$slap,$public_batch);
2058
2059         if(count($images)) {
2060                 diaspora_send_images($item,$owner,$contact,$images,$public_batch);
2061         }
2062
2063         return $return_code;
2064 }
2065
2066
2067 function diaspora_send_images($item,$owner,$contact,$images,$public_batch = false) {
2068         $a = get_app();
2069         if(! count($images))
2070                 return;
2071         $mysite = substr($a->get_baseurl(),strpos($a->get_baseurl(),'://') + 3) . '/photo';
2072
2073         $tpl = get_markup_template('diaspora_photo.tpl');
2074         foreach($images as $image) {
2075                 if(! stristr($image['path'],$mysite))
2076                         continue;
2077                 $resource = str_replace('.jpg','',$image['file']);
2078                 $resource = substr($resource,0,strpos($resource,'-'));
2079
2080                 $r = q("select * from photo where `resource-id` = '%s' and `uid` = %d limit 1",
2081                         dbesc($resource),
2082                         intval($owner['uid'])
2083                 );
2084                 if(! count($r))
2085                         continue;
2086                 $public = (($r[0]['allow_cid'] || $r[0]['allow_gid'] || $r[0]['deny_cid'] || $r[0]['deny_gid']) ? 'false' : 'true' );
2087                 $msg = replace_macros($tpl,array(               
2088                         '$path' => xmlify($image['path']),
2089                         '$filename' => xmlify($image['file']),
2090                         '$msg_guid' => xmlify($image['guid']),
2091                         '$guid' => xmlify($r[0]['guid']),
2092                         '$handle' => xmlify($image['handle']),
2093                         '$public' => xmlify($public),
2094                         '$created_at' => xmlify(datetime_convert('UTC','UTC',$r[0]['created'],'Y-m-d H:i:s \U\T\C'))
2095                 ));
2096
2097
2098                 logger('diaspora_send_photo: base message: ' . $msg, LOGGER_DATA);
2099                 $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
2100
2101                 diaspora_transmit($owner,$contact,$slap,$public_batch);
2102         }
2103
2104 }
2105
2106 function diaspora_send_followup($item,$owner,$contact,$public_batch = false) {
2107
2108         $a = get_app();
2109         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
2110         $theiraddr = $contact['addr'];
2111
2112         // The first item in the `item` table with the parent id is the parent. However, MySQL doesn't always
2113         // return the items ordered by `item`.`id`, in which case the wrong item is chosen as the parent.
2114         // The only item with `parent` and `id` as the parent id is the parent item.
2115         $p = q("select guid from item where parent = %d and id = %d limit 1",
2116                 intval($item['parent']),
2117                 intval($item['parent'])
2118         );
2119         if(count($p))
2120                 $parent_guid = $p[0]['guid'];
2121         else
2122                 return;
2123
2124         if($item['verb'] === ACTIVITY_LIKE) {
2125                 $tpl = get_markup_template('diaspora_like.tpl');
2126                 $like = true;
2127                 $target_type = 'Post';
2128 //              $positive = (($item['deleted']) ? 'false' : 'true');
2129                 $positive = 'true';
2130         }
2131         else {
2132                 $tpl = get_markup_template('diaspora_comment.tpl');
2133                 $like = false;
2134         }
2135
2136         $text = html_entity_decode(bb2diaspora($item['body']));
2137
2138         // sign it
2139
2140         if($like)
2141                 $signed_text = $item['guid'] . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $myaddr;
2142         else
2143                 $signed_text = $item['guid'] . ';' . $parent_guid . ';' . $text . ';' . $myaddr;
2144
2145         $authorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
2146
2147         $msg = replace_macros($tpl,array(
2148                 '$guid' => xmlify($item['guid']),
2149                 '$parent_guid' => xmlify($parent_guid),
2150                 '$target_type' =>xmlify($target_type),
2151                 '$authorsig' => xmlify($authorsig),
2152                 '$body' => xmlify($text),
2153                 '$positive' => xmlify($positive),
2154                 '$handle' => xmlify($myaddr)
2155         ));
2156
2157         logger('diaspora_followup: base message: ' . $msg, LOGGER_DATA);
2158
2159         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
2160
2161         return(diaspora_transmit($owner,$contact,$slap,$public_batch));
2162 }
2163
2164
2165 function diaspora_send_relay($item,$owner,$contact,$public_batch = false) {
2166 // I think the first comment or like on a post whose home is our Friendica server is saved as an item
2167 // as the top-level post owner's contact for writer of the comment or post. Thus, the "uid"
2168 // on the item is `user`.`id` of the top-level post owner. That user is passed to this function
2169 // as "$owner."
2170 //
2171 // I'm assuming for now that "$owner" will be the user of the top-level post for retractions too. Be
2172 // aware that another reasonable possibility is that it's the "$owner" of the deleted comment.
2173
2174
2175
2176         $a = get_app();
2177         $myaddr = $owner['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
2178         $theiraddr = $contact['addr'];
2179
2180
2181         // The first item in the `item` table with the parent id is the parent. However, MySQL doesn't always
2182         // return the items ordered by `item`.`id`, in which case the wrong item is chosen as the parent.
2183         // The only item with `parent` and `id` as the parent id is the parent item.
2184         $p = q("select guid from item where parent = %d and id = %d limit 1",
2185                 intval($item['parent']),
2186                 intval($item['parent'])
2187         );
2188         if(count($p))
2189                 $parent_guid = $p[0]['guid'];
2190         else
2191                 return;
2192
2193         $like = false;
2194         $relay_retract = false;
2195         $sql_sign_id = 'iid';
2196         if( $item['deleted']) {
2197                 $tpl = get_markup_template('diaspora_relayable_retraction.tpl');
2198                 $relay_retract = true;
2199                 $sql_sign_id = 'retract_iid';
2200                 $target_type = ( ($item['verb'] === ACTIVITY_LIKE) ? 'Like' : 'Comment');
2201         }
2202         elseif($item['verb'] === ACTIVITY_LIKE) {
2203                 $tpl = get_markup_template('diaspora_like_relay.tpl');
2204                 $like = true;
2205                 $target_type = 'Post';
2206 //              $positive = (($item['deleted']) ? 'false' : 'true');
2207                 $positive = 'true';
2208         }
2209         else {
2210                 $tpl = get_markup_template('diaspora_comment_relay.tpl');
2211         }
2212
2213         $body = $item['body'];
2214
2215         $text = html_entity_decode(bb2diaspora($body));
2216
2217
2218         // fetch the original signature if somebody sent the post to us to relay
2219         //
2220         // If we are relaying for a reply originating on our own account, there wasn't a 'send to relay'
2221         // action. It wasn't needed. In that case create the original signature and the 
2222         // owner (parent author) signature
2223         // Note that mod/item.php seems to take care of creating a signature for Diaspora for replies
2224         // created on our own account
2225
2226         $r = q("select * from sign where " . $sql_sign_id . " = %d limit 1",
2227                 intval($item['id'])
2228         );
2229         if(count($r)) { 
2230                 $orig_sign = $r[0];
2231                 $signed_text = $orig_sign['signed_text'];
2232                 $authorsig = $orig_sign['signature'];
2233                 $handle = $orig_sign['signer'];
2234         }
2235         else {
2236
2237                 // Author signature information (for likes, comments, and retractions of likes or comments,
2238                 // whether from Diaspora or Friendica) must be placed in the `sign` table before this 
2239                 // function is called
2240                 logger('diaspora_send_relay: original author signature not found, cannot send relayable');
2241                 return;
2242 /*
2243                 $itemcontact = q("select * from contact where `id` = %d limit 1",
2244                         intval($item['contact-id'])
2245                 );
2246                 if(count($itemcontact)) {
2247                         if(! $itemcontact[0]['self']) {
2248                                 $prefix = sprintf( t('[Relayed] Comment authored by %s from network %s'),
2249                                         '['. $item['author-name'] . ']' . '(' . $item['author-link'] . ')',  
2250                                         network_to_name($itemcontact['network'])) . "\n";
2251                                 // "$body" was assigned to "$text" above. It isn't used after that, so I don't think
2252                                 // the following change will do anything
2253                                 $body = $prefix . $body;
2254
2255                                 // I think this comment will fail upon reaching Diaspora, because "$signed_text" is not defined
2256                         }
2257                 }
2258                 else {
2259                 // I'm confused about this "else." Since it sets "$handle = $myaddr," it seems like it should be for the case
2260                 // where the top-level post owner commented on his own post, i.e. "$itemcontact[0]['self']" is true. But it's
2261                 // positioned to be for the case where "count($itemcontact)" is 0.
2262
2263                         $handle = $myaddr;
2264
2265                         if($like)
2266                                 $signed_text = $item['guid'] . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $handle;
2267                         elseif($relay_retract)
2268                                 $signed_text = $item['guid'] . ';' . $target_type;
2269                         else
2270                                 $signed_text = $item['guid'] . ';' . $parent_guid . ';' . $text . ';' . $handle;
2271
2272                         $authorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
2273
2274                         q("insert into sign (`" . $sql_sign_id . "`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
2275                                 intval($item['id']),
2276                                 dbesc($signed_text),
2277                                 dbesc($authorsig),
2278                                 dbesc($handle)
2279                         );
2280                 }
2281 */
2282         }
2283
2284         // sign it with the top-level owner's signature
2285
2286         $parentauthorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
2287
2288         $msg = replace_macros($tpl,array(
2289                 '$guid' => xmlify($item['guid']),
2290                 '$parent_guid' => xmlify($parent_guid),
2291                 '$target_type' =>xmlify($target_type),
2292                 '$authorsig' => xmlify($authorsig),
2293                 '$parentsig' => xmlify($parentauthorsig),
2294                 '$body' => xmlify($text),
2295                 '$positive' => xmlify($positive),
2296                 '$handle' => xmlify($handle)
2297         ));
2298
2299         logger('diaspora_send_relay: base message: ' . $msg, LOGGER_DATA);
2300
2301
2302         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
2303
2304         return(diaspora_transmit($owner,$contact,$slap,$public_batch));
2305
2306 }
2307
2308
2309
2310 function diaspora_send_retraction($item,$owner,$contact,$public_batch = false) {
2311
2312         $a = get_app();
2313         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
2314
2315         // Check whether the retraction is for a top-level post or whether it's a relayable
2316         if( $item['uri'] !== $item['parent-uri'] ) {
2317
2318                 $tpl = get_markup_template('diaspora_relay_retraction.tpl');
2319                 $target_type = (($item['verb'] === ACTIVITY_LIKE) ? 'Like' : 'Comment');
2320         }
2321         else {
2322                 
2323                 $tpl = get_markup_template('diaspora_signed_retract.tpl');
2324                 $target_type = 'StatusMessage';
2325         }
2326
2327         $signed_text = $item['guid'] . ';' . $target_type;
2328
2329         $msg = replace_macros($tpl, array(
2330                 '$guid'   => xmlify($item['guid']),
2331                 '$type'   => xmlify($target_type),
2332                 '$handle' => xmlify($myaddr),
2333                 '$signature' => xmlify(base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256')))
2334         ));
2335
2336         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],$public_batch)));
2337
2338         return(diaspora_transmit($owner,$contact,$slap,$public_batch));
2339 }
2340
2341 function diaspora_send_mail($item,$owner,$contact) {
2342
2343         $a = get_app();
2344         $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
2345
2346         $r = q("select * from conv where id = %d and uid = %d limit 1",
2347                 intval($item['convid']),
2348                 intval($item['uid'])
2349         );
2350
2351         if(! count($r)) {
2352                 logger('diaspora_send_mail: conversation not found.');
2353                 return;
2354         }
2355         $cnv = $r[0];
2356
2357         $conv = array(
2358                 'guid' => xmlify($cnv['guid']),
2359                 'subject' => xmlify($cnv['subject']),
2360                 'created_at' => xmlify(datetime_convert('UTC','UTC',$cnv['created'],'Y-m-d H:i:s \U\T\C')),
2361                 'diaspora_handle' => xmlify($cnv['creator']),
2362                 'participant_handles' => xmlify($cnv['recips'])
2363         );
2364
2365         $body = bb2diaspora($item['body']);
2366         $created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C');
2367  
2368         $signed_text =  $item['guid'] . ';' . $cnv['guid'] . ';' . $body .  ';' 
2369                 . $created . ';' . $myaddr . ';' . $cnv['guid'];
2370
2371         $sig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
2372
2373         $msg = array(
2374                 'guid' => xmlify($item['guid']),
2375                 'parent_guid' => xmlify($cnv['guid']),
2376                 'parent_author_signature' => (($item['reply']) ? null : xmlify($sig)),
2377                 'author_signature' => xmlify($sig),
2378                 'text' => xmlify($body),
2379                 'created_at' => xmlify($created),
2380                 'diaspora_handle' => xmlify($myaddr),
2381                 'conversation_guid' => xmlify($cnv['guid'])
2382         );
2383
2384         if($item['reply']) {
2385                 $tpl = get_markup_template('diaspora_message.tpl');
2386                 $xmsg = replace_macros($tpl, array('$msg' => $msg));
2387         }
2388         else {
2389                 $conv['messages'] = array($msg);
2390                 $tpl = get_markup_template('diaspora_conversation.tpl');
2391                 $xmsg = replace_macros($tpl, array('$conv' => $conv));
2392         }
2393
2394         logger('diaspora_conversation: ' . print_r($xmsg,true), LOGGER_DATA);
2395
2396         $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($xmsg,$owner,$contact,$owner['uprvkey'],$contact['pubkey'],false)));
2397
2398         return(diaspora_transmit($owner,$contact,$slap,false));
2399
2400
2401 }
2402
2403 function diaspora_transmit($owner,$contact,$slap,$public_batch) {
2404
2405         $enabled = intval(get_config('system','diaspora_enabled'));
2406         if(! $enabled) {
2407                 return 200;
2408         }
2409
2410         $a = get_app();
2411         $logid = random_string(4);
2412         $dest_url = (($public_batch) ? $contact['batch'] : $contact['notify']);
2413         if(! $dest_url) {
2414                 logger('diaspora_transmit: no url for contact: ' . $contact['id'] . ' batch mode =' . $public_batch);
2415                 return 0;
2416         } 
2417
2418         logger('diaspora_transmit: ' . $logid . ' ' . $dest_url);
2419
2420         if(was_recently_delayed($contact['id'])) {
2421                 $return_code = 0;
2422         }
2423         else {
2424                 if(! intval(get_config('system','diaspora_test'))) {
2425                         post_url($dest_url . '/', $slap);
2426                         $return_code = $a->get_curl_code();
2427                 }
2428                 else {
2429                         logger('diaspora_transmit: test_mode');
2430                         return 200;
2431                 }
2432         }
2433         
2434         logger('diaspora_transmit: ' . $logid . ' returns: ' . $return_code);
2435
2436         if((! $return_code) || (($return_code == 503) && (stristr($a->get_curl_headers(),'retry-after')))) {
2437                 logger('diaspora_transmit: queue message');
2438
2439                 $r = q("SELECT id from queue where cid = %d and network = '%s' and content = '%s' and batch = %d limit 1",
2440                         intval($contact['id']),
2441                         dbesc(NETWORK_DIASPORA),
2442                         dbesc($slap),
2443                         intval($public_batch)
2444                 );
2445                 if(count($r)) {
2446                         logger('diaspora_transmit: add_to_queue ignored - identical item already in queue');
2447                 }
2448                 else {
2449                         // queue message for redelivery
2450                         add_to_queue($contact['id'],NETWORK_DIASPORA,$slap,$public_batch);
2451                 }
2452         }
2453
2454
2455         return(($return_code) ? $return_code : (-1));
2456 }