pixelfed/app/Http/Controllers/FederationController.php

167 lines
5.0 KiB
PHP
Raw Normal View History

2018-05-28 23:50:14 +00:00
<?php
namespace App\Http\Controllers;
2018-08-28 03:07:36 +00:00
use App\Jobs\InboxPipeline\InboxWorker;
use App\Jobs\RemoteFollowPipeline\RemoteFollowPipeline;
2018-06-01 02:38:11 +00:00
use App\Profile;
2018-08-28 03:07:36 +00:00
use App\Transformer\ActivityPub\ProfileOutbox;
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;
2018-05-28 23:50:14 +00:00
class FederationController extends Controller
{
public function authCheck()
{
2018-08-28 03:07:36 +00:00
if (!Auth::check()) {
return abort(403);
}
2018-07-24 03:20:46 +00:00
}
public function authorizeFollow(Request $request)
{
2018-08-28 03:07:36 +00:00
$this->authCheck();
$this->validate($request, [
'acct' => 'required|string|min:3|max:255',
2018-07-24 03:20:46 +00:00
]);
2018-08-28 03:07:36 +00:00
$acct = $request->input('acct');
$nickname = Nickname::normalizeProfileUrl($acct);
return view('federation.authorizefollow', compact('acct', 'nickname'));
2018-05-28 23:50:14 +00:00
}
public function remoteFollow()
{
2018-08-28 03:07:36 +00:00
$this->authCheck();
return view('federation.remotefollow');
2018-05-28 23:50:14 +00:00
}
2018-06-01 02:38:11 +00:00
public function remoteFollowStore(Request $request)
{
2018-08-28 03:07:36 +00:00
$this->authCheck();
$this->validate($request, [
'url' => 'required|string',
2018-06-01 02:38:11 +00:00
]);
2018-08-28 03:07:36 +00:00
if (config('pixelfed.remote_follow_enabled') !== true) {
abort(403);
}
2018-06-01 02:38:11 +00:00
2018-08-28 03:07:36 +00:00
$follower = Auth::user()->profile;
$url = $request->input('url');
2018-06-01 02:38:11 +00:00
2018-08-28 03:07:36 +00:00
RemoteFollowPipeline::dispatch($follower, $url);
2018-06-01 02:38:11 +00:00
2018-08-28 03:07:36 +00:00
return redirect()->back();
2018-06-01 02:38:11 +00:00
}
2018-05-28 23:50:14 +00:00
public function nodeinfoWellKnown()
{
2018-08-28 03:07:36 +00:00
$res = [
2018-05-28 23:50:14 +00:00
'links' => [
[
'href' => config('pixelfed.nodeinfo.url'),
2018-08-28 03:07:36 +00:00
'rel' => 'http://nodeinfo.diaspora.software/ns/schema/2.0',
],
],
2018-05-28 23:50:14 +00:00
];
2018-08-28 03:07:36 +00:00
return response()->json($res);
2018-05-28 23:50:14 +00:00
}
public function nodeinfo()
{
2018-08-28 03:07:36 +00:00
$res = Cache::remember('api:nodeinfo', 60, function () {
return [
2018-07-24 03:20:46 +00:00
'metadata' => [
'nodeName' => config('app.name'),
'software' => [
'homepage' => 'https://pixelfed.org',
2018-08-28 03:07:36 +00:00
'github' => 'https://github.com/pixelfed',
'follow' => 'https://mastodon.social/@pixelfed',
2018-07-24 03:20:46 +00:00
],
],
'openRegistrations' => config('pixelfed.open_registration'),
2018-08-28 03:07:36 +00:00
'protocols' => [
'activitypub',
2018-07-24 03:20:46 +00:00
],
'services' => [
2018-08-28 03:07:36 +00:00
'inbound' => [],
'outbound' => [],
2018-07-24 03:20:46 +00:00
],
2018-05-28 23:50:14 +00:00
'software' => [
2018-08-28 03:07:36 +00:00
'name' => 'pixelfed',
'version' => config('pixelfed.version'),
2018-05-28 23:50:14 +00:00
],
2018-07-24 03:20:46 +00:00
'usage' => [
2018-08-28 03:07:36 +00:00
'localPosts' => \App\Status::whereLocal(true)->whereHas('media')->count(),
2018-07-24 03:20:46 +00:00
'localComments' => \App\Status::whereLocal(true)->whereNotNull('in_reply_to_id')->count(),
2018-08-28 03:07:36 +00:00
'users' => [
'total' => \App\User::count(),
2018-07-24 03:20:46 +00:00
'activeHalfyear' => \App\User::where('updated_at', '>', Carbon::now()->subMonths(6)->toDateTimeString())->count(),
2018-08-28 03:07:36 +00:00
'activeMonth' => \App\User::where('updated_at', '>', Carbon::now()->subMonths(1)->toDateTimeString())->count(),
],
2018-05-28 23:50:14 +00:00
],
2018-08-28 03:07:36 +00:00
'version' => '2.0',
2018-07-24 03:20:46 +00:00
];
2018-08-28 03:07:36 +00:00
});
2018-06-01 02:38:11 +00:00
2018-08-28 03:07:36 +00:00
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
}
2018-06-01 02:38:11 +00:00
public function webfinger(Request $request)
{
2018-08-28 03:07:36 +00:00
$this->validate($request, ['resource'=>'required|string|min:3|max:255']);
$hash = hash('sha256', $request->input('resource'));
$webfinger = Cache::remember('api:webfinger:'.$hash, 1440, function () use ($request) {
$resource = $request->input('resource');
$parsed = Nickname::normalizeProfileUrl($resource);
$username = $parsed['username'];
$user = Profile::whereUsername($username)->firstOrFail();
return (new Webfinger($user))->generate();
});
return response()->json($webfinger, 200, [], JSON_PRETTY_PRINT);
2018-06-01 02:38:11 +00:00
}
public function userOutbox(Request $request, $username)
{
2018-08-28 03:07:36 +00:00
if (config('pixelfed.activitypub_enabled') == false) {
abort(403);
}
$user = Profile::whereNull('remote_url')->whereUsername($username)->firstOrFail();
$timeline = $user->statuses()->orderBy('created_at', 'desc')->paginate(10);
$fractal = new Fractal\Manager();
$resource = new Fractal\Resource\Item($user, new ProfileOutbox());
$res = $fractal->createData($resource)->toArray();
return response(json_encode($res['data']))->header('Content-Type', 'application/activity+json');
2018-06-01 02:38:11 +00:00
}
2018-07-24 03:20:46 +00:00
public function userInbox(Request $request, $username)
{
2018-08-28 03:07:36 +00:00
if (config('pixelfed.activitypub_enabled') == false) {
abort(403);
}
$mimes = [
'application/activity+json',
'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
2018-07-24 03:20:46 +00:00
];
2018-08-28 03:07:36 +00:00
if (!in_array($request->header('Content-Type'), $mimes)) {
abort(500, 'Invalid request');
}
$profile = Profile::whereUsername($username)->firstOrFail();
InboxWorker::dispatch($request, $profile, $request->all());
2018-07-24 03:20:46 +00:00
}
2018-05-28 23:50:14 +00:00
}