2019-07-08 02:08:57 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. 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;
|
|
|
|
use App\Models\CompanyToken;
|
|
|
|
use App\Models\User;
|
|
|
|
use Closure;
|
|
|
|
|
|
|
|
class ContactTokenAuth
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \Closure $next
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle($request, Closure $next)
|
|
|
|
{
|
2019-12-30 22:59:12 +01: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.',
|
|
|
|
'errors' => []
|
|
|
|
];
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
//client_contact who once existed, but has been soft deleted
|
|
|
|
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
|
|
|
|
2019-07-08 02:08:57 +02:00
|
|
|
|
2019-09-24 00:37:38 +02:00
|
|
|
$error = [
|
|
|
|
'message' => 'Access is locked.',
|
|
|
|
'errors' => []
|
|
|
|
];
|
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);
|
2019-07-08 02:08:57 +02:00
|
|
|
|
2019-07-10 05:10:18 +02:00
|
|
|
event(new ContactLoggedIn($client_contact)); //todo
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2019-09-24 00:37:38 +02:00
|
|
|
$error = [
|
|
|
|
'message' => 'Invalid token',
|
|
|
|
'errors' => []
|
|
|
|
];
|
|
|
|
|
2020-02-05 05:06:03 +01:00
|
|
|
return response()->json($error, 403);
|
2019-07-08 02:08:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
}
|