mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Update ApiV1Dot1Controller.php
This commit is contained in:
parent
b03f5cec8b
commit
2803861083
1 changed files with 1 additions and 12 deletions
|
@ -1128,15 +1128,6 @@ class ApiV1Dot1Controller extends Controller
|
||||||
}
|
}
|
||||||
$user = $request->user();
|
$user = $request->user();
|
||||||
|
|
||||||
$limitKey = 'compose:rate-limit:media-upload:'.$user->id;
|
|
||||||
$limitTtl = now()->addMinutes(15);
|
|
||||||
$limitReached = Cache::remember($limitKey, $limitTtl, function () use ($user) {
|
|
||||||
$dailyLimit = Media::whereUserId($user->id)->where('created_at', '>', now()->subDays(1))->count();
|
|
||||||
|
|
||||||
return $dailyLimit >= 1250;
|
|
||||||
});
|
|
||||||
abort_if($limitReached == true, 429);
|
|
||||||
|
|
||||||
if ($user->has_roles) {
|
if ($user->has_roles) {
|
||||||
abort_if(! UserRoleService::can('can-post', $user->id), 403, 'Invalid permissions for this action');
|
abort_if(! UserRoleService::can('can-post', $user->id), 403, 'Invalid permissions for this action');
|
||||||
}
|
}
|
||||||
|
@ -1152,9 +1143,7 @@ class ApiV1Dot1Controller extends Controller
|
||||||
abort(403, 'Account size limit reached.');
|
abort(403, 'Account size limit reached.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$limitKey = 'compose:rate-limit:media-upload:'.$user->id;
|
||||||
abort_if($limitReached == true, 429);
|
|
||||||
|
|
||||||
$photo = $request->file('file');
|
$photo = $request->file('file');
|
||||||
|
|
||||||
$mimes = explode(',', config_cache('pixelfed.media_types'));
|
$mimes = explode(',', config_cache('pixelfed.media_types'));
|
||||||
|
|
Loading…
Reference in a new issue