2019-07-08 02:08:57 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-07-08 02:08:57 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-07-08 02:08:57 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-07-08 02:08:57 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
2019-07-10 05:10:18 +02:00
|
|
|
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)
|
|
|
|
{
|
2022-02-26 08:48:22 +01:00
|
|
|
if ($request->header('X-API-TOKEN') && ($client_contact = ClientContact::with(['company'])->where('token', $request->header('X-API-TOKEN'))->first())) {
|
2019-09-24 00:37:38 +02:00
|
|
|
$error = [
|
|
|
|
'message' => 'Authentication disabled for user.',
|
2024-01-14 05:05:00 +01:00
|
|
|
'errors' => new stdClass(),
|
2019-09-24 00:37:38 +02:00
|
|
|
];
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
//client_contact who once existed, but has been soft deleted
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $client_contact) {
|
2020-02-05 05:06:03 +01:00
|
|
|
return response()->json($error, 403);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-09-24 00:37:38 +02:00
|
|
|
|
|
|
|
$error = [
|
|
|
|
'message' => 'Access is locked.',
|
2024-01-14 05:05:00 +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
|
2019-12-30 22:59:12 +01:00
|
|
|
if ($client_contact->is_locked) {
|
2020-02-05 05:06:03 +01:00
|
|
|
return response()->json($error, 403);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-07-08 02:08:57 +02:00
|
|
|
|
|
|
|
//stateless, don't remember the contact.
|
2021-12-07 22:45:24 +01:00
|
|
|
auth()->guard('contact')->loginUsingId($client_contact->id, false);
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
event(new ContactLoggedIn($client_contact, $client_contact->company, Ninja::eventVars()));
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2019-09-24 00:37:38 +02:00
|
|
|
$error = [
|
|
|
|
'message' => 'Invalid token',
|
2024-01-14 05:05:00 +01:00
|
|
|
'errors' => new stdClass(),
|
2019-09-24 00:37:38 +02:00
|
|
|
];
|
|
|
|
|
2020-02-05 05:06:03 +01:00
|
|
|
return response()->json($error, 403);
|
2019-07-08 02:08:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
}
|