mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 09:36:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Middleware\Api;
 | 
						|
 | 
						|
use IPTools\IP;
 | 
						|
use IPTools\Range;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use App\Facades\Activity;
 | 
						|
use Laravel\Sanctum\TransientToken;
 | 
						|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
 | 
						|
 | 
						|
class AuthenticateIPAccess
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Determine if a request IP has permission to access the API.
 | 
						|
     *
 | 
						|
     * @throws \Exception
 | 
						|
     * @throws \Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException
 | 
						|
     */
 | 
						|
    public function handle(Request $request, \Closure $next): mixed
 | 
						|
    {
 | 
						|
        /** @var \Laravel\Sanctum\TransientToken|\App\Models\ApiKey $token */
 | 
						|
        $token = $request->user()->currentAccessToken();
 | 
						|
 | 
						|
        // If this is a stateful request just push the request through to the next
 | 
						|
        // middleware in the stack, there is nothing we need to explicitly check. If
 | 
						|
        // this is a valid API Key, but there is no allowed IP restriction, also pass
 | 
						|
        // the request through.
 | 
						|
        if ($token instanceof TransientToken || empty($token->allowed_ips)) {
 | 
						|
            return $next($request);
 | 
						|
        }
 | 
						|
 | 
						|
        $find = new IP($request->ip());
 | 
						|
        foreach ($token->allowed_ips as $ip) {
 | 
						|
            if (Range::parse($ip)->contains($find)) {
 | 
						|
                return $next($request);
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        Activity::event('auth:ip-blocked')
 | 
						|
            ->actor($request->user())
 | 
						|
            ->subject($request->user(), $token)
 | 
						|
            ->property('identifier', $token->identifier)
 | 
						|
            ->log();
 | 
						|
 | 
						|
        throw new AccessDeniedHttpException('This IP address (' . $request->ip() . ') does not have permission to access the API using these credentials.');
 | 
						|
    }
 | 
						|
}
 |