friendica/mod/xrd.php

131 lines
4.3 KiB
PHP
Raw Normal View History

2010-07-24 01:33:34 +02:00
<?php
/**
* @file mod/xrd.php
*/
use Friendica\App;
use Friendica\Core\Addon;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
use Friendica\Database\DBA;
use Friendica\Protocol\Salmon;
function xrd_init(App $a)
{
2017-08-30 07:34:37 +02:00
if ($a->argv[0] == 'xrd') {
if (empty($_GET['uri'])) {
killme();
}
2017-08-30 07:34:37 +02:00
$uri = urldecode(notags(trim($_GET['uri'])));
if (defaults($_SERVER, 'HTTP_ACCEPT', '') == 'application/jrd+json') {
2017-08-30 07:34:37 +02:00
$mode = 'json';
} else {
$mode = 'xml';
}
} else {
if (empty($_GET['resource'])) {
killme();
}
$uri = urldecode(notags(trim($_GET['resource'])));
if (defaults($_SERVER, 'HTTP_ACCEPT', '') == 'application/xrd+xml') {
2017-08-30 07:34:37 +02:00
$mode = 'xml';
} else {
$mode = 'json';
}
}
2017-10-28 13:48:29 +02:00
if (substr($uri, 0, 4) === 'http') {
$name = ltrim(basename($uri), '~');
} else {
$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
}
2017-10-28 13:48:29 +02:00
$name = substr($local, 0, strpos($local, '@'));
}
2010-07-24 01:33:34 +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();
}
2010-07-24 01:33:34 +02:00
$profile_url = System::baseUrl().'/profile/'.$user['nickname'];
2017-10-28 13:48:29 +02:00
$alias = str_replace('/profile/', '/~', $profile_url);
$addr = 'acct:'.$user['nickname'].'@'.$a->get_hostname();
2017-10-28 13:48:29 +02:00
if ($a->get_path()) {
$addr .= '/'.$a->get_path();
}
2017-08-30 07:34:37 +02:00
if ($mode == 'xml') {
xrd_xml($a, $addr, $alias, $profile_url, $user);
2017-08-30 07:34:37 +02:00
} else {
xrd_json($a, $addr, $alias, $profile_url, $user);
2017-08-30 07:34:37 +02:00
}
}
function xrd_json($a, $uri, $alias, $profile_url, $r)
{
$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");
$json = ['subject' => $uri,
'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();
}
function xrd_xml($a, $uri, $alias, $profile_url, $r)
{
$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');
$o = replace_macros($tpl, [
'$nick' => $r['nickname'],
2010-10-12 13:39:32 +02:00
'$accturi' => $uri,
'$alias' => $alias,
'$profile_url' => $profile_url,
'$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',
'$baseurl' => System::baseUrl(),
'$salmon' => System::baseUrl() . '/salmon/' . $r['nickname'],
'$salmen' => System::baseUrl() . '/salmon/' . $r['nickname'] . '/mention',
'$subscribe' => System::baseUrl() . '/follow?url={uri}',
'$openwebauth' => System::baseUrl() . '/owa',
'$modexp' => 'data:application/magic-public-key,' . $salmon_key]
);
2010-07-24 01:33:34 +02:00
$arr = ['user' => $r, 'xml' => $o];
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
}