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:----ugaMD/z4uzjA3L2j9ARFV+3ziUd1+Fsm+9EVHl6lbkGf27stxzz/XLWY053Nol8tiZGKoJd/8SHmc411vb5s8y7ShTPv5e86ukxAKj7zpe6NiHHtbm4gQmLeCLnRflvue/bYZtnSVg+dxvAmGkXsKm99or624zVyEXKH3+vjTGEpB140Uv/nsa69H8LlS7ipVou72ZKqmH15CSCIPhLo57ygBCzrcEKbVKAGmdqLrZTMJ/zryoFuAbuQsVVMvcEedyZUnnEkZYnW8EDWL4kf/x2ExixzLHGwnWGNRn717UEp/G7n0+fwTAt+TkWZAc0UVGnZqkW6sl329uP0NprhC9MZQtA5pV5iPaUP4tKQ7ph34cscejJoaPZ5jAbQ9q9hBgf3SlZdcD+lfPKWVy7bxhLj2ohVtapGcp3aO0rC+/pmD2Q6dfbt2wa/2fD3vNcCuUbEfs2kpBjklzdmG0VCl8mZJgRzoRJYC6y6vksPbWgb2bZpD7RhwmhVl8bYGtzJF28Qc2w2QJItaaDGRhJBn+T1/PBeuebMvqtFsrVrbEMOYngbrCyVXoGFuguEIbE/NXnrUHGLsmZrpolvd8JoNbvEGCZoTxSj5lO3S7vbNpeBSFot58ZloCkpZA0bEYgUuFEbjR9zyWCdFp+S+Jbw9FB4ZIH+dpz9KKH9CBecJuQ=----ATTACHMENT:----Nzc0MzA1Nzk1MjA5MTU5NSA0ODIwODUyMDkzMjk1MDk0IDMwMDEyMDgzNTc1NjQxNDk=