2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Object representing a SQL query.
|
|
|
|
* The various parts of the SQL query can be manipulated individually.
|
2008-08-09 06:39:35 +02:00
|
|
|
*
|
|
|
|
* Caution: Only supports SELECT (default) and DELETE at the moment.
|
|
|
|
*
|
|
|
|
* @todo Add support for INSERT and UPDATE queries
|
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-02-25 03:10:37 +01:00
|
|
|
* @subpackage model
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2009-10-13 00:28:47 +02:00
|
|
|
class SQLQuery {
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2012-05-07 07:11:10 +02:00
|
|
|
* An array of SELECT fields, keyed by an optional alias.
|
2007-07-19 12:40:28 +02:00
|
|
|
* @var array
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
protected $select = array();
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
/**
|
2012-05-07 07:11:10 +02:00
|
|
|
* An array of FROM clauses. The first one is just the table name.
|
2007-07-19 12:40:28 +02:00
|
|
|
* @var array
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
protected $from = array();
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
/**
|
2012-05-07 07:11:10 +02:00
|
|
|
* An array of WHERE clauses.
|
2007-07-19 12:40:28 +02:00
|
|
|
* @var array
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
protected $where = array();
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
/**
|
2012-05-07 07:11:10 +02:00
|
|
|
* An array of ORDER BY clauses, functions. Stores as an associative
|
2012-04-15 10:34:10 +02:00
|
|
|
* array of column / function to direction.
|
|
|
|
*
|
2007-07-19 12:40:28 +02:00
|
|
|
* @var string
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
protected $orderby = array();
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
/**
|
2012-05-07 07:11:10 +02:00
|
|
|
* An array of GROUP BY clauses.
|
2007-07-19 12:40:28 +02:00
|
|
|
* @var array
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
protected $groupby = array();
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An array of having clauses.
|
|
|
|
* @var array
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
protected $having = array();
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
/**
|
2012-05-07 07:11:10 +02:00
|
|
|
* An array containing limit and offset keys for LIMIT clause.
|
|
|
|
* @var array
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2012-05-07 07:07:30 +02:00
|
|
|
protected $limit = array();
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If this is true DISTINCT will be added to the SQL.
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
protected $distinct = false;
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If this is true, this statement will delete rather than select.
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
protected $delete = false;
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2008-08-09 06:06:52 +02:00
|
|
|
/**
|
|
|
|
* The logical connective used to join WHERE clauses. Defaults to AND.
|
|
|
|
* @var string
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
protected $connective = 'AND';
|
2008-08-09 06:06:52 +02:00
|
|
|
|
2009-06-27 15:00:51 +02:00
|
|
|
/**
|
|
|
|
* Keep an internal register of find/replace pairs to execute when it's time to actually get the
|
|
|
|
* query SQL.
|
2012-05-03 09:34:16 +02:00
|
|
|
* @var array
|
2009-06-27 15:00:51 +02:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
protected $replacementsOld = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Keep an internal register of find/replace pairs to execute when it's time to actually get the
|
|
|
|
* query SQL.
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $replacementsNew = array();
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Construct a new SQLQuery.
|
2012-05-07 07:07:30 +02:00
|
|
|
*
|
|
|
|
* @param array $select An array of SELECT fields.
|
|
|
|
* @param array $from An array of FROM clauses. The first one should be just the table name.
|
|
|
|
* @param array $where An array of WHERE clauses.
|
|
|
|
* @param array $orderby An array ORDER BY clause.
|
|
|
|
* @param array $groupby An array of GROUP BY clauses.
|
|
|
|
* @param array $having An array of HAVING clauses.
|
|
|
|
* @param array|string $limit A LIMIT clause or array with limit and offset keys
|
|
|
|
*/
|
2012-09-26 23:34:00 +02:00
|
|
|
public function __construct($select = "*", $from = array(), $where = array(), $orderby = array(),
|
|
|
|
$groupby = array(), $having = array(), $limit = array()) {
|
|
|
|
|
2012-05-03 09:34:16 +02:00
|
|
|
$this->setSelect($select);
|
2012-05-07 07:07:30 +02:00
|
|
|
$this->setFrom($from);
|
2012-05-03 09:34:16 +02:00
|
|
|
$this->setWhere($where);
|
|
|
|
$this->setOrderBy($orderby);
|
|
|
|
$this->setGroupBy($groupby);
|
|
|
|
$this->setHaving($having);
|
|
|
|
$this->setLimit($limit);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function __get($field) {
|
2012-09-04 05:25:53 +02:00
|
|
|
if(strtolower($field) == 'select') Deprecation::notice('3.0', 'Please use getSelect() instead');
|
2012-05-03 09:34:16 +02:00
|
|
|
if(strtolower($field) == 'from') Deprecation::notice('3.0', 'Please use getFrom() instead');
|
|
|
|
if(strtolower($field) == 'groupby') Deprecation::notice('3.0', 'Please use getGroupBy() instead');
|
|
|
|
if(strtolower($field) == 'orderby') Deprecation::notice('3.0', 'Please use getOrderBy() instead');
|
|
|
|
if(strtolower($field) == 'having') Deprecation::notice('3.0', 'Please use getHaving() instead');
|
|
|
|
if(strtolower($field) == 'limit') Deprecation::notice('3.0', 'Please use getLimit() instead');
|
|
|
|
if(strtolower($field) == 'delete') Deprecation::notice('3.0', 'Please use getDelete() instead');
|
|
|
|
if(strtolower($field) == 'connective') Deprecation::notice('3.0', 'Please use getConnective() instead');
|
|
|
|
if(strtolower($field) == 'distinct') Deprecation::notice('3.0', 'Please use getDistinct() instead');
|
|
|
|
|
|
|
|
return $this->$field;
|
2012-05-01 06:42:14 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function __set($field, $value) {
|
2012-05-03 09:34:16 +02:00
|
|
|
if(strtolower($field) == 'select') Deprecation::notice('3.0', 'Please use setSelect() or addSelect() instead');
|
|
|
|
if(strtolower($field) == 'from') Deprecation::notice('3.0', 'Please use setFrom() or addFrom() instead');
|
2012-09-26 23:34:00 +02:00
|
|
|
if(strtolower($field) == 'groupby') {
|
|
|
|
Deprecation::notice('3.0', 'Please use setGroupBy() or addGroupBy() instead');
|
|
|
|
}
|
|
|
|
if(strtolower($field) == 'orderby') {
|
|
|
|
Deprecation::notice('3.0', 'Please use setOrderBy() or addOrderBy() instead');
|
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
if(strtolower($field) == 'having') Deprecation::notice('3.0', 'Please use setHaving() or addHaving() instead');
|
|
|
|
if(strtolower($field) == 'limit') Deprecation::notice('3.0', 'Please use setLimit() instead');
|
|
|
|
if(strtolower($field) == 'delete') Deprecation::notice('3.0', 'Please use setDelete() instead');
|
|
|
|
if(strtolower($field) == 'connective') Deprecation::notice('3.0', 'Please use setConnective() instead');
|
|
|
|
if(strtolower($field) == 'distinct') Deprecation::notice('3.0', 'Please use setDistinct() instead');
|
|
|
|
|
|
|
|
return $this->$field = $value;
|
|
|
|
}
|
|
|
|
|
2008-08-09 06:38:44 +02:00
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Set the list of columns to be selected by the query.
|
2008-08-09 06:38:44 +02:00
|
|
|
*
|
|
|
|
* <code>
|
|
|
|
* // pass fields to select as single parameter array
|
2015-05-22 04:18:57 +02:00
|
|
|
* $query->setSelect(array('"Col1"', '"Col2"'))->setFrom('"MyTable"');
|
2012-05-03 09:34:16 +02:00
|
|
|
*
|
2008-08-09 06:38:44 +02:00
|
|
|
* // pass fields to select as multiple parameters
|
2015-05-22 04:18:57 +02:00
|
|
|
* $query->setSelect('"Col1"', '"Col2"')->setFrom('"MyTable"');
|
|
|
|
*
|
|
|
|
* // Set a list of selected fields as aliases
|
|
|
|
* $query->setSelect(array('Name' => '"Col1"', 'Details' => '"Col2"')->setFrom('"MyTable"');
|
2008-08-09 06:38:44 +02:00
|
|
|
* </code>
|
2012-05-03 09:34:16 +02:00
|
|
|
*
|
2015-05-22 04:18:57 +02:00
|
|
|
* @param string|array $fields Field names should be ANSI SQL quoted. Array keys should be unquoted.
|
2012-05-03 09:34:16 +02:00
|
|
|
* @param boolean $clear Clear existing select fields?
|
2015-05-22 04:18:57 +02:00
|
|
|
* @return $this Self reference
|
2008-08-09 06:38:44 +02:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function setSelect($fields) {
|
|
|
|
$this->select = array();
|
2008-08-09 06:38:44 +02:00
|
|
|
if (func_num_args() > 1) {
|
2012-05-01 07:44:31 +02:00
|
|
|
$fields = func_get_args();
|
|
|
|
} else if(!is_array($fields)) {
|
|
|
|
$fields = array($fields);
|
2008-08-09 06:38:44 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
return $this->addSelect($fields);
|
2008-08-09 06:38:44 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2009-11-22 06:16:38 +01:00
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Add to the list of columns to be selected by the query.
|
2012-04-15 10:34:10 +02:00
|
|
|
*
|
2015-05-22 04:18:57 +02:00
|
|
|
* @see setSelect for example usage
|
2012-05-03 09:34:16 +02:00
|
|
|
*
|
2015-05-22 04:18:57 +02:00
|
|
|
* @param string|array $fields Field names should be ANSI SQL quoted. Array keys should be unquoted.
|
|
|
|
* @return $this Self reference
|
2009-11-22 06:16:38 +01:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function addSelect($fields) {
|
2012-05-01 07:44:31 +02:00
|
|
|
if (func_num_args() > 1) {
|
|
|
|
$fields = func_get_args();
|
|
|
|
} else if(!is_array($fields)) {
|
|
|
|
$fields = array($fields);
|
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2012-05-01 07:44:31 +02:00
|
|
|
foreach($fields as $idx => $field) {
|
2015-05-22 04:18:57 +02:00
|
|
|
if(preg_match('/^(.*) +AS +"([^"]*)"/i', $field, $matches)) {
|
2012-05-01 07:44:31 +02:00
|
|
|
Deprecation::notice("3.0", "Use selectField() to specify column aliases");
|
|
|
|
$this->selectField($matches[1], $matches[2]);
|
|
|
|
} else {
|
|
|
|
$this->selectField($field, is_numeric($idx) ? null : $idx);
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
|
|
|
return $this;
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
|
|
|
public function select($fields) {
|
|
|
|
Deprecation::notice('3.0', 'Please use setSelect() or addSelect() instead!');
|
|
|
|
$this->setSelect($fields);
|
|
|
|
}
|
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
/**
|
2012-05-07 06:57:55 +02:00
|
|
|
* Select an additional field.
|
2012-04-15 10:34:10 +02:00
|
|
|
*
|
2015-05-22 04:18:57 +02:00
|
|
|
* @param string $field The field to select (ansi quoted SQL identifier or statement)
|
|
|
|
* @param string|null $alias The alias of that field (unquoted SQL identifier).
|
2012-05-16 11:29:49 +02:00
|
|
|
* Defaults to the unquoted column name of the $field parameter.
|
2012-05-07 06:57:55 +02:00
|
|
|
* @return SQLQuery
|
2012-04-15 10:34:10 +02:00
|
|
|
*/
|
2012-05-01 06:42:14 +02:00
|
|
|
public function selectField($field, $alias = null) {
|
2012-05-01 07:44:31 +02:00
|
|
|
if(!$alias) {
|
|
|
|
if(preg_match('/"([^"]+)"$/', $field, $matches)) $alias = $matches[1];
|
|
|
|
else $alias = $field;
|
2009-11-22 06:16:38 +01:00
|
|
|
}
|
2012-05-01 07:44:31 +02:00
|
|
|
$this->select[$alias] = $field;
|
2012-05-07 06:57:55 +02:00
|
|
|
return $this;
|
2012-05-01 06:42:14 +02:00
|
|
|
}
|
2012-04-15 10:34:10 +02:00
|
|
|
|
|
|
|
/**
|
2012-05-01 06:42:14 +02:00
|
|
|
* Return the SQL expression for the given field alias.
|
|
|
|
* Returns null if the given alias doesn't exist.
|
2012-05-16 11:29:49 +02:00
|
|
|
* See {@link selectField()} for details on alias generation.
|
|
|
|
*
|
|
|
|
* @param String $field
|
|
|
|
* @return String
|
2012-04-15 10:34:10 +02:00
|
|
|
*/
|
|
|
|
public function expressionForField($field) {
|
2012-05-01 07:44:31 +02:00
|
|
|
return isset($this->select[$field]) ? $this->select[$field] : null;
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
2009-11-22 06:16:38 +01:00
|
|
|
|
2008-08-09 06:38:44 +02:00
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Set table for the SELECT clause.
|
|
|
|
*
|
2015-03-18 04:09:09 +01:00
|
|
|
* @example $query->setFrom('"MyTable"'); // SELECT * FROM "MyTable"
|
2008-08-09 06:38:44 +02:00
|
|
|
*
|
2015-03-18 04:09:09 +01:00
|
|
|
* @param string|array $from Single, or list of, ANSI quoted table names
|
|
|
|
* @return self
|
2008-08-09 06:38:44 +02:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function setFrom($from) {
|
|
|
|
$this->from = array();
|
|
|
|
return $this->addFrom($from);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a table to the SELECT clause.
|
|
|
|
*
|
2015-03-18 04:09:09 +01:00
|
|
|
* @example $query->addFrom('"MyTable"'); // SELECT * FROM "MyTable"
|
2012-05-03 09:34:16 +02:00
|
|
|
*
|
2015-03-18 04:09:09 +01:00
|
|
|
* @param string|array $from Single, or list of, ANSI quoted table names
|
|
|
|
* @return self Self reference
|
2012-05-03 09:34:16 +02:00
|
|
|
*/
|
|
|
|
public function addFrom($from) {
|
|
|
|
if(is_array($from)) {
|
|
|
|
$this->from = array_merge($this->from, $from);
|
|
|
|
} elseif(!empty($from)) {
|
|
|
|
$this->from[str_replace(array('"','`'), '', $from)] = $from;
|
|
|
|
}
|
|
|
|
|
2008-08-09 06:38:44 +02:00
|
|
|
return $this;
|
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
|
|
|
public function from($from) {
|
|
|
|
Deprecation::notice('3.0', 'Please use setFrom() or addFrom() instead!');
|
|
|
|
return $this->setFrom($from);
|
|
|
|
}
|
2008-08-09 06:38:44 +02:00
|
|
|
|
2008-08-09 06:53:34 +02:00
|
|
|
/**
|
2008-08-09 07:57:44 +02:00
|
|
|
* Add a LEFT JOIN criteria to the FROM clause.
|
2012-05-03 09:34:16 +02:00
|
|
|
*
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param string $table Unquoted table name
|
2012-12-10 06:11:07 +01:00
|
|
|
* @param string $onPredicate The "ON" SQL fragment in a "LEFT JOIN ... AS ... ON ..." statement, Needs to be valid
|
|
|
|
* (quoted) SQL.
|
2012-05-03 09:34:16 +02:00
|
|
|
* @param string $tableAlias Optional alias which makes it easier to identify and replace joins later on
|
2012-12-10 06:11:07 +01:00
|
|
|
* @param int $order A numerical index to control the order that joins are added to the query; lower order values
|
|
|
|
* will cause the query to appear first. The default is 20, and joins created automatically by the
|
|
|
|
* ORM have a value of 10.
|
2012-05-03 09:34:16 +02:00
|
|
|
* @return SQLQuery
|
2008-08-09 06:53:34 +02:00
|
|
|
*/
|
2012-12-10 06:11:07 +01:00
|
|
|
public function addLeftJoin($table, $onPredicate, $tableAlias = '', $order = 20) {
|
|
|
|
if(!$tableAlias) {
|
|
|
|
$tableAlias = $table;
|
|
|
|
}
|
|
|
|
$this->from[$tableAlias] = array(
|
|
|
|
'type' => 'LEFT',
|
|
|
|
'table' => $table,
|
|
|
|
'filter' => array($onPredicate),
|
|
|
|
'order' => $order
|
|
|
|
);
|
2008-08-09 08:53:26 +02:00
|
|
|
return $this;
|
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2012-12-10 06:11:07 +01:00
|
|
|
public function leftjoin($table, $onPredicate, $tableAlias = null, $order = 20) {
|
2012-05-03 09:34:16 +02:00
|
|
|
Deprecation::notice('3.0', 'Please use addLeftJoin() instead!');
|
|
|
|
$this->addLeftJoin($table, $onPredicate, $tableAlias);
|
|
|
|
}
|
|
|
|
|
2008-08-09 08:53:26 +02:00
|
|
|
/**
|
|
|
|
* Add an INNER JOIN criteria to the FROM clause.
|
2012-05-03 09:34:16 +02:00
|
|
|
*
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param string $table Unquoted table name
|
2012-12-10 06:11:07 +01:00
|
|
|
* @param string $onPredicate The "ON" SQL fragment in an "INNER JOIN ... AS ... ON ..." statement. Needs to be
|
|
|
|
* valid (quoted) SQL.
|
2012-05-03 09:34:16 +02:00
|
|
|
* @param string $tableAlias Optional alias which makes it easier to identify and replace joins later on
|
2012-12-10 06:11:07 +01:00
|
|
|
* @param int $order A numerical index to control the order that joins are added to the query; lower order values
|
|
|
|
* will cause the query to appear first. The default is 20, and joins created automatically by the
|
|
|
|
* ORM have a value of 10.
|
2012-05-03 09:34:16 +02:00
|
|
|
* @return SQLQuery
|
2008-08-09 08:53:26 +02:00
|
|
|
*/
|
2012-12-10 06:11:07 +01:00
|
|
|
public function addInnerJoin($table, $onPredicate, $tableAlias = null, $order = 20) {
|
2012-05-03 09:34:16 +02:00
|
|
|
if(!$tableAlias) $tableAlias = $table;
|
2012-12-10 06:11:07 +01:00
|
|
|
$this->from[$tableAlias] = array(
|
|
|
|
'type' => 'INNER',
|
|
|
|
'table' => $table,
|
|
|
|
'filter' => array($onPredicate),
|
|
|
|
'order' => $order
|
|
|
|
);
|
2008-08-09 07:57:44 +02:00
|
|
|
return $this;
|
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2012-12-10 06:11:07 +01:00
|
|
|
public function innerjoin($table, $onPredicate, $tableAlias = null, $order = 20) {
|
2012-05-03 09:34:16 +02:00
|
|
|
Deprecation::notice('3.0', 'Please use addInnerJoin() instead!');
|
2012-12-10 06:11:07 +01:00
|
|
|
return $this->addInnerJoin($table, $onPredicate, $tableAlias, $order);
|
2012-05-03 09:34:16 +02:00
|
|
|
}
|
|
|
|
|
2009-11-22 06:16:38 +01:00
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Add an additional filter (part of the ON clause) on a join.
|
|
|
|
*
|
|
|
|
* @param string $table Table to join on from the original join
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param string $filter The "ON" SQL fragment (escaped)
|
2012-05-03 09:34:16 +02:00
|
|
|
* @return SQLQuery
|
2009-11-22 06:16:38 +01:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function addFilterToJoin($table, $filter) {
|
|
|
|
$this->from[$table]['filter'][] = $filter;
|
|
|
|
return $this;
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
2009-11-22 06:16:38 +01:00
|
|
|
|
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Set the filter (part of the ON clause) on a join.
|
|
|
|
*
|
|
|
|
* @param string $table Table to join on from the original join
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param string $filter The "ON" SQL fragment (escaped)
|
2012-05-03 09:34:16 +02:00
|
|
|
* @return SQLQuery
|
2009-11-22 06:16:38 +01:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function setJoinFilter($table, $filter) {
|
|
|
|
$this->from[$table]['filter'] = array($filter);
|
|
|
|
return $this;
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
2009-11-22 06:16:38 +01:00
|
|
|
|
2008-08-11 01:29:30 +02:00
|
|
|
/**
|
|
|
|
* Returns true if we are already joining to the given table alias
|
2012-05-16 11:29:49 +02:00
|
|
|
*
|
|
|
|
* @return boolean
|
2008-08-11 01:29:30 +02:00
|
|
|
*/
|
|
|
|
public function isJoinedTo($tableAlias) {
|
|
|
|
return isset($this->from[$tableAlias]);
|
|
|
|
}
|
|
|
|
|
2009-11-22 06:16:38 +01:00
|
|
|
/**
|
|
|
|
* Return a list of tables that this query is selecting from.
|
2012-05-16 11:29:49 +02:00
|
|
|
*
|
|
|
|
* @return array Unquoted table names
|
2009-11-22 06:16:38 +01:00
|
|
|
*/
|
|
|
|
public function queriedTables() {
|
|
|
|
$tables = array();
|
2012-04-15 10:34:10 +02:00
|
|
|
|
2009-11-22 06:16:38 +01:00
|
|
|
foreach($this->from as $key => $tableClause) {
|
2012-09-26 23:34:00 +02:00
|
|
|
if(is_array($tableClause)) {
|
|
|
|
$table = '"'.$tableClause['table'].'"';
|
|
|
|
} else if(is_string($tableClause) && preg_match('/JOIN +("[^"]+") +(AS|ON) +/i', $tableClause, $matches)) {
|
|
|
|
$table = $matches[1];
|
|
|
|
} else {
|
|
|
|
$table = $tableClause;
|
|
|
|
}
|
2009-11-22 06:16:38 +01:00
|
|
|
|
|
|
|
// Handle string replacements
|
|
|
|
if($this->replacementsOld) $table = str_replace($this->replacementsOld, $this->replacementsNew, $table);
|
|
|
|
|
|
|
|
$tables[] = preg_replace('/^"|"$/','',$table);
|
|
|
|
}
|
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
return $tables;
|
2009-11-22 06:16:38 +01:00
|
|
|
}
|
|
|
|
|
2012-05-03 09:34:16 +02:00
|
|
|
/**
|
|
|
|
* Set distinct property.
|
|
|
|
* @param boolean $value
|
|
|
|
*/
|
|
|
|
public function setDistinct($value) {
|
|
|
|
$this->distinct = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the distinct property.
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function getDistinct() {
|
|
|
|
return $this->distinct;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the delete property.
|
|
|
|
* @param boolean $value
|
|
|
|
*/
|
|
|
|
public function setDelete($value) {
|
|
|
|
$this->delete = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the delete property.
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function getDelete() {
|
|
|
|
return $this->delete;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the connective property.
|
|
|
|
* @param boolean $value
|
|
|
|
*/
|
|
|
|
public function setConnective($value) {
|
|
|
|
$this->connective = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the connective property.
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getConnective() {
|
|
|
|
return $this->connective;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-05-07 07:07:30 +02:00
|
|
|
* Get the limit property.
|
|
|
|
* @return array
|
2012-05-03 09:34:16 +02:00
|
|
|
*/
|
|
|
|
public function getLimit() {
|
|
|
|
return $this->limit;
|
|
|
|
}
|
|
|
|
|
2008-08-09 07:57:44 +02:00
|
|
|
/**
|
|
|
|
* Pass LIMIT clause either as SQL snippet or in array format.
|
2009-11-22 04:40:32 +01:00
|
|
|
* Internally, limit will always be stored as a map containing the keys 'start' and 'limit'
|
2008-08-09 07:57:44 +02:00
|
|
|
*
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param int|string|array $limit If passed as a string or array, assumes SQL escaped data.
|
2013-06-06 15:18:01 +02:00
|
|
|
* Only applies for positive values, or if an $offset is set as well.
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param int $offset
|
2012-06-29 09:40:28 +02:00
|
|
|
*
|
|
|
|
* @throws InvalidArgumentException
|
|
|
|
*
|
2008-08-09 07:57:44 +02:00
|
|
|
* @return SQLQuery This instance
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function setLimit($limit, $offset = 0) {
|
2012-06-29 09:40:28 +02:00
|
|
|
if((is_numeric($limit) && $limit < 0) || (is_numeric($offset) && $offset < 0)) {
|
|
|
|
throw new InvalidArgumentException("SQLQuery::setLimit() only takes positive values");
|
|
|
|
}
|
|
|
|
|
2013-06-06 15:18:01 +02:00
|
|
|
if(is_numeric($limit) && ($limit || $offset)) {
|
2009-11-22 04:40:32 +01:00
|
|
|
$this->limit = array(
|
2012-03-09 02:02:37 +01:00
|
|
|
'start' => $offset,
|
2009-11-22 04:40:32 +01:00
|
|
|
'limit' => $limit,
|
|
|
|
);
|
|
|
|
} else if($limit && is_string($limit)) {
|
2012-06-29 09:40:28 +02:00
|
|
|
if(strpos($limit, ',') !== false) {
|
|
|
|
list($start, $innerLimit) = explode(',', $limit, 2);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
list($innerLimit, $start) = explode(' OFFSET ', strtoupper($limit), 2);
|
|
|
|
}
|
|
|
|
|
2009-11-22 04:40:32 +01:00
|
|
|
$this->limit = array(
|
|
|
|
'start' => trim($start),
|
|
|
|
'limit' => trim($innerLimit),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$this->limit = $limit;
|
|
|
|
}
|
2012-05-07 07:07:30 +02:00
|
|
|
|
2008-08-09 07:57:44 +02:00
|
|
|
return $this;
|
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
|
|
|
public function limit($limit, $offset = 0) {
|
|
|
|
Deprecation::notice('3.0', 'Please use setLimit() instead!');
|
|
|
|
return $this->setLimit($limit, $offset);
|
|
|
|
}
|
|
|
|
|
2008-08-09 07:57:44 +02:00
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Set ORDER BY clause either as SQL snippet or in array format.
|
2008-08-09 07:57:44 +02:00
|
|
|
*
|
2013-12-18 00:00:31 +01:00
|
|
|
* @example $sql->setOrderBy("Column");
|
|
|
|
* @example $sql->setOrderBy("Column DESC");
|
|
|
|
* @example $sql->setOrderBy("Column DESC, ColumnTwo ASC");
|
|
|
|
* @example $sql->setOrderBy("Column", "DESC");
|
|
|
|
* @example $sql->setOrderBy(array("Column" => "ASC", "ColumnTwo" => "DESC"));
|
2012-04-15 10:34:10 +02:00
|
|
|
*
|
2015-05-22 04:18:57 +02:00
|
|
|
* @param string|array $clauses Clauses to add (escaped SQL statement)
|
|
|
|
* @param string $direction Sort direction, ASC or DESC
|
2012-04-15 10:34:10 +02:00
|
|
|
*
|
|
|
|
* @return SQLQuery
|
2008-08-09 07:57:44 +02:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function setOrderBy($clauses = null, $direction = null) {
|
|
|
|
$this->orderby = array();
|
|
|
|
return $this->addOrderBy($clauses, $direction);
|
|
|
|
}
|
2008-08-09 07:57:44 +02:00
|
|
|
|
2012-05-03 09:34:16 +02:00
|
|
|
/**
|
|
|
|
* Add ORDER BY clause either as SQL snippet or in array format.
|
|
|
|
*
|
2013-12-18 00:00:31 +01:00
|
|
|
* @example $sql->addOrderBy("Column");
|
|
|
|
* @example $sql->addOrderBy("Column DESC");
|
|
|
|
* @example $sql->addOrderBy("Column DESC, ColumnTwo ASC");
|
|
|
|
* @example $sql->addOrderBy("Column", "DESC");
|
|
|
|
* @example $sql->addOrderBy(array("Column" => "ASC", "ColumnTwo" => "DESC"));
|
2012-05-03 09:34:16 +02:00
|
|
|
*
|
2013-10-03 03:20:31 +02:00
|
|
|
* @param string|array $clauses Clauses to add (escaped SQL statements)
|
2015-05-22 04:18:57 +02:00
|
|
|
* @param string $direction Sort direction, ASC or DESC
|
2012-05-03 09:34:16 +02:00
|
|
|
*
|
|
|
|
* @return SQLQuery
|
|
|
|
*/
|
|
|
|
public function addOrderBy($clauses = null, $direction = null) {
|
2012-04-15 10:34:10 +02:00
|
|
|
if(!$clauses) {
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(is_string($clauses)) {
|
2012-05-03 09:34:16 +02:00
|
|
|
if(strpos($clauses, "(") !== false) {
|
2012-04-15 10:34:10 +02:00
|
|
|
$sort = preg_split("/,(?![^()]*+\\))/", $clauses);
|
2012-05-03 09:34:16 +02:00
|
|
|
} else {
|
2012-04-15 10:34:10 +02:00
|
|
|
$sort = explode(",", $clauses);
|
|
|
|
}
|
2012-05-01 07:09:57 +02:00
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
$clauses = array();
|
|
|
|
|
|
|
|
foreach($sort as $clause) {
|
2012-05-01 07:09:57 +02:00
|
|
|
list($column, $direction) = $this->getDirectionFromString($clause, $direction);
|
|
|
|
$clauses[$column] = $direction;
|
2008-08-09 07:57:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
if(is_array($clauses)) {
|
|
|
|
foreach($clauses as $key => $value) {
|
|
|
|
if(!is_numeric($key)) {
|
|
|
|
$column = trim($key);
|
2012-05-01 07:09:57 +02:00
|
|
|
$columnDir = strtoupper(trim($value));
|
2012-05-03 09:34:16 +02:00
|
|
|
} else {
|
2012-05-01 07:09:57 +02:00
|
|
|
list($column, $columnDir) = $this->getDirectionFromString($value);
|
2008-08-09 07:57:44 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2012-05-01 07:09:57 +02:00
|
|
|
$this->orderby[$column] = $columnDir;
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
} else {
|
2012-04-15 10:34:10 +02:00
|
|
|
user_error('SQLQuery::orderby() incorrect format for $orderby', E_USER_WARNING);
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
// If sort contains a public function call, let's move the sort clause into a
|
2012-04-15 10:34:10 +02:00
|
|
|
// separate selected field.
|
|
|
|
//
|
2012-09-19 12:07:39 +02:00
|
|
|
// Some versions of MySQL choke if you have a group public function referenced
|
2012-04-15 10:34:10 +02:00
|
|
|
// directly in the ORDER BY
|
|
|
|
if($this->orderby) {
|
|
|
|
$i = 0;
|
2013-10-03 03:20:31 +02:00
|
|
|
$orderby = array();
|
2012-04-15 10:34:10 +02:00
|
|
|
foreach($this->orderby as $clause => $dir) {
|
2012-12-20 03:52:46 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
// public function calls and multi-word columns like "CASE WHEN ..."
|
2012-05-01 07:09:57 +02:00
|
|
|
if(strpos($clause, '(') !== false || strpos($clause, " ") !== false ) {
|
2012-04-15 10:34:10 +02:00
|
|
|
|
2013-10-03 03:20:31 +02:00
|
|
|
// Move the clause to the select fragment, substituting a placeholder column in the sort fragment.
|
2012-04-15 10:34:10 +02:00
|
|
|
$clause = trim($clause);
|
|
|
|
$column = "_SortColumn{$i}";
|
2012-05-01 07:44:31 +02:00
|
|
|
$this->selectField($clause, $column);
|
2013-10-03 03:20:31 +02:00
|
|
|
$clause = '"' . $column . '"';
|
2012-04-15 10:34:10 +02:00
|
|
|
$i++;
|
2008-08-09 07:57:44 +02:00
|
|
|
}
|
2013-10-03 03:20:31 +02:00
|
|
|
|
|
|
|
$orderby[$clause] = $dir;
|
2008-08-09 07:57:44 +02:00
|
|
|
}
|
2013-10-03 03:20:31 +02:00
|
|
|
$this->orderby = $orderby;
|
2008-08-09 07:57:44 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
return $this;
|
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
|
|
|
public function orderby($clauses = null, $direction = null) {
|
|
|
|
Deprecation::notice('3.0', 'Please use setOrderBy() instead!');
|
|
|
|
return $this->setOrderBy($clauses, $direction);
|
|
|
|
}
|
|
|
|
|
2012-05-01 07:09:57 +02:00
|
|
|
/**
|
|
|
|
* Extract the direction part of a single-column order by clause.
|
|
|
|
*
|
2015-05-22 04:18:57 +02:00
|
|
|
* @param string $value
|
|
|
|
* @param string $defaultDirection
|
|
|
|
* @return array A two element array: array($column, $direction)
|
2012-05-01 07:09:57 +02:00
|
|
|
*/
|
|
|
|
private function getDirectionFromString($value, $defaultDirection = null) {
|
|
|
|
if(preg_match('/^(.*)(asc|desc)$/i', $value, $matches)) {
|
|
|
|
$column = trim($matches[1]);
|
|
|
|
$direction = strtoupper($matches[2]);
|
|
|
|
} else {
|
|
|
|
$column = $value;
|
|
|
|
$direction = $defaultDirection ? $defaultDirection : "ASC";
|
|
|
|
}
|
|
|
|
return array($column, $direction);
|
|
|
|
}
|
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
/**
|
|
|
|
* Returns the current order by as array if not already. To handle legacy
|
2012-05-03 09:34:16 +02:00
|
|
|
* statements which are stored as strings. Without clauses and directions,
|
2012-04-15 10:34:10 +02:00
|
|
|
* convert the orderby clause to something readable.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getOrderBy() {
|
|
|
|
$orderby = $this->orderby;
|
2012-05-03 09:34:16 +02:00
|
|
|
if(!$orderby) $orderby = array();
|
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
if(!is_array($orderby)) {
|
|
|
|
// spilt by any commas not within brackets
|
2012-05-03 09:34:16 +02:00
|
|
|
$orderby = preg_split('/,(?![^()]*+\\))/', $orderby);
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
foreach($orderby as $k => $v) {
|
2012-05-03 09:34:16 +02:00
|
|
|
if(strpos($v, ' ') !== false) {
|
2012-04-15 10:34:10 +02:00
|
|
|
unset($orderby[$k]);
|
|
|
|
|
2012-05-03 09:34:16 +02:00
|
|
|
$rule = explode(' ', trim($v));
|
2012-04-15 10:34:10 +02:00
|
|
|
$clause = $rule[0];
|
2012-05-03 09:34:16 +02:00
|
|
|
$dir = (isset($rule[1])) ? $rule[1] : 'ASC';
|
2012-04-15 10:34:10 +02:00
|
|
|
|
|
|
|
$orderby[$clause] = $dir;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $orderby;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverses the order by clause by replacing ASC or DESC references in the
|
2012-05-03 09:34:16 +02:00
|
|
|
* current order by with it's corollary.
|
2012-04-15 10:34:10 +02:00
|
|
|
*
|
|
|
|
* @return SQLQuery
|
|
|
|
*/
|
|
|
|
public function reverseOrderBy() {
|
|
|
|
$order = $this->getOrderBy();
|
|
|
|
$this->orderby = array();
|
|
|
|
|
2012-05-03 09:34:16 +02:00
|
|
|
foreach($order as $clause => $dir) {
|
|
|
|
$dir = (strtoupper($dir) == 'DESC') ? 'ASC' : 'DESC';
|
|
|
|
$this->addOrderBy($clause, $dir);
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2008-08-09 07:57:44 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-05-03 09:34:16 +02:00
|
|
|
/**
|
|
|
|
* Set a GROUP BY clause.
|
|
|
|
*
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param string|array $groupby Escaped SQL statement
|
2012-05-03 09:34:16 +02:00
|
|
|
* @return SQLQuery
|
|
|
|
*/
|
|
|
|
public function setGroupBy($groupby) {
|
|
|
|
$this->groupby = array();
|
|
|
|
return $this->addGroupBy($groupby);
|
|
|
|
}
|
|
|
|
|
2008-08-09 07:57:44 +02:00
|
|
|
/**
|
|
|
|
* Add a GROUP BY clause.
|
|
|
|
*
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param string|array $groupby Escaped SQL statement
|
2008-08-09 07:57:44 +02:00
|
|
|
* @return SQLQuery
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function addGroupBy($groupby) {
|
2008-08-09 07:57:44 +02:00
|
|
|
if(is_array($groupby)) {
|
2012-05-03 09:34:16 +02:00
|
|
|
$this->groupby = array_merge($this->groupby, $groupby);
|
2008-08-09 07:57:44 +02:00
|
|
|
} elseif(!empty($groupby)) {
|
|
|
|
$this->groupby[] = $groupby;
|
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2008-08-09 07:57:44 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-05-03 09:34:16 +02:00
|
|
|
public function groupby($where) {
|
|
|
|
Deprecation::notice('3.0', 'Please use setGroupBy() or addHaving() instead!');
|
|
|
|
return $this->setGroupBy($where);
|
|
|
|
}
|
|
|
|
|
2008-08-09 07:57:44 +02:00
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Set a HAVING clause.
|
2008-08-09 07:57:44 +02:00
|
|
|
*
|
|
|
|
* @param string|array $having
|
|
|
|
* @return SQLQuery
|
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function setHaving($having) {
|
|
|
|
$this->having = array();
|
|
|
|
return $this->addHaving($having);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a HAVING clause
|
|
|
|
*
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param string|array $having Escaped SQL statement
|
2012-05-03 09:34:16 +02:00
|
|
|
* @return SQLQuery
|
|
|
|
*/
|
|
|
|
public function addHaving($having) {
|
2008-08-09 07:57:44 +02:00
|
|
|
if(is_array($having)) {
|
2012-05-03 09:34:16 +02:00
|
|
|
$this->having = array_merge($this->having, $having);
|
2008-08-09 07:57:44 +02:00
|
|
|
} elseif(!empty($having)) {
|
|
|
|
$this->having[] = $having;
|
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2008-08-09 07:57:44 +02:00
|
|
|
return $this;
|
2008-08-09 06:53:34 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
|
|
|
public function having($having) {
|
|
|
|
Deprecation::notice('3.0', 'Please use setHaving() or addHaving() instead!');
|
|
|
|
return $this->setHaving($having);
|
|
|
|
}
|
|
|
|
|
2008-08-09 06:38:44 +02:00
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Set a WHERE clause.
|
|
|
|
*
|
|
|
|
* There are two different ways of doing this:
|
|
|
|
*
|
2008-08-09 06:38:44 +02:00
|
|
|
* <code>
|
|
|
|
* // the entire predicate as a single string
|
|
|
|
* $query->where("Column = 'Value'");
|
2012-05-03 09:34:16 +02:00
|
|
|
*
|
|
|
|
* // multiple predicates as an array
|
|
|
|
* $query->where(array("Column = 'Value'", "Column != 'Value'"));
|
2008-08-09 06:38:44 +02:00
|
|
|
* </code>
|
2012-05-03 09:34:16 +02:00
|
|
|
*
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param string|array $where Predicate(s) to set, as escaped SQL statements.
|
2012-05-03 09:34:16 +02:00
|
|
|
* @return SQLQuery
|
2008-08-09 06:38:44 +02:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function setWhere($where) {
|
|
|
|
$this->where = array();
|
|
|
|
return $this->addWhere($where);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a WHERE predicate.
|
|
|
|
*
|
|
|
|
* There are two different ways of doing this:
|
|
|
|
*
|
|
|
|
* <code>
|
|
|
|
* // the entire predicate as a single string
|
|
|
|
* $query->where("Column = 'Value'");
|
|
|
|
*
|
|
|
|
* // multiple predicates as an array
|
|
|
|
* $query->where(array("Column = 'Value'", "Column != 'Value'"));
|
|
|
|
* </code>
|
|
|
|
*
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param string|array $where Predicate(s) to set, as escaped SQL statements.
|
2012-05-03 09:34:16 +02:00
|
|
|
* @return SQLQuery
|
|
|
|
*/
|
|
|
|
public function addWhere($where) {
|
|
|
|
if(is_array($where)) {
|
|
|
|
$this->where = array_merge($this->where, $where);
|
|
|
|
} elseif(!empty($where)) {
|
|
|
|
$this->where[] = $where;
|
2008-08-09 07:57:44 +02:00
|
|
|
}
|
|
|
|
|
2008-08-09 06:38:44 +02:00
|
|
|
return $this;
|
|
|
|
}
|
2011-12-09 14:09:07 +01:00
|
|
|
|
2012-05-03 09:34:16 +02:00
|
|
|
public function where($where) {
|
|
|
|
Deprecation::notice('3.0', 'Please use setWhere() or addWhere() instead!');
|
|
|
|
return $this->setWhere($where);
|
|
|
|
}
|
|
|
|
|
2012-06-22 04:34:06 +02:00
|
|
|
public function whereAny($where) {
|
|
|
|
Deprecation::notice('3.0', 'Please use setWhereAny() or setWhereAny() instead!');
|
|
|
|
return $this->setWhereAny($where);
|
|
|
|
}
|
|
|
|
|
2011-12-09 14:09:07 +01:00
|
|
|
/**
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param String|array $filters Predicate(s) to set, as escaped SQL statements.
|
2011-12-09 14:09:07 +01:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function setWhereAny($filters) {
|
2011-12-09 14:09:07 +01:00
|
|
|
if(is_string($filters)) $filters = func_get_args();
|
|
|
|
$clause = implode(" OR ", $filters);
|
2012-05-03 09:34:16 +02:00
|
|
|
return $this->setWhere($clause);
|
2011-12-09 14:09:07 +01:00
|
|
|
}
|
2012-06-22 04:34:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param String|array $filters Predicate(s) to set, as escaped SQL statements.
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function addWhereAny($filters) {
|
2012-06-22 04:34:06 +02:00
|
|
|
if(is_string($filters)) $filters = func_get_args();
|
|
|
|
$clause = implode(" OR ", $filters);
|
|
|
|
return $this->addWhere($clause);
|
|
|
|
}
|
2011-12-09 14:09:07 +01:00
|
|
|
|
2008-08-09 06:06:52 +02:00
|
|
|
/**
|
|
|
|
* Use the disjunctive operator 'OR' to join filter expressions in the WHERE clause.
|
|
|
|
*/
|
|
|
|
public function useDisjunction() {
|
|
|
|
$this->connective = 'OR';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use the conjunctive operator 'AND' to join filter expressions in the WHERE clause.
|
|
|
|
*/
|
|
|
|
public function useConjunction() {
|
|
|
|
$this->connective = 'AND';
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Swap the use of one table with another.
|
2012-05-16 11:29:49 +02:00
|
|
|
*
|
|
|
|
* @param string $old Name of the old table (unquoted, escaped)
|
|
|
|
* @param string $new Name of the new table (unquoted, escaped)
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function renameTable($old, $new) {
|
2007-07-19 12:40:28 +02:00
|
|
|
$this->replaceText("`$old`", "`$new`");
|
2008-11-22 04:51:04 +01:00
|
|
|
$this->replaceText("\"$old\"", "\"$new\"");
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Swap some text in the SQL query with another.
|
2012-05-16 11:29:49 +02:00
|
|
|
*
|
|
|
|
* @param string $old The old text (escaped)
|
|
|
|
* @param string $new The new text (escaped)
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function replaceText($old, $new) {
|
2009-06-27 15:00:51 +02:00
|
|
|
$this->replacementsOld[] = $old;
|
|
|
|
$this->replacementsNew[] = $new;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
2012-04-27 06:56:07 +02:00
|
|
|
public function getFilter() {
|
2012-05-15 21:29:43 +02:00
|
|
|
Deprecation::notice('3.0', 'Please use itemized filters in getWhere() instead of getFilter()');
|
|
|
|
return DB::getConn()->sqlWhereToString($this->getWhere(), $this->getConnective());
|
2012-04-27 06:56:07 +02:00
|
|
|
}
|
2012-05-01 07:44:31 +02:00
|
|
|
|
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Return a list of FROM clauses used internally.
|
|
|
|
* @return array
|
2012-05-01 07:44:31 +02:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function getFrom() {
|
|
|
|
return $this->from;
|
2012-05-01 06:42:14 +02:00
|
|
|
}
|
2012-04-27 06:56:07 +02:00
|
|
|
|
2008-08-09 06:06:52 +02:00
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Return a list of HAVING clauses used internally.
|
|
|
|
* @return array
|
2008-08-09 06:06:52 +02:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function getHaving() {
|
|
|
|
return $this->having;
|
2008-08-09 06:06:52 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Return a list of GROUP BY clauses used internally.
|
|
|
|
* @return array
|
2012-04-15 10:34:10 +02:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function getGroupBy() {
|
|
|
|
return $this->groupby;
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Return a list of WHERE clauses used internally.
|
|
|
|
* @return array
|
2012-04-15 10:34:10 +02:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function getWhere() {
|
|
|
|
return $this->where;
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
/**
|
2012-05-03 09:34:16 +02:00
|
|
|
* Return an itemised select list as a map, where keys are the aliases, and values are the column sources.
|
2012-09-26 23:34:00 +02:00
|
|
|
* Aliases will always be provided (if the alias is implicit, the alias value will be inferred), and won't be
|
|
|
|
* quoted.
|
2012-05-03 09:34:16 +02:00
|
|
|
* E.g., 'Title' => '"SiteTree"."Title"'.
|
2012-04-15 10:34:10 +02:00
|
|
|
*/
|
2012-05-03 09:34:16 +02:00
|
|
|
public function getSelect() {
|
|
|
|
return $this->select;
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
2012-05-03 09:34:16 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Generate the SQL statement for this query.
|
2008-08-09 06:38:44 +02:00
|
|
|
*
|
2007-07-19 12:40:28 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function sql() {
|
2012-09-26 23:34:00 +02:00
|
|
|
// TODO: Don't require this internal-state manipulate-and-preserve - let sqlQueryToString() handle the new
|
|
|
|
// syntax
|
2012-04-15 10:34:10 +02:00
|
|
|
$origFrom = $this->from;
|
2012-12-10 06:11:07 +01:00
|
|
|
// Sort the joins
|
|
|
|
$this->from = $this->getOrderedJoins($this->from);
|
2012-04-15 10:34:10 +02:00
|
|
|
// Build from clauses
|
|
|
|
foreach($this->from as $alias => $join) {
|
|
|
|
// $join can be something like this array structure
|
2012-09-26 23:34:00 +02:00
|
|
|
// array('type' => 'inner', 'table' => 'SiteTree', 'filter' => array("SiteTree.ID = 1",
|
2012-12-10 06:11:07 +01:00
|
|
|
// "Status = 'approved'", 'order' => 20))
|
2012-04-15 10:34:10 +02:00
|
|
|
if(is_array($join)) {
|
|
|
|
if(is_string($join['filter'])) $filter = $join['filter'];
|
|
|
|
else if(sizeof($join['filter']) == 1) $filter = $join['filter'][0];
|
|
|
|
else $filter = "(" . implode(") AND (", $join['filter']) . ")";
|
2011-09-26 23:18:23 +02:00
|
|
|
|
2015-03-18 04:09:09 +01:00
|
|
|
// Ensure tables are quoted, unless the table is actually a sub-select
|
|
|
|
$table = preg_match('/\bSELECT\b/i', $join['table'])
|
|
|
|
? $join['table']
|
|
|
|
: "\"{$join['table']}\"";
|
|
|
|
$aliasClause = ($alias != $join['table'])
|
|
|
|
? " AS \"{$alias}\""
|
|
|
|
: "";
|
2014-07-17 03:27:28 +02:00
|
|
|
$this->from[$alias] = strtoupper($join['type']) . " JOIN "
|
|
|
|
. $table . "$aliasClause ON $filter";
|
2012-04-15 10:34:10 +02:00
|
|
|
}
|
|
|
|
}
|
2011-09-27 02:28:19 +02:00
|
|
|
|
2009-06-27 15:00:51 +02:00
|
|
|
$sql = DB::getConn()->sqlQueryToString($this);
|
2012-04-15 10:34:10 +02:00
|
|
|
|
2011-09-27 02:28:19 +02:00
|
|
|
if($this->replacementsOld) {
|
|
|
|
$sql = str_replace($this->replacementsOld, $this->replacementsNew, $sql);
|
|
|
|
}
|
2011-03-30 07:06:33 +02:00
|
|
|
|
2012-04-15 10:34:10 +02:00
|
|
|
$this->from = $origFrom;
|
2011-03-30 07:06:33 +02:00
|
|
|
|
2011-09-27 02:28:19 +02:00
|
|
|
// The query was most likely just created and then exectued.
|
2012-12-10 06:11:07 +01:00
|
|
|
if(trim($sql) === 'SELECT * FROM') {
|
2011-09-27 02:28:19 +02:00
|
|
|
return '';
|
|
|
|
}
|
2009-06-27 15:00:51 +02:00
|
|
|
return $sql;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
2008-08-09 06:38:44 +02:00
|
|
|
/**
|
|
|
|
* Return the generated SQL string for this query
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function __toString() {
|
2012-12-08 12:20:20 +01:00
|
|
|
try {
|
|
|
|
return $this->sql();
|
|
|
|
} catch(Exception $e) {
|
|
|
|
return "<sql query>";
|
|
|
|
}
|
2008-08-09 06:38:44 +02:00
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Execute this query.
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
* @return SS_Query
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function execute() {
|
2009-09-17 02:24:36 +02:00
|
|
|
return DB::query($this->sql(), E_USER_ERROR);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
2008-08-27 07:16:44 +02:00
|
|
|
/**
|
|
|
|
* Checks whether this query is for a specific ID in a table
|
2009-01-10 12:35:50 +01:00
|
|
|
*
|
|
|
|
* @todo Doesn't work with combined statements (e.g. "Foo='bar' AND ID=5")
|
2008-08-27 07:16:44 +02:00
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function filtersOnID() {
|
2009-08-10 06:36:17 +02:00
|
|
|
$regexp = '/^(.*\.)?("|`)?ID("|`)?\s?=/';
|
|
|
|
|
|
|
|
// Sometimes the ID filter will be the 2nd element, if there's a ClasssName filter first.
|
|
|
|
if(isset($this->where[0]) && preg_match($regexp, $this->where[0])) return true;
|
|
|
|
if(isset($this->where[1]) && preg_match($regexp, $this->where[1])) return true;
|
|
|
|
|
|
|
|
return false;
|
2009-01-10 12:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether this query is filtering on a foreign key, ie finding a has_many relationship
|
|
|
|
*
|
|
|
|
* @todo Doesn't work with combined statements (e.g. "Foo='bar' AND ParentID=5")
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function filtersOnFK() {
|
2009-01-10 12:35:50 +01:00
|
|
|
return (
|
|
|
|
$this->where
|
|
|
|
&& preg_match('/^(.*\.)?("|`)?[a-zA-Z]+ID("|`)?\s?=/', $this->where[0])
|
2008-08-27 07:16:44 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/// VARIOUS TRANSFORMATIONS BELOW
|
|
|
|
|
2010-10-13 06:04:32 +02:00
|
|
|
/**
|
|
|
|
* Return the number of rows in this query if the limit were removed. Useful in paged data sets.
|
|
|
|
* @return int
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function unlimitedRowCount($column = null) {
|
2010-04-13 04:05:45 +02:00
|
|
|
// we can't clear the select if we're relying on its output by a HAVING clause
|
|
|
|
if(count($this->having)) {
|
|
|
|
$records = $this->execute();
|
|
|
|
return $records->numRecords();
|
|
|
|
}
|
|
|
|
|
2010-10-13 06:00:14 +02:00
|
|
|
$clone = clone $this;
|
|
|
|
$clone->limit = null;
|
|
|
|
$clone->orderby = null;
|
|
|
|
|
2009-01-05 07:19:48 +01:00
|
|
|
// Choose a default column
|
|
|
|
if($column == null) {
|
|
|
|
if($this->groupby) {
|
2010-10-13 06:00:14 +02:00
|
|
|
$countQuery = new SQLQuery();
|
2014-08-28 04:26:17 +02:00
|
|
|
$countQuery->setSelect("count(*)");
|
|
|
|
$countQuery->setFrom('(' . $clone->sql() . ') all_distinct');
|
2010-10-13 06:00:14 +02:00
|
|
|
|
|
|
|
return $countQuery->execute()->value();
|
|
|
|
|
2009-01-05 07:19:48 +01:00
|
|
|
} else {
|
2012-05-11 01:39:06 +02:00
|
|
|
$clone->setSelect(array("count(*)"));
|
2009-01-05 07:19:48 +01:00
|
|
|
}
|
2010-10-13 06:00:14 +02:00
|
|
|
} else {
|
2012-05-11 01:39:06 +02:00
|
|
|
$clone->setSelect(array("count($column)"));
|
2009-01-05 07:19:48 +01:00
|
|
|
}
|
2010-10-13 06:00:14 +02:00
|
|
|
|
2015-05-22 04:18:57 +02:00
|
|
|
$clone->setGroupBy(array());
|
2007-07-19 12:40:28 +02:00
|
|
|
return $clone->execute()->value();
|
|
|
|
}
|
2010-04-13 04:06:12 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if this query can be sorted by the given field.
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function canSortBy($fieldName) {
|
2010-04-13 04:16:50 +02:00
|
|
|
$fieldName = preg_replace('/(\s+?)(A|DE)SC$/', '', $fieldName);
|
|
|
|
|
2012-05-01 07:44:31 +02:00
|
|
|
return isset($this->select[$fieldName]);
|
2010-04-13 04:06:12 +02:00
|
|
|
}
|
|
|
|
|
2009-11-22 04:42:29 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the number of rows in this query if the limit were removed. Useful in paged data sets.
|
|
|
|
*
|
2012-05-16 11:29:49 +02:00
|
|
|
* @todo Respect HAVING and GROUPBY, which can affect the result-count
|
|
|
|
*
|
|
|
|
* @param String $column Quoted, escaped column name
|
|
|
|
* @return int
|
2009-11-22 04:42:29 +01:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function count( $column = null) {
|
2015-04-30 17:04:26 +02:00
|
|
|
// we can't clear the select if we're relying on its output by a HAVING clause
|
|
|
|
if(!empty($this->having)) {
|
|
|
|
$records = $this->execute();
|
|
|
|
return $records->numRecords();
|
|
|
|
}
|
2009-11-22 04:42:29 +01:00
|
|
|
// Choose a default column
|
2015-04-30 17:04:26 +02:00
|
|
|
elseif($column == null) {
|
2009-11-22 04:42:29 +01:00
|
|
|
if($this->groupby) {
|
|
|
|
$column = 'DISTINCT ' . implode(", ", $this->groupby);
|
|
|
|
} else {
|
|
|
|
$column = '*';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$clone = clone $this;
|
|
|
|
$clone->select = array("count($column)");
|
|
|
|
$clone->limit = null;
|
|
|
|
$clone->orderby = null;
|
|
|
|
$clone->groupby = null;
|
|
|
|
|
|
|
|
$count = $clone->execute()->value();
|
|
|
|
// If there's a limit set, then that limit is going to heavily affect the count
|
|
|
|
if($this->limit) {
|
|
|
|
if($count >= ($this->limit['start'] + $this->limit['limit']))
|
|
|
|
return $this->limit['limit'];
|
|
|
|
else
|
|
|
|
return max(0, $count - $this->limit['start']);
|
|
|
|
|
|
|
|
// Otherwise, the count is going to be the output of the SQL query
|
|
|
|
} else {
|
|
|
|
return $count;
|
|
|
|
}
|
|
|
|
}
|
2009-11-22 06:16:38 +01:00
|
|
|
|
2012-05-11 01:39:06 +02:00
|
|
|
/**
|
|
|
|
* Return a new SQLQuery that calls the given aggregate functions on this data.
|
2012-12-20 14:04:22 +01:00
|
|
|
*
|
2012-05-16 11:29:49 +02:00
|
|
|
* @param $column An aggregate expression, such as 'MAX("Balance")', or a set of them (as an escaped SQL statement)
|
2012-12-20 14:04:22 +01:00
|
|
|
* @param $alias An optional alias for the aggregate column.
|
2012-05-11 01:39:06 +02:00
|
|
|
*/
|
2012-12-20 14:04:22 +01:00
|
|
|
public function aggregate($column, $alias = null) {
|
2012-05-01 07:44:31 +02:00
|
|
|
$clone = clone $this;
|
2013-09-06 08:01:52 +02:00
|
|
|
|
|
|
|
// don't set an ORDER BY clause if no limit has been set. It doesn't make
|
|
|
|
// sense to add an ORDER BY if there is no limit, and it will break
|
|
|
|
// queries to databases like MSSQL if you do so. Note that the reason
|
|
|
|
// this came up is because DataQuery::initialiseQuery() introduces
|
|
|
|
// a default sort.
|
|
|
|
if($this->limit) {
|
|
|
|
$clone->setLimit($this->limit);
|
|
|
|
$clone->setOrderBy($this->orderby);
|
|
|
|
} else {
|
|
|
|
$clone->setOrderBy(array());
|
|
|
|
}
|
|
|
|
|
2012-12-20 14:04:22 +01:00
|
|
|
$clone->setGroupBy($this->groupby);
|
|
|
|
if($alias) {
|
2013-04-03 12:22:12 +02:00
|
|
|
$clone->setSelect(array());
|
2012-12-20 14:04:22 +01:00
|
|
|
$clone->selectField($column, $alias);
|
|
|
|
} else {
|
|
|
|
$clone->setSelect($column);
|
|
|
|
}
|
2009-11-22 06:16:38 +01:00
|
|
|
|
2012-05-01 07:44:31 +02:00
|
|
|
return $clone;
|
2012-05-11 01:39:06 +02:00
|
|
|
}
|
2009-11-22 04:42:29 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a query that returns only the first row of this query
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function firstRow() {
|
2009-11-22 04:42:29 +01:00
|
|
|
$query = clone $this;
|
|
|
|
$offset = $this->limit ? $this->limit['start'] : 0;
|
2012-05-03 09:34:16 +02:00
|
|
|
$query->setLimit(1, $offset);
|
2009-11-22 04:42:29 +01:00
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a query that returns only the last row of this query
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function lastRow() {
|
2009-11-22 04:42:29 +01:00
|
|
|
$query = clone $this;
|
|
|
|
$offset = $this->limit ? $this->limit['start'] : 0;
|
2012-11-16 01:27:51 +01:00
|
|
|
|
|
|
|
// Limit index to start in case of empty results
|
|
|
|
$index = max($this->count() + $offset - 1, 0);
|
|
|
|
$query->setLimit(1, $index);
|
2009-11-22 04:42:29 +01:00
|
|
|
return $query;
|
|
|
|
}
|
2012-12-10 06:11:07 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ensure that framework "auto-generated" table JOINs are first in the finalised SQL query.
|
|
|
|
* This prevents issues where developer-initiated JOINs attempt to JOIN using relations that haven't actually
|
|
|
|
* yet been scaffolded by the framework. Demonstrated by PostGres in errors like:
|
|
|
|
*"...ERROR: missing FROM-clause..."
|
|
|
|
*
|
|
|
|
* @param $from array - in the format of $this->select
|
|
|
|
* @return array - and reorderded list of selects
|
|
|
|
*/
|
|
|
|
protected function getOrderedJoins($from) {
|
|
|
|
// shift the first FROM table out from so we only deal with the JOINs
|
|
|
|
$baseFrom = array_shift($from);
|
|
|
|
$this->mergesort($from, function($firstJoin, $secondJoin) {
|
2013-09-17 22:06:39 +02:00
|
|
|
if(
|
|
|
|
!is_array($firstJoin)
|
|
|
|
|| !is_array($secondJoin)
|
|
|
|
|| $firstJoin['order'] == $secondJoin['order']
|
|
|
|
) {
|
2012-12-10 06:11:07 +01:00
|
|
|
return 0;
|
2013-09-17 22:06:39 +02:00
|
|
|
} else {
|
|
|
|
return ($firstJoin['order'] < $secondJoin['order']) ? -1 : 1;
|
2012-12-10 06:11:07 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Put the first FROM table back into the results
|
|
|
|
array_unshift($from, $baseFrom);
|
|
|
|
return $from;
|
|
|
|
}
|
2009-11-22 04:42:29 +01:00
|
|
|
|
2012-12-10 06:11:07 +01:00
|
|
|
/**
|
|
|
|
* Since uasort don't preserve the order of an array if the comparison is equal
|
|
|
|
* we have to resort to a merge sort. It's quick and stable: O(n*log(n)).
|
|
|
|
*
|
|
|
|
* @see http://stackoverflow.com/q/4353739/139301
|
|
|
|
*
|
|
|
|
* @param array &$array - the array to sort
|
|
|
|
* @param callable $cmpFunction - the function to use for comparison
|
|
|
|
*/
|
|
|
|
protected function mergesort(&$array, $cmpFunction = 'strcmp') {
|
|
|
|
// Arrays of size < 2 require no action.
|
|
|
|
if (count($array) < 2) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Split the array in half
|
|
|
|
$halfway = count($array) / 2;
|
|
|
|
$array1 = array_slice($array, 0, $halfway);
|
|
|
|
$array2 = array_slice($array, $halfway);
|
|
|
|
// Recurse to sort the two halves
|
|
|
|
$this->mergesort($array1, $cmpFunction);
|
|
|
|
$this->mergesort($array2, $cmpFunction);
|
|
|
|
// If all of $array1 is <= all of $array2, just append them.
|
|
|
|
if(call_user_func($cmpFunction, end($array1), reset($array2)) < 1) {
|
|
|
|
$array = array_merge($array1, $array2);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Merge the two sorted arrays into a single sorted array
|
|
|
|
$array = array();
|
|
|
|
$val1 = reset($array1);
|
|
|
|
$val2 = reset($array2);
|
|
|
|
do {
|
|
|
|
if (call_user_func($cmpFunction, $val1, $val2) < 1) {
|
|
|
|
$array[key($array1)] = $val1;
|
|
|
|
$val1 = next($array1);
|
|
|
|
} else {
|
|
|
|
$array[key($array2)] = $val2;
|
|
|
|
$val2 = next($array2);
|
|
|
|
}
|
|
|
|
} while($val1 && $val2);
|
|
|
|
|
|
|
|
// Merge the remainder
|
|
|
|
while($val1) {
|
|
|
|
$array[key($array1)] = $val1;
|
|
|
|
$val1 = next($array1);
|
|
|
|
}
|
|
|
|
while($val2) {
|
|
|
|
$array[key($array2)] = $val2;
|
|
|
|
$val2 = next($array2);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|