0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-12 03:59:16 +00:00
nextcloud_server/lib/private/Files/Search/SearchBinaryOperator.php
Andy Scherzinger dae7c159f7
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-24 13:11:22 +02:00

65 lines
1.4 KiB
PHP

<?php
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\Files\Search;
use OCP\Files\Search\ISearchBinaryOperator;
use OCP\Files\Search\ISearchOperator;
class SearchBinaryOperator implements ISearchBinaryOperator {
/** @var string */
private $type;
/** @var (SearchBinaryOperator|SearchComparison)[] */
private $arguments;
private $hints = [];
/**
* SearchBinaryOperator constructor.
*
* @param string $type
* @param (SearchBinaryOperator|SearchComparison)[] $arguments
*/
public function __construct($type, array $arguments) {
$this->type = $type;
$this->arguments = $arguments;
}
/**
* @return string
*/
public function getType() {
return $this->type;
}
/**
* @return ISearchOperator[]
*/
public function getArguments() {
return $this->arguments;
}
/**
* @param ISearchOperator[] $arguments
* @return void
*/
public function setArguments(array $arguments): void {
$this->arguments = $arguments;
}
public function getQueryHint(string $name, $default) {
return $this->hints[$name] ?? $default;
}
public function setQueryHint(string $name, $value): void {
$this->hints[$name] = $value;
}
public function __toString(): string {
if ($this->type === ISearchBinaryOperator::OPERATOR_NOT) {
return '(not ' . $this->arguments[0] . ')';
}
return '(' . implode(' ' . $this->type . ' ', $this->arguments) . ')';
}
}