2019-05-01 12:24:09 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 09:45:36 -05:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-01 12:24:09 -04:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2019-05-01 13:17:52 -04:00
|
|
|
use Friendica\Core\Hook;
|
2019-05-01 12:24:09 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2020-08-22 10:48:09 -04:00
|
|
|
use Friendica\Core\System;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-06-19 13:05:29 -04:00
|
|
|
use Friendica\Model\Photo;
|
2019-10-24 03:06:22 -04:00
|
|
|
use Friendica\Model\User;
|
2019-10-24 18:34:46 -04:00
|
|
|
use Friendica\Protocol\ActivityNamespace;
|
2019-05-01 13:17:52 -04:00
|
|
|
use Friendica\Protocol\Salmon;
|
2019-05-01 12:24:09 -04:00
|
|
|
|
2019-05-01 13:17:52 -04:00
|
|
|
/**
|
|
|
|
* Prints responses to /.well-known/webfinger or /xrd requests
|
|
|
|
*/
|
2019-05-01 12:24:09 -04:00
|
|
|
class Xrd extends BaseModule
|
|
|
|
{
|
2021-11-20 09:38:03 -05:00
|
|
|
protected function rawContent(array $request = [])
|
2019-05-01 12:24:09 -04:00
|
|
|
{
|
2019-05-01 13:17:52 -04:00
|
|
|
// @TODO: Replace with parameter from router
|
2021-07-25 11:23:37 -04:00
|
|
|
if (DI::args()->getArgv()[0] == 'xrd') {
|
2019-05-01 13:17:52 -04:00
|
|
|
if (empty($_GET['uri'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-11-05 15:59:18 -04:00
|
|
|
$uri = urldecode(trim($_GET['uri']));
|
2021-08-09 02:56:41 -04:00
|
|
|
if (strpos($_SERVER['HTTP_ACCEPT'] ?? '', 'application/jrd+json') !== false) {
|
2022-04-10 04:31:55 -04:00
|
|
|
$mode = Response::TYPE_JSON;
|
2019-05-01 13:17:52 -04:00
|
|
|
} else {
|
2022-04-10 04:31:55 -04:00
|
|
|
$mode = Response::TYPE_XML;
|
2019-05-01 13:17:52 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (empty($_GET['resource'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-11-05 15:59:18 -04:00
|
|
|
$uri = urldecode(trim($_GET['resource']));
|
2021-08-09 02:56:41 -04:00
|
|
|
if (strpos($_SERVER['HTTP_ACCEPT'] ?? '', 'application/xrd+xml') !== false) {
|
2022-04-10 04:31:55 -04:00
|
|
|
$mode = Response::TYPE_XML;
|
2019-05-01 13:17:52 -04:00
|
|
|
} else {
|
2022-04-10 04:31:55 -04:00
|
|
|
$mode = Response::TYPE_JSON;
|
2019-05-01 13:17:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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, '@'));
|
|
|
|
}
|
|
|
|
|
2020-08-22 14:52:37 -04:00
|
|
|
if ($name == User::getActorName()) {
|
2020-08-22 10:48:09 -04:00
|
|
|
$owner = User::getSystemAccount();
|
|
|
|
if (empty($owner)) {
|
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
|
|
|
}
|
|
|
|
self::printSystemJSON($owner);
|
|
|
|
} else {
|
|
|
|
$user = User::getByNickname($name);
|
|
|
|
if (empty($user)) {
|
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
|
|
|
}
|
2019-05-01 13:17:52 -04:00
|
|
|
|
2020-08-22 10:48:09 -04:00
|
|
|
$owner = User::getOwnerDataById($user['uid']);
|
|
|
|
if (empty($owner)) {
|
|
|
|
DI::logger()->warning('No owner data for user id', ['uri' => $uri, 'name' => $name, 'user' => $user]);
|
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
|
|
|
}
|
2019-05-01 13:17:52 -04:00
|
|
|
|
2020-08-22 10:48:09 -04:00
|
|
|
$alias = str_replace('/profile/', '/~', $owner['url']);
|
2019-05-01 13:17:52 -04:00
|
|
|
|
2020-08-22 10:48:09 -04:00
|
|
|
$avatar = Photo::selectFirst(['type'], ['uid' => $owner['uid'], 'profile' => true]);
|
2020-07-08 09:14:34 -04:00
|
|
|
}
|
|
|
|
|
2020-08-22 10:48:09 -04:00
|
|
|
if (empty($avatar)) {
|
2019-06-19 13:05:29 -04:00
|
|
|
$avatar = ['type' => 'image/jpeg'];
|
2019-05-01 13:17:52 -04:00
|
|
|
}
|
|
|
|
|
2022-04-10 04:31:55 -04:00
|
|
|
if ($mode == Response::TYPE_JSON) {
|
2019-12-15 19:05:15 -05:00
|
|
|
self::printXML($alias, DI::baseUrl()->get(), $user, $owner, $avatar);
|
2019-05-01 13:17:52 -04:00
|
|
|
} else {
|
2019-12-15 19:05:15 -05:00
|
|
|
self::printJSON($alias, DI::baseUrl()->get(), $owner, $avatar);
|
2019-05-01 12:24:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-22 10:48:09 -04:00
|
|
|
private static function printSystemJSON(array $owner)
|
|
|
|
{
|
|
|
|
$json = [
|
|
|
|
'subject' => 'acct:' . $owner['addr'],
|
|
|
|
'aliases' => [$owner['url']],
|
|
|
|
'links' => [
|
|
|
|
[
|
|
|
|
'rel' => 'http://webfinger.net/rel/profile-page',
|
|
|
|
'type' => 'text/html',
|
|
|
|
'href' => $owner['url'],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'self',
|
|
|
|
'type' => 'application/activity+json',
|
|
|
|
'href' => $owner['url'],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://ostatus.org/schema/1.0/subscribe',
|
|
|
|
'template' => DI::baseUrl()->get() . '/follow?url={uri}',
|
|
|
|
],
|
2021-08-05 04:30:44 -04:00
|
|
|
[
|
|
|
|
'rel' => ActivityNamespace::FEED,
|
|
|
|
'type' => 'application/atom+xml',
|
|
|
|
'href' => $owner['poll'] ?? DI::baseUrl()->get(),
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'salmon',
|
|
|
|
'href' => DI::baseUrl()->get() . '/salmon/' . $owner['nickname'],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://microformats.org/profile/hcard',
|
|
|
|
'type' => 'text/html',
|
|
|
|
'href' => DI::baseUrl()->get() . '/hcard/' . $owner['nickname'],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://joindiaspora.com/seed_location',
|
|
|
|
'type' => 'text/html',
|
|
|
|
'href' => DI::baseUrl()->get(),
|
|
|
|
],
|
2020-08-22 10:48:09 -04:00
|
|
|
]
|
|
|
|
];
|
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
System::jsonExit($json, 'application/jrd+json; charset=utf-8');
|
|
|
|
}
|
|
|
|
|
2019-06-19 13:05:29 -04:00
|
|
|
private static function printJSON($alias, $baseURL, $owner, $avatar)
|
2019-05-01 12:24:09 -04:00
|
|
|
{
|
2019-06-19 13:05:29 -04:00
|
|
|
$salmon_key = Salmon::salmonKey($owner['spubkey']);
|
2019-05-01 12:24:09 -04:00
|
|
|
|
2019-05-01 13:17:52 -04:00
|
|
|
$json = [
|
2019-06-19 13:05:29 -04:00
|
|
|
'subject' => 'acct:' . $owner['addr'],
|
2019-05-01 13:17:52 -04:00
|
|
|
'aliases' => [
|
|
|
|
$alias,
|
2019-06-19 13:05:29 -04:00
|
|
|
$owner['url'],
|
2019-05-01 13:17:52 -04:00
|
|
|
],
|
|
|
|
'links' => [
|
|
|
|
[
|
2019-10-24 18:32:35 -04:00
|
|
|
'rel' => ActivityNamespace::DFRN ,
|
2019-06-19 13:05:29 -04:00
|
|
|
'href' => $owner['url'],
|
2019-05-01 13:17:52 -04:00
|
|
|
],
|
|
|
|
[
|
2019-10-24 18:32:35 -04:00
|
|
|
'rel' => ActivityNamespace::FEED,
|
2019-05-01 13:17:52 -04:00
|
|
|
'type' => 'application/atom+xml',
|
2019-06-19 14:32:38 -04:00
|
|
|
'href' => $owner['poll'],
|
2019-05-01 13:17:52 -04:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://webfinger.net/rel/profile-page',
|
|
|
|
'type' => 'text/html',
|
2019-06-19 13:05:29 -04:00
|
|
|
'href' => $owner['url'],
|
2019-05-01 13:17:52 -04:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'self',
|
|
|
|
'type' => 'application/activity+json',
|
2019-06-19 13:05:29 -04:00
|
|
|
'href' => $owner['url'],
|
2019-05-01 13:17:52 -04:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://microformats.org/profile/hcard',
|
|
|
|
'type' => 'text/html',
|
2019-06-19 13:05:29 -04:00
|
|
|
'href' => $baseURL . '/hcard/' . $owner['nickname'],
|
2019-05-01 13:17:52 -04:00
|
|
|
],
|
|
|
|
[
|
2019-10-24 18:32:35 -04:00
|
|
|
'rel' => ActivityNamespace::POCO,
|
2019-06-19 13:05:29 -04:00
|
|
|
'href' => $owner['poco'],
|
2019-05-01 13:17:52 -04:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://webfinger.net/rel/avatar',
|
2019-06-19 13:05:29 -04:00
|
|
|
'type' => $avatar['type'],
|
2021-10-02 17:28:29 -04:00
|
|
|
'href' => User::getAvatarUrl($owner),
|
2019-05-01 13:17:52 -04:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://joindiaspora.com/seed_location',
|
|
|
|
'type' => 'text/html',
|
|
|
|
'href' => $baseURL,
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'salmon',
|
2019-06-19 13:05:29 -04:00
|
|
|
'href' => $baseURL . '/salmon/' . $owner['nickname'],
|
2019-05-01 13:17:52 -04:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://salmon-protocol.org/ns/salmon-replies',
|
2019-06-19 13:05:29 -04:00
|
|
|
'href' => $baseURL . '/salmon/' . $owner['nickname'],
|
2019-05-01 13:17:52 -04:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'http://salmon-protocol.org/ns/salmon-mention',
|
2019-06-19 13:05:29 -04:00
|
|
|
'href' => $baseURL . '/salmon/' . $owner['nickname'] . '/mention',
|
2019-05-01 13:17:52 -04: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',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
2021-08-09 02:56:41 -04:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
System::jsonExit($json, 'application/jrd+json; charset=utf-8');
|
2019-05-01 13:17:52 -04:00
|
|
|
}
|
|
|
|
|
2019-06-19 13:05:29 -04:00
|
|
|
private static function printXML($alias, $baseURL, $user, $owner, $avatar)
|
2019-05-01 13:17:52 -04:00
|
|
|
{
|
2019-06-19 13:05:29 -04:00
|
|
|
$salmon_key = Salmon::salmonKey($owner['spubkey']);
|
2019-05-01 12:24:09 -04:00
|
|
|
|
2019-05-01 13:17:52 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('xrd_person.tpl');
|
|
|
|
|
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2019-06-19 13:05:29 -04:00
|
|
|
'$nick' => $owner['nickname'],
|
|
|
|
'$accturi' => 'acct:' . $owner['addr'],
|
2019-05-01 13:17:52 -04:00
|
|
|
'$alias' => $alias,
|
2019-06-19 13:05:29 -04:00
|
|
|
'$profile_url' => $owner['url'],
|
|
|
|
'$hcard_url' => $baseURL . '/hcard/' . $owner['nickname'],
|
2019-06-19 14:32:38 -04:00
|
|
|
'$atom' => $owner['poll'],
|
2019-06-19 13:05:29 -04:00
|
|
|
'$poco_url' => $owner['poco'],
|
2021-10-02 17:28:29 -04:00
|
|
|
'$photo' => User::getAvatarUrl($owner),
|
2019-06-19 13:05:29 -04:00
|
|
|
'$type' => $avatar['type'],
|
|
|
|
'$salmon' => $baseURL . '/salmon/' . $owner['nickname'],
|
|
|
|
'$salmen' => $baseURL . '/salmon/' . $owner['nickname'] . '/mention',
|
2019-05-01 13:17:52 -04:00
|
|
|
'$subscribe' => $baseURL . '/follow?url={uri}',
|
|
|
|
'$openwebauth' => $baseURL . '/owa',
|
|
|
|
'$modexp' => 'data:application/magic-public-key,' . $salmon_key
|
2019-05-01 12:24:09 -04:00
|
|
|
]);
|
2019-05-01 13:17:52 -04:00
|
|
|
|
|
|
|
$arr = ['user' => $user, 'xml' => $o];
|
|
|
|
Hook::callAll('personal_xrd', $arr);
|
|
|
|
|
2022-04-10 04:31:55 -04:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
|
|
|
|
System::httpExit($arr['xml'], Response::TYPE_XML);
|
2019-05-01 12:24:09 -04:00
|
|
|
}
|
|
|
|
}
|