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