setDefaultResponseType(new BearerTokenResponse($pathToPrivateKey)); $this->setDefaultAccessTokenTTL(new DateInterval('PT01H')); // default token TTL of 1 hour } /** * Set the default token type that grants will return * * @param ResponseTypeInterface $defaultTokenType */ public function setDefaultResponseType(ResponseTypeInterface $defaultTokenType) { $this->defaultResponseType = $defaultTokenType; } /** * Set the delimiter string used to separate scopes in a request * * @param string $scopeDelimiterString */ public function setScopeDelimiterString($scopeDelimiterString) { $this->scopeDelimiterString = $scopeDelimiterString; } /** * Set the default TTL of access tokens * * @param DateInterval $defaultAccessTokenTTL */ public function setDefaultAccessTokenTTL(DateInterval $defaultAccessTokenTTL) { $this->defaultAccessTokenTTL = $defaultAccessTokenTTL; } /** * Enable a grant type on the server * * @param \League\OAuth2\Server\Grant\GrantTypeInterface $grantType * @param ResponseTypeInterface $responseType * @param DateInterval $accessTokenTTL */ public function enableGrantType( GrantTypeInterface $grantType, ResponseTypeInterface $responseType = null, DateInterval $accessTokenTTL = null ) { $grantType->setEmitter($this->getEmitter()); $this->enabledGrantTypes[$grantType->getIdentifier()] = $grantType; // Set grant response type if ($responseType instanceof ResponseTypeInterface) { $this->grantResponseTypes[$grantType->getIdentifier()] = $responseType; } else { $this->grantResponseTypes[$grantType->getIdentifier()] = $this->defaultResponseType; } // Set grant access token TTL if ($accessTokenTTL instanceof DateInterval) { $this->grantTypeAccessTokenTTL[$grantType->getIdentifier()] = $accessTokenTTL; } else { $this->grantTypeAccessTokenTTL[$grantType->getIdentifier()] = $this->defaultAccessTokenTTL; } } /** * Return an access token response * * @param \Psr\Http\Message\ServerRequestInterface $request * * @return \League\OAuth2\Server\ResponseTypes\ResponseTypeInterface * @throws \League\OAuth2\Server\Exception\OAuthServerException */ public function respondToRequest(ServerRequestInterface $request = null) { if ($request === null) { $request = ServerRequestFactory::fromGlobals(); } $tokenResponse = null; foreach ($this->enabledGrantTypes as $grantType) { if ($grantType->canRespondToRequest($request)) { $tokenResponse = $grantType->respondToRequest( $request, $this->grantResponseTypes[$grantType->getIdentifier()], $this->grantTypeAccessTokenTTL[$grantType->getIdentifier()], $this->scopeDelimiterString ); } } if ($tokenResponse instanceof ResponseTypeInterface) { return $tokenResponse->generateHttpResponse(); } else { $response = OAuthServerException::unsupportedGrantType()->generateHttpResponse(); } return $response; } }