mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 20:47:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Http\Middleware;
 | 
						|
 | 
						|
use App\Events\Contact\ContactLoggedIn;
 | 
						|
use App\Models\ClientContact;
 | 
						|
use App\Utils\Ninja;
 | 
						|
use Closure;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use stdClass;
 | 
						|
 | 
						|
class ContactTokenAuth
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Handle an incoming request.
 | 
						|
     *
 | 
						|
     * @param  Request  $request
 | 
						|
     * @param Closure $next
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function handle($request, Closure $next)
 | 
						|
    {
 | 
						|
        if ($request->header('X-API-TOKEN') && ($client_contact = ClientContact::with(['company'])->where('token', $request->header('X-API-TOKEN'))->first())) {
 | 
						|
            $error = [
 | 
						|
                'message' => 'Authentication disabled for user.',
 | 
						|
                'errors' => new stdClass,
 | 
						|
            ];
 | 
						|
 | 
						|
            //client_contact who once existed, but has been soft deleted
 | 
						|
            if (! $client_contact) {
 | 
						|
                return response()->json($error, 403);
 | 
						|
            }
 | 
						|
 | 
						|
            $error = [
 | 
						|
                'message' => 'Access is locked.',
 | 
						|
                'errors' => new stdClass,
 | 
						|
            ];
 | 
						|
 | 
						|
            //client_contact who has been disabled
 | 
						|
            if ($client_contact->is_locked) {
 | 
						|
                return response()->json($error, 403);
 | 
						|
            }
 | 
						|
 | 
						|
            //stateless, don't remember the contact.
 | 
						|
            auth()->guard('contact')->loginUsingId($client_contact->id, false);
 | 
						|
 | 
						|
            event(new ContactLoggedIn($client_contact, $client_contact->company, Ninja::eventVars()));
 | 
						|
        } else {
 | 
						|
            $error = [
 | 
						|
                'message' => 'Invalid token',
 | 
						|
                'errors' => new stdClass,
 | 
						|
            ];
 | 
						|
 | 
						|
            return response()->json($error, 403);
 | 
						|
        }
 | 
						|
 | 
						|
        return $next($request);
 | 
						|
    }
 | 
						|
}
 |