2010-07-24 01:33:34 +02:00
|
|
|
<?php
|
2017-12-30 17:51:49 +01:00
|
|
|
/**
|
|
|
|
* @file mod/xrd.php
|
|
|
|
*/
|
2018-07-20 04:15:21 +02:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-17 19:42:40 +01:00
|
|
|
use Friendica\Core\Addon;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-31 14:04:36 +01:00
|
|
|
use Friendica\Protocol\Salmon;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-12-30 17:51:49 +01:00
|
|
|
function xrd_init(App $a)
|
|
|
|
{
|
2017-08-30 07:34:37 +02:00
|
|
|
if ($a->argv[0] == 'xrd') {
|
2018-08-18 08:20:50 +02:00
|
|
|
if (empty($_GET['uri'])) {
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2017-08-30 07:34:37 +02:00
|
|
|
$uri = urldecode(notags(trim($_GET['uri'])));
|
2018-07-10 14:27:56 +02:00
|
|
|
if (defaults($_SERVER, 'HTTP_ACCEPT', '') == 'application/jrd+json') {
|
2017-08-30 07:34:37 +02:00
|
|
|
$mode = 'json';
|
|
|
|
} else {
|
|
|
|
$mode = 'xml';
|
|
|
|
}
|
|
|
|
} else {
|
2018-08-18 08:20:50 +02:00
|
|
|
if (empty($_GET['resource'])) {
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2017-08-22 12:18:07 +02:00
|
|
|
$uri = urldecode(notags(trim($_GET['resource'])));
|
2018-07-10 14:27:56 +02:00
|
|
|
if (defaults($_SERVER, 'HTTP_ACCEPT', '') == 'application/xrd+xml') {
|
2017-08-30 07:34:37 +02:00
|
|
|
$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);
|
2018-01-10 04:20:58 +01:00
|
|
|
if (substr($local, 0, 2) == '//') {
|
2017-08-30 07:34:37 +02:00
|
|
|
$local = substr($local, 2);
|
2018-01-10 04:20:58 +01:00
|
|
|
}
|
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
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$user = DBA::selectFirst('user', [], ['nickname' => $name]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($user)) {
|
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
|
|
|
|
2018-01-11 09:26:30 +01:00
|
|
|
$profile_url = System::baseUrl().'/profile/'.$user['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
|
|
|
|
2018-01-11 09:26:30 +01:00
|
|
|
$addr = 'acct:'.$user['nickname'].'@'.$a->get_hostname();
|
2017-10-28 13:48:29 +02:00
|
|
|
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') {
|
2018-01-11 09:26:30 +01:00
|
|
|
xrd_xml($a, $addr, $alias, $profile_url, $user);
|
2017-08-30 07:34:37 +02:00
|
|
|
} else {
|
2018-01-11 09:26:30 +01:00
|
|
|
xrd_json($a, $addr, $alias, $profile_url, $user);
|
2017-08-30 07:34:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-30 17:51:49 +01:00
|
|
|
function xrd_json($a, $uri, $alias, $profile_url, $r)
|
|
|
|
{
|
2017-12-31 14:04:36 +01:00
|
|
|
$salmon_key = Salmon::salmonKey($r['spubkey']);
|
2017-08-30 07:34:37 +02:00
|
|
|
|
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
header("Content-type: application/json; charset=utf-8");
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$json = ['subject' => $uri,
|
2018-06-20 20:16:36 +02:00
|
|
|
'aliases' => [$alias, $profile_url],
|
|
|
|
'links' => [
|
|
|
|
['rel' => NAMESPACE_DFRN, 'href' => $profile_url],
|
|
|
|
['rel' => NAMESPACE_FEED, 'type' => 'application/atom+xml', 'href' => System::baseUrl().'/dfrn_poll/'.$r['nickname']],
|
|
|
|
['rel' => 'http://webfinger.net/rel/profile-page', 'type' => 'text/html', 'href' => $profile_url],
|
|
|
|
['rel' => 'http://microformats.org/profile/hcard', 'type' => 'text/html', 'href' => System::baseUrl().'/hcard/'.$r['nickname']],
|
|
|
|
['rel' => NAMESPACE_POCO, 'href' => System::baseUrl().'/poco/'.$r['nickname']],
|
|
|
|
['rel' => 'http://webfinger.net/rel/avatar', 'type' => 'image/jpeg', 'href' => System::baseUrl().'/photo/profile/'.$r['uid'].'.jpg'],
|
|
|
|
['rel' => 'http://joindiaspora.com/seed_location', 'type' => 'text/html', 'href' => System::baseUrl()],
|
|
|
|
['rel' => 'salmon', 'href' => System::baseUrl().'/salmon/'.$r['nickname']],
|
|
|
|
['rel' => 'http://salmon-protocol.org/ns/salmon-replies', 'href' => System::baseUrl().'/salmon/'.$r['nickname']],
|
|
|
|
['rel' => 'http://salmon-protocol.org/ns/salmon-mention', 'href' => System::baseUrl().'/salmon/'.$r['nickname'].'/mention'],
|
|
|
|
['rel' => 'http://ostatus.org/schema/1.0/subscribe', 'template' => System::baseUrl().'/follow?url={uri}'],
|
|
|
|
['rel' => 'magic-public-key', 'href' => 'data:application/magic-public-key,'.$salmon_key],
|
|
|
|
['rel' => 'http://purl.org/openwebauth/v1', 'type' => 'application/x-dfrn+json', 'href' => System::baseUrl().'/owa']
|
|
|
|
]
|
2018-06-18 23:15:52 +02:00
|
|
|
];
|
2017-08-30 07:34:37 +02:00
|
|
|
echo json_encode($json);
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2017-12-30 17:51:49 +01:00
|
|
|
function xrd_xml($a, $uri, $alias, $profile_url, $r)
|
|
|
|
{
|
2017-12-31 14:04:36 +01:00
|
|
|
$salmon_key = Salmon::salmonKey($r['spubkey']);
|
2017-08-30 07:34:37 +02:00
|
|
|
|
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
header("Content-type: text/xml");
|
|
|
|
|
|
|
|
$tpl = get_markup_template('xrd_person.tpl');
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$o = replace_macros($tpl, [
|
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',
|
2018-06-18 23:05:44 +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}',
|
2018-06-20 19:32:26 +02:00
|
|
|
'$openwebauth' => System::baseUrl() . '/owa',
|
2018-01-15 14:05:12 +01:00
|
|
|
'$modexp' => 'data:application/magic-public-key,' . $salmon_key]
|
2017-12-30 17:51:49 +01:00
|
|
|
);
|
2010-07-24 01:33:34 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$arr = ['user' => $r, 'xml' => $o];
|
2018-01-17 19:42:40 +01:00
|
|
|
Addon::callHooks('personal_xrd', $arr);
|
2011-01-02 00:03:49 +01:00
|
|
|
|
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
|
|
|
}
|