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