You are here

public function GoogleAuthController::getSdk in Open Social 8

Same name and namespace in other branches
  1. 8.9 modules/custom/social_auth_google/src/Controller/GoogleAuthController.php \Drupal\social_auth_google\Controller\GoogleAuthController::getSdk()
  2. 8.2 modules/custom/social_auth_google/src/Controller/GoogleAuthController.php \Drupal\social_auth_google\Controller\GoogleAuthController::getSdk()
  3. 8.3 modules/custom/social_auth_google/src/Controller/GoogleAuthController.php \Drupal\social_auth_google\Controller\GoogleAuthController::getSdk()
  4. 8.4 modules/custom/social_auth_google/src/Controller/GoogleAuthController.php \Drupal\social_auth_google\Controller\GoogleAuthController::getSdk()
  5. 8.5 modules/custom/social_auth_google/src/Controller/GoogleAuthController.php \Drupal\social_auth_google\Controller\GoogleAuthController::getSdk()
  6. 8.6 modules/custom/social_auth_google/src/Controller/GoogleAuthController.php \Drupal\social_auth_google\Controller\GoogleAuthController::getSdk()
  7. 8.7 modules/custom/social_auth_google/src/Controller/GoogleAuthController.php \Drupal\social_auth_google\Controller\GoogleAuthController::getSdk()
  8. 8.8 modules/custom/social_auth_google/src/Controller/GoogleAuthController.php \Drupal\social_auth_google\Controller\GoogleAuthController::getSdk()

Returns the SDK instance or RedirectResponse when error occurred.

Parameters

string $type: Type of action, "login" or "register".

Return value

mixed|\Symfony\Component\HttpFoundation\RedirectResponse Returns an instance of the SDK or a Redirect Response.

3 calls to GoogleAuthController::getSdk()
GoogleAuthController::getRedirectResponse in modules/custom/social_auth_google/src/Controller/GoogleAuthController.php
Returns the redirect response.
GoogleAuthController::userLoginCallback in modules/custom/social_auth_google/src/Controller/GoogleAuthController.php
Authorizes the user after redirect from Google.
GoogleAuthController::userRegisterCallback in modules/custom/social_auth_google/src/Controller/GoogleAuthController.php
Registers the new account after redirect from Google.

File

modules/custom/social_auth_google/src/Controller/GoogleAuthController.php, line 201

Class

GoogleAuthController
Class GoogleAuthController.

Namespace

Drupal\social_auth_google\Controller

Code

public function getSdk($type) {
  $network_manager = $this->networkManager
    ->createInstance('social_auth_google');
  if (!$network_manager
    ->isActive()) {
    drupal_set_message($this
      ->t('@network is disabled. Contact the site administrator', [
      '@network' => $this
        ->t('Google'),
    ]), 'error');
    return $this
      ->redirect('user.' . $type);
  }
  if (!($sdk = $network_manager
    ->getSdk())) {
    drupal_set_message($this
      ->t('@network Auth not configured properly. Contact the site administrator.', [
      '@network' => $this
        ->t('Google'),
    ]), 'error');
    return $this
      ->redirect('user.' . $type);
  }
  return $sdk;
}