friendica/mod/xrd.php

50 lines
1.3 KiB
PHP
Raw Normal View History

2010-07-24 01:33:34 +02:00
<?php
2010-10-12 13:07:03 +02:00
require_once('salmon.php');
2010-07-24 01:33:34 +02:00
function xrd_content(&$a) {
$uri = urldecode(notags(trim($_GET['uri'])));
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();
2010-10-12 13:07:03 +02:00
$salmon_key = salmon_key($r[0]['spubkey']);
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
$tpl = file_get_contents('view/xrd_person.tpl');
2010-07-24 01:33:34 +02:00
$o = replace_macros($tpl, array(
2010-10-12 13:39:32 +02:00
'$accturi' => $uri,
'$profile_url' => $a->get_baseurl() . '/profile/' . $r[0]['nickname'],
'$atom' => $a->get_baseurl() . '/dfrn_poll/' . $r[0]['nickname'],
'$photo' => $a->get_baseurl() . '/photo/profile/' . $r[0]['uid'] . '.jpg',
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',
'$modexp' => 'data:application/magic-public-key,' . $salmon_key
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);
2010-07-24 01:33:34 +02:00
echo $o;
killme();
2010-10-12 13:07:03 +02:00
}