LinkedInAuthManager.php in Social Auth LinkedIn 3.x
File
src/LinkedInAuthManager.php
View source
<?php
namespace Drupal\social_auth_linkedin;
use Drupal\Core\Config\ConfigFactory;
use Drupal\Core\Logger\LoggerChannelFactoryInterface;
use Drupal\social_auth\AuthManager\OAuth2Manager;
use League\OAuth2\Client\Provider\Exception\IdentityProviderException;
use Symfony\Component\HttpFoundation\RequestStack;
class LinkedInAuthManager extends OAuth2Manager {
public function __construct(ConfigFactory $configFactory, LoggerChannelFactoryInterface $logger_factory, RequestStack $request_stack) {
parent::__construct($configFactory
->get('social_auth_linkedin.settings'), $logger_factory, $this->request = $request_stack
->getCurrentRequest());
}
public function authenticate() {
try {
$this
->setAccessToken($this->client
->getAccessToken('authorization_code', [
'code' => $this->request->query
->get('code'),
]));
} catch (IdentityProviderException $e) {
$this->loggerFactory
->get('social_auth_linkedin')
->error('There was an error during authentication. Exception: ' . $e
->getMessage());
}
}
public function getUserInfo() {
if (!$this->user) {
$this->user = $this->client
->getResourceOwner($this
->getAccessToken());
}
return $this->user;
}
public function getAuthorizationUrl() {
$scopes = [
'r_liteprofile',
'r_emailaddress',
];
$extra_scopes = $this
->getScopes();
if ($extra_scopes) {
$scopes = array_merge($scopes, explode(',', $extra_scopes));
}
return $this->client
->getAuthorizationUrl([
'scope' => $scopes,
]);
}
public function requestEndPoint($method, $path, $domain = NULL, array $options = []) {
if (!$domain) {
$domain = 'https://api.linkedin.com';
}
$url = $domain . $path;
$request = $this->client
->getAuthenticatedRequest($method, $url, $this
->getAccessToken(), $options);
try {
return $this->client
->getParsedResponse($request);
} catch (IdentityProviderException $e) {
$this->loggerFactory
->get('social_auth_linkedin')
->error('There was an error when requesting ' . $url . '. Exception: ' . $e
->getMessage());
}
return NULL;
}
public function getState() {
return $this->client
->getState();
}
public function getEmail() {
return $this->client
->getResourceOwnerEmail($this
->getAccessToken());
}
}