3use Psr\Log\LoggerInterface;
91 private const DEFAULT_CONN_TIMEOUT = 1.2;
96 private const DEFAULT_REQ_TIMEOUT = 3.0;
119 private $serializationType;
130 private $extendedErrorBodyFields;
133 $params[
'segmentationSize'] ??= INF;
134 if ( empty( $params[
'url'] ) ) {
135 throw new InvalidArgumentException(
'URL parameter is required' );
138 if ( empty( $params[
'client'] ) ) {
141 'connTimeout' => $params[
'connTimeout'] ?? self::DEFAULT_CONN_TIMEOUT,
142 'reqTimeout' => $params[
'reqTimeout'] ?? self::DEFAULT_REQ_TIMEOUT,
144 foreach ( [
'caBundlePath',
'proxy' ] as $key ) {
145 if ( isset( $params[$key] ) ) {
146 $clientParams[$key] = $params[$key];
151 $this->client = $params[
'client'];
154 $this->httpParams[
'writeMethod'] = $params[
'httpParams'][
'writeMethod'] ??
'PUT';
155 $this->httpParams[
'readHeaders'] = $params[
'httpParams'][
'readHeaders'] ?? [];
156 $this->httpParams[
'writeHeaders'] = $params[
'httpParams'][
'writeHeaders'] ?? [];
157 $this->httpParams[
'deleteHeaders'] = $params[
'httpParams'][
'deleteHeaders'] ?? [];
158 $this->extendedErrorBodyFields = $params[
'extendedErrorBodyFields'] ?? [];
159 $this->serializationType = $params[
'serialization_type'] ??
'PHP';
160 $this->hmacKey = $params[
'hmac_key'] ??
'';
163 parent::__construct( $params );
166 $this->url = rtrim( $params[
'url'],
'/' ) .
'/';
173 $this->client->setLogger(
$logger );
176 protected function doGet( $key, $flags = 0, &$casToken =
null ) {
182 'url' => $this->url . rawurlencode( $key ),
183 'headers' => $this->httpParams[
'readHeaders'],
188 [ $rcode, , $rhdrs, $rbody, $rerr ] = $this->client->run( $req );
189 if ( $rcode === 200 && is_string( $rbody ) ) {
190 $value = $this->decodeBody( $rbody );
191 $valueSize = strlen( $rbody );
193 if ( $getToken && $value !==
false ) {
196 } elseif ( $rcode === 0 || ( $rcode >= 400 && $rcode != 404 ) ) {
197 $this->
handleError(
'Failed to fetch {cacheKey}', $rcode, $rerr, $rhdrs, $rbody,
198 [
'cacheKey' => $key ] );
201 $this->
updateOpStats( self::METRIC_OP_GET, [ $key => [ 0, $valueSize ] ] );
206 protected function doSet( $key, $value, $exptime = 0, $flags = 0 ) {
208 'method' => $this->httpParams[
'writeMethod'],
209 'url' => $this->url . rawurlencode( $key ),
210 'body' => $this->encodeBody( $value ),
211 'headers' => $this->httpParams[
'writeHeaders'],
214 [ $rcode, , $rhdrs, $rbody, $rerr ] = $this->client->run( $req );
215 $res = ( $rcode === 200 || $rcode === 201 || $rcode === 204 );
217 $this->
handleError(
'Failed to store {cacheKey}', $rcode, $rerr, $rhdrs, $rbody,
218 [
'cacheKey' => $key ] );
221 $this->
updateOpStats( self::METRIC_OP_SET, [ $key => [ strlen( $rbody ), 0 ] ] );
226 protected function doAdd( $key, $value, $exptime = 0, $flags = 0 ) {
228 if ( $this->
get( $key ) ===
false ) {
229 return $this->
set( $key, $value, $exptime, $flags );
238 'method' =>
'DELETE',
239 'url' => $this->url . rawurlencode( $key ),
240 'headers' => $this->httpParams[
'deleteHeaders'],
243 [ $rcode, , $rhdrs, $rbody, $rerr ] = $this->client->run( $req );
244 $res = in_array( $rcode, [ 200, 204, 205, 404, 410 ] );
246 $this->
handleError(
'Failed to delete {cacheKey}', $rcode, $rerr, $rhdrs, $rbody,
247 [
'cacheKey' => $key ] );
257 $curValue = $this->
doGet( $key );
258 if ( $curValue ===
false ) {
259 $newValue = $this->
doSet( $key, $init, $exptime ) ? $init :
false;
260 } elseif ( $this->
isInteger( $curValue ) ) {
261 $sum = max( $curValue + $step, 0 );
262 $newValue = $this->
doSet( $key, $sum, $exptime ) ? $sum :
false;
285 private function decodeBody( $body ) {
286 $pieces = explode(
'.', $body, 3 );
287 if ( count( $pieces ) !== 3 || $pieces[0] !== $this->serializationType ) {
291 if ( $this->hmacKey !==
'' ) {
292 $checkHmac = hash_hmac(
'sha256',
$serialized, $this->hmacKey,
true );
293 if ( !hash_equals( $checkHmac, base64_decode( $hmac ) ) ) {
298 switch ( $this->serializationType ) {
301 return ( json_last_error() === JSON_ERROR_NONE ) ? $value :
false;
307 throw new \DomainException(
308 "Unknown serialization type: $this->serializationType"
320 private function encodeBody( $body ) {
321 switch ( $this->serializationType ) {
323 $value = json_encode( $body );
324 if ( $value ===
false ) {
325 throw new InvalidArgumentException( __METHOD__ .
": body could not be encoded." );
334 throw new \DomainException(
335 "Unknown serialization type: $this->serializationType"
339 if ( $this->hmacKey !==
'' ) {
340 $hmac = base64_encode(
341 hash_hmac(
'sha256', $value, $this->hmacKey,
true )
346 return $this->serializationType .
'.' . $hmac .
'.' . $value;
359 protected function handleError( $msg, $rcode, $rerr, $rhdrs, $rbody, $context = [] ) {
360 $message =
"$msg : ({code}) {error}";
366 if ( $this->extendedErrorBodyFields !== [] ) {
367 $body = $this->decodeBody( $rbody );
370 foreach ( $this->extendedErrorBodyFields as $field ) {
371 if ( isset( $body[$field] ) ) {
372 $extraFields .=
" : ({$field}) {$body[$field]}";
375 if ( $extraFields !==
'' ) {
376 $message .=
" {extra_fields}";
377 $context[
'extra_fields'] = $extraFields;
382 $this->logger->error( $message, $context );
setLastError( $error)
Set the "last error" registry due to a problem encountered during an attempted operation.
genericKeyFromComponents(... $components)
At a minimum, there must be a keyspace and collection name component.
string $keyspace
Default keyspace; used by makeKey()
Storage medium specific cache for storing items (e.g.
const PASS_BY_REF
Idiom for doGet() to return extra information by reference.
updateOpStats(string $op, array $keyInfo)
isInteger( $value)
Check if a value is an integer.
Class to handle multiple HTTP requests.
Interface to key-value storage behind an HTTP server.
convertGenericKey( $key)
Convert a "generic" reversible cache key into one for this cache.
setLogger(LoggerInterface $logger)
doSet( $key, $value, $exptime=0, $flags=0)
Set an item.
makeKeyInternal( $keyspace, $components)
Make a cache key for the given keyspace and components.
doIncrWithInit( $key, $exptime, $step, $init, $flags)
doAdd( $key, $value, $exptime=0, $flags=0)
Insert an item if it does not already exist.
doGet( $key, $flags=0, &$casToken=null)
Get an item.
doDelete( $key, $flags=0)
Delete an item.
handleError( $msg, $rcode, $rerr, $rhdrs, $rbody, $context=[])
Handle storage error.
foreach( $res as $row) $serialized