当前位置: 首页>>代码示例>>PHP>>正文


PHP TokenInterface::getToken方法代码示例

本文整理汇总了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;
 }
开发者ID:treehouselabs,项目名称:keystone-bundle,代码行数:33,代码来源:AbstractTokenAuthenticator.php

示例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());
     }
 }
开发者ID:littlerobot,项目名称:raven-bundle,代码行数:60,代码来源:RavenListener.php

示例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.');
 }
开发者ID:atokovoy,项目名称:oauth-security-proxy,代码行数:23,代码来源:OAuthProvider.php

示例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());
 }
开发者ID:redelivre,项目名称:login-cidadao,代码行数:11,代码来源:ActionLogger.php


注:本文中的Symfony\Component\Security\Core\Authentication\Token\TokenInterface::getToken方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。