本文整理匯總了PHP中Symfony\Component\Security\Core\Authentication\Token\TokenInterface::getToken方法的典型用法代碼示例。如果您正苦於以下問題:PHP TokenInterface::getToken方法的具體用法?PHP TokenInterface::getToken怎麽用?PHP TokenInterface::getToken使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Symfony\Component\Security\Core\Authentication\Token\TokenInterface
的用法示例。
在下文中一共展示了TokenInterface::getToken方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: authenticateToken
/**
* @inheritdoc
*/
public function authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey)
{
/* @var PreAuthenticatedToken $token */
$authToken = $token->getToken();
if (empty($authToken)) {
$authToken = 'NONE_PROVIDED';
}
$tokenEntity = $this->tokenManager->findById($authToken);
if (!$tokenEntity) {
throw new BadCredentialsException('Bad token');
}
if (true === $this->tokenManager->isExpired($tokenEntity)) {
throw new TokenExpiredException('Token expired');
}
$user = $this->retrieveUser($userProvider, $tokenEntity);
if (!$user instanceof UserInterface) {
throw new AuthenticationServiceException('retrieveUser() must return a UserInterface.');
}
try {
$this->userChecker->checkPreAuth($user);
$this->checkAuthentication($user, $tokenEntity, $token);
$this->userChecker->checkPostAuth($user);
} catch (BadCredentialsException $e) {
throw new BadCredentialsException('Bad credentials', 0, $e);
}
$authenticatedToken = new PreAuthenticatedToken($token->getToken(), $providerKey, $user->getRoles());
$authenticatedToken->setUser($user);
$authenticatedToken->setAttributes($token->getAttributes());
return $authenticatedToken;
}
示例2: handle
/**
* {@inheritdoc}
*/
public function handle(GetResponseEvent $event)
{
$request = $event->getRequest();
$session = $request->getSession();
if ($session->has('wls_response')) {
// There's a Raven response to process
$token = RavenUserToken::factory($session->get('wls_response'));
$session->remove('wls_response');
if (null !== $this->logger) {
$this->logger->debug('Found WLS response', array('CRSid' => $token->getUsername()));
}
if (rawurldecode($token->getAttribute('url')) !== $request->getUri()) {
throw new RavenException('URL mismatch');
}
switch ($token->getAttribute('status')) {
case 200:
// Successful authentication
break;
case 410:
throw new AuthenticationCancelledException();
break;
default:
switch ($token->getAttribute('status')) {
case 510:
$message = 'No mutually acceptable authentication types available';
break;
case 520:
$message = 'Unsupported protocol version';
break;
case 530:
$message = 'General request parameter error';
break;
case 540:
$message = 'Interaction would be required';
break;
case 560:
$message = 'WAA not authorised';
break;
case 570:
$message = 'Authentication declined';
break;
default:
$message = null;
break;
}
throw new RavenException($message, $token->getAttribute('status'));
break;
}
$token = $this->authenticationManager->authenticate($token);
$this->tokens->setToken($token);
$this->dispatcher->dispatch(RavenEvents::LOGIN, new InteractiveLoginEvent($request, $token));
} elseif ($this->tokens->getToken() != null && $this->tokens->getToken()->getUser() instanceof UserInterface) {
// The user is already logged in
} else {
$this->requestAuthentication($event, $request->getUri());
}
}
示例3: authenticate
/**
* @param TokenInterface $token
*
* @return OAuthToken|TokenInterface
* @throws \Symfony\Component\Security\Core\Exception\AuthenticationException
*/
public function authenticate(TokenInterface $token)
{
try {
$tokenString = $token->getToken();
$user = $this->userProvider->loadUserByToken($tokenString);
$token = new OAuthToken($user->getRoles());
$token->setToken($tokenString);
$token->setUser($user);
$token->setAuthenticated(true);
return $token;
} catch (\Exception $e) {
if ($this->logger) {
$this->logger->alert('Can not authenticate user', array('message' => $e->getMessage()));
}
}
throw new AuthenticationException('The OAuth authentication failed.');
}
示例4: logAccessToken
private function logAccessToken(ActionLog $log, TokenInterface $token)
{
if (!$token instanceof OAuthToken) {
return;
}
$accessTokenRepo = $this->em->getRepository('LoginCidadaoOAuthBundle:AccessToken');
$accessToken = $accessTokenRepo->findOneBy(array('token' => $token->getToken()));
$log->setAccessToken($token->getToken());
$log->setClientId($accessToken->getClient()->getId());
$log->setUserId($accessToken->getUser()->getId());
}