You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
3.7 KiB
PHTML

<?php
namespace App\Http\Controllers\Customer;
use App\Http\Controllers\Controller;
use App\Models\Customer;
1 year ago
use App\Models\CustomerLevel;
use App\Models\CustomerLevelHistory;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
1 year ago
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Str;
use Laravel\Socialite\Facades\Socialite;
use SocialiteProviders\Manager\Config;
class AuthController extends Controller
{
private $config;
public function __construct()
{
$this->config = new Config(
env('GOOGLE_CLIENT_ID'),
env('GOOGLE_CLIENT_SECRET'),
route('customer.login.callback_google')
);
}
public function login()
{
return inertia('Home/Auth/Login');
}
public function update(Request $request)
{
$request->validate([
1 year ago
'username' => 'required|string|alpha_dash',
'password' => 'required|string',
]);
$isAuth = Auth::guard('customer')->attempt(['username' => $request->username, 'password' => $request->password]);
if ($isAuth) {
return redirect()->route('home.index');
}
return redirect()->route('customer.login')
->with('message', ['type' => 'error', 'message' => 'invalid credentials']);
}
public function signin_google()
{
return Socialite::driver('google')
->setConfig($this->config)
->redirect();
}
public function callback_google()
{
try {
$user = Socialite::driver('google')
->setConfig($this->config)
->user();
} catch (\Exception $e) {
return redirect()->route('customer.login')
1 year ago
->with('message', ['type' => 'error', 'message' => 'Google authentication fail, please try again']);
}
$customer = Customer::where('google_id', $user->id)->first();
if ($customer == null) {
1 year ago
DB::beginTransaction();
$customer = Customer::create([
'fullname' => $user->name,
'name' => $user->nickname,
'email' => $user->email,
1 year ago
'username' => Str::slug($user->name . '_' . Str::random(5), '_'),
'google_id' => $user->id,
'google_oauth_response' => json_encode($user),
1 year ago
]);
DB::commit();
}
Auth::guard('customer')->loginUsingId($customer->id);
return redirect()->route('home.index');
}
public function register()
{
return inertia('Home/Auth/Register');
}
public function store(Request $request)
{
$request->validate([
1 year ago
'fullname' => 'required|string',
'name' => 'required|string',
'address' => 'required|string',
1 year ago
'phone' => 'required|numeric',
1 year ago
'username' => 'required|string|min:5|alpha_dash|unique:customers,username',
'password' => 'required|string|min:8|confirmed',
]);
1 year ago
DB::beginTransaction();
$customer = Customer::create([
'fullname' => $request->fullname,
'name' => $request->name,
'address' => $request->address,
'phone' => $request->phone,
'username' => $request->username,
'password' => bcrypt($request->password),
]);
1 year ago
DB::commit();
Auth::guard('customer')->loginUsingId($customer->id);
return redirect()->route('home.index');
}
public function destroy()
{
Auth::logout();
return redirect()->route('customer.login')
->with('message', ['type' => 'success', 'message' => 'you are logged out, see you next time']);
}
}