73 lines
1.9 KiB
PHP
73 lines
1.9 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Webkul\SocialLogin\Http\Controllers;
|
||
|
|
|
||
|
|
use Illuminate\Routing\Controller;
|
||
|
|
use Illuminate\Foundation\Bus\DispatchesJobs;
|
||
|
|
use Illuminate\Foundation\Validation\ValidatesRequests;
|
||
|
|
use Laravel\Socialite\Facades\Socialite;
|
||
|
|
use Webkul\SocialLogin\Repositories\CustomerSocialAccountRepository;
|
||
|
|
|
||
|
|
class LoginController extends Controller
|
||
|
|
{
|
||
|
|
use DispatchesJobs, ValidatesRequests;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Contains route related configuration
|
||
|
|
*
|
||
|
|
* @var array
|
||
|
|
*/
|
||
|
|
protected $_config;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* CustomerSocialAccountRepository
|
||
|
|
*
|
||
|
|
* @var \Webkul\SocialLogin\Repositories\CustomerSocialAccountRepository
|
||
|
|
*/
|
||
|
|
protected $customerSocialAccountRepository;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create a new controller instance.
|
||
|
|
*
|
||
|
|
* @param \Webkul\SocialLogin\Repositories\CustomerSocialAccountRepository $customerSocialAccountRepository
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function __construct(CustomerSocialAccountRepository $customerSocialAccountRepository)
|
||
|
|
{
|
||
|
|
$this->customerSocialAccountRepository = $customerSocialAccountRepository;
|
||
|
|
|
||
|
|
$this->_config = request('_config');
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Redirects to the social provider
|
||
|
|
*
|
||
|
|
* @param string $provider
|
||
|
|
* @return \Illuminate\Http\Response
|
||
|
|
*/
|
||
|
|
public function redirectToProvider($provider)
|
||
|
|
{
|
||
|
|
return Socialite::driver($provider)->redirect();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Handles callback
|
||
|
|
*
|
||
|
|
* @param string $provider
|
||
|
|
* @return \Illuminate\Http\Response
|
||
|
|
*/
|
||
|
|
public function handleProviderCallback($provider)
|
||
|
|
{
|
||
|
|
try {
|
||
|
|
$user = Socialite::driver($provider)->user();
|
||
|
|
} catch (\Exception $e) {
|
||
|
|
return redirect()->route('customer.session.index');
|
||
|
|
}
|
||
|
|
|
||
|
|
$customer = $this->customerSocialAccountRepository->findOrCreateCustomer($user, $provider);
|
||
|
|
|
||
|
|
auth()->guard('customer')->login($customer, true);
|
||
|
|
|
||
|
|
return redirect()->intended(route($this->_config['redirect']));
|
||
|
|
}
|
||
|
|
}
|