mirror of
https://github.com/predis/predis.git
synced 2026-08-22 01:22:57 +00:00
57 lines
1.4 KiB
PHP
57 lines
1.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) 2009-2020 Daniele Alessandri
|
|
* (c) 2021-2025 Till Krüss
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Predis\Command\Redis;
|
|
|
|
use Predis\Command\PrefixableCommand as RedisCommand;
|
|
use UnexpectedValueException;
|
|
|
|
class HEXPIRE extends RedisCommand
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $flagsEnum = [
|
|
'NX', 'XX', 'GT', 'LT',
|
|
];
|
|
|
|
public function getId()
|
|
{
|
|
return 'HEXPIRE';
|
|
}
|
|
|
|
public function setArguments(array $arguments)
|
|
{
|
|
$processedArguments = [$arguments[0], $arguments[1]];
|
|
|
|
if (array_key_exists(3, $arguments) && null !== $arguments[3]) {
|
|
if (in_array(strtoupper($arguments[3]), $this->flagsEnum, true)) {
|
|
$processedArguments[] = strtoupper($arguments[3]);
|
|
} else {
|
|
throw new UnexpectedValueException('Unsupported flag value');
|
|
}
|
|
}
|
|
|
|
if (array_key_exists(2, $arguments) && null !== $arguments[2]) {
|
|
array_push($processedArguments, 'FIELDS', count($arguments[2]));
|
|
$processedArguments = array_merge($processedArguments, $arguments[2]);
|
|
}
|
|
|
|
parent::setArguments($processedArguments);
|
|
}
|
|
|
|
public function prefixKeys($prefix)
|
|
{
|
|
$this->applyPrefixForFirstArgument($prefix);
|
|
}
|
|
}
|