middleware('guest')->except('logout'); } /** * Redirect the user to the GitHub authentication page. * * @return \Illuminate\Http\Response */ public function redirectToProvider() { return Socialite::driver('google')->redirect(); } /** * Obtain the user information from GitHub. * * @return \Illuminate\Http\Response */ public function handleProviderCallback() { // $user = Socialite::driver('google')->user(); try { $user = Socialite::driver('google')->user(); } catch (Exception $e) { return redirect('/login'); } // only allow people with @company.com to login if(explode("@", $user->email)[1] !== 'upr.edu'){ return redirect()->to('/'); } // check if they're an existing user $existingUser = User::where('email', $user->email)->first(); if($existingUser){ // log them in auth()->login($existingUser, true); } else if (User::all()->count() === 0) { // create a new user $newUser = new User; $newUser->name = $user->name; $newUser->email = $user->email; $newUser->google_id = $user->id; $newUser->save(); auth()->login($newUser, true); } return redirect()->to('/'); } public function logout(Request $request) { auth()->logout(); return redirect('/'); } }