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
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @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;
|
|
|
|
|
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)
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
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
|
|
|
];
|
|
|
|
|
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.',
|
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
|
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.
|
2019-12-30 22:59:12 +01:00
|
|
|
auth()->guard('contact')->login($client_contact, 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',
|
2020-10-28 11:10:49 +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);
|
|
|
|
}
|
|
|
|
}
|