| 
									
										
										
										
											2018-09-25 19:30:50 +08:00
										 |  |  | <?php namespace BookStack\Auth\Access; | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-25 23:58:03 +08:00
										 |  |  | use BookStack\Auth\SocialAccount; | 
					
						
							|  |  |  | use BookStack\Auth\UserRepo; | 
					
						
							| 
									
										
										
										
											2015-09-11 02:31:09 +08:00
										 |  |  | use BookStack\Exceptions\SocialDriverNotConfigured; | 
					
						
							| 
									
										
										
										
											2018-09-25 23:58:03 +08:00
										 |  |  | use BookStack\Exceptions\SocialSignInAccountNotUsed; | 
					
						
							| 
									
										
										
										
											2015-09-11 02:31:09 +08:00
										 |  |  | use BookStack\Exceptions\UserRegistrationException; | 
					
						
							| 
									
										
										
										
											2019-09-14 06:58:40 +08:00
										 |  |  | use Illuminate\Support\Str; | 
					
						
							| 
									
										
										
										
											2018-09-25 23:58:03 +08:00
										 |  |  | use Laravel\Socialite\Contracts\Factory as Socialite; | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  | use Laravel\Socialite\Contracts\Provider; | 
					
						
							| 
									
										
										
										
											2018-09-22 01:05:06 +08:00
										 |  |  | use Laravel\Socialite\Contracts\User as SocialUser; | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  | use Symfony\Component\HttpFoundation\RedirectResponse; | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class SocialAuthService | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     protected $userRepo; | 
					
						
							|  |  |  |     protected $socialite; | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |     protected $socialAccount; | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-28 15:01:36 +08:00
										 |  |  |     protected $validSocialDrivers = ['google', 'github', 'facebook', 'slack', 'twitter', 'azure', 'okta', 'gitlab', 'twitch', 'discord']; | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * SocialAuthService constructor. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |     public function __construct(UserRepo $userRepo, Socialite $socialite, SocialAccount $socialAccount) | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $this->userRepo = $userRepo; | 
					
						
							|  |  |  |         $this->socialite = $socialite; | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |         $this->socialAccount = $socialAccount; | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 19:14:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Start the social login path. | 
					
						
							|  |  |  |      * @throws SocialDriverNotConfigured | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function startLogIn(string $socialDriver): RedirectResponse | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $driver = $this->validateDriver($socialDriver); | 
					
						
							| 
									
										
										
										
											2018-11-10 22:52:43 +08:00
										 |  |  |         return $this->getSocialDriver($driver)->redirect(); | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2015-09-06 19:14:32 +08:00
										 |  |  |      * Start the social registration process | 
					
						
							|  |  |  |      * @throws SocialDriverNotConfigured | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function startRegister(string $socialDriver): RedirectResponse | 
					
						
							| 
									
										
										
										
											2015-09-06 19:14:32 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $driver = $this->validateDriver($socialDriver); | 
					
						
							| 
									
										
										
										
											2018-11-10 22:52:43 +08:00
										 |  |  |         return $this->getSocialDriver($driver)->redirect(); | 
					
						
							| 
									
										
										
										
											2015-09-06 19:14:32 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle the social registration process on callback. | 
					
						
							|  |  |  |      * @throws UserRegistrationException | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function handleRegistrationCallback(string $socialDriver, SocialUser $socialUser): SocialUser | 
					
						
							| 
									
										
										
										
											2015-09-06 19:14:32 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         // Check social account has not already been used
 | 
					
						
							|  |  |  |         if ($this->socialAccount->where('driver_id', '=', $socialUser->getId())->exists()) { | 
					
						
							| 
									
										
										
										
											2016-12-05 00:51:39 +08:00
										 |  |  |             throw new UserRegistrationException(trans('errors.social_account_in_use', ['socialAccount'=>$socialDriver]), '/login'); | 
					
						
							| 
									
										
										
										
											2015-09-06 19:14:32 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-10 03:23:35 +08:00
										 |  |  |         if ($this->userRepo->getByEmail($socialUser->getEmail())) { | 
					
						
							| 
									
										
										
										
											2015-09-06 19:14:32 +08:00
										 |  |  |             $email = $socialUser->getEmail(); | 
					
						
							| 
									
										
										
										
											2020-02-03 01:31:00 +08:00
										 |  |  |             throw new UserRegistrationException(trans('errors.error_user_exists_different_creds', ['email' => $email]), '/login'); | 
					
						
							| 
									
										
										
										
											2015-09-06 19:14:32 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $socialUser; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-22 01:05:06 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get the social user details via the social driver. | 
					
						
							|  |  |  |      * @throws SocialDriverNotConfigured | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function getSocialUser(string $socialDriver): SocialUser | 
					
						
							| 
									
										
										
										
											2018-09-22 01:05:06 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $driver = $this->validateDriver($socialDriver); | 
					
						
							|  |  |  |         return $this->socialite->driver($driver)->user(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 19:14:32 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Handle the login process on a oAuth callback. | 
					
						
							| 
									
										
										
										
											2018-09-22 01:05:06 +08:00
										 |  |  |      * @throws SocialSignInAccountNotUsed | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function handleLoginCallback(string $socialDriver, SocialUser $socialUser) | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |         $socialId = $socialUser->getId(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Get any attached social accounts or users
 | 
					
						
							|  |  |  |         $socialAccount = $this->socialAccount->where('driver_id', '=', $socialId)->first(); | 
					
						
							| 
									
										
										
										
											2015-09-05 19:29:47 +08:00
										 |  |  |         $isLoggedIn = auth()->check(); | 
					
						
							| 
									
										
										
										
											2016-09-29 19:43:46 +08:00
										 |  |  |         $currentUser = user(); | 
					
						
							| 
									
										
										
										
											2019-09-14 06:58:40 +08:00
										 |  |  |         $titleCaseDriver = Str::title($socialDriver); | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 00:42:05 +08:00
										 |  |  |         // When a user is not logged in and a matching SocialAccount exists,
 | 
					
						
							|  |  |  |         // Simply log the user into the application.
 | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |         if (!$isLoggedIn && $socialAccount !== null) { | 
					
						
							| 
									
										
										
										
											2017-09-15 03:20:47 +08:00
										 |  |  |             auth()->login($socialAccount->user); | 
					
						
							|  |  |  |             return redirect()->intended('/'); | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // When a user is logged in but the social account does not exist,
 | 
					
						
							|  |  |  |         // Create the social account and attach it to the user & redirect to the profile page.
 | 
					
						
							|  |  |  |         if ($isLoggedIn && $socialAccount === null) { | 
					
						
							|  |  |  |             $this->fillSocialAccount($socialDriver, $socialUser); | 
					
						
							|  |  |  |             $currentUser->socialAccounts()->save($this->socialAccount); | 
					
						
							| 
									
										
										
										
											2019-09-14 06:58:40 +08:00
										 |  |  |             session()->flash('success', trans('settings.users_social_connected', ['socialAccount' => $titleCaseDriver])); | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |             return redirect($currentUser->getEditUrl()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // When a user is logged in and the social account exists and is already linked to the current user.
 | 
					
						
							|  |  |  |         if ($isLoggedIn && $socialAccount !== null && $socialAccount->user->id === $currentUser->id) { | 
					
						
							| 
									
										
										
										
											2019-09-14 06:58:40 +08:00
										 |  |  |             session()->flash('error', trans('errors.social_account_existing', ['socialAccount' => $titleCaseDriver])); | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |             return redirect($currentUser->getEditUrl()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // When a user is logged in, A social account exists but the users do not match.
 | 
					
						
							|  |  |  |         if ($isLoggedIn && $socialAccount !== null && $socialAccount->user->id != $currentUser->id) { | 
					
						
							| 
									
										
										
										
											2019-09-14 06:58:40 +08:00
										 |  |  |             session()->flash('error', trans('errors.social_account_already_used_existing', ['socialAccount' => $titleCaseDriver])); | 
					
						
							| 
									
										
										
										
											2015-09-06 00:42:05 +08:00
										 |  |  |             return redirect($currentUser->getEditUrl()); | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 00:42:05 +08:00
										 |  |  |         // Otherwise let the user know this social account is not used by anyone.
 | 
					
						
							| 
									
										
										
										
											2019-09-14 06:58:40 +08:00
										 |  |  |         $message = trans('errors.social_account_not_used', ['socialAccount' => $titleCaseDriver]); | 
					
						
							| 
									
										
										
										
											2020-02-03 01:31:00 +08:00
										 |  |  |         if (setting('registration-enabled') && config('auth.method') !== 'ldap' && config('auth.method') !== 'saml2') { | 
					
						
							| 
									
										
										
										
											2019-09-14 06:58:40 +08:00
										 |  |  |             $message .= trans('errors.social_account_register_instructions', ['socialAccount' => $titleCaseDriver]); | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-08-14 19:29:35 +08:00
										 |  |  |          | 
					
						
							| 
									
										
										
										
											2018-09-22 01:05:06 +08:00
										 |  |  |         throw new SocialSignInAccountNotUsed($message, '/login'); | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Ensure the social driver is correct and supported. | 
					
						
							|  |  |  |      * @throws SocialDriverNotConfigured | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     protected function validateDriver(string $socialDriver): string | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $driver = trim(strtolower($socialDriver)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |         if (!in_array($driver, $this->validSocialDrivers)) { | 
					
						
							|  |  |  |             abort(404, trans('errors.social_driver_not_found')); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |         if (!$this->checkDriverConfigured($driver)) { | 
					
						
							| 
									
										
										
										
											2019-09-14 06:58:40 +08:00
										 |  |  |             throw new SocialDriverNotConfigured(trans('errors.social_driver_not_configured', ['socialAccount' => Str::title($socialDriver)])); | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return $driver; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Check a social driver has been configured correctly. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     protected function checkDriverConfigured(string $driver): bool | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-01-10 03:23:35 +08:00
										 |  |  |         $lowerName = strtolower($driver); | 
					
						
							|  |  |  |         $configPrefix = 'services.' . $lowerName . '.'; | 
					
						
							|  |  |  |         $config = [config($configPrefix . 'client_id'), config($configPrefix . 'client_secret'), config('services.callback_url')]; | 
					
						
							|  |  |  |         return !in_array(false, $config) && !in_array(null, $config); | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Gets the names of the active social drivers. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function getActiveDrivers(): array | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $activeDrivers = []; | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-05 23:28:53 +08:00
										 |  |  |         foreach ($this->validSocialDrivers as $driverKey) { | 
					
						
							|  |  |  |             if ($this->checkDriverConfigured($driverKey)) { | 
					
						
							|  |  |  |                 $activeDrivers[$driverKey] = $this->getDriverName($driverKey); | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 00:50:52 +08:00
										 |  |  |         return $activeDrivers; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-05 23:28:53 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get the presentational name for a driver. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function getDriverName(string $driver): string | 
					
						
							| 
									
										
										
										
											2017-02-05 23:28:53 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         return config('services.' . strtolower($driver) . '.name'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2018-09-22 01:05:06 +08:00
										 |  |  |      * Check if the current config for the given driver allows auto-registration. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function driverAutoRegisterEnabled(string $driver): bool | 
					
						
							| 
									
										
										
										
											2018-09-22 01:05:06 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         return config('services.' . strtolower($driver) . '.auto_register') === true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Check if the current config for the given driver allow email address auto-confirmation. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function driverAutoConfirmEmailEnabled(string $driver): bool | 
					
						
							| 
									
										
										
										
											2018-09-22 01:05:06 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         return config('services.' . strtolower($driver) . '.auto_confirm') === true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |      * Fill and return a SocialAccount from the given driver name and SocialUser. | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function fillSocialAccount(string $socialDriver, SocialUser $socialUser): SocialAccount | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $this->socialAccount->fill([ | 
					
						
							|  |  |  |             'driver'    => $socialDriver, | 
					
						
							|  |  |  |             'driver_id' => $socialUser->getId(), | 
					
						
							|  |  |  |             'avatar'    => $socialUser->getAvatar() | 
					
						
							|  |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2015-09-06 19:14:32 +08:00
										 |  |  |         return $this->socialAccount; | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Detach a social account from a user. | 
					
						
							|  |  |  |      * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function detachSocialAccount(string $socialDriver) | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-09-29 19:43:46 +08:00
										 |  |  |         user()->socialAccounts()->where('driver', '=', $socialDriver)->delete(); | 
					
						
							| 
									
										
										
										
											2015-09-05 03:40:36 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-11-05 02:40:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Provide redirect options per service for the Laravel Socialite driver | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-26 22:42:50 +08:00
										 |  |  |     public function getSocialDriver(string $driverName): Provider | 
					
						
							| 
									
										
										
										
											2018-11-05 02:40:06 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-11-10 22:52:43 +08:00
										 |  |  |         $driver = $this->socialite->driver($driverName); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($driverName === 'google' && config('services.google.select_account')) { | 
					
						
							|  |  |  |             $driver->with(['prompt' => 'select_account']); | 
					
						
							| 
									
										
										
										
											2018-11-05 02:40:06 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-02-12 22:03:55 +08:00
										 |  |  |         if ($driverName === 'azure') { | 
					
						
							|  |  |  |             $driver->with(['resource' => 'https://graph.windows.net']); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-11-05 02:40:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-10 22:52:43 +08:00
										 |  |  |         return $driver; | 
					
						
							| 
									
										
										
										
											2018-11-05 02:40:06 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  | } |