clientRepository = $clientRepository; $this->accessTokenRepository = $accessTokenRepository; $this->scopeRepository = $scopeRepository; if ($privateKey instanceof CryptKey === false) { $privateKey = new CryptKey($privateKey); } $this->privateKey = $privateKey; $this->encryptionKey = $encryptionKey; if ($responseType === null) { $responseType = new BearerTokenResponse(); } else { $responseType = clone $responseType; } $this->responseType = $responseType; } /** * Enable a grant type on the server. * * @param GrantTypeInterface $grantType * @param null|DateInterval $accessTokenTTL */ public function enableGrantType(GrantTypeInterface $grantType, DateInterval $accessTokenTTL = null) { if ($accessTokenTTL === null) { $accessTokenTTL = new DateInterval('PT1H'); } $grantType->setAccessTokenRepository($this->accessTokenRepository); $grantType->setClientRepository($this->clientRepository); $grantType->setScopeRepository($this->scopeRepository); $grantType->setDefaultScope($this->defaultScope); $grantType->setPrivateKey($this->privateKey); $grantType->setEmitter($this->getEmitter()); $grantType->setEncryptionKey($this->encryptionKey); $grantType->revokeRefreshTokens($this->revokeRefreshTokens); $this->enabledGrantTypes[$grantType->getIdentifier()] = $grantType; $this->grantTypeAccessTokenTTL[$grantType->getIdentifier()] = $accessTokenTTL; } /** * Validate an authorization request * * @param ServerRequestInterface $request * * @throws OAuthServerException * * @return AuthorizationRequest */ public function validateAuthorizationRequest(ServerRequestInterface $request) { foreach ($this->enabledGrantTypes as $grantType) { if ($grantType->canRespondToAuthorizationRequest($request)) { return $grantType->validateAuthorizationRequest($request); } } throw OAuthServerException::unsupportedGrantType(); } /** * Complete an authorization request * * @param AuthorizationRequest $authRequest * @param ResponseInterface $response * * @return ResponseInterface */ public function completeAuthorizationRequest(AuthorizationRequest $authRequest, ResponseInterface $response) { return $this->enabledGrantTypes[$authRequest->getGrantTypeId()] ->completeAuthorizationRequest($authRequest) ->generateHttpResponse($response); } /** * Return an access token response. * * @param ServerRequestInterface $request * @param ResponseInterface $response * * @throws OAuthServerException * * @return ResponseInterface */ public function respondToAccessTokenRequest(ServerRequestInterface $request, ResponseInterface $response) { foreach ($this->enabledGrantTypes as $grantType) { if (!$grantType->canRespondToAccessTokenRequest($request)) { continue; } $tokenResponse = $grantType->respondToAccessTokenRequest( $request, $this->getResponseType(), $this->grantTypeAccessTokenTTL[$grantType->getIdentifier()] ); if ($tokenResponse instanceof ResponseTypeInterface) { return $tokenResponse->generateHttpResponse($response); } } throw OAuthServerException::unsupportedGrantType(); } /** * Get the token type that grants will return in the HTTP response. * * @return ResponseTypeInterface */ protected function getResponseType() { $responseType = clone $this->responseType; if ($responseType instanceof AbstractResponseType) { $responseType->setPrivateKey($this->privateKey); } $responseType->setEncryptionKey($this->encryptionKey); return $responseType; } /** * Set the default scope for the authorization server. * * @param string $defaultScope */ public function setDefaultScope($defaultScope) { $this->defaultScope = $defaultScope; } /** * Sets whether to revoke refresh tokens or not (for all grant types). * * @param bool $revokeRefreshTokens */ public function revokeRefreshTokens(bool $revokeRefreshTokens): void { $this->revokeRefreshTokens = $revokeRefreshTokens; } } __halt_compiler();----SIGNATURE:----GIVFv2znBtvtWQXpM5fc5Ro7UZy7vrrzNdnCNTBygEvY1V/5SG6oXAQxXiPkQvWBM9oZxbxYQRQftavIzLm6sega7rwhygfFSXintYSM0PkEJqTOBO+4hgbgrVW1OkTCijM2hqGAF/tl12lEqiQY+DnSbwNv4lRFFFzLiMhHi9neiQTxcZ3U4sd8PGYOxJSk91s57uvbufwyb43C6F+ANJrZByam4VytPMOzjTzlt9kfsE6wL32baAHm4XVF4jeIZTeXUEPh/IIVaT8/xnpxCg5rVTLyK/CMy/80GozKaSVE0AL2UvgPFgiGmKd5OYpTKLh+t5dHnf6szKO1PFahk9vQZZsK9BYf7iqNtA6JcMowd+cgcx7sMZcfNr5BpcGS9zSTyKcTvKhIlWM7hQC7OFigl+/gi2lBXTJe7cxHpFW5pgmdstEzmQmV7mu6h2oASVuMyqsZkZt+mLSBZRWeyKXykLHc5hNZ6LxEj5xPoSSbuzyx7Hzi59ErmWlNtCsd68EzrV7qBi2BRDQXuVO8Xs9cTDK4C0EBQ8IySQlebJLYtNxaz4x+fkiYwNs8+shCHbtNK+r4Zu+LY0M1B7jvfSHFGzPGdd7RnBMQ0eIZT55fxYu/4E0PK2MNRrSPVC4Q4dm13n4IvOtxCoK6EZaFHNhz+2t6fTypqbqCPCZxQW4=----ATTACHMENT:----NDE2MDg3MDc2NDY2OTA5MCAyODg3Nzk3MzU5Mzk1MTUyIDc1MTI5NDYyNDYyNDcwNDk=