Files
UNIT3D-Community-Edition/app/Http/Middleware/BlockIpAddress.php

43 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
/**
* NOTICE OF LICENSE.
*
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D Community Edition
*
* @author HDVinnie <hdinnovations@protonmail.com>
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
*/
namespace App\Http\Middleware;
use App\Models\BlockedIp;
use Closure;
use Illuminate\Http\Request;
class BlockIpAddress
{
/**
* Handle an incoming request.
*/
public function handle(Request $request, Closure $next): mixed
{
$ipAddresses = cache()->flexible(
'blocked-ips',
[8 * 3600, 9 * 3600],
fn () => BlockedIp::query()->pluck('ip_address')->toArray()
);
if (\in_array($request->getClientIp(), $ipAddresses)) {
abort(403, 'Your access to '.config('app.name').' has been restricted.');
}
return $next($request);
}
}