-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf0b5e7
commit df8f912
Showing
5 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
namespace Enjin\Platform\Middlewares; | ||
|
||
use Closure; | ||
use Enjin\Platform\Exceptions\PlatformException; | ||
use Illuminate\Http\JsonResponse; | ||
use Illuminate\Http\RedirectResponse; | ||
use Illuminate\Http\Request; | ||
use Illuminate\Http\Response; | ||
use Illuminate\Support\Facades\RateLimiter; | ||
|
||
class RateLimit | ||
{ | ||
/** | ||
* The names of the schemas that should not be protected. | ||
*/ | ||
protected array $except = [ | ||
'__schema', | ||
]; | ||
|
||
/** | ||
* Handle an incoming request. | ||
*/ | ||
public function handle(Request $request, Closure $next): JsonResponse|RedirectResponse|Response | ||
{ | ||
if (config('enjin-platform.rate_limit.enabled')) { | ||
$key = 'api:' . ($request->user()?->id ?: $request->ip()); | ||
if (RateLimiter::tooManyAttempts($key, config('enjin-platform.rate_limit.attempts'))) { | ||
throw new PlatformException( | ||
__('enjin-platform::error.too_many_requests', ['num' => RateLimiter::availableIn($key)]) | ||
); | ||
} | ||
|
||
RateLimiter::hit($key, config('enjin-platform.rate_limit.time')); | ||
} | ||
|
||
|
||
return $next($request); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters