validateLogin($request); if ($this->hasTooManyLoginAttempts($request)) { $this->fireLockoutEvent($request); return response()->json(['message' => 'Too many login attempts, you are being throttled']); } if ($this->attemptLogin($request)) { return $this->itemResponse($this->guard()->user()); } else { $this->incrementLoginAttempts($request); return response()->json(['message' => ctrans('texts.invalid_credentials')]); } } /** * Redirect the user to the provider authentication page. * * @param string $provider * @return void */ public function redirectToProvider(string $provider) { //'https://www.googleapis.com/auth/gmail.send','email','profile','openid' $scopes = []; if ($provider == 'google') { $scopes = ['https://www.googleapis.com/auth/gmail.send', 'email', 'profile', 'openid']; } if (request()->has('code')) { return $this->handleProviderCallback($provider); } else { return Socialite::driver($provider)->scopes($scopes)->redirect(); } } public function redirectToProviderAndCreate(string $provider) { $redirect_url = config('services.'.$provider.'.redirect').'/create'; if (request()->has('code')) { return $this->handleProviderCallbackAndCreate($provider); } else { return Socialite::driver($provider)->redirectUrl($redirect_url)->redirect(); } } /** * 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() { $user = false; $oauth = new OAuth(); $user = $oauth->getProvider(request()->input('provider'))->getTokenResponse(request()->input('token')); if ($user) { return $this->itemResponse($user); } else { return $this->errorResponse(['message' => 'Invalid credentials'], 401); } } }