123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- <?php
- namespace App\Http\Controllers;
- use App\Jobs\InboxPipeline\{
- InboxWorker,
- InboxValidator
- };
- use App\Jobs\RemoteFollowPipeline\RemoteFollowPipeline;
- use App\{
- AccountLog,
- Like,
- Profile,
- Status
- };
- use App\Transformer\ActivityPub\ProfileOutbox;
- use App\Util\Lexer\Nickname;
- use App\Util\Webfinger\Webfinger;
- use Auth;
- use Cache;
- use Carbon\Carbon;
- use Illuminate\Http\Request;
- use League\Fractal;
- use App\Util\ActivityPub\{
- Helpers,
- HttpSignature
- };
- use \Zttp\Zttp;
- class FederationController extends Controller
- {
- public function authCheck()
- {
- abort_if(!Auth::check(), 403);
- }
- public function authorizeFollow(Request $request)
- {
- $this->authCheck();
- $this->validate($request, [
- 'acct' => 'required|string|min:3|max:255',
- ]);
- $acct = $request->input('acct');
- $nickname = Nickname::normalizeProfileUrl($acct);
- return view('federation.authorizefollow', compact('acct', 'nickname'));
- }
- public function remoteFollow()
- {
- $this->authCheck();
- return view('federation.remotefollow');
- }
- public function remoteFollowStore(Request $request)
- {
- return;
- $this->authCheck();
- $this->validate($request, [
- 'url' => 'required|string',
- ]);
- abort_if(!config('federation.activitypub.remoteFollow'), 403);
- $follower = Auth::user()->profile;
- $url = $request->input('url');
- $url = Helpers::validateUrl($url);
- if(!$url) {
- return;
- }
- RemoteFollowPipeline::dispatch($follower, $url);
- return response(['success' => true, 'follower' => $follower]);
- }
- public function nodeinfoWellKnown()
- {
- abort_if(!config('federation.nodeinfo.enabled'), 404);
- $res = [
- 'links' => [
- [
- 'href' => config('pixelfed.nodeinfo.url'),
- 'rel' => 'http://nodeinfo.diaspora.software/ns/schema/2.0',
- ],
- ],
- ];
- return response()->json($res);
- }
- public function nodeinfo()
- {
- abort_if(!config('federation.nodeinfo.enabled'), 404);
- $res = Cache::remember('api:nodeinfo', now()->addMinutes(15), function () {
- $activeHalfYear = Cache::remember('api:nodeinfo:ahy', now()->addHours(12), function() {
- $count = collect([]);
- // $likes = Like::select('profile_id')->where('created_at', '>', now()->subMonths(6)->toDateTimeString())->groupBy('profile_id')->pluck('profile_id')->toArray();
- // $count = $count->merge($likes);
- $statuses = Status::select('profile_id')->whereLocal(true)->where('created_at', '>', now()->subMonths(6)->toDateTimeString())->groupBy('profile_id')->pluck('profile_id')->toArray();
- $count = $count->merge($statuses);
- $profiles = Profile::select('id')->whereNull('domain')->where('created_at', '>', now()->subMonths(6)->toDateTimeString())->groupBy('id')->pluck('id')->toArray();
- $count = $count->merge($profiles);
- return $count->unique()->count();
- });
- $activeMonth = Cache::remember('api:nodeinfo:am', now()->addHours(12), function() {
- $count = collect([]);
- // $likes = Like::select('profile_id')->where('created_at', '>', now()->subMonths(1)->toDateTimeString())->groupBy('profile_id')->pluck('profile_id')->toArray();
- // $count = $count->merge($likes);
- $statuses = Status::select('profile_id')->whereLocal(true)->where('created_at', '>', now()->subMonths(1)->toDateTimeString())->groupBy('profile_id')->pluck('profile_id')->toArray();
- $count = $count->merge($statuses);
- $profiles = Profile::select('id')->whereNull('domain')->where('created_at', '>', now()->subMonths(1)->toDateTimeString())->groupBy('id')->pluck('id')->toArray();
- $count = $count->merge($profiles);
- return $count->unique()->count();
- });
- return [
- 'metadata' => [
- 'nodeName' => config('app.name'),
- 'software' => [
- 'homepage' => 'https://pixelfed.org',
- 'repo' => 'https://github.com/pixelfed/pixelfed',
- ],
- ],
- 'protocols' => [
- 'activitypub',
- ],
- 'services' => [
- 'inbound' => [],
- 'outbound' => [],
- ],
- 'software' => [
- 'name' => 'pixelfed',
- 'version' => config('pixelfed.version'),
- ],
- 'usage' => [
- 'localPosts' => \App\Status::whereLocal(true)->whereHas('media')->count(),
- 'localComments' => \App\Status::whereLocal(true)->whereNotNull('in_reply_to_id')->count(),
- 'users' => [
- 'total' => \App\Profile::whereNull('status')->whereNull('domain')->count(),
- 'activeHalfyear' => $activeHalfYear,
- 'activeMonth' => $activeMonth,
- ],
- ],
- 'version' => '2.0',
- ];
- });
- $res['openRegistrations'] = config('pixelfed.open_registration');
- return response()->json($res, 200, [
- 'Access-Control-Allow-Origin' => '*'
- ]);
- }
- public function webfinger(Request $request)
- {
- abort_if(!config('federation.webfinger.enabled'), 404);
- $this->validate($request, ['resource'=>'required|string|min:3|max:255']);
- $resource = $request->input('resource');
- $hash = hash('sha256', $resource);
- $parsed = Nickname::normalizeProfileUrl($resource);
- $username = $parsed['username'];
- $profile = Profile::whereUsername($username)->firstOrFail();
- if($profile->status != null) {
- return ProfileController::accountCheck($profile);
- }
- $webfinger = (new Webfinger($profile))->generate();
- return response()->json($webfinger, 200, [], JSON_PRETTY_PRINT);
- }
- 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('federation.activitypub.enabled'), 404);
- abort_if(!config('federation.activitypub.outbox'), 404);
- $profile = Profile::whereNull('remote_url')->whereUsername($username)->firstOrFail();
- if($profile->status != null) {
- return ProfileController::accountCheck($profile);
- }
- if($profile->is_private) {
- return response()->json(['error'=>'403', 'msg' => 'private profile'], 403);
- }
- $timeline = $profile->statuses()->whereVisibility('public')->orderBy('created_at', 'desc')->paginate(10);
- $fractal = new Fractal\Manager();
- $resource = new Fractal\Resource\Item($profile, new ProfileOutbox());
- $res = $fractal->createData($resource)->toArray();
- return response(json_encode($res['data']))->header('Content-Type', 'application/activity+json');
- }
- public function userInbox(Request $request, $username)
- {
- abort_if(!config('federation.activitypub.enabled'), 404);
- abort_if(!config('federation.activitypub.inbox'), 404);
- $headers = $request->headers->all();
- $payload = $request->getContent();
- InboxValidator::dispatch($username, $headers, $payload);
- return;
- }
- // Deprecated
- protected function verifySignature(Request $request, Profile $profile)
- {
- return false;
- }
- // Deprecated
- protected function blindKeyRotation(Request $request, Profile $profile)
- {
- return false;
- }
- public function userFollowing(Request $request, $username)
- {
- abort_if(!config('federation.activitypub.enabled'), 404);
- $profile = Profile::whereNull('remote_url')
- ->whereUsername($username)
- ->whereIsPrivate(false)
- ->firstOrFail();
-
- return [];
- if($profile->status != null) {
- return [];
- }
- $obj = [
- '@context' => 'https://www.w3.org/ns/activitystreams',
- 'id' => $request->getUri(),
- 'type' => 'OrderedCollectionPage',
- 'totalItems' => $profile->following()->count(),
- 'orderedItems' => $profile->following->map(function($f) {
- return $f->permalink();
- })
- ];
- return response()->json($obj);
- }
- public function userFollowers(Request $request, $username)
- {
- abort_if(!config('federation.activitypub.enabled'), 404);
- $profile = Profile::whereNull('remote_url')
- ->whereUsername($username)
- ->whereIsPrivate(false)
- ->firstOrFail();
- return [];
- if($profile->status != null) {
- return [];
- }
- $obj = [
- '@context' => 'https://www.w3.org/ns/activitystreams',
- 'id' => $request->getUri(),
- 'type' => 'OrderedCollectionPage',
- 'totalItems' => $profile->followers()->count(),
- 'orderedItems' => $profile->followers->map(function($f) {
- return $f->permalink();
- })
- ];
- return response()->json($obj);
- }
- }
|