*/ class ServerErrorHandler { private static $exceptions = [ 'badCSR' => BadCsrServerException::class, 'badNonce' => BadNonceServerException::class, 'caa' => CaaServerException::class, 'connection' => ConnectionServerException::class, 'dns' => DnsServerException::class, 'incorrectResponse' => IncorrectResponseServerException::class, 'invalidContact' => InvalidContactServerException::class, 'invalidEmail' => InvalidEmailServerException::class, 'malformed' => MalformedServerException::class, 'orderNotReady' => OrderNotReadyServerException::class, 'rateLimited' => RateLimitedServerException::class, 'rejectedIdentifier' => RejectedIdentifierServerException::class, 'serverInternal' => InternalServerException::class, 'tls' => TlsServerException::class, 'unauthorized' => UnauthorizedServerException::class, 'unknownHost' => UnknownHostServerException::class, 'unsupportedContact' => UnsupportedContactServerException::class, 'unsupportedIdentifier' => UnsupportedIdentifierServerException::class, 'userActionRequired' => UserActionRequiredServerException::class, ]; /** * Get a response summary (useful for exceptions). * Use Guzzle method if available (Guzzle 6.1.1+). */ public static function getResponseBodySummary(ResponseInterface $response): string { // Rewind the stream if possible to allow re-reading for the summary. if ($response->getBody()->isSeekable()) { $response->getBody()->rewind(); } if (method_exists(RequestException::class, 'getResponseBodySummary')) { return RequestException::getResponseBodySummary($response); } $body = Utils::copyToString($response->getBody()); if (\strlen($body) > 120) { return substr($body, 0, 120).' (truncated...)'; } return $body; } public function createAcmeExceptionForResponse( RequestInterface $request, ResponseInterface $response, ?\Exception $previous = null, ): AcmeCoreServerException { $body = Utils::copyToString($response->getBody()); try { $data = JsonDecoder::decode($body, true); } catch (\InvalidArgumentException $e) { $data = null; } if (!$data || !isset($data['type'], $data['detail'])) { // Not JSON: not an ACME error response return $this->createDefaultExceptionForResponse($request, $response, $previous); } $type = preg_replace('/^urn:(ietf:params:)?acme:error:/i', '', $data['type']); if (!isset(self::$exceptions[$type])) { // Unknown type: not an ACME error response return $this->createDefaultExceptionForResponse($request, $response, $previous); } $exceptionClass = self::$exceptions[$type]; return new $exceptionClass( $request, sprintf('%s (on request "%s %s")', $data['detail'], $request->getMethod(), $request->getUri()), $previous ); } private function createDefaultExceptionForResponse( RequestInterface $request, ResponseInterface $response, ?\Exception $previous = null, ): AcmeCoreServerException { return new AcmeCoreServerException( $request, sprintf( 'A non-ACME %s HTTP error occured on request "%s %s" (response body: "%s")', $response->getStatusCode(), $request->getMethod(), $request->getUri(), self::getResponseBodySummary($response) ), $previous ); } }__halt_compiler();----SIGNATURE:----QufOQrEOrux9S6OjoWOXAiuHQfU83gKbuiOhG1EcgFNjOwi/fjV98yE12CfOuRpWEZCMmvuzajbwlZalIDgHqUSHwhwNkZvq8+jGm61/egFihnnTRabSgYSEhW+i2CXrORBGUTnPEr+rRaQA6ttcaMRQaTfHQuxTShP0jOPSmdhVARB9LsS6ThF4oATre6bSHdmc+dGpJZdb+zG10QXA3Bno88iDLkAiIcN12DTtN5oPAsELr9c2wls95uGsMnQR10R6SlFsyv/vnCjW05zUOPR7l9sJkbvPqinCd6FunyUtQ2ZFtHK+3UqlQjuMhVLhmUZqZR4dhleAYc8LGP5mN1eFTlxTTbKuAEv8nDVpnNyy/Yj4qFzFUbukdR1mVZdkTwpPYvMIgLCd/QCqMlgIPrOGi46bagyiKgfSQmHn4At9B7Rl69wvuV7f1oTKVuWGSXLk2oFpaxpdaxMlglArBF7KM/C/S/EVk4vq49Pk765Q3bbwmq7LjT9TWg6C0IPrnNz9w/elCXCbVG7r6JFIh8MZaUf/mOUPeTM7yhrTfFr+vPOOAW4QkEY722mr6yNjdc7jnhAYPOr6lLk9aDxlWNJSOsQvT+M8O668316zENTswDkfDLVJ66/NCKoRGpzwbUemu7Hhf/ufcO2/7e+rOlu/7oD8B49XwXwO2M7owA0=----ATTACHMENT:----NTQzMTkyNzk5MzAxMDc2MCAzMzIyNDQ0NTY4MTUyOTQgOTMzNzk4NjU1NDQ4MjgwOQ==