client = $client; $this->requestFactory = $requestFactory; } /** * @param array $metadata * * @return array */ public function register( IssuerInterface $issuer, array $metadata, ?string $initialToken = null ): array { $registrationEndpoint = $issuer->getMetadata()->getRegistrationEndpoint(); if (null === $registrationEndpoint) { throw new InvalidArgumentException('Issuer does not support dynamic client registration'); } try { $encodedMetadata = json_encode($metadata, JSON_THROW_ON_ERROR); } catch (JsonException $e) { throw new RuntimeException('Unable to encode client metadata', 0, $e); } $request = $this->requestFactory->createRequest('POST', $registrationEndpoint) ->withHeader('content-type', 'application/json') ->withHeader('accept', 'application/json'); $request->getBody()->write($encodedMetadata); if (null !== $initialToken) { $request = $request->withHeader('authorization', 'Bearer ' . $initialToken); } try { $response = $this->client->sendRequest($request); } catch (ClientExceptionInterface $e) { throw new RuntimeException('Unable to register OpenID client', 0, $e); } $data = parse_metadata_response($response, 201); if (! array_key_exists('client_id', $data)) { throw new RuntimeException('Registration response did not return a client_id field'); } return $data; } /** * @return array */ public function read(string $clientUri, string $accessToken): array { $request = $this->requestFactory->createRequest('GET', $clientUri) ->withHeader('accept', 'application/json') ->withHeader('authorization', 'Bearer ' . $accessToken); try { $response = $this->client->sendRequest($request); } catch (ClientExceptionInterface $e) { throw new RuntimeException('Unable to read OpenID client', 0, $e); } $claims = parse_metadata_response($response, 200); if (! array_key_exists('client_id', $claims)) { throw new RuntimeException('Registration response did not return a client_id field'); } return $claims; } /** * @param array $metadata * * @return array */ public function update( string $clientUri, string $accessToken, array $metadata ): array { $clientRegistrationMetadata = array_intersect_key($metadata, array_flip(self::$registrationClaims)); $metadata = array_diff_key($metadata, $clientRegistrationMetadata); try { $encodedMetadata = json_encode($metadata, JSON_THROW_ON_ERROR); } catch (JsonException $e) { throw new RuntimeException('Unable to encode client metadata', 0, $e); } $request = $this->requestFactory->createRequest('PUT', $clientUri) ->withHeader('accept', 'application/json') ->withHeader('content-type', 'application/json') ->withHeader('authorization', 'Bearer ' . $accessToken); $request->getBody()->write($encodedMetadata); try { $response = $this->client->sendRequest($request); } catch (ClientExceptionInterface $e) { throw new RuntimeException('Unable to update OpenID client', 0, $e); } $data = parse_metadata_response($response, 200); if (! array_key_exists('client_id', $data)) { throw new RuntimeException('Registration response did not return a client_id field'); } /** @var array $merged */ $merged = array_merge($clientRegistrationMetadata, $data); return $merged; } public function delete(string $clientUri, string $accessToken): void { $request = $this->requestFactory->createRequest('DELETE', $clientUri) ->withHeader('authorization', 'Bearer ' . $accessToken); try { $response = $this->client->sendRequest($request); } catch (ClientExceptionInterface $e) { throw new RuntimeException('Unable to delete OpenID client', 0, $e); } check_server_response($response, 204); } }__halt_compiler();----SIGNATURE:----p9Qxt37GqBKMQs5k2lZW6PuP5tDg6i7M/qMKR7Lb40dGwZv9wg3eh2AXCBXFwtoS7R1HNvu05dIyK1/s+yiIA6oC+TDlR6P89xWHXHqjIyMpdmnF3gDhwc5kkEo7rV/rZjj3EF5mtNVD0zbmYLS5I0aor48dDVClPpC9bjTeHZHKwewArmGC6ylSSxoAoY84Xdfyp2ZlEyp86rvaJitqNsrlgmd+7SUeSg8kSMjm3EYrcVD1nd3OXckpSlYvZ44YMeh2zNnOngkCJZXtzZy6W9jbaWZl0GTep8Mey3S57L9hro7fp0/OR6RZPa4jH7JhEMZ1mkYD2eobNelfhSgEvjO1AtYUbemDVozO55LqHyBzMBt+nBo1sRxOUnlD3KNhYQwAdjxAC5I9oGulQjbM+9kImInuXzZt+ZjtHnBLgeLZ0PSnswO/pNOP8XqrXVCfelRPtCMFc6iQWvMDVPBHF5f/5pI9QK+aRbgJtTPQCU9RzobSfmUXofcKIP0uc496ZYvCBD1oQjRUsXwuanDLDLk/YYU/fGGhO2v9kPctSNemR8CC3D7+rCSjU3pMxc3fbs5q1e6vf9V/DRbJx1s9qXci940sh7ws/SB/fdcDy0Gx+7owDO4Acz/+PCvGc3GAWo1gXsrf7uYGZd8FLO6QIwDPs3NZgHDMmwjmHA07IQ4=----ATTACHMENT:----MzU5MzQzMDk0MjczNjk5NyA2Nzc0Mjc0OTI5NDQzMjcxIDM2MDE5NzA4MDQ2MTk1NzU=