2010-07-23 19:33:34 -04:00
|
|
|
<?php
|
|
|
|
|
2011-08-09 21:55:46 -04:00
|
|
|
require_once('include/crypto.php');
|
2010-07-23 19:33:34 -04:00
|
|
|
|
2011-08-09 21:55:46 -04:00
|
|
|
function xrd_init(&$a) {
|
2010-07-23 19:33:34 -04:00
|
|
|
|
2010-08-30 23:59:56 -04:00
|
|
|
$uri = urldecode(notags(trim($_GET['uri'])));
|
|
|
|
|
2010-10-26 00:52:30 -04:00
|
|
|
if(substr($uri,0,4) === 'http')
|
|
|
|
$name = basename($uri);
|
|
|
|
else {
|
|
|
|
$local = str_replace('acct:', '', $uri);
|
|
|
|
if(substr($local,0,2) == '//')
|
|
|
|
$local = substr($local,2);
|
|
|
|
|
|
|
|
$name = substr($local,0,strpos($local,'@'));
|
|
|
|
}
|
2010-07-23 19:33:34 -04:00
|
|
|
|
|
|
|
$r = q("SELECT * FROM `user` WHERE `nickname` = '%s' LIMIT 1",
|
|
|
|
dbesc($name)
|
|
|
|
);
|
|
|
|
if(! count($r))
|
|
|
|
killme();
|
|
|
|
|
2011-08-09 21:55:46 -04:00
|
|
|
$salmon_key = salmon_key($r[0]['spubkey']);
|
2010-10-12 07:07:03 -04:00
|
|
|
|
2011-06-25 22:40:37 -04:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
2010-10-12 07:39:32 -04:00
|
|
|
header("Content-type: text/xml");
|
2010-10-12 07:07:03 -04:00
|
|
|
|
2011-08-09 21:55:46 -04:00
|
|
|
if(get_config('system','diaspora_enabled')) {
|
2011-07-18 21:13:46 -04:00
|
|
|
$tpl = file_get_contents('view/xrd_diaspora.tpl');
|
|
|
|
$dspr = replace_macros($tpl,array(
|
|
|
|
'$baseurl' => $a->get_baseurl(),
|
|
|
|
'$dspr_guid' => $r[0]['guid'],
|
2011-07-30 04:03:24 -04:00
|
|
|
'$dspr_key' => base64_encode(pemtorsa($r[0]['pubkey']))
|
2011-07-18 21:13:46 -04:00
|
|
|
));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$dspr = '';
|
|
|
|
|
2011-05-10 19:12:50 -04:00
|
|
|
$tpl = file_get_contents('view/xrd_person.tpl');
|
2010-07-23 19:33:34 -04:00
|
|
|
|
|
|
|
$o = replace_macros($tpl, array(
|
2010-10-12 07:39:32 -04:00
|
|
|
'$accturi' => $uri,
|
|
|
|
'$profile_url' => $a->get_baseurl() . '/profile/' . $r[0]['nickname'],
|
2011-08-07 22:26:44 -04:00
|
|
|
'$hcard_url' => $a->get_baseurl() . '/hcard/' . $r[0]['nickname'],
|
2010-10-12 07:39:32 -04:00
|
|
|
'$atom' => $a->get_baseurl() . '/dfrn_poll/' . $r[0]['nickname'],
|
2011-09-19 05:13:59 -04:00
|
|
|
'$zot_post' => $a->get_baseurl() . '/post/' . $r[0]['nickname'],
|
2010-10-17 23:04:17 -04:00
|
|
|
'$photo' => $a->get_baseurl() . '/photo/profile/' . $r[0]['uid'] . '.jpg',
|
2011-07-18 21:13:46 -04:00
|
|
|
'$dspr' => $dspr,
|
2010-10-12 07:39:32 -04:00
|
|
|
'$salmon' => $a->get_baseurl() . '/salmon/' . $r[0]['nickname'],
|
|
|
|
'$salmen' => $a->get_baseurl() . '/salmon/' . $r[0]['nickname'] . '/mention',
|
|
|
|
'$modexp' => 'data:application/magic-public-key,' . $salmon_key
|
2010-07-23 19:33:34 -04:00
|
|
|
));
|
|
|
|
|
2011-01-01 18:03:49 -05:00
|
|
|
|
|
|
|
$arr = array('user' => $r[0], 'xml' => $o);
|
|
|
|
call_hooks('personal_xrd', $arr);
|
|
|
|
|
2011-08-09 21:55:46 -04:00
|
|
|
echo $arr['xml'];
|
2010-07-23 19:33:34 -04:00
|
|
|
killme();
|
|
|
|
|
2010-10-12 07:07:03 -04:00
|
|
|
}
|