コード例 #1
0
 /**
  * Complete the auth code grant
  *
  * @return array
  *
  * @throws
  */
 public function completeFlow(ClientEntity $client)
 {
     // Validate the auth code
     $authCode = $this->server->getRequestHandler()->getParam('code');
     if (is_null($authCode)) {
         throw new Exception\InvalidRequestException('code');
     }
     $code = $this->server->getAuthCodeStorage()->get($authCode);
     if ($code instanceof AuthCodeEntity === false) {
         throw new Exception\InvalidRequestException('code');
     }
     // Ensure the auth code hasn't expired
     if ($code->isExpired() === true) {
         throw new Exception\InvalidRequestException('code');
     }
     // Check redirect URI presented matches redirect URI originally used in authorize request
     if ($code->getRedirectUri() !== $client->getRedirectUri()) {
         throw new Exception\InvalidRequestException('redirect_uri');
     }
     $session = $code->getSession();
     $session->associateClient($client);
     $authCodeScopes = $code->getScopes();
     // Generate the access token
     $accessToken = new AccessTokenEntity($this->server);
     $accessToken->setId();
     $accessToken->setExpireTime($this->getAccessTokenTTL() + time());
     foreach ($authCodeScopes as $authCodeScope) {
         $session->associateScope($authCodeScope);
     }
     foreach ($session->getScopes() as $scope) {
         $accessToken->associateScope($scope);
     }
     $this->server->getTokenType()->setSession($session);
     $this->server->getTokenType()->setParam('access_token', $accessToken->getId());
     $this->server->getTokenType()->setParam('expires_in', $this->getAccessTokenTTL());
     // Associate a refresh token if set
     if ($this->server->hasGrantType('refresh_token')) {
         $refreshToken = new RefreshTokenEntity($this->server);
         $refreshToken->setId();
         $refreshToken->setExpireTime($this->server->getGrantType('refresh_token')->getRefreshTokenTTL() + time());
         $this->server->getTokenType()->setParam('refresh_token', $refreshToken->getId());
     }
     // Expire the auth code
     $code->expire();
     // Save all the things
     $accessToken->setSession($session);
     $accessToken->save();
     if (isset($refreshToken) && $this->server->hasGrantType('refresh_token')) {
         $refreshToken->setAccessToken($accessToken);
         $refreshToken->save();
     }
     return $this->server->getTokenType()->generateResponse();
 }
コード例 #2
0
 /**
  * Given a list of scopes, validate them and return an array of Scope entities
  *
  * @param string                                    $scopeParam  A string of scopes (e.g. "profile email birthday")
  * @param \OAuth2\Server\Entity\ClientEntity $client      Client entity
  * @param string|null                               $redirectUri The redirect URI to return the user to
  *
  * @return \OAuth2\Server\Entity\ScopeEntity[]
  *
  * @throws \OAuth2\Server\Exception\InvalidScopeException If scope is invalid, or no scopes passed when required
  * @throws
  */
 public function validateScopes($scopeParam = '', ClientEntity $client, $redirectUri = null)
 {
     $scopesList = explode($this->server->getScopeDelimiter(), $scopeParam);
     for ($i = 0; $i < count($scopesList); $i++) {
         $scopesList[$i] = trim($scopesList[$i]);
         if ($scopesList[$i] === '') {
             unset($scopesList[$i]);
             // Remove any junk scopes
         }
     }
     if ($this->server->scopeParamRequired() === true && $this->server->getDefaultScope() === null && count($scopesList) === 0) {
         throw new Exception\InvalidRequestException('scope');
     } elseif (count($scopesList) === 0 && $this->server->getDefaultScope() !== null) {
         if (is_array($this->server->getDefaultScope())) {
             $scopesList = $this->server->getDefaultScope();
         } else {
             $scopesList = [0 => $this->server->getDefaultScope()];
         }
     }
     $scopes = [];
     foreach ($scopesList as $scopeItem) {
         $scope = $this->server->getScopeStorage()->get($scopeItem, $this->getIdentifier(), $client->getId());
         if ($scope instanceof ScopeEntity === false) {
             throw new Exception\InvalidScopeException($scopeItem, $redirectUri);
         }
         $scopes[$scope->getId()] = $scope;
     }
     return $scopes;
 }