95 private const DEFAULT_CONN_TIMEOUT = 1.2;
100 private const DEFAULT_REQ_TIMEOUT = 3.0;
126 private $serializationType;
138 private $extendedErrorBodyFields;
141 $params[
'segmentationSize'] ??= INF;
142 if ( empty( $params[
'url'] ) ) {
143 throw new InvalidArgumentException(
'URL parameter is required' );
146 if ( empty( $params[
'client'] ) ) {
149 'connTimeout' => $params[
'connTimeout'] ?? self::DEFAULT_CONN_TIMEOUT,
150 'reqTimeout' => $params[
'reqTimeout'] ?? self::DEFAULT_REQ_TIMEOUT,
152 foreach ( [
'caBundlePath',
'proxy',
'telemetry' ] as $key ) {
153 if ( isset( $params[$key] ) ) {
154 $clientParams[$key] = $params[$key];
159 $this->client = $params[
'client'];
162 $this->httpParams[
'writeMethod'] = $params[
'httpParams'][
'writeMethod'] ??
'PUT';
163 $this->httpParams[
'readHeaders'] = $params[
'httpParams'][
'readHeaders'] ?? [];
164 $this->httpParams[
'writeHeaders'] = $params[
'httpParams'][
'writeHeaders'] ?? [];
165 $this->httpParams[
'deleteHeaders'] = $params[
'httpParams'][
'deleteHeaders'] ?? [];
166 $this->extendedErrorBodyFields = $params[
'extendedErrorBodyFields'] ?? [];
167 $this->serializationType = $params[
'serialization_type'] ??
'PHP';
168 $this->hmacKey = $params[
'hmac_key'] ??
'';
171 parent::__construct( $params );
174 $this->url = rtrim( $params[
'url'],
'/' ) .
'/';
181 $this->client->setLogger(
$logger );
185 protected function doGet( $key, $flags = 0, &$casToken =
null ) {
186 $getToken = ( $casToken === self::PASS_BY_REF );
191 'url' => $this->url . rawurlencode( $key ),
192 'headers' => $this->httpParams[
'readHeaders'],
197 [ $rcode, , , $rbody, $rerr ] = $this->client->run( $req );
198 if ( $rcode === 200 && is_string( $rbody ) ) {
199 $value = $this->decodeBody( $rbody );
200 $valueSize = strlen( $rbody );
202 if ( $getToken && $value !==
false ) {
205 } elseif ( $rcode === 0 || ( $rcode >= 400 && $rcode != 404 ) ) {
206 $this->handleError(
'Failed to fetch {cacheKey}', $rcode, $rerr, $rbody,
207 [
'cacheKey' => $key ] );
210 $this->updateOpStats( self::METRIC_OP_GET, [ $key => [ 0, $valueSize ] ] );
216 protected function doSet( $key, $value, $exptime = 0, $flags = 0 ) {
218 'method' => $this->httpParams[
'writeMethod'],
219 'url' => $this->url . rawurlencode( $key ),
220 'body' => $this->encodeBody( $value ),
221 'headers' => $this->httpParams[
'writeHeaders'],
224 [ $rcode, , , $rbody, $rerr ] = $this->client->run( $req );
225 $res = ( $rcode === 200 || $rcode === 201 || $rcode === 204 );
227 $this->handleError(
'Failed to store {cacheKey}', $rcode, $rerr, $rbody,
228 [
'cacheKey' => $key ] );
231 $this->updateOpStats( self::METRIC_OP_SET, [ $key => [ strlen( $req[
'body'] ), 0 ] ] );
237 protected function doAdd( $key, $value, $exptime = 0, $flags = 0 ) {
239 if ( $this->
get( $key ) ===
false ) {
240 return $this->
set( $key, $value, $exptime, $flags );
250 'method' =>
'DELETE',
251 'url' => $this->url . rawurlencode( $key ),
252 'headers' => $this->httpParams[
'deleteHeaders'],
255 [ $rcode, , , $rbody, $rerr ] = $this->client->run( $req );
256 $res = in_array( $rcode, [ 200, 204, 205, 404, 410 ] );
258 $this->handleError(
'Failed to delete {cacheKey}', $rcode, $rerr, $rbody,
259 [
'cacheKey' => $key ] );
262 $this->updateOpStats( self::METRIC_OP_DELETE, [ $key ] );
270 $curValue = $this->doGet( $key );
271 if ( $curValue ===
false ) {
272 $newValue = $this->doSet( $key, $init, $exptime ) ? $init :
false;
273 } elseif ( $this->isInteger( $curValue ) ) {
274 $sum = max( $curValue + $step, 0 );
275 $newValue = $this->doSet( $key, $sum, $exptime ) ? $sum :
false;
290 private function decodeBody( $body ) {
291 $pieces = explode(
'.', $body, 3 );
292 if ( count( $pieces ) !== 3 || $pieces[0] !== $this->serializationType ) {
295 [ , $hmac, $serialized ] = $pieces;
296 if ( $this->hmacKey !==
'' ) {
297 $checkHmac = hash_hmac(
'sha256', $serialized, $this->hmacKey,
true );
298 if ( !hash_equals( $checkHmac, base64_decode( $hmac ) ) ) {
303 switch ( $this->serializationType ) {
305 $value = json_decode( $serialized,
true );
306 return ( json_last_error() === JSON_ERROR_NONE ) ? $value :
false;
309 return unserialize( $serialized );
312 throw new \DomainException(
313 "Unknown serialization type: $this->serializationType"
325 private function encodeBody( $body ) {
326 switch ( $this->serializationType ) {
328 $value = json_encode( $body );
329 if ( $value ===
false ) {
330 throw new InvalidArgumentException( __METHOD__ .
": body could not be encoded." );
335 $value = serialize( $body );
339 throw new \DomainException(
340 "Unknown serialization type: $this->serializationType"
344 if ( $this->hmacKey !==
'' ) {
345 $hmac = base64_encode(
346 hash_hmac(
'sha256', $value, $this->hmacKey,
true )
351 return $this->serializationType .
'.' . $hmac .
'.' . $value;
363 private function handleError( $msg, $rcode, $rerr, $rbody, $context = [] ): void {
364 $message =
"$msg : ({code}) {error}";
370 if ( $this->extendedErrorBodyFields !== [] ) {
371 $body = $this->decodeBody( $rbody );
374 foreach ( $this->extendedErrorBodyFields as $field ) {
375 if ( isset( $body[$field] ) ) {
376 $extraFields .=
" : ({$field}) {$body[$field]}";
379 if ( $extraFields !==
'' ) {
380 $message .=
" {extra_fields}";
381 $context[
'extra_fields'] = $extraFields;
386 $this->logger->error( $message, $context );
387 $this->
setLastError( $rcode === 0 ? self::ERR_UNREACHABLE : self::ERR_UNEXPECTED );