|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of the Predis package. |
| 5 | + * |
| 6 | + * (c) 2009-2020 Daniele Alessandri |
| 7 | + * (c) 2021-2023 Till Krüss |
| 8 | + * |
| 9 | + * For the full copyright and license information, please view the LICENSE |
| 10 | + * file that was distributed with this source code. |
| 11 | + */ |
| 12 | + |
| 13 | +namespace Predis\Command\Redis; |
| 14 | + |
| 15 | +use Predis\Command\Command as RedisCommand; |
| 16 | +use Predis\Command\Traits\By\ByArgument; |
| 17 | +use Predis\Command\Traits\Get\Get; |
| 18 | +use Predis\Command\Traits\Limit\LimitObject; |
| 19 | +use Predis\Command\Traits\Sorting; |
| 20 | + |
| 21 | +/** |
| 22 | + * @see https://redis.io/commands/sort_ro/ |
| 23 | + * |
| 24 | + * Read-only variant of the SORT command. |
| 25 | + * It is exactly like the original SORT but refuses the STORE option |
| 26 | + * and can safely be used in read-only replicas. |
| 27 | + */ |
| 28 | +class SORT_RO extends RedisCommand |
| 29 | +{ |
| 30 | + use ByArgument { |
| 31 | + ByArgument::setArguments as setBy; |
| 32 | + } |
| 33 | + use LimitObject { |
| 34 | + LimitObject::setArguments as setLimit; |
| 35 | + } |
| 36 | + use Get { |
| 37 | + Get::setArguments as setGetArgument; |
| 38 | + } |
| 39 | + use Sorting { |
| 40 | + Sorting::setArguments as setSorting; |
| 41 | + } |
| 42 | + |
| 43 | + protected static $byArgumentPositionOffset = 1; |
| 44 | + protected static $getArgumentPositionOffset = 3; |
| 45 | + protected static $sortArgumentPositionOffset = 4; |
| 46 | + |
| 47 | + public function getId() |
| 48 | + { |
| 49 | + return 'SORT_RO'; |
| 50 | + } |
| 51 | + |
| 52 | + public function setArguments(array $arguments) |
| 53 | + { |
| 54 | + $alpha = array_pop($arguments); |
| 55 | + |
| 56 | + if (is_bool($alpha) && $alpha) { |
| 57 | + $arguments[] = 'ALPHA'; |
| 58 | + } elseif (!is_bool($alpha)) { |
| 59 | + $arguments[] = $alpha; |
| 60 | + } |
| 61 | + |
| 62 | + $this->setSorting($arguments); |
| 63 | + $arguments = $this->getArguments(); |
| 64 | + |
| 65 | + $this->setGetArgument($arguments); |
| 66 | + $arguments = $this->getArguments(); |
| 67 | + |
| 68 | + $this->setLimit($arguments); |
| 69 | + $arguments = $this->getArguments(); |
| 70 | + |
| 71 | + $this->setBy($arguments); |
| 72 | + $this->filterArguments(); |
| 73 | + } |
| 74 | +} |
0 commit comments