2017-01-16 17:31:04 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2017-01-18 17:47:05 +03:00
|
|
|
* @copyright Copyright (c) 2017 Robin Appelman <robin@icewind.nl>
|
2017-01-16 17:31:04 +03:00
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
|
|
|
*
|
2017-01-18 17:47:05 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
2017-01-16 17:31:04 +03:00
|
|
|
*
|
2017-01-18 17:47:05 +03:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2017-01-16 17:31:04 +03:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-01-18 17:47:05 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2017-01-16 17:31:04 +03:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
2017-01-18 17:47:05 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-01-16 17:31:04 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCP\DB\QueryBuilder;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides a builder for sql some functions
|
|
|
|
*
|
|
|
|
* @since 12.0.0
|
|
|
|
*/
|
|
|
|
interface IFunctionBuilder {
|
|
|
|
/**
|
|
|
|
* Calculates the MD5 hash of a given input
|
|
|
|
*
|
2020-11-16 21:17:21 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $input The input to be hashed
|
2017-01-16 17:31:04 +03:00
|
|
|
*
|
|
|
|
* @return IQueryFunction
|
|
|
|
* @since 12.0.0
|
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function md5($input): IQueryFunction;
|
2017-01-16 17:31:04 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Combines two input strings
|
|
|
|
*
|
2020-11-16 21:17:21 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $x The first input string
|
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $y The seccond input string
|
2017-01-16 17:31:04 +03:00
|
|
|
*
|
|
|
|
* @return IQueryFunction
|
|
|
|
* @since 12.0.0
|
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function concat($x, $y): IQueryFunction;
|
2017-01-16 17:31:04 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes a substring from the input string
|
|
|
|
*
|
2020-11-16 21:17:21 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $input The input string
|
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $start The start of the substring, note that counting starts at 1
|
|
|
|
* @param null|ILiteral|IParameter|IQueryFunction $length The length of the substring
|
2017-01-16 17:31:04 +03:00
|
|
|
*
|
|
|
|
* @return IQueryFunction
|
|
|
|
* @since 12.0.0
|
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function substring($input, $start, $length = null): IQueryFunction;
|
2017-04-12 17:09:35 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes the sum of all rows in a column
|
|
|
|
*
|
2020-11-16 21:17:21 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $field the column to sum
|
2017-04-12 17:09:35 +03:00
|
|
|
*
|
|
|
|
* @return IQueryFunction
|
|
|
|
* @since 12.0.0
|
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function sum($field): IQueryFunction;
|
2017-12-20 17:51:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Transforms a string field or value to lower case
|
|
|
|
*
|
2020-11-16 21:17:21 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $field
|
2017-12-20 17:51:37 +03:00
|
|
|
* @return IQueryFunction
|
2018-03-06 23:55:04 +03:00
|
|
|
* @since 14.0.0
|
2017-12-20 17:51:37 +03:00
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function lower($field): IQueryFunction;
|
2018-04-10 19:30:43 +03:00
|
|
|
|
|
|
|
/**
|
2020-11-16 21:17:21 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $x The first input field or number
|
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $y The second input field or number
|
2018-04-10 19:30:43 +03:00
|
|
|
* @return IQueryFunction
|
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function add($x, $y): IQueryFunction;
|
2018-04-10 19:30:43 +03:00
|
|
|
|
|
|
|
/**
|
2020-11-16 21:17:21 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $x The first input field or number
|
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $y The second input field or number
|
2018-04-10 19:30:43 +03:00
|
|
|
* @return IQueryFunction
|
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function subtract($x, $y): IQueryFunction;
|
2018-06-14 15:32:22 +03:00
|
|
|
|
|
|
|
/**
|
2020-11-16 21:17:21 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $count The input to be counted
|
2018-10-19 17:44:28 +03:00
|
|
|
* @param string $alias Alias for the counter
|
2018-06-14 15:32:22 +03:00
|
|
|
*
|
|
|
|
* @return IQueryFunction
|
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function count($count = '', $alias = ''): IQueryFunction;
|
2019-09-04 17:48:02 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes the maximum of all rows in a column
|
|
|
|
*
|
2019-11-06 13:38:47 +03:00
|
|
|
* If you want to get the maximum value of multiple columns in the same row, use `greatest` instead
|
|
|
|
*
|
2020-11-16 21:17:21 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $field the column to maximum
|
2019-09-04 17:48:02 +03:00
|
|
|
*
|
|
|
|
* @return IQueryFunction
|
|
|
|
* @since 18.0.0
|
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function max($field): IQueryFunction;
|
2019-09-04 17:48:02 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes the minimum of all rows in a column
|
|
|
|
*
|
2019-11-06 13:38:47 +03:00
|
|
|
* If you want to get the minimum value of multiple columns in the same row, use `least` instead
|
|
|
|
*
|
2020-11-16 21:17:21 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $field the column to minimum
|
2019-09-04 17:48:02 +03:00
|
|
|
*
|
|
|
|
* @return IQueryFunction
|
|
|
|
* @since 18.0.0
|
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function min($field): IQueryFunction;
|
2019-11-06 13:38:47 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes the maximum of multiple values
|
|
|
|
*
|
|
|
|
* If you want to get the maximum value of all rows in a column, use `max` instead
|
|
|
|
*
|
2020-11-07 16:06:03 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $x
|
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $y
|
2019-11-06 13:38:47 +03:00
|
|
|
* @return IQueryFunction
|
|
|
|
* @since 18.0.0
|
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function greatest($x, $y): IQueryFunction;
|
2019-11-06 13:38:47 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes the minimum of multiple values
|
|
|
|
*
|
|
|
|
* If you want to get the minimum value of all rows in a column, use `min` instead
|
|
|
|
*
|
2020-11-07 16:06:03 +03:00
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $x
|
|
|
|
* @param string|ILiteral|IParameter|IQueryFunction $y
|
2019-11-06 13:38:47 +03:00
|
|
|
* @return IQueryFunction
|
|
|
|
* @since 18.0.0
|
|
|
|
*/
|
2020-11-16 21:17:21 +03:00
|
|
|
public function least($x, $y): IQueryFunction;
|
2017-01-16 17:31:04 +03:00
|
|
|
}
|