2010-07-24 01:33:34 +02:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-11-08 04:57:46 +01:00
|
|
|
use Friendica\Database\DBM;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2011-08-10 03:55:46 +02:00
|
|
|
require_once('include/crypto.php');
|
2010-07-24 01:33:34 +02:00
|
|
|
|
2017-01-09 13:14:55 +01:00
|
|
|
function xrd_init(App $a) {
|
2017-08-30 07:34:37 +02:00
|
|
|
if ($a->argv[0] == 'xrd') {
|
|
|
|
$uri = urldecode(notags(trim($_GET['uri'])));
|
|
|
|
if ($_SERVER['HTTP_ACCEPT'] == 'application/jrd+json') {
|
|
|
|
$mode = 'json';
|
|
|
|
} else {
|
|
|
|
$mode = 'xml';
|
|
|
|
}
|
|
|
|
} else {
|
2017-08-22 12:18:07 +02:00
|
|
|
$uri = urldecode(notags(trim($_GET['resource'])));
|
2017-08-30 07:34:37 +02:00
|
|
|
if ($_SERVER['HTTP_ACCEPT'] == 'application/xrd+xml') {
|
|
|
|
$mode = 'xml';
|
|
|
|
} else {
|
|
|
|
$mode = 'json';
|
|
|
|
}
|
2017-08-22 12:18:07 +02:00
|
|
|
}
|
|
|
|
|
2017-10-28 13:48:29 +02:00
|
|
|
if (substr($uri, 0, 4) === 'http') {
|
2017-10-27 08:17:24 +02:00
|
|
|
$name = ltrim(basename($uri), '~');
|
2015-12-28 01:04:14 +01:00
|
|
|
} else {
|
2010-10-26 06:52:30 +02:00
|
|
|
$local = str_replace('acct:', '', $uri);
|
2017-10-28 13:48:29 +02:00
|
|
|
if (substr($local, 0, 2) == '//')
|
2017-08-30 07:34:37 +02:00
|
|
|
$local = substr($local, 2);
|
2010-10-26 06:52:30 +02:00
|
|
|
|
2017-10-28 13:48:29 +02:00
|
|
|
$name = substr($local, 0, strpos($local, '@'));
|
2010-10-26 06:52:30 +02:00
|
|
|
}
|
2010-07-24 01:33:34 +02:00
|
|
|
|
2017-05-07 22:52:00 +02:00
|
|
|
$r = dba::select('user', array(), array('nickname' => $name), array('limit' => 1));
|
2017-11-08 04:57:46 +01:00
|
|
|
if (!DBM::is_result($r)) {
|
2010-07-24 01:33:34 +02:00
|
|
|
killme();
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2010-07-24 01:33:34 +02:00
|
|
|
|
2017-08-26 09:32:10 +02:00
|
|
|
$profile_url = System::baseUrl().'/profile/'.$r['nickname'];
|
2015-12-28 01:04:14 +01:00
|
|
|
|
2017-10-28 13:48:29 +02:00
|
|
|
$alias = str_replace('/profile/', '/~', $profile_url);
|
2015-12-28 01:04:14 +01:00
|
|
|
|
2017-10-28 13:48:29 +02:00
|
|
|
$addr = 'acct:'.$r['nickname'].'@'.$a->get_hostname();
|
|
|
|
if ($a->get_path()) {
|
|
|
|
$addr .= '/'.$a->get_path();
|
2015-12-28 01:04:14 +01:00
|
|
|
}
|
|
|
|
|
2017-08-30 07:34:37 +02:00
|
|
|
if ($mode == 'xml') {
|
2017-10-28 13:48:29 +02:00
|
|
|
xrd_xml($a, $addr, $alias, $profile_url, $r);
|
2017-08-30 07:34:37 +02:00
|
|
|
} else {
|
2017-10-28 13:48:29 +02:00
|
|
|
xrd_json($a, $addr, $alias, $profile_url, $r);
|
2017-08-30 07:34:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function xrd_json($a, $uri, $alias, $profile_url, $r) {
|
|
|
|
$salmon_key = salmon_key($r['spubkey']);
|
|
|
|
|
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
header("Content-type: application/json; charset=utf-8");
|
|
|
|
|
|
|
|
$json = array('subject' => $uri,
|
2017-10-28 13:48:29 +02:00
|
|
|
'aliases' => array($alias, $profile_url),
|
2017-08-30 07:34:37 +02:00
|
|
|
'links' => array(array('rel' => NAMESPACE_DFRN, 'href' => $profile_url),
|
|
|
|
array('rel' => NAMESPACE_FEED, 'type' => 'application/atom+xml', 'href' => System::baseUrl().'/dfrn_poll/'.$r['nickname']),
|
|
|
|
array('rel' => 'http://webfinger.net/rel/profile-page', 'type' => 'text/html', 'href' => $profile_url),
|
|
|
|
array('rel' => 'http://microformats.org/profile/hcard', 'type' => 'text/html', 'href' => System::baseUrl().'/hcard/'.$r['nickname']),
|
|
|
|
array('rel' => NAMESPACE_POCO, 'href' => System::baseUrl().'/poco/'.$r['nickname']),
|
|
|
|
array('rel' => 'http://webfinger.net/rel/avatar', 'type' => 'image/jpeg', 'href' => System::baseUrl().'/photo/profile/'.$r['uid'].'.jpg'),
|
|
|
|
array('rel' => 'http://joindiaspora.com/seed_location', 'type' => 'text/html', 'href' => System::baseUrl()),
|
|
|
|
array('rel' => 'salmon', 'href' => System::baseUrl().'/salmon/'.$r['nickname']),
|
|
|
|
array('rel' => 'http://salmon-protocol.org/ns/salmon-replies', 'href' => System::baseUrl().'/salmon/'.$r['nickname']),
|
|
|
|
array('rel' => 'http://salmon-protocol.org/ns/salmon-mention', 'href' => System::baseUrl().'/salmon/'.$r['nickname'].'/mention'),
|
|
|
|
array('rel' => 'http://ostatus.org/schema/1.0/subscribe', 'template' => System::baseUrl().'/follow?url={uri}'),
|
|
|
|
array('rel' => 'magic-public-key', 'href' => 'data:application/magic-public-key,'.$salmon_key)
|
2017-08-30 08:16:31 +02:00
|
|
|
));
|
2017-08-30 07:34:37 +02:00
|
|
|
echo json_encode($json);
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
|
|
|
function xrd_xml($a, $uri, $alias, $profile_url, $r) {
|
|
|
|
$salmon_key = salmon_key($r['spubkey']);
|
|
|
|
|
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
header("Content-type: text/xml");
|
|
|
|
|
|
|
|
$tpl = get_markup_template('xrd_person.tpl');
|
|
|
|
|
2010-07-24 01:33:34 +02:00
|
|
|
$o = replace_macros($tpl, array(
|
2017-05-07 22:52:00 +02:00
|
|
|
'$nick' => $r['nickname'],
|
2010-10-12 13:39:32 +02:00
|
|
|
'$accturi' => $uri,
|
2015-12-28 01:04:14 +01:00
|
|
|
'$alias' => $alias,
|
|
|
|
'$profile_url' => $profile_url,
|
2017-08-26 09:32:10 +02:00
|
|
|
'$hcard_url' => System::baseUrl() . '/hcard/' . $r['nickname'],
|
|
|
|
'$atom' => System::baseUrl() . '/dfrn_poll/' . $r['nickname'],
|
|
|
|
'$poco_url' => System::baseUrl() . '/poco/' . $r['nickname'],
|
|
|
|
'$photo' => System::baseUrl() . '/photo/profile/' . $r['uid'] . '.jpg',
|
2017-08-30 07:34:37 +02:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2017-08-26 09:32:10 +02:00
|
|
|
'$salmon' => System::baseUrl() . '/salmon/' . $r['nickname'],
|
|
|
|
'$salmen' => System::baseUrl() . '/salmon/' . $r['nickname'] . '/mention',
|
|
|
|
'$subscribe' => System::baseUrl() . '/follow?url={uri}',
|
2011-09-27 15:50:18 +02:00
|
|
|
'$modexp' => 'data:application/magic-public-key,' . $salmon_key,
|
2010-07-24 01:33:34 +02:00
|
|
|
));
|
|
|
|
|
2017-05-07 22:52:00 +02:00
|
|
|
$arr = array('user' => $r, 'xml' => $o);
|
2011-01-02 00:03:49 +01:00
|
|
|
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
|
|
|
}
|