setCurrentCompanyId($user->companies()->first()->account->default_company_id); } /** * Login via API. * * @param Request $request The request * * @return Response|User Process user login. * * @throws \Illuminate\Validation\ValidationException * @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", * @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"), * @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( * response="default", * description="Unexpected Error", * @OA\JsonContent(ref="#/components/schemas/Error"), * ), * ) */ public function apiLogin(LoginRequest $request) { $this->forced_includes = ['company_users']; $this->validateLogin($request); if ($this->hasTooManyLoginAttempts($request)) { $this->fireLockoutEvent($request); return response() ->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')); } if ($this->attemptLogin($request)) { LightLogs::create(new LoginSuccess()) ->increment() ->queue(); $user = $this->guard()->user(); //2FA if($user->google_2fa_secret && $request->has('one_time_password')) { $google2fa = new Google2FA(); if(strlen($request->input('one_time_password')) == 0 || !$google2fa->verifyKey(decrypt($user->google_2fa_secret), $request->input('one_time_password'))) { 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')); } } elseif($user->google_2fa_secret && !$request->has('one_time_password')) { 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')); } /* 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(); } $user->setCompany($user->account->default_company); $this->setLoginCache($user); $cu = CompanyUser::query() ->where('user_id', auth()->user()->id); if(!$cu->exists()) return response()->json(['message' => 'User not linked to any companies'], 403); /* Ensure the user has a valid token */ if($user->company_users()->count() != $user->tokens()->count()) { $user->companies->each(function($company) use($user, $request){ if(!CompanyToken::where('user_id', $user->id)->where('company_id', $company->id)->exists()){ CreateCompanyToken::dispatchNow($company, $user, $request->server('HTTP_USER_AGENT')); } }); } /*On the hosted platform, only owners can login for free/pro accounts*/ if(Ninja::isHosted() && !$cu->first()->is_owner && !$user->account->isEnterpriseClient()) return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403); event(new UserLoggedIn($user, $user->account->default_company, Ninja::eventVars($user->id))); return $this->timeConstrainedResponse($cu); } else { LightLogs::create(new LoginFailure()) ->increment() ->queue(); // SystemLogger::dispatch( // json_encode(['ip' => request()->getClientIp()]), // SystemLog::CATEGORY_SECURITY, // SystemLog::EVENT_USER, // SystemLog::TYPE_LOGIN_FAILURE, // null, // Company::first(), // ); $this->incrementLoginAttempts($request); 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')); } } /** * Refreshes the data feed with the current Company User. * * @param Request $request * @return CompanyUser Refresh Feed. * * * @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", * @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"), * @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( * response="default", * description="Unexpected Error", * @OA\JsonContent(ref="#/components/schemas/Error"), * ), * ) */ public function refresh(Request $request) { $company_token = CompanyToken::whereRaw('BINARY `token`= ?', [$request->header('X-API-TOKEN')])->first(); $cu = CompanyUser::query() ->where('user_id', $company_token->user_id); $cu->first()->account->companies->each(function ($company) use($cu, $request){ if($company->tokens()->where('is_system', true)->count() == 0) { CreateCompanyToken::dispatchNow($company, $cu->first()->user, $request->server('HTTP_USER_AGENT')); } }); if($request->has('current_company') && $request->input('current_company') == 'true') $cu->where("company_id", $company_token->company_id); if(Ninja::isHosted() && !$cu->first()->is_owner && !$cu->first()->user->account->isEnterpriseClient()) return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403); return $this->refreshResponse($cu); } /** * A client side authentication has taken place. * 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. * * This can be extended to a create route also - need to pass a ?create query parameter and * then process the signup * * return User $user */ public function oauthApiLogin() { if (request()->input('provider') == 'google') { return $this->handleGoogleOauth(); } return response() ->json(['message' => 'Provider not supported'], 400) ->header('X-App-Version', config('ninja.app_version')) ->header('X-Api-Version', config('ninja.minimum_client_version')); } private function handleGoogleOauth() { $user = false; $google = new Google(); $user = $google->getTokenResponse(request()->input('id_token')); if (is_array($user)) { // $query = [ 'oauth_user_id' => $google->harvestSubField($user), 'oauth_provider_id'=> 'google', ]; 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); Auth::login($existing_user, true); $existing_user->setCompany($existing_user->account->default_company); $this->setLoginCache($existing_user); $cu = CompanyUser::query() ->where('user_id', auth()->user()->id); // $cu->first()->account->companies->each(function ($company) use($cu){ // if($company->tokens()->where('is_system', true)->count() == 0) // { // CreateCompanyToken::dispatchNow($company, $cu->first()->user, request()->server('HTTP_USER_AGENT')); // } // }); if($existing_user->company_users()->count() != $existing_user->tokens()->count()) { $existing_user->companies->each(function($company) use($existing_user){ if(!CompanyToken::where('user_id', $existing_user->id)->where('company_id', $company->id)->exists()){ CreateCompanyToken::dispatchNow($company, $existing_user, "Google_O_Auth"); } }); } 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); } //If this is a result user/email combo - lets add their OAuth details details if($existing_login_user = MultiDB::hasUser(['email' => $google->harvestEmail($user)])) { 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); $existing_login_user->setCompany($existing_login_user->account->default_company); $this->setLoginCache($existing_login_user); auth()->user()->update([ 'oauth_user_id' => $google->harvestSubField($user), 'oauth_provider_id'=> 'google', ]); $cu = CompanyUser::query() ->where('user_id', auth()->user()->id); // $cu->first()->account->companies->each(function ($company) use($cu){ // if($company->tokens()->where('is_system', true)->count() == 0) // { // CreateCompanyToken::dispatchNow($company, $cu->first()->user, request()->server('HTTP_USER_AGENT')); // } // }); if($existing_login_user->company_users()->count() != $existing_login_user->tokens()->count()) { $existing_login_user->companies->each(function($company) use($existing_login_user){ if(!CompanyToken::where('user_id', $existing_login_user->id)->where('company_id', $company->id)->exists()){ CreateCompanyToken::dispatchNow($company, $existing_login_user, "Google_O_Auth"); } }); } if(Ninja::isHosted() && !$cu->first()->is_owner && !$existing_login_user->account->isEnterpriseClient()) return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403); return $this->timeConstrainedResponse($cu); } } if ($user) { //check the user doesn't already exist in some form if($existing_login_user = MultiDB::hasUser(['email' => $google->harvestEmail($user)])) { 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); $existing_login_user->setCompany($existing_login_user->account->default_company); $this->setLoginCache($existing_login_user); auth()->user()->update([ 'oauth_user_id' => $google->harvestSubField($user), 'oauth_provider_id'=> 'google', ]); $cu = CompanyUser::query() ->where('user_id', auth()->user()->id); // $cu->first()->account->companies->each(function ($company) use($cu){ // if($company->tokens()->where('is_system', true)->count() == 0) // { // CreateCompanyToken::dispatchNow($company, $cu->first()->user, request()->server('HTTP_USER_AGENT')); // } // }); if($existing_login_user->company_users()->count() != $existing_login_user->tokens()->count()) { $existing_login_user->companies->each(function($company) use($existing_login_user){ if(!CompanyToken::where('user_id', $existing_login_user->id)->where('company_id', $company->id)->exists()){ CreateCompanyToken::dispatchNow($company, $existing_login_user, "Google_O_Auth"); } }); } if(Ninja::isHosted() && !$cu->first()->is_owner && !$existing_login_user->account->isEnterpriseClient()) return response()->json(['message' => 'Pro / Free accounts only the owner can log in. Please upgrade'], 403); return $this->timeConstrainedResponse($cu); } //user not found anywhere - lets sign them up. $name = OAuth::splitName($google->harvestName($user)); $new_account = [ 'first_name' => $name[0], 'last_name' => $name[1], 'password' => '', 'email' => $google->harvestEmail($user), 'oauth_user_id' => $google->harvestSubField($user), // 'oauth_user_token' => $token, // 'oauth_user_refresh_token' => $refresh_token, 'oauth_provider_id' => 'google', ]; MultiDB::setDefaultDatabase(); $account = CreateAccount::dispatchNow($new_account, request()->getClientIp()); Auth::login($account->default_company->owner(), true); auth()->user()->email_verified_at = now(); auth()->user()->save(); auth()->user()->setCompany(auth()->user()->account->default_company); $this->setLoginCache(auth()->user()); $cu = CompanyUser::whereUserId(auth()->user()->id); // $cu->first()->account->companies->each(function ($company) use($cu){ // if($company->tokens()->where('is_system', true)->count() == 0) // { // CreateCompanyToken::dispatchNow($company, $cu->first()->user, request()->server('HTTP_USER_AGENT')); // } // }); if(auth()->user()->company_users()->count() != auth()->user()->tokens()->count()) { auth()->user()->companies->each(function($company) { if(!CompanyToken::where('user_id', auth()->user()->id)->where('company_id', $company->id)->exists()){ CreateCompanyToken::dispatchNow($company, auth()->user(), "Google_O_Auth"); } }); } 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); } 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')); } public function redirectToProvider(string $provider) { $scopes = []; $parameters = []; if($provider == 'google'){ $scopes = ['https://www.googleapis.com/auth/gmail.send','email','profile','openid']; $parameters = ['access_type' => 'offline', "prompt" => "consent select_account", 'redirect_uri' => config('ninja.app_url')."/auth/google"]; } if (request()->has('code')) { return $this->handleProviderCallback($provider); } else { return Socialite::driver($provider)->with($parameters)->scopes($scopes)->redirect(); } } public function handleProviderCallback(string $provider) { $socialite_user = Socialite::driver($provider)->user(); $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(); } 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, 'oauth_user_refresh_token' => $socialite_user->refreshToken ]; $user->update($update_user); } else { nlog("user not found for oauth"); } return redirect('/#/'); } }