2018-05-28 17:50:14 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2019-06-09 18:51:54 -06:00
|
|
|
use App\Jobs\InboxPipeline\{
|
|
|
|
InboxWorker,
|
|
|
|
InboxValidator
|
|
|
|
};
|
2018-08-28 03:07:36 +00:00
|
|
|
use App\Jobs\RemoteFollowPipeline\RemoteFollowPipeline;
|
2019-03-01 20:08:52 -07:00
|
|
|
use App\{
|
|
|
|
AccountLog,
|
|
|
|
Like,
|
|
|
|
Profile,
|
2019-08-15 23:23:25 -06:00
|
|
|
Status,
|
|
|
|
User
|
2019-03-01 20:08:52 -07:00
|
|
|
};
|
2018-05-31 20:38:11 -06: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-20 23:15:15 -07:00
|
|
|
use App\Util\Site\Nodeinfo;
|
2019-06-09 18:51:54 -06:00
|
|
|
use App\Util\ActivityPub\{
|
|
|
|
Helpers,
|
2019-12-20 23:15:15 -07:00
|
|
|
HttpSignature,
|
|
|
|
Outbox
|
2019-06-09 18:51:54 -06:00
|
|
|
};
|
2020-02-22 19:33:35 +08:00
|
|
|
use Zttp\Zttp;
|
2018-05-28 17:50:14 -06:00
|
|
|
|
|
|
|
class FederationController extends Controller
|
|
|
|
{
|
|
|
|
public function nodeinfoWellKnown()
|
|
|
|
{
|
2019-06-09 17:15:35 -06:00
|
|
|
abort_if(!config('federation.nodeinfo.enabled'), 404);
|
2020-11-18 14:19:02 -07:00
|
|
|
return response()->json(Nodeinfo::wellKnown())
|
|
|
|
->header('Access-Control-Allow-Origin','*');
|
2018-05-28 17:50:14 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
public function nodeinfo()
|
|
|
|
{
|
2019-06-09 17:15:35 -06:00
|
|
|
abort_if(!config('federation.nodeinfo.enabled'), 404);
|
2019-12-20 23:15:15 -07:00
|
|
|
return response()->json(Nodeinfo::get())
|
|
|
|
->header('Access-Control-Allow-Origin','*');
|
2018-08-28 03:07:36 +00:00
|
|
|
}
|
2018-05-31 20:38:11 -06:00
|
|
|
|
|
|
|
public function webfinger(Request $request)
|
|
|
|
{
|
2020-05-15 16:10:42 -06:00
|
|
|
abort_if(!config('federation.webfinger.enabled'), 400);
|
2019-06-09 17:15:35 -06:00
|
|
|
|
2020-05-15 16:10:42 -06:00
|
|
|
abort_if(!$request->filled('resource'), 400);
|
2018-08-28 03:07:36 +00:00
|
|
|
|
2018-12-24 14:36:25 -07:00
|
|
|
$resource = $request->input('resource');
|
|
|
|
$parsed = Nickname::normalizeProfileUrl($resource);
|
2019-07-15 19:22:48 -06:00
|
|
|
if($parsed['domain'] !== config('pixelfed.domain.app')) {
|
2020-05-15 16:10:42 -06:00
|
|
|
abort(400);
|
2019-07-15 19:22:48 -06:00
|
|
|
}
|
2018-12-24 14:36:25 -07:00
|
|
|
$username = $parsed['username'];
|
2019-07-15 19:22:48 -06:00
|
|
|
$profile = Profile::whereNull('domain')->whereUsername($username)->firstOrFail();
|
2018-12-24 14:36:25 -07:00
|
|
|
if($profile->status != null) {
|
|
|
|
return ProfileController::accountCheck($profile);
|
|
|
|
}
|
|
|
|
$webfinger = (new Webfinger($profile))->generate();
|
2018-08-28 03:07:36 +00:00
|
|
|
|
2020-11-18 14:19:02 -07:00
|
|
|
return response()->json($webfinger, 200, [], JSON_PRETTY_PRINT)
|
|
|
|
->header('Access-Control-Allow-Origin','*');
|
2018-05-31 20:38:11 -06:00
|
|
|
}
|
|
|
|
|
2018-11-04 17:12:32 -07:00
|
|
|
public function hostMeta(Request $request)
|
|
|
|
{
|
2019-06-09 17:15:35 -06:00
|
|
|
abort_if(!config('federation.webfinger.enabled'), 404);
|
|
|
|
|
2018-11-04 17:12:32 -07:00
|
|
|
$path = route('well-known.webfinger');
|
2019-06-29 13:51:49 -06:00
|
|
|
$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>';
|
2018-11-04 17:12:32 -07:00
|
|
|
|
|
|
|
return response($xml)->header('Content-Type', 'application/xrd+xml');
|
|
|
|
}
|
|
|
|
|
2018-05-31 20:38:11 -06:00
|
|
|
public function userOutbox(Request $request, $username)
|
|
|
|
{
|
2019-06-09 17:15:35 -06:00
|
|
|
abort_if(!config('federation.activitypub.enabled'), 404);
|
|
|
|
abort_if(!config('federation.activitypub.outbox'), 404);
|
2018-08-28 03:07:36 +00:00
|
|
|
|
2020-04-11 22:12:28 -06:00
|
|
|
$profile = Profile::whereNull('domain')
|
|
|
|
->whereNull('status')
|
|
|
|
->whereIsPrivate(false)
|
|
|
|
->whereUsername($username)
|
|
|
|
->firstOrFail();
|
|
|
|
|
|
|
|
$key = 'ap:outbox:latest_10:pid:' . $profile->id;
|
|
|
|
$ttl = now()->addMinutes(15);
|
|
|
|
$res = Cache::remember($key, $ttl, function() use($profile) {
|
|
|
|
return Outbox::get($profile);
|
|
|
|
});
|
|
|
|
|
|
|
|
return response(json_encode($res, JSON_UNESCAPED_SLASHES))->header('Content-Type', 'application/activity+json');
|
2018-05-31 20:38:11 -06:00
|
|
|
}
|
|
|
|
|
2018-07-23 21:20:46 -06:00
|
|
|
public function userInbox(Request $request, $username)
|
|
|
|
{
|
2019-06-09 17:15:35 -06:00
|
|
|
abort_if(!config('federation.activitypub.enabled'), 404);
|
|
|
|
abort_if(!config('federation.activitypub.inbox'), 404);
|
2018-12-17 23:27:07 -07:00
|
|
|
|
2020-05-21 19:49:30 -06:00
|
|
|
$headers = $request->headers->all();
|
|
|
|
$payload = $request->getContent();
|
2020-05-22 17:03:33 -06:00
|
|
|
dispatch(new InboxValidator($username, $headers, $payload))->onQueue('high');
|
2018-12-29 21:50:37 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-04 17:12:32 -07:00
|
|
|
public function userFollowing(Request $request, $username)
|
|
|
|
{
|
2019-06-09 17:15:35 -06:00
|
|
|
abort_if(!config('federation.activitypub.enabled'), 404);
|
|
|
|
|
2018-12-15 01:16:22 -07:00
|
|
|
$profile = Profile::whereNull('remote_url')
|
|
|
|
->whereUsername($username)
|
|
|
|
->whereIsPrivate(false)
|
|
|
|
->firstOrFail();
|
2019-06-09 19:23:13 -06:00
|
|
|
|
2018-12-24 14:36:25 -07:00
|
|
|
if($profile->status != null) {
|
2019-07-15 19:22:48 -06:00
|
|
|
abort(404);
|
2018-12-24 14:36:25 -07:00
|
|
|
}
|
2019-07-15 19:22:48 -06:00
|
|
|
|
2018-11-04 17:12:32 -07:00
|
|
|
$obj = [
|
|
|
|
'@context' => 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'id' => $request->getUri(),
|
|
|
|
'type' => 'OrderedCollectionPage',
|
2019-07-15 19:22:48 -06:00
|
|
|
'totalItems' => 0,
|
|
|
|
'orderedItems' => []
|
2018-11-04 17:12:32 -07:00
|
|
|
];
|
|
|
|
return response()->json($obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function userFollowers(Request $request, $username)
|
|
|
|
{
|
2019-06-09 17:15:35 -06:00
|
|
|
abort_if(!config('federation.activitypub.enabled'), 404);
|
|
|
|
|
2018-12-15 01:16:22 -07:00
|
|
|
$profile = Profile::whereNull('remote_url')
|
|
|
|
->whereUsername($username)
|
|
|
|
->whereIsPrivate(false)
|
|
|
|
->firstOrFail();
|
2019-06-09 19:23:13 -06:00
|
|
|
|
2018-12-24 14:36:25 -07:00
|
|
|
if($profile->status != null) {
|
2019-07-15 19:22:48 -06:00
|
|
|
abort(404);
|
2018-12-24 14:36:25 -07:00
|
|
|
}
|
2019-07-15 19:22:48 -06:00
|
|
|
|
2018-11-04 17:12:32 -07:00
|
|
|
$obj = [
|
|
|
|
'@context' => 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'id' => $request->getUri(),
|
|
|
|
'type' => 'OrderedCollectionPage',
|
2019-07-15 19:22:48 -06:00
|
|
|
'totalItems' => 0,
|
|
|
|
'orderedItems' => []
|
2018-11-04 17:12:32 -07:00
|
|
|
];
|
2019-07-15 19:22:48 -06:00
|
|
|
|
2018-11-04 17:12:32 -07:00
|
|
|
return response()->json($obj);
|
2018-07-23 21:20:46 -06:00
|
|
|
}
|
2018-05-28 17:50:14 -06:00
|
|
|
}
|