interface JanrainCaptureApiInterface in Janrain Registration 8
The interface for implementing Janrain Capture authentication.
Hierarchy
- interface \Drupal\janrain_capture\JanrainCaptureApiInterface
Expanded class hierarchy of JanrainCaptureApiInterface
All classes that implement JanrainCaptureApiInterface
File
- src/
JanrainCaptureApiInterface.php, line 12
Namespace
Drupal\janrain_captureView source
interface JanrainCaptureApiInterface {
/**
* The grant type for refreshing the OAuth token.
*/
public const GRANT_TYPE_REFRESH_TOKEN = 'refresh_token';
/**
* The grant type for requesting the OAuth token.
*/
public const GRANT_TYPE_AUTHORIZATION_CODE = 'authorization_code';
/**
* Returns requested access token and set it to the current session.
*
* @param string $auth_code
* The code of authentication.
* @param string $redirect_uri
* The URI to redirect to after successful call.
*
* @return \Drupal\user\UserInterface
* The Drupal account of authenticated user.
*
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Drupal\janrain_capture\Exception\JsonParseError
* @throws \Drupal\janrain_capture\Exception\JanrainApiCallError
* @throws \Drupal\Core\Entity\EntityStorageException
*/
public function authenticate(string $auth_code, string $redirect_uri) : UserInterface;
/**
* Returns an access token from the database and prolongs it automatically.
*
* IMPORTANT: this method requires a user to be authenticated in Drupal.
*
* @param bool $force_refresh
* An indicator to forcibly refresh an access token.
*
* @return \Drupal\janrain_capture\Authentication\AccessToken
* The access token.
*
* @throws \InvalidArgumentException
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Drupal\janrain_capture\Exception\JsonParseError
* @throws \Drupal\janrain_capture\Exception\JanrainApiCallError
* @throws \Drupal\janrain_capture\Exception\JanrainUnauthorizedError
*/
public function getAccessToken(bool $force_refresh = FALSE) : AccessToken;
/**
* Returns the user's profile data.
*
* @return \Drupal\janrain_capture\User\JanrainUserProfile
* The user's profile data.
*
* @throws \InvalidArgumentException
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Drupal\janrain_capture\Exception\JsonParseError
* @throws \Drupal\janrain_capture\Exception\JanrainApiCallError
* @throws \Drupal\janrain_capture\Exception\JanrainUnauthorizedError
*/
public function getUserProfile() : JanrainUserProfile;
/**
* Returns a state whether a user has a Janrain account.
*
* @param \Drupal\user\UserInterface $account
* The Drupal user.
*
* @return bool
* The state.
*/
public function isJanrainAccount(UserInterface $account) : bool;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
JanrainCaptureApiInterface:: |
public | function | Returns requested access token and set it to the current session. | 1 |
JanrainCaptureApiInterface:: |
public | function | Returns an access token from the database and prolongs it automatically. | 1 |
JanrainCaptureApiInterface:: |
public | function | Returns the user's profile data. | 1 |
JanrainCaptureApiInterface:: |
public | constant | The grant type for requesting the OAuth token. | |
JanrainCaptureApiInterface:: |
public | constant | The grant type for refreshing the OAuth token. | |
JanrainCaptureApiInterface:: |
public | function | Returns a state whether a user has a Janrain account. | 1 |