class LinkedInAuthController in Social Auth LinkedIn 8.2
Same name and namespace in other branches
- 8 src/Controller/LinkedinAuthController.php \Drupal\social_auth_linkedin\Controller\LinkedinAuthController
- 3.x src/Controller/LinkedInAuthController.php \Drupal\social_auth_linkedin\Controller\LinkedInAuthController
Returns responses for Social Auth LinkedIn routes.
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\social_auth\Controller\OAuth2ControllerBase
- class \Drupal\social_auth_linkedin\Controller\LinkedInAuthController
- class \Drupal\social_auth\Controller\OAuth2ControllerBase
Expanded class hierarchy of LinkedInAuthController
File
- src/
Controller/ LinkedInAuthController.php, line 18
Namespace
Drupal\social_auth_linkedin\ControllerView source
class LinkedInAuthController extends OAuth2ControllerBase {
/**
* The LinkedIn authentication manager.
*
* @var \Drupal\social_auth_linkedin\LinkedInAuthManager
*/
protected $providerManager;
/**
* LinkedInAuthController constructor.
*
* @param \Drupal\Core\Messenger\MessengerInterface $messenger
* The messenger service.
* @param \Drupal\social_api\Plugin\NetworkManager $network_manager
* Used to get an instance of social_auth_linkedin network plugin.
* @param \Drupal\social_auth\User\UserAuthenticator $user_authenticator
* Manages user login/registration.
* @param \Drupal\social_auth_linkedin\LinkedInAuthManager $linkedIn_manager
* Used to manage authentication methods.
* @param \Symfony\Component\HttpFoundation\RequestStack $request
* Used to access GET parameters.
* @param \Drupal\social_auth\SocialAuthDataHandler $data_handler
* The Social Auth data handler.
* @param \Drupal\Core\Render\RendererInterface $renderer
* Used to handle metadata for redirection to authentication URL.
*/
public function __construct(MessengerInterface $messenger, NetworkManager $network_manager, UserAuthenticator $user_authenticator, LinkedInAuthManager $linkedIn_manager, RequestStack $request, SocialAuthDataHandler $data_handler, RendererInterface $renderer) {
parent::__construct('Social Auth LinkedIn', 'social_auth_linkedin', $messenger, $network_manager, $user_authenticator, $linkedIn_manager, $request, $data_handler, $renderer);
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('messenger'), $container
->get('plugin.network.manager'), $container
->get('social_auth.user_authenticator'), $container
->get('social_auth_linkedin.manager'), $container
->get('request_stack'), $container
->get('social_auth.data_handler'), $container
->get('renderer'));
}
/**
* Response for path 'user/login/linkedin/callback'.
*
* LinkedIn returns the user here after user has authenticated.
*/
public function callback() {
// Checks if there was an authentication error.
$redirect = $this
->checkAuthError();
if ($redirect) {
return $redirect;
}
/* @var \League\OAuth2\Client\Provider\LinkedInResourceOwner|null $profile */
$profile = $this
->processCallback();
// If authentication was successful.
if ($profile !== NULL) {
// Gets (or not) extra initial data.
$data = $this->userAuthenticator
->checkProviderIsAssociated($profile
->getId()) ? NULL : $this->providerManager
->getExtraDetails();
$name = $profile
->getFirstName() . ' ' . $profile
->getLastName();
$email = $this->providerManager
->getEmail();
// If user information could be retrieved.
return $this->userAuthenticator
->authenticateUser($name, $email, $profile
->getId(), $this->providerManager
->getAccessToken(), $profile
->getImageUrl(), $data);
}
return $this
->redirect('user.login');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ControllerBase:: |
protected | property | The configuration factory. | |
ControllerBase:: |
protected | property | The current user service. | 1 |
ControllerBase:: |
protected | property | The entity form builder. | |
ControllerBase:: |
protected | property | The entity manager. | |
ControllerBase:: |
protected | property | The entity type manager. | |
ControllerBase:: |
protected | property | The form builder. | 2 |
ControllerBase:: |
protected | property | The key-value storage. | 1 |
ControllerBase:: |
protected | property | The language manager. | 1 |
ControllerBase:: |
protected | property | The module handler. | 2 |
ControllerBase:: |
protected | property | The state service. | |
ControllerBase:: |
protected | function | Returns the requested cache bin. | |
ControllerBase:: |
protected | function | Retrieves a configuration object. | |
ControllerBase:: |
private | function | Returns the service container. | |
ControllerBase:: |
protected | function | Returns the current user. | 1 |
ControllerBase:: |
protected | function | Retrieves the entity form builder. | |
ControllerBase:: |
protected | function | Retrieves the entity manager service. | |
ControllerBase:: |
protected | function | Retrieves the entity type manager. | |
ControllerBase:: |
protected | function | Returns the form builder service. | 2 |
ControllerBase:: |
protected | function | Returns a key/value storage collection. | 1 |
ControllerBase:: |
protected | function | Returns the language manager service. | 1 |
ControllerBase:: |
protected | function | Returns the module handler. | 2 |
ControllerBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
ControllerBase:: |
protected | function | Returns the state storage service. | |
LinkedInAuthController:: |
protected | property |
The LinkedIn authentication manager. Overrides OAuth2ControllerBase:: |
|
LinkedInAuthController:: |
public | function | Response for path 'user/login/linkedin/callback'. | |
LinkedInAuthController:: |
public static | function |
Instantiates a new instance of this class. Overrides ControllerBase:: |
|
LinkedInAuthController:: |
public | function |
LinkedInAuthController constructor. Overrides OAuth2ControllerBase:: |
|
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
OAuth2ControllerBase:: |
protected | property | The Social Auth data handler. | |
OAuth2ControllerBase:: |
protected | property |
The Messenger service. Overrides MessengerTrait:: |
|
OAuth2ControllerBase:: |
protected | property | The module name. | |
OAuth2ControllerBase:: |
protected | property | The network plugin manager. | |
OAuth2ControllerBase:: |
protected | property | The implement plugin id. | |
OAuth2ControllerBase:: |
protected | property | The renderer service. | |
OAuth2ControllerBase:: |
protected | property | Used to access GET parameters. | |
OAuth2ControllerBase:: |
protected | property | The Social Auth user authenticator.. | |
OAuth2ControllerBase:: |
protected | function | Checks if there was an error during authentication with provider. | |
OAuth2ControllerBase:: |
public | function | Process implementer callback path. | |
OAuth2ControllerBase:: |
public | function | Response for implementer authentication url. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |