12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370 |
- <?php
- namespace App\Http\Controllers\Api;
- use App\AccountLog;
- use App\EmailVerification;
- use App\Http\Controllers\Controller;
- use App\Http\Controllers\StatusController;
- use App\Http\Resources\StatusStateless;
- use App\Jobs\ImageOptimizePipeline\ImageOptimize;
- use App\Jobs\ReportPipeline\ReportNotifyAdminViaEmail;
- use App\Jobs\StatusPipeline\NewStatusPipeline;
- use App\Jobs\StatusPipeline\RemoteStatusDelete;
- use App\Jobs\StatusPipeline\StatusDelete;
- use App\Jobs\VideoPipeline\VideoThumbnail;
- use App\Mail\ConfirmAppEmail;
- use App\Mail\PasswordChange;
- use App\Media;
- use App\Place;
- use App\Profile;
- use App\Report;
- use App\Rules\ExpoPushTokenRule;
- use App\Services\AccountService;
- use App\Services\BouncerService;
- use App\Services\EmailService;
- use App\Services\FollowerService;
- use App\Services\MediaBlocklistService;
- use App\Services\MediaPathService;
- use App\Services\NetworkTimelineService;
- use App\Services\NotificationAppGatewayService;
- use App\Services\ProfileStatusService;
- use App\Services\PublicTimelineService;
- use App\Services\PushNotificationService;
- use App\Services\StatusService;
- use App\Services\UserStorageService;
- use App\Status;
- use App\StatusArchived;
- use App\User;
- use App\UserSetting;
- use App\Util\Lexer\RestrictedNames;
- use Cache;
- use DB;
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\Hash;
- use Illuminate\Support\Facades\RateLimiter;
- use Illuminate\Support\Str;
- use Jenssegers\Agent\Agent;
- use League\Fractal;
- use League\Fractal\Serializer\ArraySerializer;
- use Mail;
- use Purify;
- class ApiV1Dot1Controller extends Controller
- {
- protected $fractal;
- public function __construct()
- {
- $this->fractal = new Fractal\Manager;
- $this->fractal->setSerializer(new ArraySerializer);
- }
- public function json($res, $code = 200, $headers = [])
- {
- return response()->json($res, $code, $headers, JSON_UNESCAPED_SLASHES);
- }
- public function error($msg, $code = 400, $extra = [], $headers = [])
- {
- $res = [
- 'msg' => $msg,
- 'code' => $code,
- ];
- return response()->json(array_merge($res, $extra), $code, $headers, JSON_UNESCAPED_SLASHES);
- }
- public function report(Request $request)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('write'), 403);
- $user = $request->user();
- abort_if($user->status != null, 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $report_type = $request->input('report_type');
- $object_id = $request->input('object_id');
- $object_type = $request->input('object_type');
- $types = [
- 'spam',
- 'sensitive',
- 'abusive',
- 'underage',
- 'violence',
- 'copyright',
- 'impersonation',
- 'scam',
- 'terrorism',
- ];
- if (! $report_type || ! $object_id || ! $object_type) {
- return $this->error('Invalid or missing parameters', 400, ['error_code' => 'ERROR_INVALID_PARAMS']);
- }
- if (! in_array($report_type, $types)) {
- return $this->error('Invalid report type', 400, ['error_code' => 'ERROR_TYPE_INVALID']);
- }
- if ($object_type === 'user' && $object_id == $user->profile_id) {
- return $this->error('Cannot self report', 400, ['error_code' => 'ERROR_NO_SELF_REPORTS']);
- }
- $rpid = null;
- switch ($object_type) {
- case 'post':
- $object = Status::find($object_id);
- if (! $object) {
- return $this->error('Invalid object id', 400, ['error_code' => 'ERROR_INVALID_OBJECT_ID']);
- }
- $object_type = 'App\Status';
- $exists = Report::whereUserId($user->id)
- ->whereObjectId($object->id)
- ->whereObjectType('App\Status')
- ->count();
- $rpid = $object->profile_id;
- break;
- case 'user':
- $object = Profile::find($object_id);
- if (! $object) {
- return $this->error('Invalid object id', 400, ['error_code' => 'ERROR_INVALID_OBJECT_ID']);
- }
- $object_type = 'App\Profile';
- $exists = Report::whereUserId($user->id)
- ->whereObjectId($object->id)
- ->whereObjectType('App\Profile')
- ->count();
- $rpid = $object->id;
- break;
- default:
- return $this->error('Invalid report type', 400, ['error_code' => 'ERROR_REPORT_OBJECT_TYPE_INVALID']);
- break;
- }
- if ($exists !== 0) {
- return $this->error('Duplicate report', 400, ['error_code' => 'ERROR_REPORT_DUPLICATE']);
- }
- if ($object->profile_id == $user->profile_id) {
- return $this->error('Cannot self report', 400, ['error_code' => 'ERROR_NO_SELF_REPORTS']);
- }
- $report = new Report;
- $report->profile_id = $user->profile_id;
- $report->user_id = $user->id;
- $report->object_id = $object->id;
- $report->object_type = $object_type;
- $report->reported_profile_id = $rpid;
- $report->type = $report_type;
- $report->save();
- if (config('instance.reports.email.enabled')) {
- ReportNotifyAdminViaEmail::dispatch($report)->onQueue('default');
- }
- $res = [
- 'msg' => 'Successfully sent report',
- 'code' => 200,
- ];
- return $this->json($res);
- }
- /**
- * DELETE /api/v1.1/accounts/avatar
- *
- * @return \App\Transformer\Api\AccountTransformer
- */
- public function deleteAvatar(Request $request)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('write'), 403);
- $user = $request->user();
- abort_if($user->status != null, 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $avatar = $user->profile->avatar;
- if ($avatar->media_path == 'public/avatars/default.png' ||
- $avatar->media_path == 'public/avatars/default.jpg'
- ) {
- return AccountService::get($user->profile_id);
- }
- if (is_file(storage_path('app/'.$avatar->media_path))) {
- @unlink(storage_path('app/'.$avatar->media_path));
- }
- $avatar->media_path = 'public/avatars/default.jpg';
- $avatar->change_count = $avatar->change_count + 1;
- $avatar->save();
- Cache::forget('avatar:'.$user->profile_id);
- Cache::forget("avatar:{$user->profile_id}");
- Cache::forget('user:account:id:'.$user->id);
- AccountService::del($user->profile_id);
- return AccountService::get($user->profile_id);
- }
- /**
- * GET /api/v1.1/accounts/{id}/posts
- *
- * @return \App\Transformer\Api\StatusTransformer
- */
- public function accountPosts(Request $request, $id)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('read'), 403);
- $user = $request->user();
- abort_if($user->status != null, 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $account = AccountService::get($id);
- if (! $account || $account['username'] !== $request->input('username')) {
- return $this->json([]);
- }
- $posts = ProfileStatusService::get($id);
- if (! $posts) {
- return $this->json([]);
- }
- $res = collect($posts)
- ->map(function ($id) {
- return StatusService::get($id);
- })
- ->filter(function ($post) {
- return $post && isset($post['account']);
- })
- ->toArray();
- return $this->json($res);
- }
- /**
- * POST /api/v1.1/accounts/change-password
- *
- * @return \App\Transformer\Api\AccountTransformer
- */
- public function accountChangePassword(Request $request)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('write'), 403);
- $user = $request->user();
- abort_if($user->status != null, 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $this->validate($request, [
- 'current_password' => 'bail|required|current_password',
- 'new_password' => 'required|min:'.config('pixelfed.min_password_length', 8),
- 'confirm_password' => 'required|same:new_password',
- ], [
- 'current_password' => 'The password you entered is incorrect',
- ]);
- $user->password = bcrypt($request->input('new_password'));
- $user->save();
- $log = new AccountLog;
- $log->user_id = $user->id;
- $log->item_id = $user->id;
- $log->item_type = 'App\User';
- $log->action = 'account.edit.password';
- $log->message = 'Password changed';
- $log->link = null;
- $log->ip_address = $request->ip();
- $log->user_agent = $request->userAgent();
- $log->save();
- Mail::to($request->user())->send(new PasswordChange($user));
- return $this->json(AccountService::get($user->profile_id));
- }
- /**
- * GET /api/v1.1/accounts/login-activity
- *
- * @return array
- */
- public function accountLoginActivity(Request $request)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('read'), 403);
- $user = $request->user();
- abort_if($user->status != null, 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $agent = new Agent;
- $currentIp = $request->ip();
- $activity = AccountLog::whereUserId($user->id)
- ->whereAction('auth.login')
- ->orderBy('created_at', 'desc')
- ->groupBy('ip_address')
- ->limit(10)
- ->get()
- ->map(function ($item) use ($agent, $currentIp) {
- $agent->setUserAgent($item->user_agent);
- return [
- 'id' => $item->id,
- 'action' => $item->action,
- 'ip' => $item->ip_address,
- 'ip_current' => $item->ip_address === $currentIp,
- 'is_mobile' => $agent->isMobile(),
- 'device' => $agent->device(),
- 'browser' => $agent->browser(),
- 'platform' => $agent->platform(),
- 'created_at' => $item->created_at->format('c'),
- ];
- });
- return $this->json($activity);
- }
- /**
- * GET /api/v1.1/accounts/two-factor
- *
- * @return array
- */
- public function accountTwoFactor(Request $request)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('read'), 403);
- $user = $request->user();
- abort_if($user->status != null, 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $res = [
- 'active' => (bool) $user->{'2fa_enabled'},
- 'setup_at' => $user->{'2fa_setup_at'},
- ];
- return $this->json($res);
- }
- /**
- * GET /api/v1.1/accounts/emails-from-pixelfed
- *
- * @return array
- */
- public function accountEmailsFromPixelfed(Request $request)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('read'), 403);
- $user = $request->user();
- abort_if($user->status != null, 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $from = config('mail.from.address');
- $emailVerifications = EmailVerification::whereUserId($user->id)
- ->orderByDesc('id')
- ->where('created_at', '>', now()->subDays(14))
- ->limit(10)
- ->get()
- ->map(function ($mail) use ($user, $from) {
- return [
- 'type' => 'Email Verification',
- 'subject' => 'Confirm Email',
- 'to_address' => $user->email,
- 'from_address' => $from,
- 'created_at' => str_replace('@', 'at', $mail->created_at->format('M j, Y @ g:i:s A')),
- ];
- })
- ->toArray();
- $passwordResets = DB::table('password_resets')
- ->whereEmail($user->email)
- ->where('created_at', '>', now()->subDays(14))
- ->orderByDesc('created_at')
- ->limit(10)
- ->get()
- ->map(function ($mail) use ($user, $from) {
- return [
- 'type' => 'Password Reset',
- 'subject' => 'Reset Password Notification',
- 'to_address' => $user->email,
- 'from_address' => $from,
- 'created_at' => str_replace('@', 'at', now()->parse($mail->created_at)->format('M j, Y @ g:i:s A')),
- ];
- })
- ->toArray();
- $passwordChanges = AccountLog::whereUserId($user->id)
- ->whereAction('account.edit.password')
- ->where('created_at', '>', now()->subDays(14))
- ->orderByDesc('created_at')
- ->limit(10)
- ->get()
- ->map(function ($mail) use ($user, $from) {
- return [
- 'type' => 'Password Change',
- 'subject' => 'Password Change',
- 'to_address' => $user->email,
- 'from_address' => $from,
- 'created_at' => str_replace('@', 'at', now()->parse($mail->created_at)->format('M j, Y @ g:i:s A')),
- ];
- })
- ->toArray();
- $res = collect([])
- ->merge($emailVerifications)
- ->merge($passwordResets)
- ->merge($passwordChanges)
- ->sortByDesc('created_at')
- ->values();
- return $this->json($res);
- }
- /**
- * GET /api/v1.1/accounts/apps-and-applications
- *
- * @return array
- */
- public function accountApps(Request $request)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('read'), 403);
- $user = $request->user();
- abort_if($user->status != null, 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $res = $user->tokens->sortByDesc('created_at')->take(10)->map(function ($token, $key) use ($request) {
- return [
- 'id' => $token->id,
- 'current_session' => $request->user()->token()->id == $token->id,
- 'name' => $token->client->name,
- 'scopes' => $token->scopes,
- 'revoked' => $token->revoked,
- 'created_at' => str_replace('@', 'at', now()->parse($token->created_at)->format('M j, Y @ g:i:s A')),
- 'expires_at' => str_replace('@', 'at', now()->parse($token->expires_at)->format('M j, Y @ g:i:s A')),
- ];
- });
- return $this->json($res);
- }
- public function inAppRegistrationPreFlightCheck(Request $request)
- {
- return [
- 'open' => (bool) config_cache('pixelfed.open_registration'),
- 'iara' => (bool) config_cache('pixelfed.allow_app_registration'),
- ];
- }
- public function inAppRegistration(Request $request)
- {
- abort_if($request->user(), 404);
- abort_unless((bool) config_cache('pixelfed.open_registration'), 404);
- abort_unless((bool) config_cache('pixelfed.allow_app_registration'), 404);
- abort_unless($request->hasHeader('X-PIXELFED-APP'), 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $rl = RateLimiter::attempt('pf:apiv1.1:iar:'.$request->ip(), config('pixelfed.app_registration_rate_limit_attempts', 3), function () {}, config('pixelfed.app_registration_rate_limit_decay', 1800));
- abort_if(! $rl, 400, 'Too many requests');
- $this->validate($request, [
- 'email' => [
- 'required',
- 'string',
- 'email',
- 'max:255',
- 'unique:users',
- function ($attribute, $value, $fail) {
- $banned = EmailService::isBanned($value);
- if ($banned) {
- return $fail('Email is invalid.');
- }
- },
- ],
- 'username' => [
- 'required',
- 'min:2',
- 'max:15',
- 'unique:users',
- function ($attribute, $value, $fail) {
- $dash = substr_count($value, '-');
- $underscore = substr_count($value, '_');
- $period = substr_count($value, '.');
- if (ends_with($value, ['.php', '.js', '.css'])) {
- return $fail('Username is invalid.');
- }
- if (($dash + $underscore + $period) > 1) {
- return $fail('Username is invalid. Can only contain one dash (-), period (.) or underscore (_).');
- }
- if (! ctype_alnum($value[0])) {
- return $fail('Username is invalid. Must start with a letter or number.');
- }
- if (! ctype_alnum($value[strlen($value) - 1])) {
- return $fail('Username is invalid. Must end with a letter or number.');
- }
- $val = str_replace(['_', '.', '-'], '', $value);
- if (! ctype_alnum($val)) {
- return $fail('Username is invalid. Username must be alpha-numeric and may contain dashes (-), periods (.) and underscores (_).');
- }
- $restricted = RestrictedNames::get();
- if (in_array(strtolower($value), array_map('strtolower', $restricted))) {
- return $fail('Username cannot be used.');
- }
- },
- ],
- 'password' => 'required|string|min:8',
- ]);
- $email = $request->input('email');
- $username = $request->input('username');
- $password = $request->input('password');
- if (config('database.default') == 'pgsql') {
- $username = strtolower($username);
- $email = strtolower($email);
- }
- $user = new User;
- $user->name = $username;
- $user->username = $username;
- $user->email = $email;
- $user->password = Hash::make($password);
- $user->register_source = 'app';
- $user->app_register_ip = $request->ip();
- $user->app_register_token = Str::random(40);
- $user->save();
- $rtoken = Str::random(64);
- $verify = new EmailVerification;
- $verify->user_id = $user->id;
- $verify->email = $user->email;
- $verify->user_token = $user->app_register_token;
- $verify->random_token = $rtoken;
- $verify->save();
- $params = http_build_query([
- 'ut' => $user->app_register_token,
- 'rt' => $rtoken,
- 'ea' => base64_encode($user->email),
- ]);
- $appUrl = url('/api/v1.1/auth/iarer?'.$params);
- Mail::to($user->email)->send(new ConfirmAppEmail($verify, $appUrl));
- return response()->json([
- 'success' => true,
- ]);
- }
- public function inAppRegistrationEmailRedirect(Request $request)
- {
- $this->validate($request, [
- 'ut' => 'required',
- 'rt' => 'required',
- 'ea' => 'required',
- ]);
- $ut = $request->input('ut');
- $rt = $request->input('rt');
- $ea = $request->input('ea');
- $params = http_build_query([
- 'ut' => $ut,
- 'rt' => $rt,
- 'domain' => config('pixelfed.domain.app'),
- 'ea' => $ea,
- ]);
- $url = 'pixelfed://confirm-account/'.$ut.'?'.$params;
- return redirect()->away($url);
- }
- public function inAppRegistrationConfirm(Request $request)
- {
- abort_if($request->user(), 404);
- abort_unless((bool) config_cache('pixelfed.open_registration'), 404);
- abort_unless((bool) config_cache('pixelfed.allow_app_registration'), 404);
- abort_unless($request->hasHeader('X-PIXELFED-APP'), 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $request->validate([
- 'user_token' => 'required',
- 'random_token' => 'required',
- 'email' => 'required',
- ]);
- $verify = EmailVerification::whereEmail($request->input('email'))
- ->whereUserToken($request->input('user_token'))
- ->whereRandomToken($request->input('random_token'))
- ->first();
- if (! $verify) {
- return response()->json(['error' => 'Invalid tokens'], 403);
- }
- if ($verify->created_at->lt(now()->subHours(24))) {
- $verify->delete();
- return response()->json(['error' => 'Invalid tokens'], 403);
- }
- $user = User::findOrFail($verify->user_id);
- $user->email_verified_at = now();
- $user->last_active_at = now();
- $user->save();
- $token = $user->createToken('Pixelfed', ['read', 'write', 'follow', 'push']);
- return response()->json([
- 'access_token' => $token->accessToken,
- ]);
- }
- public function archive(Request $request, $id)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('write'), 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $status = Status::whereNull('in_reply_to_id')
- ->whereNull('reblog_of_id')
- ->whereProfileId($request->user()->profile_id)
- ->findOrFail($id);
- if ($status->scope === 'archived') {
- return [200];
- }
- $archive = new StatusArchived;
- $archive->status_id = $status->id;
- $archive->profile_id = $status->profile_id;
- $archive->original_scope = $status->scope;
- $archive->save();
- $status->scope = 'archived';
- $status->visibility = 'draft';
- $status->save();
- StatusService::del($status->id, true);
- AccountService::syncPostCount($status->profile_id);
- return [200];
- }
- public function unarchive(Request $request, $id)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('write'), 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $status = Status::whereNull('in_reply_to_id')
- ->whereNull('reblog_of_id')
- ->whereProfileId($request->user()->profile_id)
- ->findOrFail($id);
- if ($status->scope !== 'archived') {
- return [200];
- }
- $archive = StatusArchived::whereStatusId($status->id)
- ->whereProfileId($status->profile_id)
- ->firstOrFail();
- $status->scope = $archive->original_scope;
- $status->visibility = $archive->original_scope;
- $status->save();
- $archive->delete();
- StatusService::del($status->id, true);
- AccountService::syncPostCount($status->profile_id);
- return [200];
- }
- public function archivedPosts(Request $request)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('read'), 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $statuses = Status::whereProfileId($request->user()->profile_id)
- ->whereScope('archived')
- ->orderByDesc('id')
- ->cursorPaginate(10);
- return StatusStateless::collection($statuses);
- }
- public function placesById(Request $request, $id, $slug)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('read'), 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $place = Place::whereSlug($slug)->findOrFail($id);
- $posts = Cache::remember('pf-api:v1.1:places-by-id:'.$place->id, 3600, function () use ($place) {
- return Status::wherePlaceId($place->id)
- ->whereNull('uri')
- ->whereScope('public')
- ->orderByDesc('created_at')
- ->limit(60)
- ->pluck('id');
- });
- $posts = $posts->map(function ($id) {
- return StatusService::get($id);
- })
- ->filter()
- ->values();
- return [
- 'place' => [
- 'id' => $place->id,
- 'name' => $place->name,
- 'slug' => $place->slug,
- 'country' => $place->country,
- 'lat' => $place->lat,
- 'long' => $place->long,
- ],
- 'posts' => $posts];
- }
- public function moderatePost(Request $request, $id)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_if($request->user()->is_admin != true, 403);
- abort_unless($request->user()->tokenCan('admin:write'), 403);
- if (config('pixelfed.bouncer.cloud_ips.ban_signups')) {
- abort_if(BouncerService::checkIp($request->ip()), 404);
- }
- $this->validate($request, [
- 'action' => 'required|in:cw,mark-public,mark-unlisted,mark-private,mark-spammer,delete',
- ]);
- $action = $request->input('action');
- $status = Status::find($id);
- if (! $status) {
- return response()->json(['error' => 'Cannot find status'], 400);
- }
- if ($status->uri == null) {
- if ($status->profile->user && $status->profile->user->is_admin) {
- return response()->json(['error' => 'Cannot moderate admin accounts'], 400);
- }
- }
- if ($action == 'mark-spammer') {
- $status->profile->update([
- 'unlisted' => true,
- 'cw' => true,
- 'no_autolink' => true,
- ]);
- Status::whereProfileId($status->profile_id)
- ->get()
- ->each(function ($s) {
- if (in_array($s->scope, ['public', 'unlisted'])) {
- $s->scope = 'private';
- $s->visibility = 'private';
- }
- $s->is_nsfw = true;
- $s->save();
- StatusService::del($s->id, true);
- });
- Cache::forget('pf:bouncer_v0:exemption_by_pid:'.$status->profile_id);
- Cache::forget('pf:bouncer_v0:recent_by_pid:'.$status->profile_id);
- Cache::forget('admin-dash:reports:spam-count');
- } elseif ($action == 'cw') {
- $state = $status->is_nsfw;
- $status->is_nsfw = ! $state;
- $status->save();
- StatusService::del($status->id);
- } elseif ($action == 'mark-public') {
- $state = $status->scope;
- $status->scope = 'public';
- $status->visibility = 'public';
- $status->save();
- StatusService::del($status->id, true);
- if ($state !== 'public') {
- if ($status->uri) {
- if ($status->in_reply_to_id == null && $status->reblog_of_id == null) {
- NetworkTimelineService::add($status->id);
- }
- } else {
- if ($status->in_reply_to_id == null && $status->reblog_of_id == null) {
- PublicTimelineService::add($status->id);
- }
- }
- }
- } elseif ($action == 'mark-unlisted') {
- $state = $status->scope;
- $status->scope = 'unlisted';
- $status->visibility = 'unlisted';
- $status->save();
- StatusService::del($status->id);
- if ($state == 'public') {
- PublicTimelineService::del($status->id);
- NetworkTimelineService::del($status->id);
- }
- } elseif ($action == 'mark-private') {
- $state = $status->scope;
- $status->scope = 'private';
- $status->visibility = 'private';
- $status->save();
- StatusService::del($status->id);
- if ($state == 'public') {
- PublicTimelineService::del($status->id);
- NetworkTimelineService::del($status->id);
- }
- } elseif ($action == 'delete') {
- PublicTimelineService::del($status->id);
- NetworkTimelineService::del($status->id);
- Cache::forget('_api:statuses:recent_9:'.$status->profile_id);
- Cache::forget('profile:status_count:'.$status->profile_id);
- Cache::forget('profile:embed:'.$status->profile_id);
- StatusService::del($status->id, true);
- Cache::forget('profile:status_count:'.$status->profile_id);
- $status->uri ? RemoteStatusDelete::dispatch($status) : StatusDelete::dispatch($status);
- return [];
- }
- Cache::forget('_api:statuses:recent_9:'.$status->profile_id);
- return StatusService::get($status->id, false);
- }
- public function getWebSettings(Request $request)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('read'), 403);
- $uid = $request->user()->id;
- $settings = UserSetting::firstOrCreate([
- 'user_id' => $uid,
- ]);
- if (! $settings->other) {
- return [];
- }
- return $settings->other;
- }
- public function setWebSettings(Request $request)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('write'), 403);
- $this->validate($request, [
- 'field' => 'required|in:enable_reblogs,hide_reblog_banner',
- 'value' => 'required',
- ]);
- $field = $request->input('field');
- $value = $request->input('value');
- $settings = UserSetting::firstOrCreate([
- 'user_id' => $request->user()->id,
- ]);
- if (! $settings->other) {
- $other = [];
- } else {
- $other = $settings->other;
- }
- $other[$field] = $value;
- $settings->other = $other;
- $settings->save();
- return [200];
- }
- public function getMutualAccounts(Request $request, $id)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('follow'), 403);
- $account = AccountService::get($id, true);
- if (! $account || ! isset($account['id'])) {
- return [];
- }
- $res = collect(FollowerService::mutualAccounts($request->user()->profile_id, $id))
- ->map(function ($accountId) {
- return AccountService::get($accountId, true);
- })
- ->filter()
- ->take(24)
- ->values();
- return $this->json($res);
- }
- public function accountUsernameToId(Request $request, $username)
- {
- abort_if(! $request->user() || ! $request->user()->token() || ! $username, 403);
- abort_unless($request->user()->tokenCan('read'), 403);
- $username = trim($username);
- $rateLimiting = (bool) config_cache('api.rate-limits.v1Dot1.accounts.usernameToId.enabled');
- $ipRateLimiting = (bool) config_cache('api.rate-limits.v1Dot1.accounts.usernameToId.ip_enabled');
- if ($ipRateLimiting) {
- $userLimit = (int) config_cache('api.rate-limits.v1Dot1.accounts.usernameToId.ip_limit');
- $userDecay = (int) config_cache('api.rate-limits.v1Dot1.accounts.usernameToId.ip_decay');
- $userKey = 'pf:apiv1.1:acctU2ID:byIp:'.$request->ip();
- if (RateLimiter::tooManyAttempts($userKey, $userLimit)) {
- $limits = [
- 'X-Rate-Limit-Limit' => $userLimit,
- 'X-Rate-Limit-Remaining' => RateLimiter::remaining($userKey, $userLimit),
- 'X-Rate-Limit-Reset' => RateLimiter::availableIn($userKey),
- ];
- return $this->json(['error' => 'Too many attempts!'], 429, $limits);
- }
- RateLimiter::increment($userKey, $userDecay);
- $limits = [
- 'X-Rate-Limit-Limit' => $userLimit,
- 'X-Rate-Limit-Remaining' => RateLimiter::remaining($userKey, $userLimit),
- 'X-Rate-Limit-Reset' => RateLimiter::availableIn($userKey),
- ];
- }
- if ($rateLimiting) {
- $userLimit = (int) config_cache('api.rate-limits.v1Dot1.accounts.usernameToId.limit');
- $userDecay = (int) config_cache('api.rate-limits.v1Dot1.accounts.usernameToId.decay');
- $userKey = 'pf:apiv1.1:acctU2ID:byUid:'.$request->user()->id;
- if (RateLimiter::tooManyAttempts($userKey, $userLimit)) {
- $limits = [
- 'X-Rate-Limit-Limit' => $userLimit,
- 'X-Rate-Limit-Remaining' => RateLimiter::remaining($userKey, $userLimit),
- 'X-Rate-Limit-Reset' => RateLimiter::availableIn($userKey),
- ];
- return $this->json(['error' => 'Too many attempts!'], 429, $limits);
- }
- RateLimiter::increment($userKey, $userDecay);
- $limits = [
- 'X-Rate-Limit-Limit' => $userLimit,
- 'X-Rate-Limit-Remaining' => RateLimiter::remaining($userKey, $userLimit),
- 'X-Rate-Limit-Reset' => RateLimiter::availableIn($userKey),
- ];
- }
- if (str_ends_with($username, config_cache('pixelfed.domain.app'))) {
- $pre = str_starts_with($username, '@') ? substr($username, 1) : $username;
- $parts = explode('@', $pre);
- $username = $parts[0];
- }
- $accountId = AccountService::usernameToId($username, true);
- if (! $accountId) {
- return [];
- }
- $account = AccountService::get($accountId);
- return $this->json($account, 200, $rateLimiting ? $limits : []);
- }
- public function getPushState(Request $request)
- {
- abort_unless($request->hasHeader('X-PIXELFED-APP'), 404, 'Not found');
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('push'), 403);
- abort_unless(NotificationAppGatewayService::enabled(), 404, 'Push notifications are not supported on this server.');
- $user = $request->user();
- abort_if($user->status, 422, 'Cannot access this resource at this time');
- $res = [
- 'version' => PushNotificationService::PUSH_GATEWAY_VERSION,
- 'username' => (string) $user->username,
- 'profile_id' => (string) $user->profile_id,
- 'notify_enabled' => (bool) $user->notify_enabled,
- 'has_token' => (bool) $user->expo_token,
- 'notify_like' => (bool) $user->notify_like,
- 'notify_follow' => (bool) $user->notify_follow,
- 'notify_mention' => (bool) $user->notify_mention,
- 'notify_comment' => (bool) $user->notify_comment,
- ];
- return $this->json($res);
- }
- public function disablePush(Request $request)
- {
- abort_unless($request->hasHeader('X-PIXELFED-APP'), 404, 'Not found');
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('push'), 403);
- abort_unless(NotificationAppGatewayService::enabled(), 404, 'Push notifications are not supported on this server.');
- abort_if($request->user()->status, 422, 'Cannot access this resource at this time');
- $request->user()->update([
- 'notify_enabled' => false,
- 'expo_token' => null,
- 'notify_like' => false,
- 'notify_follow' => false,
- 'notify_mention' => false,
- 'notify_comment' => false,
- ]);
- PushNotificationService::removeMemberFromAll($request->user()->profile_id);
- $user = $request->user();
- return $this->json([
- 'version' => PushNotificationService::PUSH_GATEWAY_VERSION,
- 'username' => (string) $user->username,
- 'profile_id' => (string) $user->profile_id,
- 'notify_enabled' => (bool) $user->notify_enabled,
- 'has_token' => (bool) $user->expo_token,
- 'notify_like' => (bool) $user->notify_like,
- 'notify_follow' => (bool) $user->notify_follow,
- 'notify_mention' => (bool) $user->notify_mention,
- 'notify_comment' => (bool) $user->notify_comment,
- ]);
- }
- public function comparePush(Request $request)
- {
- abort_unless($request->hasHeader('X-PIXELFED-APP'), 404, 'Not found');
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('push'), 403);
- abort_unless(NotificationAppGatewayService::enabled(), 404, 'Push notifications are not supported on this server.');
- abort_if($request->user()->status, 422, 'Cannot access this resource at this time');
- $this->validate($request, [
- 'expo_token' => ['required', 'string', new ExpoPushTokenRule],
- ]);
- $user = $request->user();
- if (empty($user->expo_token)) {
- return $this->json([
- 'version' => PushNotificationService::PUSH_GATEWAY_VERSION,
- 'username' => (string) $user->username,
- 'profile_id' => (string) $user->profile_id,
- 'notify_enabled' => (bool) $user->notify_enabled,
- 'match' => false,
- 'has_existing' => false,
- ]);
- }
- $token = $request->input('expo_token');
- $knownToken = $user->expo_token;
- $match = hash_equals($knownToken, $token);
- return $this->json([
- 'version' => PushNotificationService::PUSH_GATEWAY_VERSION,
- 'username' => (string) $user->username,
- 'profile_id' => (string) $user->profile_id,
- 'notify_enabled' => (bool) $user->notify_enabled,
- 'match' => $match,
- 'has_existing' => true,
- ]);
- }
- public function updatePush(Request $request)
- {
- abort_unless($request->hasHeader('X-PIXELFED-APP'), 404, 'Not found');
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('push'), 403);
- abort_unless(NotificationAppGatewayService::enabled(), 404, 'Push notifications are not supported on this server.');
- abort_if($request->user()->status, 422, 'Cannot access this resource at this time');
- $this->validate($request, [
- 'notify_enabled' => 'required',
- 'token' => ['required', 'string', new ExpoPushTokenRule],
- 'notify_like' => 'sometimes',
- 'notify_follow' => 'sometimes',
- 'notify_mention' => 'sometimes',
- 'notify_comment' => 'sometimes',
- ]);
- $pid = $request->user()->profile_id;
- abort_if(! $pid, 422, 'An error occured');
- $expoToken = $request->input('token');
- $existing = User::where('profile_id', '!=', $pid)->whereExpoToken($expoToken)->count();
- abort_if($existing && $existing > 5, 400, 'Push token is already used by another account');
- $request->user()->update([
- 'notify_enabled' => $request->boolean('notify_enabled'),
- 'expo_token' => $expoToken,
- ]);
- if ($request->filled('notify_like')) {
- $request->user()->update(['notify_like' => (bool) $request->boolean('notify_like')]);
- $request->boolean('notify_like') == true ?
- PushNotificationService::set('like', $pid) :
- PushNotificationService::removeMember('like', $pid);
- }
- if ($request->filled('notify_follow')) {
- $request->user()->update(['notify_follow' => (bool) $request->boolean('notify_follow')]);
- $request->boolean('notify_follow') == true ?
- PushNotificationService::set('follow', $pid) :
- PushNotificationService::removeMember('follow', $pid);
- }
- if ($request->filled('notify_mention')) {
- $request->user()->update(['notify_mention' => (bool) $request->boolean('notify_mention')]);
- $request->boolean('notify_mention') == true ?
- PushNotificationService::set('mention', $pid) :
- PushNotificationService::removeMember('mention', $pid);
- }
- if ($request->filled('notify_comment')) {
- $request->user()->update(['notify_comment' => (bool) $request->boolean('notify_comment')]);
- $request->boolean('notify_comment') == true ?
- PushNotificationService::set('comment', $pid) :
- PushNotificationService::removeMember('comment', $pid);
- }
- if ($request->boolean('notify_enabled') == false) {
- PushNotificationService::removeMemberFromAll($request->user()->profile_id);
- }
- $user = $request->user();
- $res = [
- 'version' => PushNotificationService::PUSH_GATEWAY_VERSION,
- 'notify_enabled' => (bool) $user->notify_enabled,
- 'has_token' => (bool) $user->expo_token,
- 'notify_like' => (bool) $user->notify_like,
- 'notify_follow' => (bool) $user->notify_follow,
- 'notify_mention' => (bool) $user->notify_mention,
- 'notify_comment' => (bool) $user->notify_comment,
- ];
- return $this->json($res);
- }
- /**
- * POST /api/v1.1/status/create
- *
- *
- * @return StatusTransformer
- */
- public function statusCreate(Request $request)
- {
- abort_if(! $request->user() || ! $request->user()->token(), 403);
- abort_unless($request->user()->tokenCan('write'), 403);
- $this->validate($request, [
- 'status' => 'nullable|string|max:'.(int) config_cache('pixelfed.max_caption_length'),
- 'file' => [
- 'required',
- 'file',
- 'mimetypes:'.config_cache('pixelfed.media_types'),
- 'max:'.config_cache('pixelfed.max_photo_size'),
- function ($attribute, $value, $fail) {
- if (is_array($value) && count($value) > 1) {
- $fail('Only one file can be uploaded at a time.');
- }
- },
- ],
- 'sensitive' => 'nullable',
- 'visibility' => 'string|in:private,unlisted,public',
- 'spoiler_text' => 'sometimes|max:140',
- ]);
- if ($request->hasHeader('idempotency-key')) {
- $key = 'pf:api:v1:status:idempotency-key:'.$request->user()->id.':'.hash('sha1', $request->header('idempotency-key'));
- $exists = Cache::has($key);
- abort_if($exists, 400, 'Duplicate idempotency key.');
- Cache::put($key, 1, 3600);
- }
- if (config('costar.enabled') == true) {
- $blockedKeywords = config('costar.keyword.block');
- if ($blockedKeywords !== null && $request->status) {
- $keywords = config('costar.keyword.block');
- foreach ($keywords as $kw) {
- if (Str::contains($request->status, $kw) == true) {
- abort(400, 'Invalid object. Contains banned keyword.');
- }
- }
- }
- }
- $user = $request->user();
- if ($user->has_roles) {
- abort_if(! UserRoleService::can('can-post', $user->id), 403, 'Invalid permissions for this action');
- }
- $profile = $user->profile;
- $limitKey = 'compose:rate-limit:media-upload:'.$user->id;
- $photo = $request->file('file');
- $fileSize = $photo->getSize();
- $sizeInKbs = (int) ceil($fileSize / 1000);
- $accountSize = UserStorageService::get($user->id);
- abort_if($accountSize === -1, 403, 'Invalid request.');
- $updatedAccountSize = (int) $accountSize + (int) $sizeInKbs;
- if ((bool) config_cache('pixelfed.enforce_account_limit') == true) {
- $limit = (int) config_cache('pixelfed.max_account_size');
- if ($updatedAccountSize >= $limit) {
- abort(403, 'Account size limit reached.');
- }
- }
- $mimes = explode(',', config_cache('pixelfed.media_types'));
- if (in_array($photo->getMimeType(), $mimes) == false) {
- abort(403, 'Invalid or unsupported mime type.');
- }
- $storagePath = MediaPathService::get($user, 2);
- $path = $photo->storePublicly($storagePath);
- $hash = \hash_file('sha256', $photo);
- $license = null;
- $mime = $photo->getMimeType();
- $settings = UserSetting::whereUserId($user->id)->first();
- if ($settings && ! empty($settings->compose_settings)) {
- $compose = $settings->compose_settings;
- if (isset($compose['default_license']) && $compose['default_license'] != 1) {
- $license = $compose['default_license'];
- }
- }
- abort_if(MediaBlocklistService::exists($hash) == true, 451);
- $visibility = $profile->is_private ? 'private' : (
- $profile->unlisted == true &&
- $request->input('visibility', 'public') == 'public' ?
- 'unlisted' :
- $request->input('visibility', 'public'));
- if ($user->last_active_at == null) {
- return [];
- }
- $defaultCaption = '';
- $content = $request->filled('status') ? strip_tags(Purify::clean($request->input('status'))) : $defaultCaption;
- $cw = $user->profile->cw == true ? true : $request->boolean('sensitive', false);
- $spoilerText = $cw && $request->filled('spoiler_text') ? $request->input('spoiler_text') : null;
- $status = new Status;
- $status->caption = $content;
- $status->rendered = $defaultCaption;
- $status->profile_id = $user->profile_id;
- $status->is_nsfw = $cw;
- $status->cw_summary = $spoilerText;
- $status->scope = $visibility;
- $status->visibility = $visibility;
- $status->type = StatusController::mimeTypeCheck([$mime]);
- $status->save();
- if (! $status) {
- abort(500, 'An error occured.');
- }
- $media = new Media;
- $media->status_id = $status->id;
- $media->profile_id = $profile->id;
- $media->user_id = $user->id;
- $media->media_path = $path;
- $media->original_sha256 = $hash;
- $media->size = $photo->getSize();
- $media->mime = $mime;
- $media->order = 1;
- $media->caption = $request->input('description');
- if ($license) {
- $media->license = $license;
- }
- $media->save();
- switch ($media->mime) {
- case 'image/jpeg':
- case 'image/png':
- ImageOptimize::dispatch($media)->onQueue('mmo');
- break;
- case 'video/mp4':
- VideoThumbnail::dispatch($media)->onQueue('mmo');
- $preview_url = '/storage/no-preview.png';
- $url = '/storage/no-preview.png';
- break;
- }
- $user->storage_used = (int) $updatedAccountSize;
- $user->storage_used_updated_at = now();
- $user->save();
- NewStatusPipeline::dispatch($status);
- Cache::forget('user:account:id:'.$user->id);
- Cache::forget('_api:statuses:recent_9:'.$user->profile_id);
- Cache::forget('profile:status_count:'.$user->profile_id);
- Cache::forget($user->storageUsedKey());
- Cache::forget('profile:embed:'.$status->profile_id);
- Cache::forget($limitKey);
- $res = StatusService::getMastodon($status->id, false);
- $res['favourited'] = false;
- $res['language'] = 'en';
- $res['bookmarked'] = false;
- $res['card'] = null;
- return $this->json($res);
- }
- public function nagState(Request $request)
- {
- abort_unless((bool) config_cache('pixelfed.oauth_enabled'), 404);
- return [
- 'active' => NotificationAppGatewayService::enabled(),
- ];
- }
- }
|