42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Laravel\Socialite\Facades\Socialite;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Str;
|
|
|
|
class GoogleController extends Controller
|
|
{
|
|
public function redirectToGoogle()
|
|
{
|
|
return Socialite::driver('google')->redirect();
|
|
}
|
|
|
|
public function handleGoogleCallback()
|
|
{
|
|
try {
|
|
$googleUser = Socialite::driver('google')->stateless()->user();
|
|
|
|
$user = User::where('email', $googleUser->getEmail())->first();
|
|
|
|
if (!$user) {
|
|
// Buat user baru jika belum ada
|
|
$user = User::create([
|
|
'name' => $googleUser->getName(),
|
|
'email' => $googleUser->getEmail(),
|
|
'password' => bcrypt(Str::random(16)), // random password
|
|
]);
|
|
}
|
|
|
|
Auth::login($user);
|
|
|
|
return redirect()->intended('/dashboard'); // arahkan setelah login
|
|
} catch (\Exception $e) {
|
|
return redirect()->route('login')->with('error', 'Gagal login dengan Google.');
|
|
}
|
|
}
|
|
}
|