mirror of
https://github.com/predis/predis.git
synced 2026-08-24 20:59:37 +00:00
bb65b31580
* Added arrayable arguments classes * Updated count trait to accept additional modifier argument * Added new With traits, moved into separate directory * Added traits for geo command arguments resolving * Remove BaseWith trait, not working with traits nesting * Added AscDesc trait * Rename AscDesc traint into Sorting * Fixed trait keyword * Removed unnecessary traits * Updated count trait to handle default argument value * Fixed With traits offset check condition * Added GeoFrom, GeoBy traits * Fixes for Count and Sorting traits * Fixed variable names in with traits * [WIP] Added GEOSEARCH command support, without test coverage * Changed functionality to support only lower case units (Redis 6.0 support) * Changed namespace for WITHSCORES trait * Added more test coverage, added response parsing * Added test coverage for tratis Co-authored-by: Vladyslav Vildanov <vladyslavvildanov@Vladyslav-Vildanov-MacBook-Pro.local> Co-authored-by: Chayim <chayim@users.noreply.github.com>
59 lines
1.7 KiB
PHP
59 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Predis\Command\Traits;
|
|
|
|
use Predis\Command\Command;
|
|
use UnexpectedValueException;
|
|
|
|
/**
|
|
* @mixin Command
|
|
*/
|
|
trait Count
|
|
{
|
|
private $countModifier = 'COUNT';
|
|
private $anyModifier = 'ANY';
|
|
|
|
public function setArguments(array $arguments, bool $any = false)
|
|
{
|
|
$argumentsLength = count($arguments);
|
|
|
|
if (static::$countArgumentPositionOffset >= $argumentsLength) {
|
|
parent::setArguments($arguments);
|
|
return;
|
|
}
|
|
|
|
if ($arguments[static::$countArgumentPositionOffset] === -1) {
|
|
array_splice($arguments, static::$countArgumentPositionOffset, 1, [false]);
|
|
parent::setArguments($arguments);
|
|
return;
|
|
}
|
|
|
|
if ($arguments[static::$countArgumentPositionOffset] < 1) {
|
|
throw new UnexpectedValueException('Wrong count argument value or position offset');
|
|
}
|
|
|
|
$countArgument = $arguments[static::$countArgumentPositionOffset];
|
|
$argumentsBefore = array_slice($arguments, 0, static::$countArgumentPositionOffset);
|
|
$argumentsAfter = array_slice($arguments, static::$countArgumentPositionOffset + 2);
|
|
|
|
if (!$any) {
|
|
$argumentsAfter = array_slice($arguments, static::$countArgumentPositionOffset + 1);
|
|
parent::setArguments(array_merge(
|
|
$argumentsBefore,
|
|
[$this->countModifier],
|
|
[$countArgument],
|
|
$argumentsAfter
|
|
));
|
|
return;
|
|
}
|
|
|
|
parent::setArguments(array_merge(
|
|
$argumentsBefore,
|
|
[$this->countModifier],
|
|
[$countArgument],
|
|
[$this->anyModifier],
|
|
$argumentsAfter
|
|
));
|
|
}
|
|
}
|