2018-10-04 19:10:43 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2018-10-04 19:10:43 +02:00
|
|
|
|
2019-05-22 03:24:05 +02:00
|
|
|
namespace App\Http\Controllers\Auth;
|
2018-10-04 19:10:43 +02:00
|
|
|
|
2020-04-30 14:33:57 +02:00
|
|
|
use App\DataMapper\Analytics\LoginFailure;
|
|
|
|
use App\DataMapper\Analytics\LoginSuccess;
|
2021-05-12 08:18:32 +02:00
|
|
|
use App\Events\User\UserLoggedIn;
|
2019-04-19 04:58:40 +02:00
|
|
|
use App\Http\Controllers\BaseController;
|
2018-10-04 19:10:43 +02:00
|
|
|
use App\Http\Controllers\Controller;
|
2021-07-19 02:57:13 +02:00
|
|
|
use App\Http\Requests\Login\LoginRequest;
|
2019-05-22 02:56:47 +02:00
|
|
|
use App\Jobs\Account\CreateAccount;
|
2021-04-28 02:02:31 +02:00
|
|
|
use App\Jobs\Company\CreateCompanyToken;
|
2021-05-12 08:31:02 +02:00
|
|
|
use App\Jobs\Util\SystemLogger;
|
2019-05-22 02:56:47 +02:00
|
|
|
use App\Libraries\MultiDB;
|
2019-05-22 05:18:18 +02:00
|
|
|
use App\Libraries\OAuth\OAuth;
|
2020-05-13 07:38:42 +02:00
|
|
|
use App\Libraries\OAuth\Providers\Google;
|
2022-06-17 03:48:17 +02:00
|
|
|
use App\Models\Account;
|
2021-05-12 08:31:02 +02:00
|
|
|
use App\Models\Client;
|
2021-05-19 03:12:23 +02:00
|
|
|
use App\Models\Company;
|
2020-08-08 02:32:47 +02:00
|
|
|
use App\Models\CompanyToken;
|
2019-09-11 12:15:44 +02:00
|
|
|
use App\Models\CompanyUser;
|
2021-05-12 08:31:02 +02:00
|
|
|
use App\Models\SystemLog;
|
2018-12-02 11:42:06 +01:00
|
|
|
use App\Models\User;
|
2019-09-11 12:15:44 +02:00
|
|
|
use App\Transformers\CompanyUserTransformer;
|
2021-05-12 08:18:32 +02:00
|
|
|
use App\Utils\Ninja;
|
2018-11-02 11:54:46 +01:00
|
|
|
use App\Utils\Traits\UserSessionAttributes;
|
2021-05-23 10:59:09 +02:00
|
|
|
use App\Utils\Traits\User\LoginCache;
|
2022-03-13 11:40:29 +01:00
|
|
|
use App\Utils\TruthSource;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Google_Client;
|
2022-05-05 02:14:28 +02:00
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
2018-10-04 19:10:43 +02:00
|
|
|
use Illuminate\Foundation\Auth\AuthenticatesUsers;
|
2018-11-02 11:54:46 +01:00
|
|
|
use Illuminate\Http\Request;
|
2018-12-02 11:42:06 +01:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
2021-03-16 13:10:15 +01:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
use Illuminate\Support\Str;
|
2021-06-01 02:24:20 +02:00
|
|
|
use Laravel\Socialite\Facades\Socialite;
|
2021-03-16 13:10:15 +01:00
|
|
|
use PragmaRX\Google2FA\Google2FA;
|
2020-05-09 00:35:49 +02:00
|
|
|
use Turbo124\Beacon\Facades\LightLogs;
|
2022-06-17 04:52:08 +02:00
|
|
|
use Microsoft\Graph\Model;
|
2018-10-04 19:10:43 +02:00
|
|
|
|
2019-04-19 04:58:40 +02:00
|
|
|
class LoginController extends BaseController
|
2018-10-04 19:10:43 +02:00
|
|
|
{
|
2020-10-10 14:07:52 +02:00
|
|
|
/**
|
2019-12-30 22:59:12 +01:00
|
|
|
* @OA\Tag(
|
|
|
|
* name="login",
|
|
|
|
* description="Authentication",
|
|
|
|
* @OA\ExternalDocumentation(
|
|
|
|
* description="Find out more",
|
|
|
|
* url="http://docs.invoiceninja.com"
|
|
|
|
* )
|
|
|
|
* )
|
|
|
|
*/
|
2018-10-04 19:10:43 +02:00
|
|
|
|
|
|
|
use AuthenticatesUsers;
|
2018-11-02 11:54:46 +01:00
|
|
|
use UserSessionAttributes;
|
2021-05-23 10:59:09 +02:00
|
|
|
use LoginCache;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-09-12 14:02:25 +02:00
|
|
|
protected $entity_type = CompanyUser::class;
|
2019-04-19 04:58:40 +02:00
|
|
|
|
2019-09-12 14:02:25 +02:00
|
|
|
protected $entity_transformer = CompanyUserTransformer::class;
|
2019-04-19 04:58:40 +02:00
|
|
|
|
2018-10-04 19:10:43 +02:00
|
|
|
/**
|
|
|
|
* Where to redirect users after login.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-10-17 14:26:27 +02:00
|
|
|
protected $redirectTo = '/dashboard';
|
2018-10-04 19:10:43 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new controller instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
2019-04-19 04:58:40 +02:00
|
|
|
parent::__construct();
|
2018-10-04 19:10:43 +02:00
|
|
|
}
|
2018-10-18 07:04:36 +02:00
|
|
|
|
2018-11-20 05:36:56 +01:00
|
|
|
/**
|
|
|
|
* Once the user is authenticated, we need to set
|
2020-09-06 11:38:10 +02:00
|
|
|
* the default company into a session variable.
|
2018-11-20 05:36:56 +01:00
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Request $request
|
|
|
|
* @param User $user
|
2018-11-20 05:36:56 +01:00
|
|
|
* @return void
|
2019-05-23 02:25:55 +02:00
|
|
|
* deprecated .1 API ONLY we don't need to set any session variables
|
2018-11-20 05:36:56 +01:00
|
|
|
*/
|
2022-06-11 04:07:56 +02:00
|
|
|
public function authenticated(Request $request, User $user): void
|
2018-11-02 11:54:46 +01:00
|
|
|
{
|
2019-03-26 12:31:07 +01:00
|
|
|
//$this->setCurrentCompanyId($user->companies()->first()->account->default_company_id);
|
2018-11-02 11:54:46 +01:00
|
|
|
}
|
|
|
|
|
2019-05-23 02:25:55 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Login via API.
|
2019-05-23 02:25:55 +02:00
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Request $request The request
|
2019-05-23 02:25:55 +02:00
|
|
|
*
|
|
|
|
* @return Response|User Process user login.
|
2019-10-07 00:00:02 +02:00
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @throws \Illuminate\Validation\ValidationException
|
2019-10-06 08:05:46 +02:00
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/login",
|
|
|
|
* operationId="postLogin",
|
|
|
|
* tags={"login"},
|
|
|
|
* summary="Attempts authentication",
|
|
|
|
* description="Returns a CompanyUser object on success",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include_static"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/clear_cache"),
|
|
|
|
* @OA\RequestBody(
|
|
|
|
* description="User credentials",
|
|
|
|
* required=true,
|
|
|
|
* @OA\MediaType(
|
|
|
|
* mediaType="application/json",
|
|
|
|
* @OA\Schema(
|
|
|
|
* type="object",
|
|
|
|
* @OA\Property(
|
|
|
|
* property="email",
|
|
|
|
* description="The user email address",
|
|
|
|
* type="string",
|
|
|
|
* ),
|
|
|
|
* @OA\Property(
|
|
|
|
* property="password",
|
|
|
|
* example="1234567",
|
|
|
|
* description="The user password must meet minimum criteria ~ >6 characters",
|
|
|
|
* type="string"
|
|
|
|
* )
|
|
|
|
* )
|
|
|
|
* )
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="The Company User response",
|
2020-06-21 23:30:25 +02:00
|
|
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
2019-10-06 08:05:46 +02:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
2019-10-06 13:51:33 +02:00
|
|
|
* @OA\JsonContent(ref="#/components/schemas/CompanyUser"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
2019-10-06 08:05:46 +02:00
|
|
|
* ),
|
2019-10-06 13:24:54 +02:00
|
|
|
* @OA\Response(
|
2019-12-30 22:59:12 +01:00
|
|
|
* response="default",
|
2019-10-06 13:24:54 +02:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
2019-10-06 08:05:46 +02:00
|
|
|
* )
|
|
|
|
*/
|
2021-07-19 02:57:13 +02:00
|
|
|
public function apiLogin(LoginRequest $request)
|
2019-04-19 03:59:07 +02:00
|
|
|
{
|
2019-07-14 11:34:49 +02:00
|
|
|
$this->forced_includes = ['company_users'];
|
|
|
|
|
2019-04-19 03:59:07 +02:00
|
|
|
$this->validateLogin($request);
|
|
|
|
|
2019-04-19 09:59:48 +02:00
|
|
|
if ($this->hasTooManyLoginAttempts($request)) {
|
|
|
|
$this->fireLockoutEvent($request);
|
|
|
|
|
2019-09-11 07:32:47 +02:00
|
|
|
return response()
|
2022-06-11 05:31:32 +02:00
|
|
|
->json(['message' => 'Too many login attempts, you are being throttled'], 401)
|
|
|
|
->header('X-App-Version', config('ninja.app_version'))
|
|
|
|
->header('X-Api-Version', config('ninja.minimum_client_version'));
|
2019-04-19 09:59:48 +02:00
|
|
|
}
|
|
|
|
|
2019-09-11 02:37:53 +02:00
|
|
|
if ($this->attemptLogin($request)) {
|
2021-03-16 13:10:15 +01:00
|
|
|
|
2020-05-04 13:13:46 +02:00
|
|
|
LightLogs::create(new LoginSuccess())
|
2020-04-30 14:33:57 +02:00
|
|
|
->increment()
|
2021-12-11 10:49:29 +01:00
|
|
|
->queue();
|
2020-04-30 14:33:57 +02:00
|
|
|
|
2020-08-08 01:58:10 +02:00
|
|
|
$user = $this->guard()->user();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-05-23 10:43:50 +02:00
|
|
|
//2FA
|
2021-03-20 01:46:42 +01:00
|
|
|
if($user->google_2fa_secret && $request->has('one_time_password'))
|
2021-03-16 13:10:15 +01:00
|
|
|
{
|
|
|
|
$google2fa = new Google2FA();
|
|
|
|
|
2021-03-20 01:46:42 +01:00
|
|
|
if(strlen($request->input('one_time_password')) == 0 || !$google2fa->verifyKey(decrypt($user->google_2fa_secret), $request->input('one_time_password')))
|
2021-03-16 13:10:15 +01:00
|
|
|
{
|
|
|
|
return response()
|
|
|
|
->json(['message' => ctrans('texts.invalid_one_time_password')], 401)
|
|
|
|
->header('X-App-Version', config('ninja.app_version'))
|
|
|
|
->header('X-Api-Version', config('ninja.minimum_client_version'));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-03-18 12:46:58 +01:00
|
|
|
elseif($user->google_2fa_secret && !$request->has('one_time_password')) {
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2021-03-18 12:46:58 +01:00
|
|
|
return response()
|
|
|
|
->json(['message' => ctrans('texts.invalid_one_time_password')], 401)
|
|
|
|
->header('X-App-Version', config('ninja.app_version'))
|
|
|
|
->header('X-Api-Version', config('ninja.minimum_client_version'));
|
|
|
|
}
|
2021-03-16 13:10:15 +01:00
|
|
|
|
2021-06-24 10:42:45 +02:00
|
|
|
/* If for some reason we lose state on the default company ie. a company is deleted - always make sure we can default to a company*/
|
|
|
|
if(!$user->account->default_company){
|
|
|
|
$account = $user->account;
|
|
|
|
$account->default_company_id = $user->companies->first()->id;
|
|
|
|
$account->save();
|
|
|
|
$user = $user->fresh();
|
|
|
|
}
|
|
|
|
|
2022-05-05 02:14:28 +02:00
|
|
|
$cu = $this->hydrateCompanyUser();
|
2020-11-13 10:09:20 +01:00
|
|
|
|
2022-05-04 00:35:36 +02:00
|
|
|
if($cu->count() == 0)
|
|
|
|
return response()->json(['message' => 'User found, but not attached to any companies, please see your administrator'], 400);
|
|
|
|
|
2021-06-14 09:04:15 +02:00
|
|
|
/*On the hosted platform, only owners can login for free/pro accounts*/
|
2022-06-11 05:31:32 +02:00
|
|
|
if (Ninja::isHosted() && !$cu->first()->is_owner && !$user->account->isEnterpriseClient())
|
2021-06-14 09:04:15 +02:00
|
|
|
return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403);
|
2021-06-08 10:30:54 +02:00
|
|
|
|
2021-06-20 12:35:26 +02:00
|
|
|
event(new UserLoggedIn($user, $user->account->default_company, Ninja::eventVars($user->id)));
|
|
|
|
|
2021-04-29 00:44:40 +02:00
|
|
|
return $this->timeConstrainedResponse($cu);
|
2021-05-23 10:43:50 +02:00
|
|
|
|
2021-03-16 13:10:15 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2021-03-16 13:10:15 +01:00
|
|
|
|
2020-05-04 13:13:46 +02:00
|
|
|
LightLogs::create(new LoginFailure())
|
2020-04-30 14:33:57 +02:00
|
|
|
->increment()
|
2021-12-11 10:49:29 +01:00
|
|
|
->queue();
|
2020-04-30 14:33:57 +02:00
|
|
|
|
2019-04-19 09:59:48 +02:00
|
|
|
$this->incrementLoginAttempts($request);
|
|
|
|
|
2019-09-11 07:32:47 +02:00
|
|
|
return response()
|
2022-06-11 05:31:32 +02:00
|
|
|
->json(['message' => ctrans('texts.invalid_credentials')], 401)
|
|
|
|
->header('X-App-Version', config('ninja.app_version'))
|
|
|
|
->header('X-Api-Version', config('ninja.minimum_client_version'));
|
2021-03-16 13:10:15 +01:00
|
|
|
|
2019-04-19 09:59:48 +02:00
|
|
|
}
|
2019-04-19 03:59:07 +02:00
|
|
|
}
|
|
|
|
|
2019-10-07 00:00:02 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Refreshes the data feed with the current Company User.
|
2019-12-30 22:59:12 +01:00
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Request $request
|
2019-10-07 00:00:02 +02:00
|
|
|
* @return CompanyUser Refresh Feed.
|
|
|
|
*
|
2019-12-30 22:59:12 +01:00
|
|
|
*
|
2019-10-07 00:00:02 +02:00
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/refresh",
|
|
|
|
* operationId="refresh",
|
|
|
|
* tags={"refresh"},
|
|
|
|
* summary="Refreshes the dataset",
|
|
|
|
* description="Refreshes the dataset",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include_static"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/clear_cache"),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="The Company User response",
|
2020-06-21 23:30:25 +02:00
|
|
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
2019-10-07 00:00:02 +02:00
|
|
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
|
|
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/CompanyUser"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
2019-12-30 22:59:12 +01:00
|
|
|
* response="default",
|
2019-10-07 00:00:02 +02:00
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*/
|
2019-09-25 13:49:43 +02:00
|
|
|
public function refresh(Request $request)
|
|
|
|
{
|
2022-03-13 11:40:29 +01:00
|
|
|
$truth = app()->make(TruthSource::class);
|
|
|
|
|
2022-06-11 04:07:56 +02:00
|
|
|
if ($truth->getCompanyToken())
|
2022-03-13 11:40:29 +01:00
|
|
|
$company_token = $truth->getCompanyToken();
|
|
|
|
else
|
|
|
|
$company_token = CompanyToken::where('token', $request->header('X-API-TOKEN'))->first();
|
2020-08-11 12:57:45 +02:00
|
|
|
|
|
|
|
$cu = CompanyUser::query()
|
2022-06-11 04:07:56 +02:00
|
|
|
->where('user_id', $company_token->user_id);
|
2020-08-08 02:32:47 +02:00
|
|
|
|
2022-06-11 04:07:56 +02:00
|
|
|
if ($cu->count() == 0)
|
2022-05-04 00:39:54 +02:00
|
|
|
return response()->json(['message' => 'User found, but not attached to any companies, please see your administrator'], 400);
|
|
|
|
|
2022-06-11 04:07:56 +02:00
|
|
|
$cu->first()->account->companies->each(function ($company) use ($cu, $request) {
|
2021-04-28 02:02:31 +02:00
|
|
|
|
2022-06-11 04:07:56 +02:00
|
|
|
if ($company->tokens()->where('is_system', true)->count() == 0) {
|
2021-04-28 02:02:31 +02:00
|
|
|
CreateCompanyToken::dispatchNow($company, $cu->first()->user, $request->server('HTTP_USER_AGENT'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-06-11 04:07:56 +02:00
|
|
|
if ($request->has('current_company') && $request->input('current_company') == 'true')
|
|
|
|
$cu->where("company_id", $company_token->company_id);
|
2021-04-29 13:29:10 +02:00
|
|
|
|
2022-06-11 04:07:56 +02:00
|
|
|
if (Ninja::isHosted() && !$cu->first()->is_owner && !$cu->first()->user->account->isEnterpriseClient())
|
2021-06-14 09:04:15 +02:00
|
|
|
return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403);
|
|
|
|
|
2020-08-11 12:57:45 +02:00
|
|
|
return $this->refreshResponse($cu);
|
2019-09-25 13:49:43 +02:00
|
|
|
}
|
|
|
|
|
2019-05-22 05:18:18 +02:00
|
|
|
/**
|
2019-12-30 22:59:12 +01:00
|
|
|
* A client side authentication has taken place.
|
2019-05-22 05:18:18 +02:00
|
|
|
* We now digest the token and confirm authentication with
|
|
|
|
* the authentication server, the correct user object
|
|
|
|
* is returned to us here and we send back the correct
|
|
|
|
* user object payload - or error.
|
|
|
|
*
|
2019-12-30 22:59:12 +01:00
|
|
|
* This can be extended to a create route also - need to pass a ?create query parameter and
|
2019-05-23 02:25:55 +02:00
|
|
|
* then process the signup
|
2019-12-30 22:59:12 +01:00
|
|
|
*
|
2019-05-22 05:18:18 +02:00
|
|
|
* return User $user
|
|
|
|
*/
|
|
|
|
public function oauthApiLogin()
|
2020-05-13 06:51:16 +02:00
|
|
|
{
|
2022-06-11 05:31:32 +02:00
|
|
|
|
2022-06-11 04:07:56 +02:00
|
|
|
$message = 'Provider not supported';
|
2020-09-06 11:38:10 +02:00
|
|
|
if (request()->input('provider') == 'google') {
|
2020-05-13 06:51:16 +02:00
|
|
|
return $this->handleGoogleOauth();
|
2022-06-11 04:07:56 +02:00
|
|
|
} elseif (request()->input('provider') == 'microsoft') {
|
2022-06-17 03:48:17 +02:00
|
|
|
// if (request()->has('token')) {
|
|
|
|
// return $this->handleSocialiteLogin('microsoft', request()->get('token'));
|
|
|
|
// } else {
|
|
|
|
// $message = 'Bearer token missing for the microsoft login';
|
|
|
|
// }
|
|
|
|
return $this->handleMicrosoftOauth();
|
2022-06-11 05:31:32 +02:00
|
|
|
} elseif (request()->input('provider') == 'apple') {
|
2022-06-17 03:48:17 +02:00
|
|
|
// if (request()->has('token')) {
|
|
|
|
// return $this->handleSocialiteLogin('apple', request()->get('token'));
|
|
|
|
// } else {
|
|
|
|
// $message = 'Token is missing for the apple login';
|
|
|
|
// }
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-05-13 06:51:16 +02:00
|
|
|
|
2020-05-13 11:02:38 +02:00
|
|
|
return response()
|
2022-06-11 04:07:56 +02:00
|
|
|
->json(['message' => $message], 400)
|
|
|
|
->header('X-App-Version', config('ninja.app_version'))
|
|
|
|
->header('X-Api-Version', config('ninja.minimum_client_version'));
|
|
|
|
}
|
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
private function getSocialiteUser(string $provider, string $token)
|
2022-06-11 04:07:56 +02:00
|
|
|
{
|
2022-06-11 05:31:32 +02:00
|
|
|
return Socialite::driver($provider)->userFromToken($token);
|
|
|
|
}
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
private function handleSocialiteLogin($provider, $token)
|
|
|
|
{
|
|
|
|
$user = $this->getSocialiteUser($provider, $token);
|
2022-06-11 04:07:56 +02:00
|
|
|
if ($user) {
|
2022-06-11 05:31:32 +02:00
|
|
|
return $this->loginOrCreateFromSocialite($user, $provider);
|
|
|
|
}
|
|
|
|
return response()
|
|
|
|
->json(['message' => ctrans('texts.invalid_credentials')], 401)
|
|
|
|
->header('X-App-Version', config('ninja.app_version'))
|
|
|
|
->header('X-Api-Version', config('ninja.minimum_client_version'));
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
}
|
2022-06-11 04:07:56 +02:00
|
|
|
|
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
private function loginOrCreateFromSocialite($user, $provider)
|
|
|
|
{
|
|
|
|
$query = [
|
|
|
|
'oauth_user_id' => $user->id,
|
|
|
|
'oauth_provider_id' => $provider,
|
|
|
|
];
|
|
|
|
if ($existing_user = MultiDB::hasUser($query)) {
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
if (!$existing_user->account)
|
|
|
|
return response()->json(['message' => 'User exists, but not attached to any companies! Orphaned user!'], 400);
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
Auth::login($existing_user, true);
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
$cu = $this->hydrateCompanyUser();
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
if ($cu->count() == 0)
|
|
|
|
return response()->json(['message' => 'User found, but not attached to any companies, please see your administrator'], 400);
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
if (Ninja::isHosted() && !$cu->first()->is_owner && !$existing_user->account->isEnterpriseClient())
|
|
|
|
return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403);
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
return $this->timeConstrainedResponse($cu);
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
}
|
|
|
|
//If this is a result user/email combo - lets add their OAuth details details
|
|
|
|
if ($existing_login_user = MultiDB::hasUser(['email' => $user->email])) {
|
|
|
|
if (!$existing_login_user->account)
|
|
|
|
return response()->json(['message' => 'User exists, but not attached to any companies! Orphaned user!'], 400);
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
Auth::login($existing_login_user, true);
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
auth()->user()->update([
|
2022-06-11 04:07:56 +02:00
|
|
|
'oauth_user_id' => $user->id,
|
2022-06-11 05:31:32 +02:00
|
|
|
'oauth_provider_id' => $provider,
|
|
|
|
]);
|
2022-06-11 04:07:56 +02:00
|
|
|
|
|
|
|
$cu = $this->hydrateCompanyUser();
|
|
|
|
|
|
|
|
if ($cu->count() == 0)
|
|
|
|
return response()->json(['message' => 'User found, but not attached to any companies, please see your administrator'], 400);
|
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
if (Ninja::isHosted() && !$cu->first()->is_owner && !$existing_login_user->account->isEnterpriseClient())
|
2022-06-11 04:07:56 +02:00
|
|
|
return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403);
|
|
|
|
|
|
|
|
return $this->timeConstrainedResponse($cu);
|
|
|
|
}
|
2022-06-11 05:31:32 +02:00
|
|
|
$name = OAuth::splitName($user->name);
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
$new_account = [
|
|
|
|
'first_name' => $name[0],
|
|
|
|
'last_name' => $name[1],
|
|
|
|
'password' => '',
|
|
|
|
'email' => $user->email,
|
|
|
|
'oauth_user_id' => $user->id,
|
|
|
|
'oauth_provider_id' => $provider,
|
|
|
|
];
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
MultiDB::setDefaultDatabase();
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
$account = CreateAccount::dispatchNow($new_account, request()->getClientIp());
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
Auth::login($account->default_company->owner(), true);
|
|
|
|
auth()->user()->email_verified_at = now();
|
|
|
|
auth()->user()->save();
|
|
|
|
|
|
|
|
$cu = $this->hydrateCompanyUser();
|
|
|
|
|
|
|
|
if ($cu->count() == 0)
|
|
|
|
return response()->json(['message' => 'User found, but not attached to any companies, please see your administrator'], 400);
|
|
|
|
|
|
|
|
if (Ninja::isHosted() && !$cu->first()->is_owner && !auth()->user()->account->isEnterpriseClient())
|
|
|
|
return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403);
|
|
|
|
|
|
|
|
return $this->timeConstrainedResponse($cu);
|
2020-05-13 06:51:16 +02:00
|
|
|
}
|
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
|
|
|
|
private function hydrateCompanyUser(): Builder
|
2022-05-05 02:14:28 +02:00
|
|
|
{
|
|
|
|
|
2022-05-06 01:29:45 +02:00
|
|
|
$cu = CompanyUser::query()->where('user_id', auth()->user()->id);
|
2022-05-05 02:14:28 +02:00
|
|
|
|
2022-06-17 03:48:17 +02:00
|
|
|
if($cu->count() == 0)
|
|
|
|
return $cu;
|
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
if (CompanyUser::query()->where('user_id', auth()->user()->id)->where('company_id', auth()->user()->account->default_company_id)->exists())
|
2022-05-05 02:14:28 +02:00
|
|
|
$set_company = auth()->user()->account->default_company;
|
2022-06-11 05:31:32 +02:00
|
|
|
else {
|
2022-05-06 01:29:45 +02:00
|
|
|
$set_company = $cu->first()->company;
|
2022-05-05 02:14:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
auth()->user()->setCompany($set_company);
|
|
|
|
|
|
|
|
$this->setLoginCache(auth()->user());
|
|
|
|
|
|
|
|
$truth = app()->make(TruthSource::class);
|
|
|
|
$truth->setCompanyUser($cu->first());
|
|
|
|
$truth->setUser(auth()->user());
|
|
|
|
$truth->setCompany($set_company);
|
|
|
|
|
2022-05-06 01:29:45 +02:00
|
|
|
if($cu->count() == 0)
|
|
|
|
return $cu;
|
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
if (auth()->user()->company_users()->count() != auth()->user()->tokens()->distinct('company_id')->count()) {
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
auth()->user()->companies->each(function ($company) {
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
if (!CompanyToken::where('user_id', auth()->user()->id)->where('company_id', $company->id)->exists()) {
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-11 05:31:32 +02:00
|
|
|
CreateCompanyToken::dispatchNow($company, auth()->user(), "Google_O_Auth");
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
}
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-05-05 02:14:28 +02:00
|
|
|
});
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-05-05 02:14:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$truth->setCompanyToken(CompanyToken::where('user_id', auth()->user()->id)->where('company_id', $set_company->id)->first());
|
|
|
|
|
|
|
|
return $cu;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-06-17 03:48:17 +02:00
|
|
|
private function handleMicrosoftOauth()
|
|
|
|
{
|
|
|
|
if(request()->has('accessToken'))
|
|
|
|
$accessToken = request()->input('accessToken');
|
2022-06-22 03:47:14 +02:00
|
|
|
elseif(request()->has('access_token'))
|
|
|
|
$accessToken = request()->input('access_token');
|
2022-06-17 03:48:17 +02:00
|
|
|
else
|
|
|
|
return response()->json(['message' => 'Invalid response from oauth server'], 400);
|
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
$graph = new \Microsoft\Graph\Graph();
|
2022-06-17 03:48:17 +02:00
|
|
|
$graph->setAccessToken($accessToken);
|
|
|
|
|
|
|
|
$user = $graph->createRequest("GET", "/me")
|
2022-06-17 04:52:08 +02:00
|
|
|
->setReturnType(Model\User::class)
|
2022-06-17 03:48:17 +02:00
|
|
|
->execute();
|
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
if($user){
|
|
|
|
|
|
|
|
$account = request()->input('account');
|
2022-06-17 07:51:37 +02:00
|
|
|
$email = $user->getMail() ?: $user->getUserPrincipalName();
|
2022-06-17 04:52:08 +02:00
|
|
|
|
|
|
|
$query = [
|
2022-06-17 08:46:33 +02:00
|
|
|
'oauth_user_id' => $user->getId(),
|
2022-06-17 04:52:08 +02:00
|
|
|
'oauth_provider_id'=> 'microsoft',
|
|
|
|
];
|
|
|
|
|
|
|
|
if ($existing_user = MultiDB::hasUser($query)) {
|
|
|
|
|
|
|
|
if(!$existing_user->account)
|
|
|
|
return response()->json(['message' => 'User exists, but not attached to any companies! Orphaned user!'], 400);
|
|
|
|
|
|
|
|
return $this->existingOauthUser($existing_user);
|
|
|
|
}
|
|
|
|
|
|
|
|
//If this is a result user/email combo - lets add their OAuth details details
|
|
|
|
if($existing_login_user = MultiDB::hasUser(['email' => $email]))
|
|
|
|
{
|
|
|
|
if(!$existing_login_user->account)
|
|
|
|
return response()->json(['message' => 'User exists, but not attached to any companies! Orphaned user!'], 400);
|
|
|
|
|
|
|
|
Auth::login($existing_login_user, true);
|
|
|
|
|
2022-06-17 08:46:33 +02:00
|
|
|
return $this->existingLoginUser($user->getId(), 'microsoft');
|
2022-06-17 04:52:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Signup!
|
|
|
|
$new_account = [
|
|
|
|
'first_name' => $user->getGivenName() ?: '',
|
|
|
|
'last_name' => $user->getSurname() ?: '' ,
|
|
|
|
'password' => '',
|
|
|
|
'email' => $email,
|
2022-06-17 08:46:33 +02:00
|
|
|
'oauth_user_id' => $user->getId(),
|
2022-06-17 04:52:08 +02:00
|
|
|
'oauth_provider_id' => 'microsoft',
|
|
|
|
];
|
|
|
|
|
|
|
|
return $this->createNewAccount($new_account);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private function existingOauthUser($existing_user)
|
|
|
|
{
|
|
|
|
Auth::login($existing_user, true);
|
|
|
|
|
|
|
|
$cu = $this->hydrateCompanyUser();
|
|
|
|
|
|
|
|
if($cu->count() == 0)
|
|
|
|
return response()->json(['message' => 'User found, but not attached to any companies, please see your administrator'], 400);
|
|
|
|
|
|
|
|
if(Ninja::isHosted() && !$cu->first()->is_owner && !$existing_user->account->isEnterpriseClient())
|
|
|
|
return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403);
|
|
|
|
|
|
|
|
return $this->timeConstrainedResponse($cu);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function existingLoginUser($oauth_user_id, $provider)
|
|
|
|
{
|
|
|
|
|
|
|
|
auth()->user()->update([
|
|
|
|
'oauth_user_id' => $oauth_user_id,
|
|
|
|
'oauth_provider_id'=> $provider,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$cu = $this->hydrateCompanyUser();
|
|
|
|
|
|
|
|
if($cu->count() == 0)
|
|
|
|
return response()->json(['message' => 'User found, but not attached to any companies, please see your administrator'], 400);
|
|
|
|
|
|
|
|
if(Ninja::isHosted() && !$cu->first()->is_owner && !auth()->user()->account->isEnterpriseClient())
|
|
|
|
return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403);
|
|
|
|
|
|
|
|
return $this->timeConstrainedResponse($cu);
|
2022-06-17 03:48:17 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-13 06:51:16 +02:00
|
|
|
private function handleGoogleOauth()
|
2019-05-22 05:18:18 +02:00
|
|
|
{
|
|
|
|
$user = false;
|
|
|
|
|
2020-05-13 07:38:42 +02:00
|
|
|
$google = new Google();
|
2019-05-22 05:18:18 +02:00
|
|
|
|
2020-05-13 07:38:42 +02:00
|
|
|
$user = $google->getTokenResponse(request()->input('id_token'));
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (is_array($user)) {
|
2021-03-16 12:29:16 +01:00
|
|
|
|
2020-05-13 06:51:16 +02:00
|
|
|
$query = [
|
2020-05-13 07:40:55 +02:00
|
|
|
'oauth_user_id' => $google->harvestSubField($user),
|
2020-09-06 11:38:10 +02:00
|
|
|
'oauth_provider_id'=> 'google',
|
2020-05-13 06:51:16 +02:00
|
|
|
];
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($existing_user = MultiDB::hasUser($query)) {
|
2021-03-16 12:29:16 +01:00
|
|
|
|
2021-06-22 13:14:08 +02:00
|
|
|
if(!$existing_user->account)
|
|
|
|
return response()->json(['message' => 'User exists, but not attached to any companies! Orphaned user!'], 400);
|
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
return $this->existingOauthUser($existing_user);
|
2020-05-13 06:51:16 +02:00
|
|
|
}
|
2021-05-22 06:45:09 +02:00
|
|
|
|
|
|
|
//If this is a result user/email combo - lets add their OAuth details details
|
|
|
|
if($existing_login_user = MultiDB::hasUser(['email' => $google->harvestEmail($user)]))
|
|
|
|
{
|
2021-06-22 13:14:08 +02:00
|
|
|
if(!$existing_login_user->account)
|
|
|
|
return response()->json(['message' => 'User exists, but not attached to any companies! Orphaned user!'], 400);
|
|
|
|
|
2021-05-22 06:45:09 +02:00
|
|
|
Auth::login($existing_login_user, true);
|
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
return $this->existingLoginUser($google->harvestSubField($user), 'google');
|
2021-05-22 06:45:09 +02:00
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-05-13 08:20:05 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($user) {
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2021-05-23 23:23:30 +02:00
|
|
|
//check the user doesn't already exist in some form
|
|
|
|
if($existing_login_user = MultiDB::hasUser(['email' => $google->harvestEmail($user)]))
|
|
|
|
{
|
2021-06-22 13:14:08 +02:00
|
|
|
if(!$existing_login_user->account)
|
|
|
|
return response()->json(['message' => 'User exists, but not attached to any companies! Orphaned user!'], 400);
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2021-05-23 23:23:30 +02:00
|
|
|
Auth::login($existing_login_user, true);
|
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
return $this->existingLoginUser($google->harvestSubField($user), 'google');
|
2021-05-23 23:23:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//user not found anywhere - lets sign them up.
|
2020-05-13 07:40:55 +02:00
|
|
|
$name = OAuth::splitName($google->harvestName($user));
|
2020-05-13 06:51:16 +02:00
|
|
|
|
|
|
|
$new_account = [
|
|
|
|
'first_name' => $name[0],
|
|
|
|
'last_name' => $name[1],
|
|
|
|
'password' => '',
|
2020-05-13 07:40:55 +02:00
|
|
|
'email' => $google->harvestEmail($user),
|
|
|
|
'oauth_user_id' => $google->harvestSubField($user),
|
2020-09-06 11:38:10 +02:00
|
|
|
'oauth_provider_id' => 'google',
|
2020-05-13 06:51:16 +02:00
|
|
|
];
|
2019-05-22 05:18:18 +02:00
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
return $this->createNewAccount($new_account);
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()
|
|
|
|
->json(['message' => ctrans('texts.invalid_credentials')], 401)
|
|
|
|
->header('X-App-Version', config('ninja.app_version'))
|
|
|
|
->header('X-Api-Version', config('ninja.minimum_client_version'));
|
|
|
|
}
|
|
|
|
|
|
|
|
private function createNewAccount($new_account)
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
MultiDB::setDefaultDatabase();
|
2020-05-13 06:51:16 +02:00
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
$account = CreateAccount::dispatchNow($new_account, request()->getClientIp());
|
2022-06-17 03:48:17 +02:00
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
if(!$account instanceOf Account)
|
|
|
|
return $account;
|
2021-05-05 08:44:31 +02:00
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
Auth::login($account->default_company->owner(), true);
|
|
|
|
auth()->user()->email_verified_at = now();
|
|
|
|
auth()->user()->save();
|
2021-04-28 02:02:31 +02:00
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
$cu = $this->hydrateCompanyUser();
|
2021-12-11 11:12:48 +01:00
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
if($cu->count() == 0)
|
|
|
|
return response()->json(['message' => 'User found, but not attached to any companies, please see your administrator'], 400);
|
2021-06-14 09:04:15 +02:00
|
|
|
|
2022-06-17 04:52:08 +02:00
|
|
|
if(Ninja::isHosted() && !$cu->first()->is_owner && !auth()->user()->account->isEnterpriseClient())
|
|
|
|
return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403);
|
|
|
|
|
|
|
|
return $this->timeConstrainedResponse($cu);
|
2020-05-13 07:30:17 +02:00
|
|
|
|
2019-05-22 05:18:18 +02:00
|
|
|
}
|
2021-05-24 11:39:21 +02:00
|
|
|
|
|
|
|
public function redirectToProvider(string $provider)
|
|
|
|
{
|
2021-06-10 11:01:30 +02:00
|
|
|
|
2021-05-24 11:39:21 +02:00
|
|
|
$scopes = [];
|
2021-06-10 11:01:30 +02:00
|
|
|
|
2021-06-10 09:17:02 +02:00
|
|
|
$parameters = [];
|
|
|
|
|
2021-05-24 11:39:21 +02:00
|
|
|
if($provider == 'google'){
|
2021-06-10 11:01:30 +02:00
|
|
|
|
2021-06-10 09:17:02 +02:00
|
|
|
$scopes = ['https://www.googleapis.com/auth/gmail.send','email','profile','openid'];
|
2021-06-10 09:38:07 +02:00
|
|
|
$parameters = ['access_type' => 'offline', "prompt" => "consent select_account", 'redirect_uri' => config('ninja.app_url')."/auth/google"];
|
2021-05-24 11:39:21 +02:00
|
|
|
}
|
|
|
|
|
2022-06-17 07:42:14 +02:00
|
|
|
if($provider == 'microsoft'){
|
|
|
|
$scopes = ['email', 'Mail.ReadWrite', 'Mail.Send', 'offline_access', 'profile', 'User.Read openid'];
|
2022-06-17 07:59:47 +02:00
|
|
|
$parameters = ['response_type' => 'code', 'redirect_uri' => config('ninja.app_url')."/auth/microsoft"];
|
2022-06-17 07:42:14 +02:00
|
|
|
}
|
|
|
|
|
2021-05-24 11:39:21 +02:00
|
|
|
if (request()->has('code')) {
|
|
|
|
return $this->handleProviderCallback($provider);
|
|
|
|
} else {
|
2022-06-11 04:07:56 +02:00
|
|
|
|
2022-06-17 07:53:44 +02:00
|
|
|
if(!in_array($provider, ['google','microsoft']))
|
2022-03-13 09:48:57 +01:00
|
|
|
return abort(400, 'Invalid provider');
|
|
|
|
|
2021-06-10 09:17:02 +02:00
|
|
|
return Socialite::driver($provider)->with($parameters)->scopes($scopes)->redirect();
|
2021-05-24 11:39:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function handleProviderCallback(string $provider)
|
|
|
|
{
|
2022-06-17 07:42:14 +02:00
|
|
|
|
|
|
|
if($provider == 'microsoft')
|
|
|
|
return $this->handleMicrosoftProviderCallback();
|
|
|
|
|
2021-06-10 09:17:02 +02:00
|
|
|
$socialite_user = Socialite::driver($provider)->user();
|
2021-06-10 11:01:30 +02:00
|
|
|
|
2021-06-10 10:35:58 +02:00
|
|
|
$oauth_user_token = '';
|
|
|
|
|
|
|
|
if($socialite_user->refreshToken){
|
|
|
|
|
|
|
|
$client = new Google_Client();
|
|
|
|
$client->setClientId(config('ninja.auth.google.client_id'));
|
|
|
|
$client->setClientSecret(config('ninja.auth.google.client_secret'));
|
|
|
|
$client->fetchAccessTokenWithRefreshToken($socialite_user->refreshToken);
|
|
|
|
$oauth_user_token = $client->getAccessToken();
|
2021-06-10 11:01:30 +02:00
|
|
|
|
2021-06-10 10:35:58 +02:00
|
|
|
}
|
2021-05-24 11:39:21 +02:00
|
|
|
|
2021-06-01 07:24:47 +02:00
|
|
|
if($user = OAuth::handleAuth($socialite_user, $provider))
|
|
|
|
{
|
2021-05-24 11:39:21 +02:00
|
|
|
|
2021-06-01 09:24:51 +02:00
|
|
|
nlog('found user and updating their user record');
|
2021-06-10 07:06:28 +02:00
|
|
|
$name = OAuth::splitName($socialite_user->getName());
|
2021-05-24 11:39:21 +02:00
|
|
|
|
2021-06-01 07:24:47 +02:00
|
|
|
$update_user = [
|
|
|
|
'first_name' => $name[0],
|
|
|
|
'last_name' => $name[1],
|
|
|
|
'email' => $socialite_user->getEmail(),
|
|
|
|
'oauth_user_id' => $socialite_user->getId(),
|
2021-06-01 08:06:00 +02:00
|
|
|
'oauth_provider_id' => $provider,
|
2021-06-10 10:35:58 +02:00
|
|
|
'oauth_user_token' => $oauth_user_token,
|
2022-06-11 04:07:56 +02:00
|
|
|
'oauth_user_refresh_token' => $socialite_user->refreshToken
|
2021-06-01 07:24:47 +02:00
|
|
|
];
|
2021-05-24 11:39:21 +02:00
|
|
|
|
2021-06-01 09:24:51 +02:00
|
|
|
$user->update($update_user);
|
2021-05-24 11:39:21 +02:00
|
|
|
|
2021-06-01 09:24:51 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
nlog("user not found for oauth");
|
2021-06-01 07:24:47 +02:00
|
|
|
}
|
2021-05-24 11:39:21 +02:00
|
|
|
|
2021-06-01 09:24:51 +02:00
|
|
|
return redirect('/#/');
|
2021-05-24 11:39:21 +02:00
|
|
|
}
|
2022-06-17 07:42:14 +02:00
|
|
|
|
|
|
|
public function handleMicrosoftProviderCallback($provider = 'microsoft')
|
|
|
|
{
|
2022-06-17 07:51:37 +02:00
|
|
|
|
2022-06-17 07:42:14 +02:00
|
|
|
$socialite_user = Socialite::driver($provider)->user();
|
|
|
|
nlog($socialite_user);
|
|
|
|
|
2022-06-17 08:14:52 +02:00
|
|
|
nlog("refresh token " . $socialite_user->accessTokenResponseBody['refresh_token']);
|
|
|
|
nlog("access token " . $socialite_user->accessTokenResponseBody['access_token']);
|
|
|
|
|
|
|
|
$oauth_user_token = $socialite_user->accessTokenResponseBody['access_token'];
|
2022-06-17 07:42:14 +02:00
|
|
|
|
|
|
|
if($user = OAuth::handleAuth($socialite_user, $provider))
|
|
|
|
{
|
|
|
|
|
|
|
|
nlog('found user and updating their user record');
|
|
|
|
$name = OAuth::splitName($socialite_user->getName());
|
|
|
|
|
|
|
|
$update_user = [
|
|
|
|
'first_name' => $name[0],
|
|
|
|
'last_name' => $name[1],
|
|
|
|
'email' => $socialite_user->getEmail(),
|
|
|
|
'oauth_user_id' => $socialite_user->getId(),
|
|
|
|
'oauth_provider_id' => $provider,
|
|
|
|
'oauth_user_token' => $oauth_user_token,
|
2022-06-17 08:14:52 +02:00
|
|
|
'oauth_user_refresh_token' => $socialite_user->accessTokenResponseBody['refresh_token']
|
2022-06-17 07:42:14 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
$user->update($update_user);
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nlog("user not found for oauth");
|
|
|
|
}
|
|
|
|
|
|
|
|
return redirect('/#/');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-10-04 19:10:43 +02:00
|
|
|
}
|