From 8c0a2a6383a447bcfe988f8fa46f3923e30bff17 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Sat, 29 Jul 2023 18:03:13 +0100 Subject: Merge fixes into v5.5 branch (#12) --------- Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com> --- app/Http/Middleware/RateLimiter.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'app/Http/Middleware/RateLimiter.php') diff --git a/app/Http/Middleware/RateLimiter.php b/app/Http/Middleware/RateLimiter.php index 8c00b57..09eb0a9 100644 --- a/app/Http/Middleware/RateLimiter.php +++ b/app/Http/Middleware/RateLimiter.php @@ -17,14 +17,14 @@ class RateLimiter public function handle(Request $request, Closure $next): Response { $ipAddress = $request->ip(); - $cacheKey = 'rate_limit_' . $ipAddress; + $cacheKey = 'rate_limit_'.$ipAddress; if (Cache::has($cacheKey)) { - // If the cache key exists, the IP has submitted an entry within the last hour + // If the cache key exists, the IP has submitted an entry within the last hour. return response()->view('errors.guestbook-ratelimit', [], 429); } - // Add the IP address to the cache and set the expiration time to one hour + // Add the IP address to the cache and set the expiration time to one hour. Cache::put($cacheKey, true, 3600); return $next($request); -- cgit v1.2.3-54-g00ecf