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 * @param \Psr\Http\Message\ResponseInterface $response * * @return \Psr\Http\Message\ResponseInterface * @throws \League\OAuth2\Server\Exception\OAuthServerException */ public function respondToRequest(ServerRequestInterface $request = null, ResponseInterface $response = null) { if (!$request instanceof ServerRequestInterface) { $request = ServerRequestFactory::fromGlobals(); } if (!$response instanceof ResponseInterface) { $response = new Response(); } $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 OAuthServerException::unsupportedGrantType()->generateHttpResponse($response); } return $tokenResponse->generateHttpResponse($response); } /** * PSR7 middleware callable * * @param \Psr\Http\Message\ServerRequestInterface $request * @param \Psr\Http\Message\ResponseInterface $response * * @return \Psr\Http\Message\ResponseInterface * @throws \League\OAuth2\Server\Exception\OAuthServerException */ public function __invoke(ServerRequestInterface $request, ResponseInterface $response, callable $next) { $response = $this->respondToRequest($request, $response); if (in_array($response->getStatusCode(), [400, 401, 500])) { return $response; } return $next($request, $response); } }