mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-06-30 07:46:27 +00:00
68 lines
1.7 KiB
PHP
68 lines
1.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) 2009-2020 Daniele Alessandri
|
|
* (c) 2021-2023 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\Command as RedisCommand;
|
|
use Predis\Command\Traits\Aggregate;
|
|
use Predis\Command\Traits\Keys;
|
|
use Predis\Command\Traits\Weights;
|
|
|
|
/**
|
|
* @see http://redis.io/commands/zunionstore
|
|
*/
|
|
class ZUNIONSTORE extends RedisCommand
|
|
{
|
|
use Keys {
|
|
Keys::setArguments as setKeys;
|
|
}
|
|
use Weights {
|
|
Weights::setArguments as setWeights;
|
|
}
|
|
use Aggregate{
|
|
Aggregate::setArguments as setAggregate;
|
|
}
|
|
|
|
protected static $keysArgumentPositionOffset = 1;
|
|
protected static $weightsArgumentPositionOffset = 2;
|
|
protected static $aggregateArgumentPositionOffset = 3;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getId()
|
|
{
|
|
return 'ZUNIONSTORE';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function setArguments(array $arguments)
|
|
{
|
|
// support old `$options` array for backwards compatibility
|
|
if (!isset($arguments[3]) && (isset($arguments[2]['weights']) || isset($arguments[2]['aggregate']))) {
|
|
$options = array_pop($arguments);
|
|
array_push($arguments, $options['weights'] ?? []);
|
|
array_push($arguments, $options['aggregate'] ?? 'sum');
|
|
}
|
|
|
|
$this->setAggregate($arguments);
|
|
$arguments = $this->getArguments();
|
|
|
|
$this->setWeights($arguments);
|
|
$arguments = $this->getArguments();
|
|
|
|
$this->setKeys($arguments);
|
|
}
|
|
}
|