2019-05-01 16:24:09 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2019-05-01 17:17:52 +00:00
|
|
|
use Friendica\Core\Hook;
|
2019-05-01 16:24:09 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2019-10-24 07:06:22 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2019-06-19 17:05:29 +00:00
|
|
|
use Friendica\Model\Photo;
|
2019-10-24 07:06:22 +00:00
|
|
|
use Friendica\Model\User;
|
2019-10-24 22:34:46 +00:00
|
|
|
use Friendica\Protocol\ActivityNamespace;
|
2019-05-01 17:17:52 +00:00
|
|
|
use Friendica\Protocol\Salmon;
|
|
|
|
use Friendica\Util\Strings;
|
2019-05-01 16:24:09 +00:00
|
|
|
|
2019-05-01 17:17:52 +00:00
|
|
|
/**
|
|
|
|
* Prints responses to /.well-known/webfinger or /xrd requests
|
|
|
|
*/
|
2019-05-01 16:24:09 +00:00
|
|
|
class Xrd extends BaseModule
|
|
|
|
{
|
2019-11-05 21:48:54 +00:00
|
|
|
public static function rawContent(array $parameters = [])
|
2019-05-01 16:24:09 +00:00
|
|
|
{
|
2019-12-15 21:34:11 +00:00
|
|
|
$app = DI::app();
|
2019-05-01 17:17:52 +00:00
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if ($app->argv[0] == 'xrd') {
|
|
|
|
if (empty($_GET['uri'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$uri = urldecode(Strings::escapeTags(trim($_GET['uri'])));
|
2019-10-15 13:20:32 +00:00
|
|
|
if (($_SERVER['HTTP_ACCEPT'] ?? '') == 'application/jrd+json') {
|
2019-05-01 17:17:52 +00:00
|
|
|
$mode = 'json';
|
|
|
|
} else {
|
|
|
|
$mode = 'xml';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (empty($_GET['resource'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$uri = urldecode(Strings::escapeTags(trim($_GET['resource'])));
|
2019-10-15 13:20:32 +00:00
|
|
|
if (($_SERVER['HTTP_ACCEPT'] ?? '') == 'application/xrd+xml') {
|
2019-05-01 17:17:52 +00:00
|
|
|
$mode = 'xml';
|
|
|
|
} else {
|
|
|
|
$mode = 'json';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (substr($uri, 0, 4) === 'http') {
|
|
|
|
$name = ltrim(basename($uri), '~');
|
|
|
|
} else {
|
|
|
|
$local = str_replace('acct:', '', $uri);
|
|
|
|
if (substr($local, 0, 2) == '//') {
|
|
|
|
$local = substr($local, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
$name = substr($local, 0, strpos($local, '@'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = User::getByNickname($name);
|
|
|
|
|
|
|
|
if (empty($user)) {
|
2019-05-02 03:16:10 +00:00
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
2019-05-01 17:17:52 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 17:05:29 +00:00
|
|
|
$owner = User::getOwnerDataById($user['uid']);
|
2019-05-01 17:17:52 +00:00
|
|
|
|
2019-06-19 17:05:29 +00:00
|
|
|
$alias = str_replace('/profile/', '/~', $owner['url']);
|
|
|
|
|
|
|
|
$avatar = Photo::selectFirst(['type'], ['uid' => $owner['uid'], 'profile' => true]);
|
|
|
|
|
|
|
|
if (!DBA::isResult($avatar)) {
|
|
|
|
$avatar = ['type' => 'image/jpeg'];
|
2019-05-01 17:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($mode == 'xml') {
|
2019-06-19 17:05:29 +00:00
|
|
|
self::printXML($alias, $app->getBaseURL(), $user, $owner, $avatar);
|
2019-05-01 17:17:52 +00:00
|
|
|
} else {
|
2019-06-19 17:05:29 +00:00
|
|
|
self::printJSON($alias, $app->getBaseURL(), $owner, $avatar);
|
2019-05-01 16:24:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-19 17:05:29 +00:00
|
|
|
private static function printJSON($alias, $baseURL, $owner, $avatar)
|
2019-05-01 16:24:09 +00:00
|
|
|
{
|
2019-06-19 17:05:29 +00:00
|
|
|
$salmon_key = Salmon::salmonKey($owner['spubkey']);
|
2019-05-01 16:24:09 +00:00
|
|
|
|
2019-05-01 17:17:52 +00:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
header('Content-type: application/json; charset=utf-8');
|
|
|
|
|
|
|
|
$json = [
|
2019-06-19 17:05:29 +00:00
|
|
|
'subject' => 'acct:' . $owner['addr'],
|
2019-05-01 17:17:52 +00:00
|
|
|
'aliases' => [
|
|
|
|
$alias,
|
2019-06-19 17:05:29 +00:00
|
|
|
$owner['url'],
|
2019-05-01 17:17:52 +00:00
|
|
|
],
|
|
|
|
'links' => [
|
|
|
|
[
|
2019-10-24 22:32:35 +00:00
|
|
|
'rel' => ActivityNamespace::DFRN ,
|
2019-06-19 17:05:29 +00:00
|
|
|
'href' => $owner['url'],
|
2019-05-01 17:17:52 +00:00
|
|
|
],
|
|
|
|
[
|
2019-10-24 22:32:35 +00:00
|
|
|
'rel' => ActivityNamespace::FEED,
|
2019-05-01 17:17:52 +00:00
|
|
|
'type' => 'application/atom+xml',
|
2019-06-19 18:32:38 +00:00
|
|
|
'href' => $owner['poll'],
|
2019-05-01 17:17:52 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://webfinger.net/rel/profile-page',
|
|
|
|
'type' => 'text/html',
|
2019-06-19 17:05:29 +00:00
|
|
|
'href' => $owner['url'],
|
2019-05-01 17:17:52 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'self',
|
|
|
|
'type' => 'application/activity+json',
|
2019-06-19 17:05:29 +00:00
|
|
|
'href' => $owner['url'],
|
2019-05-01 17:17:52 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://microformats.org/profile/hcard',
|
|
|
|
'type' => 'text/html',
|
2019-06-19 17:05:29 +00:00
|
|
|
'href' => $baseURL . '/hcard/' . $owner['nickname'],
|
2019-05-01 17:17:52 +00:00
|
|
|
],
|
|
|
|
[
|
2019-10-24 22:32:35 +00:00
|
|
|
'rel' => ActivityNamespace::POCO,
|
2019-06-19 17:05:29 +00:00
|
|
|
'href' => $owner['poco'],
|
2019-05-01 17:17:52 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://webfinger.net/rel/avatar',
|
2019-06-19 17:05:29 +00:00
|
|
|
'type' => $avatar['type'],
|
|
|
|
'href' => $owner['photo'],
|
2019-05-01 17:17:52 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://joindiaspora.com/seed_location',
|
|
|
|
'type' => 'text/html',
|
|
|
|
'href' => $baseURL,
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'salmon',
|
2019-06-19 17:05:29 +00:00
|
|
|
'href' => $baseURL . '/salmon/' . $owner['nickname'],
|
2019-05-01 17:17:52 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://salmon-protocol.org/ns/salmon-replies',
|
2019-06-19 17:05:29 +00:00
|
|
|
'href' => $baseURL . '/salmon/' . $owner['nickname'],
|
2019-05-01 17:17:52 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://salmon-protocol.org/ns/salmon-mention',
|
2019-06-19 17:05:29 +00:00
|
|
|
'href' => $baseURL . '/salmon/' . $owner['nickname'] . '/mention',
|
2019-05-01 17:17:52 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://ostatus.org/schema/1.0/subscribe',
|
|
|
|
'template' => $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-zot+json',
|
|
|
|
'href' => $baseURL . '/owa',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
echo json_encode($json);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2019-06-19 17:05:29 +00:00
|
|
|
private static function printXML($alias, $baseURL, $user, $owner, $avatar)
|
2019-05-01 17:17:52 +00:00
|
|
|
{
|
2019-06-19 17:05:29 +00:00
|
|
|
$salmon_key = Salmon::salmonKey($owner['spubkey']);
|
2019-05-01 16:24:09 +00:00
|
|
|
|
2019-05-01 17:17:52 +00:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
header('Content-type: text/xml');
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('xrd_person.tpl');
|
|
|
|
|
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2019-06-19 17:05:29 +00:00
|
|
|
'$nick' => $owner['nickname'],
|
|
|
|
'$accturi' => 'acct:' . $owner['addr'],
|
2019-05-01 17:17:52 +00:00
|
|
|
'$alias' => $alias,
|
2019-06-19 17:05:29 +00:00
|
|
|
'$profile_url' => $owner['url'],
|
|
|
|
'$hcard_url' => $baseURL . '/hcard/' . $owner['nickname'],
|
2019-06-19 18:32:38 +00:00
|
|
|
'$atom' => $owner['poll'],
|
2019-06-19 17:05:29 +00:00
|
|
|
'$poco_url' => $owner['poco'],
|
|
|
|
'$photo' => $owner['photo'],
|
|
|
|
'$type' => $avatar['type'],
|
|
|
|
'$salmon' => $baseURL . '/salmon/' . $owner['nickname'],
|
|
|
|
'$salmen' => $baseURL . '/salmon/' . $owner['nickname'] . '/mention',
|
2019-05-01 17:17:52 +00:00
|
|
|
'$subscribe' => $baseURL . '/follow?url={uri}',
|
|
|
|
'$openwebauth' => $baseURL . '/owa',
|
|
|
|
'$modexp' => 'data:application/magic-public-key,' . $salmon_key
|
2019-05-01 16:24:09 +00:00
|
|
|
]);
|
2019-05-01 17:17:52 +00:00
|
|
|
|
|
|
|
$arr = ['user' => $user, 'xml' => $o];
|
|
|
|
Hook::callAll('personal_xrd', $arr);
|
|
|
|
|
|
|
|
echo $arr['xml'];
|
|
|
|
exit();
|
2019-05-01 16:24:09 +00:00
|
|
|
}
|
|
|
|
}
|