1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Http/Middleware/ContactTokenAuth.php

69 lines
1.9 KiB
PHP
Raw Normal View History

2019-07-08 02:08:57 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-07-08 02:08:57 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-07-08 02:08:57 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Http\Middleware;
use App\Events\Contact\ContactLoggedIn;
2019-07-08 02:08:57 +02:00
use App\Models\ClientContact;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
2019-07-08 02:08:57 +02:00
use Closure;
2020-10-28 11:10:49 +01:00
use Illuminate\Http\Request;
use stdClass;
2019-07-08 02:08:57 +02:00
class ContactTokenAuth
{
/**
* Handle an incoming request.
*
2020-10-28 11:10:49 +01:00
* @param Request $request
* @param Closure $next
2019-07-08 02:08:57 +02:00
* @return mixed
*/
public function handle($request, Closure $next)
{
if ($request->header('X-API-TOKEN') && ($client_contact = ClientContact::with(['company'])->whereRaw('BINARY `token`= ?', [$request->header('X-API-TOKEN')])->first())) {
2019-09-24 00:37:38 +02:00
$error = [
'message' => 'Authentication disabled for user.',
2020-10-28 11:10:49 +01:00
'errors' => new stdClass,
2019-09-24 00:37:38 +02:00
];
//client_contact who once existed, but has been soft deleted
if (! $client_contact) {
return response()->json($error, 403);
}
2019-09-24 00:37:38 +02:00
$error = [
'message' => 'Access is locked.',
2020-10-28 11:10:49 +01:00
'errors' => new stdClass,
2019-09-24 00:37:38 +02:00
];
2019-07-08 02:08:57 +02:00
//client_contact who has been disabled
if ($client_contact->is_locked) {
return response()->json($error, 403);
}
2019-07-08 02:08:57 +02:00
//stateless, don't remember the contact.
auth()->guard('contact')->login($client_contact, false);
2020-11-25 15:19:52 +01:00
event(new ContactLoggedIn($client_contact, $client_contact->company, Ninja::eventVars()));
} else {
2019-09-24 00:37:38 +02:00
$error = [
'message' => 'Invalid token',
2020-10-28 11:10:49 +01:00
'errors' => new stdClass,
2019-09-24 00:37:38 +02:00
];
return response()->json($error, 403);
2019-07-08 02:08:57 +02:00
}
return $next($request);
}
}