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