aboutsummaryrefslogtreecommitdiff
path: root/app/Http/Middleware/RateLimiter.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-07-29 18:03:13 +0100
committerFrankie B <frankieraybrown@gmail.com>2023-07-29 18:10:50 +0100
commit8e36d3dcbaf72d4de2b73ed004eb1dfd4c1d6ef2 (patch)
treeab7483cda3af501fc0dfec175dda4983a7b99aad /app/Http/Middleware/RateLimiter.php
parent4f50fa52c34eaf6e3a8148a5ccc4d1c9819425f3 (diff)
Merge fixes into v5.5 branch (#12)
--------- Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com>
Diffstat (limited to 'app/Http/Middleware/RateLimiter.php')
-rw-r--r--app/Http/Middleware/RateLimiter.php6
1 files changed, 3 insertions, 3 deletions
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);