You are here

class LinkedInAuth in Social Auth LinkedIn 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/Network/LinkedinAuth.php \Drupal\social_auth_linkedin\Plugin\Network\LinkedinAuth
  2. 3.x src/Plugin/Network/LinkedInAuth.php \Drupal\social_auth_linkedin\Plugin\Network\LinkedInAuth

Defines a Network Plugin for Social Auth LinkedIn.

@package Drupal\social_auth_linkedin\Plugin\Network

Plugin annotation


@Network(
  id = "social_auth_linkedin",
  social_network = "LinkedIn",
  type = "social_auth",
  handlers = {
    "settings": {
      "class": "\Drupal\social_auth_linkedin\Settings\LinkedInAuthSettings",
      "config_id": "social_auth_linkedin.settings"
    }
  }
)

Hierarchy

Expanded class hierarchy of LinkedInAuth

File

src/Plugin/Network/LinkedInAuth.php, line 28

Namespace

Drupal\social_auth_linkedin\Plugin\Network
View source
class LinkedInAuth extends NetworkBase implements LinkedInAuthInterface {

  /**
   * Sets the underlying SDK library.
   *
   * @return \League\OAuth2\Client\Provider\LinkedIn|false
   *   The initialized 3rd party library instance.
   *
   * @throws \Drupal\social_api\SocialApiException
   *   If the SDK library does not exist.
   */
  protected function initSdk() {
    $class_name = '\\League\\OAuth2\\Client\\Provider\\LinkedIn';
    if (!class_exists($class_name)) {
      throw new SocialApiException(sprintf('The LinkedIn library for PHP League OAuth2 not found. Class: %s.', $class_name));
    }

    /* @var \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettings $settings */
    $settings = $this->settings;
    if ($this
      ->validateConfig($settings)) {

      // All these settings are mandatory.
      $league_settings = [
        'clientId' => $settings
          ->getClientId(),
        'clientSecret' => $settings
          ->getClientSecret(),
        'redirectUri' => Url::fromRoute('social_auth_linkedin.callback')
          ->setAbsolute()
          ->toString(),
      ];

      // Proxy configuration data for outward proxy.
      $proxyUrl = $this->siteSettings
        ->get('http_client_config')['proxy']['http'];
      if ($proxyUrl) {
        $league_settings['proxy'] = $proxyUrl;
      }
      return new LinkedIn($league_settings);
    }
    return FALSE;
  }

  /**
   * Checks that module is configured.
   *
   * @param \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettings $settings
   *   The LinkedIn auth settings.
   *
   * @return bool
   *   True if module is configured.
   *   False otherwise.
   */
  protected function validateConfig(LinkedInAuthSettings $settings) {
    $client_id = $settings
      ->getClientId();
    $client_secret = $settings
      ->getClientSecret();
    if (!$client_id || !$client_secret) {
      $this->loggerFactory
        ->get('social_auth_linkedin')
        ->error('Define Client ID and Client Secret in module settings.');
      return FALSE;
    }
    return TRUE;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
LinkedInAuth::initSdk protected function Sets the underlying SDK library.
LinkedInAuth::validateConfig protected function Checks that module is configured.