2018-05-28 23:50:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2019-06-10 00:51:54 +00:00
|
|
|
use App\Jobs\InboxPipeline\{
|
2021-07-14 05:09:50 +00:00
|
|
|
DeleteWorker,
|
|
|
|
InboxWorker,
|
|
|
|
InboxValidator
|
2019-06-10 00:51:54 +00:00
|
|
|
};
|
2018-08-28 03:07:36 +00:00
|
|
|
use App\Jobs\RemoteFollowPipeline\RemoteFollowPipeline;
|
2019-03-02 03:08:52 +00:00
|
|
|
use App\{
|
2021-07-14 05:09:50 +00:00
|
|
|
AccountLog,
|
|
|
|
Like,
|
|
|
|
Profile,
|
|
|
|
Status,
|
|
|
|
User
|
2019-03-02 03:08:52 +00:00
|
|
|
};
|
2018-06-01 02:38:11 +00:00
|
|
|
use App\Util\Lexer\Nickname;
|
|
|
|
use App\Util\Webfinger\Webfinger;
|
2018-08-28 03:07:36 +00:00
|
|
|
use Auth;
|
|
|
|
use Cache;
|
|
|
|
use Carbon\Carbon;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use League\Fractal;
|
2019-12-21 06:15:15 +00:00
|
|
|
use App\Util\Site\Nodeinfo;
|
2019-06-10 00:51:54 +00:00
|
|
|
use App\Util\ActivityPub\{
|
2021-07-14 05:09:50 +00:00
|
|
|
Helpers,
|
|
|
|
HttpSignature,
|
|
|
|
Outbox
|
2019-06-10 00:51:54 +00:00
|
|
|
};
|
2020-02-22 11:33:35 +00:00
|
|
|
use Zttp\Zttp;
|
2022-12-05 05:15:50 +00:00
|
|
|
use App\Services\InstanceService;
|
2018-05-28 23:50:14 +00:00
|
|
|
|
|
|
|
class FederationController extends Controller
|
|
|
|
{
|
2021-07-14 05:09:50 +00:00
|
|
|
public function nodeinfoWellKnown()
|
|
|
|
{
|
|
|
|
abort_if(!config('federation.nodeinfo.enabled'), 404);
|
2021-10-07 06:34:37 +00:00
|
|
|
return response()->json(Nodeinfo::wellKnown(), 200, [], JSON_UNESCAPED_SLASHES)
|
2021-07-14 05:09:50 +00:00
|
|
|
->header('Access-Control-Allow-Origin','*');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function nodeinfo()
|
|
|
|
{
|
|
|
|
abort_if(!config('federation.nodeinfo.enabled'), 404);
|
2021-10-07 06:34:37 +00:00
|
|
|
return response()->json(Nodeinfo::get(), 200, [], JSON_UNESCAPED_SLASHES)
|
2021-07-14 05:09:50 +00:00
|
|
|
->header('Access-Control-Allow-Origin','*');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function webfinger(Request $request)
|
|
|
|
{
|
2022-03-23 06:58:21 +00:00
|
|
|
if (!config('federation.webfinger.enabled') ||
|
|
|
|
!$request->has('resource') ||
|
|
|
|
!$request->filled('resource')
|
|
|
|
) {
|
|
|
|
return response('', 400);
|
|
|
|
}
|
2021-07-14 05:09:50 +00:00
|
|
|
|
|
|
|
$resource = $request->input('resource');
|
2022-12-05 02:26:27 +00:00
|
|
|
$domain = config('pixelfed.domain.app');
|
|
|
|
|
|
|
|
if(config('federation.activitypub.sharedInbox') &&
|
|
|
|
$resource == 'acct:' . $domain . '@' . $domain) {
|
|
|
|
$res = [
|
|
|
|
'subject' => 'acct:' . $domain . '@' . $domain,
|
|
|
|
'aliases' => [
|
|
|
|
'https://' . $domain . '/i/actor'
|
|
|
|
],
|
|
|
|
'links' => [
|
|
|
|
[
|
|
|
|
'rel' => 'http://webfinger.net/rel/profile-page',
|
|
|
|
'type' => 'text/html',
|
|
|
|
'href' => 'https://' . $domain . '/site/kb/instance-actor'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'rel' => 'self',
|
|
|
|
'type' => 'application/activity+json',
|
|
|
|
'href' => 'https://' . $domain . '/i/actor'
|
|
|
|
]
|
|
|
|
]
|
|
|
|
];
|
|
|
|
return response()->json($res, 200, [], JSON_UNESCAPED_SLASHES);
|
|
|
|
}
|
2021-10-07 06:34:37 +00:00
|
|
|
$hash = hash('sha256', $resource);
|
|
|
|
$key = 'federation:webfinger:sha256:' . $hash;
|
|
|
|
if($cached = Cache::get($key)) {
|
|
|
|
return response()->json($cached, 200, [], JSON_UNESCAPED_SLASHES);
|
|
|
|
}
|
2022-03-23 06:58:21 +00:00
|
|
|
if(strpos($resource, $domain) == false) {
|
|
|
|
return response('', 400);
|
|
|
|
}
|
2021-07-14 05:09:50 +00:00
|
|
|
$parsed = Nickname::normalizeProfileUrl($resource);
|
2021-12-29 06:49:56 +00:00
|
|
|
if(empty($parsed) || $parsed['domain'] !== $domain) {
|
2022-03-23 06:58:21 +00:00
|
|
|
return response('', 400);
|
2021-07-14 05:09:50 +00:00
|
|
|
}
|
|
|
|
$username = $parsed['username'];
|
2022-03-23 06:58:21 +00:00
|
|
|
$profile = Profile::whereNull('domain')->whereUsername($username)->first();
|
|
|
|
if(!$profile || $profile->status !== null) {
|
|
|
|
return response('', 400);
|
|
|
|
}
|
2021-07-14 05:09:50 +00:00
|
|
|
$webfinger = (new Webfinger($profile))->generate();
|
2021-12-29 06:49:56 +00:00
|
|
|
Cache::put($key, $webfinger, 1209600);
|
2021-07-14 05:09:50 +00:00
|
|
|
|
2021-10-07 06:34:37 +00:00
|
|
|
return response()->json($webfinger, 200, [], JSON_UNESCAPED_SLASHES)
|
2021-07-14 05:09:50 +00:00
|
|
|
->header('Access-Control-Allow-Origin','*');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hostMeta(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!config('federation.webfinger.enabled'), 404);
|
|
|
|
|
|
|
|
$path = route('well-known.webfinger');
|
|
|
|
$xml = '<?xml version="1.0" encoding="UTF-8"?><XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0"><Link rel="lrdd" type="application/xrd+xml" template="'.$path.'?resource={uri}"/></XRD>';
|
|
|
|
|
|
|
|
return response($xml)->header('Content-Type', 'application/xrd+xml');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function userOutbox(Request $request, $username)
|
|
|
|
{
|
|
|
|
abort_if(!config_cache('federation.activitypub.enabled'), 404);
|
2022-12-09 12:06:47 +00:00
|
|
|
|
|
|
|
if(!$request->wantsJson()) {
|
|
|
|
return redirect('/' . $username);
|
|
|
|
}
|
|
|
|
|
|
|
|
$res = [
|
|
|
|
'@context' => 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'id' => 'https://' . config('pixelfed.domain.app') . '/users/' . $username . '/outbox',
|
|
|
|
'type' => 'OrderedCollection',
|
|
|
|
'totalItems' => 0,
|
|
|
|
'orderedItems' => []
|
|
|
|
];
|
2021-07-14 05:09:50 +00:00
|
|
|
|
2022-12-23 14:02:33 +00:00
|
|
|
return response(json_encode($res, JSON_UNESCAPED_SLASHES))->header('Content-Type', 'application/activity+json');
|
2021-07-14 05:09:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function userInbox(Request $request, $username)
|
|
|
|
{
|
|
|
|
abort_if(!config_cache('federation.activitypub.enabled'), 404);
|
|
|
|
abort_if(!config('federation.activitypub.inbox'), 404);
|
|
|
|
|
|
|
|
$headers = $request->headers->all();
|
|
|
|
$payload = $request->getContent();
|
2022-12-05 05:15:50 +00:00
|
|
|
if(!$payload || empty($payload)) {
|
|
|
|
return;
|
|
|
|
}
|
2021-07-14 05:09:50 +00:00
|
|
|
$obj = json_decode($payload, true, 8);
|
2022-12-05 05:15:50 +00:00
|
|
|
if(!isset($obj['id'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$domain = parse_url($obj['id'], PHP_URL_HOST);
|
|
|
|
if(in_array($domain, InstanceService::getBannedDomains())) {
|
|
|
|
return;
|
|
|
|
}
|
2021-07-14 05:09:50 +00:00
|
|
|
|
|
|
|
if(isset($obj['type']) && $obj['type'] === 'Delete') {
|
2022-12-20 09:50:53 +00:00
|
|
|
if(isset($obj['object']) && isset($obj['object']['type']) && isset($obj['object']['id'])) {
|
|
|
|
if($obj['object']['type'] === 'Person') {
|
|
|
|
if(Profile::whereRemoteUrl($obj['object']['id'])->exists()) {
|
2022-12-24 12:57:19 +00:00
|
|
|
dispatch(new DeleteWorker($headers, $payload))->onQueue('inbox');
|
2022-12-20 09:50:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($obj['object']['type'] === 'Tombstone') {
|
|
|
|
if(Status::whereObjectUrl($obj['object']['id'])->exists()) {
|
|
|
|
dispatch(new DeleteWorker($headers, $payload))->onQueue('delete');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($obj['object']['type'] === 'Story') {
|
2022-12-24 12:57:19 +00:00
|
|
|
dispatch(new DeleteWorker($headers, $payload))->onQueue('story');
|
2022-04-27 02:36:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2022-12-20 09:50:53 +00:00
|
|
|
return;
|
2022-12-13 03:21:06 +00:00
|
|
|
} else if( isset($obj['type']) && in_array($obj['type'], ['Follow', 'Accept'])) {
|
|
|
|
dispatch(new InboxValidator($username, $headers, $payload))->onQueue('follow');
|
2021-07-14 05:09:50 +00:00
|
|
|
} else {
|
|
|
|
dispatch(new InboxValidator($username, $headers, $payload))->onQueue('high');
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function sharedInbox(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!config_cache('federation.activitypub.enabled'), 404);
|
|
|
|
abort_if(!config('federation.activitypub.sharedInbox'), 404);
|
|
|
|
|
|
|
|
$headers = $request->headers->all();
|
|
|
|
$payload = $request->getContent();
|
2022-12-05 05:15:50 +00:00
|
|
|
|
|
|
|
if(!$payload || empty($payload)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-14 05:09:50 +00:00
|
|
|
$obj = json_decode($payload, true, 8);
|
2022-12-05 05:15:50 +00:00
|
|
|
if(!isset($obj['id'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$domain = parse_url($obj['id'], PHP_URL_HOST);
|
|
|
|
if(in_array($domain, InstanceService::getBannedDomains())) {
|
|
|
|
return;
|
|
|
|
}
|
2021-07-14 05:09:50 +00:00
|
|
|
|
|
|
|
if(isset($obj['type']) && $obj['type'] === 'Delete') {
|
2022-12-20 09:50:53 +00:00
|
|
|
if(isset($obj['object']) && isset($obj['object']['type']) && isset($obj['object']['id'])) {
|
|
|
|
if($obj['object']['type'] === 'Person') {
|
|
|
|
if(Profile::whereRemoteUrl($obj['object']['id'])->exists()) {
|
2022-12-24 12:57:19 +00:00
|
|
|
dispatch(new DeleteWorker($headers, $payload))->onQueue('inbox');
|
2022-12-20 09:50:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($obj['object']['type'] === 'Tombstone') {
|
|
|
|
if(Status::whereObjectUrl($obj['object']['id'])->exists()) {
|
|
|
|
dispatch(new DeleteWorker($headers, $payload))->onQueue('delete');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($obj['object']['type'] === 'Story') {
|
2022-12-24 12:57:19 +00:00
|
|
|
dispatch(new DeleteWorker($headers, $payload))->onQueue('story');
|
2022-04-27 02:36:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2022-12-20 09:50:53 +00:00
|
|
|
return;
|
2022-12-13 03:21:06 +00:00
|
|
|
} else if( isset($obj['type']) && in_array($obj['type'], ['Follow', 'Accept'])) {
|
|
|
|
dispatch(new InboxWorker($headers, $payload))->onQueue('follow');
|
2021-07-14 05:09:50 +00:00
|
|
|
} else {
|
2022-12-13 03:21:06 +00:00
|
|
|
dispatch(new InboxWorker($headers, $payload))->onQueue('shared');
|
2021-07-14 05:09:50 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function userFollowing(Request $request, $username)
|
|
|
|
{
|
|
|
|
abort_if(!config_cache('federation.activitypub.enabled'), 404);
|
|
|
|
|
|
|
|
$obj = [
|
|
|
|
'@context' => 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'id' => $request->getUri(),
|
|
|
|
'type' => 'OrderedCollectionPage',
|
|
|
|
'totalItems' => 0,
|
|
|
|
'orderedItems' => []
|
|
|
|
];
|
|
|
|
return response()->json($obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function userFollowers(Request $request, $username)
|
|
|
|
{
|
|
|
|
abort_if(!config_cache('federation.activitypub.enabled'), 404);
|
|
|
|
|
|
|
|
$obj = [
|
|
|
|
'@context' => 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'id' => $request->getUri(),
|
|
|
|
'type' => 'OrderedCollectionPage',
|
|
|
|
'totalItems' => 0,
|
|
|
|
'orderedItems' => []
|
|
|
|
];
|
|
|
|
|
|
|
|
return response()->json($obj);
|
|
|
|
}
|
2018-05-28 23:50:14 +00:00
|
|
|
}
|