1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51: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)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @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;
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)
{
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' => []
];
//client_contact who once existed, but has been soft deleted
if (!$client_contact) {
return response()->json(json_encode($error, JSON_PRETTY_PRINT), 403);
}
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
if ($client_contact->is_locked) {
return response()->json(json_encode($error, JSON_PRETTY_PRINT), 403);
}
2019-07-08 02:08:57 +02:00
//stateless, don't remember the contact.
auth()->guard('contact')->login($client_contact, false);
2019-07-08 02:08:57 +02:00
event(new ContactLoggedIn($client_contact)); //todo
} else {
2019-09-24 00:37:38 +02:00
$error = [
'message' => 'Invalid token',
'errors' => []
];
return response()->json(json_encode($error, JSON_PRETTY_PRINT), 403);
2019-07-08 02:08:57 +02:00
}
return $next($request);
}
}