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:----QM3x29AQTW1oOtAg6iZcr7ymNm6Z17E3+dqRs/0d9CHzULtjh7UTE2UaAmr9JYHIvDSirVb7VF0X+3lS69/ZVfaFvH3n9JGnGOWnRyFgcZpW86MhyTkBJrC58zhLS1czU9gt32GEBAlGdGexGqzCzQCxJHPas3tWYNT8uj4w/0UQJO2eHDrExPuKWu2bv9xDgj9fwwSdDGIwIb5qEfsiBuxi6W8AdjzbKZi/toKX96XcdZ6VO/ZY8edqE/xDCXdrPmPSgcyd+V+Rvdxy5RvEBuQMg7znKkyWUw/57/OyTZpV763V+lMShqLeoi1LV5x/hd2cUChGd2/CC35uK6zhlbT9oZK12CwvhEhCTFF+YTIdqgtcU2gnVOwfygfKGRvU97e+lHOmsf/EGiJzi31sDDn9vM/aA8J4kUau2N6CNWxQAe0H0L/BWiwopDYsOjkgSpYdkXjCdFTfyoUT5L4NerDznRsX5EXrgEHcffWNgrNRhruWR1mu+6rcE30ebnGlCeNqaEJWJYB3ALWZs80rWNr7e4fg9gbKSbd99m6ImQtdfj1RMZvNbsUzzxZFKysy0/+mDZOKdvuoPJWzk9b171kaWZXSYjSn2Aro9wTDcQkm4Juewmxn0sfsr/VSCdZvTNNBmEtuN7hQVJjDBKgovEObsM2KFFexFIWjGl6OU+Q=----ATTACHMENT:----NTY2NzkyMTM5MjU0ODY3NiA0ODYwNjM3MzQ5NjMxNDYxIDk3MjM3OTQwNTMyMTQ5NTc=