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