abstract class GenericOauth1aTypeController extends GenericOauthTypeController (View source)

Traits

Trait LoggerAwareTrait A trait used with LoggerAwareInterface

LoggerAwareTrait

Properties

protected $authenticationType from  AuthenticationTypeController
protected $app from  AuthenticationTypeController
$apiMethods from  GenericOauthTypeController
protected AbstractService $service from  GenericOauthTypeController
protected Extractor $extractor from  GenericOauthTypeController
protected TokenInterface $token from  GenericOauthTypeController
protected $username from  GenericOauthTypeController
protected $email from  GenericOauthTypeController
protected $firstName from  GenericOauthTypeController
protected $lastName from  GenericOauthTypeController
protected $fullName from  GenericOauthTypeController

Methods

string
getLoggerChannel()

Get the logger channel expected by this LoggerAwareTrait implementation The user is expected to declare this method and return a valid channel name.

view()

No description

__construct(AuthenticationType $type = null)

No description

completeAuthentication(User $u)

tasks to finalize authentication, call on login events etc.

string
getHandle()

No description

handle_error($error = false)

No description

showError($error = null)

No description

markError($error)

No description

handle_success($message = false)

No description

showSuccess($message = null)

No description

markSuccess($message)

No description

User|null
authenticate()

Empty because we don't use the authenticate entry point.

string
buildHash(User $u)

Create a cookie hash to identify the user indefinitely.

bool
verifyHash(User $u, string $hash)

Hash authentication disabled for oauth.

TokenInterface
getToken()

No description

setToken(TokenInterface $token)

No description

null|User
attemptAuthentication()

We now check if the user allows access to email address as twitter does not provide this and users can deny access to on facebook).

handle_register($token = null)

No description

ExtractorInterface
getExtractor($new = false)

No description

form()

No description

AbstractService
getService()

No description

isValid()

No description

bool|string
getBoundUserID($binding)

No description

bool
supportsRegistration()

Whether or not we will attempt to register the user.

bool
registrationGroupID()

Whether or not we will attempt to register the user.

createUser()

No description

getEmail()

No description

getFirstName()

No description

getLastName()

No description

getFullName()

No description

getUsername()

No description

int|null
bindUser(User $user, $binding)

No description

int|null
bindUserID($user_id, $binding)

No description

string|null
getBindingForUser(User|UserInfo|User|int $user)

Get the binding associated to a specific user.

getUniqueId()

No description

handle_attach_attempt()

No description

handle_attach_callback()

No description

deauthenticate(User $u)

Method used to clean up.

bool
isAuthenticated(User $u)

Test user authentication status.

Details

abstract string getLoggerChannel()

Get the logger channel expected by this LoggerAwareTrait implementation The user is expected to declare this method and return a valid channel name.

Return Value

string

One of \Concrete\Core\Logging\Channels::CHANNEL_*

abstract getAuthenticationTypeIconHTML()

No description

view()

No description

__construct(AuthenticationType $type = null)

No description

Parameters

AuthenticationType $type

This type may be null only for access points that do not rely on the type.

getAuthenticationType()

No description

completeAuthentication(User $u)

tasks to finalize authentication, call on login events etc.

Parameters

User $u

abstract string getHandle()

No description

Return Value

string

array getAdditionalRequestParameters()

No description

Return Value

array

handle_error($error = false)

No description

Parameters

$error

showError($error = null)

No description

Parameters

$error

markError($error)

No description

Parameters

$error

handle_success($message = false)

No description

Parameters

$message

showSuccess($message = null)

No description

Parameters

$message

markSuccess($message)

No description

Parameters

$message

User|null authenticate()

Empty because we don't use the authenticate entry point.

Return Value

User|null

string buildHash(User $u)

Create a cookie hash to identify the user indefinitely.

Parameters

User $u

Return Value

string

Unique hash to be used to verify the users identity

bool verifyHash(User $u, string $hash)

Hash authentication disabled for oauth.

Parameters

User $u

User object requesting verification.

string $hash

Return Value

bool

returns true if the hash is valid, false if not

TokenInterface getToken()

No description

Return Value

TokenInterface

setToken(TokenInterface $token)

No description

Parameters

TokenInterface $token

protected null|User attemptAuthentication()

We now check if the user allows access to email address as twitter does not provide this and users can deny access to on facebook).

Return Value

null|User

Exceptions

Exception

handle_register($token = null)

No description

Parameters

$token

ExtractorInterface getExtractor($new = false)

No description

Parameters

$new

Return Value

ExtractorInterface

Exceptions

UndefinedExtractorException

form()

No description

abstract AbstractService getService()

No description

Return Value

AbstractService

protected isValid()

No description

bool|string getBoundUserID($binding)

No description

Parameters

$binding

Return Value

bool|string

Exceptions

DBALException

abstract bool supportsRegistration()

Whether or not we will attempt to register the user.

Return Value

bool

abstract bool registrationGroupID()

Whether or not we will attempt to register the user.

Return Value

bool

protected createUser()

No description

supportsEmail()

No description

supportsUniqueId()

No description

supportsVerifiedEmail()

No description

isEmailVerified()

No description

getEmail()

No description

supportsFullName()

No description

supportsFirstName()

No description

supportsLastName()

No description

getFirstName()

No description

getLastName()

No description

getFullName()

No description

supportsUsername()

No description

getUsername()

No description

int|null bindUser(User $user, $binding)

No description

Parameters

User $user
$binding

Return Value

int|null

int|null bindUserID($user_id, $binding)

No description

Parameters

$user_id
$binding

Return Value

int|null

string|null getBindingForUser(User|UserInfo|User|int $user)

Get the binding associated to a specific user.

Parameters

User|UserInfo|User|int $user

Return Value

string|null

getUniqueId()

No description

handle_authentication_attempt()

No description

handle_authentication_callback()

No description

handle_attach_attempt()

No description

handle_attach_callback()

No description

handle_detach_attempt()

No description

deauthenticate(User $u)

Method used to clean up.

This method must be defined, if it isn't needed, leave it blank.

Parameters

User $u

bool isAuthenticated(User $u)

Test user authentication status.

Parameters

User $u

Return Value

bool

Returns true if user is authenticated, false if not