/fuel/core/classes/database/query/builder/select.php
https://bitbucket.org/sriedel/iccrm-wip · PHP · 440 lines · 212 code · 72 blank · 156 comment · 17 complexity · 3a37b8f89ad8d0cf7207c639e9610570 MD5 · raw file
- <?php
- /**
- * Database query builder for SELECT statements.
- *
- * @package Fuel/Database
- * @category Query
- * @author Kohana Team
- * @copyright (c) 2008-2009 Kohana Team
- * @license http://kohanaphp.com/license
- */
- namespace Fuel\Core;
- class Database_Query_Builder_Select extends \Database_Query_Builder_Where
- {
- // SELECT ...
- protected $_select = array();
- // DISTINCT
- protected $_distinct = FALSE;
- // FROM ...
- protected $_from = array();
- // JOIN ...
- protected $_join = array();
- // GROUP BY ...
- protected $_group_by = array();
- // HAVING ...
- protected $_having = array();
- // OFFSET ...
- protected $_offset = NULL;
- // The last JOIN statement created
- protected $_last_join;
- /**
- * Sets the initial columns to select from.
- *
- * @param array column list
- * @return void
- */
- public function __construct(array $columns = NULL)
- {
- if ( ! empty($columns))
- {
- // Set the initial columns
- $this->_select = $columns;
- }
- // Start the query with no actual SQL statement
- parent::__construct('', \DB::SELECT);
- }
- /**
- * Enables or disables selecting only unique columns using "SELECT DISTINCT"
- *
- * @param boolean enable or disable distinct columns
- * @return $this
- */
- public function distinct($value = true)
- {
- $this->_distinct = (bool) $value;
- return $this;
- }
- /**
- * Choose the columns to select from.
- *
- * @param mixed column name or array($column, $alias) or object
- * @param ...
- * @return $this
- */
- public function select($columns = NULL)
- {
- $columns = func_get_args();
- $this->_select = array_merge($this->_select, $columns);
- return $this;
- }
- /**
- * Choose the columns to select from, using an array.
- *
- * @param array list of column names or aliases
- * @param bool if true, don't merge but overwrite
- * @return $this
- */
- public function select_array(array $columns, $reset = false)
- {
- $this->_select = $reset ? $columns : array_merge($this->_select, $columns);
- return $this;
- }
- /**
- * Choose the tables to select "FROM ..."
- *
- * @param mixed table name or array($table, $alias) or object
- * @param ...
- * @return $this
- */
- public function from($tables)
- {
- $tables = func_get_args();
- $this->_from = array_merge($this->_from, $tables);
- return $this;
- }
- /**
- * Adds addition tables to "JOIN ...".
- *
- * @param mixed column name or array($column, $alias) or object
- * @param string join type (LEFT, RIGHT, INNER, etc)
- * @return $this
- */
- public function join($table, $type = NULL)
- {
- $this->_join[] = $this->_last_join = new \Database_Query_Builder_Join($table, $type);
- return $this;
- }
- /**
- * Adds "ON ..." conditions for the last created JOIN statement.
- *
- * @param mixed column name or array($column, $alias) or object
- * @param string logic operator
- * @param mixed column name or array($column, $alias) or object
- * @return $this
- */
- public function on($c1, $op, $c2)
- {
- $this->_last_join->on($c1, $op, $c2);
- return $this;
- }
- /**
- * Creates a "GROUP BY ..." filter.
- *
- * @param mixed column name or array($column, $column) or object
- * @param ...
- * @return $this
- */
- public function group_by($columns)
- {
- $columns = func_get_args();
- foreach($columns as $idx => $column)
- {
- // if an array of columns is passed, flatten it
- if (is_array($column))
- {
- foreach($column as $c)
- {
- $columns[] = $c;
- }
- unset($columns[$idx]);
- }
- }
- $this->_group_by = array_merge($this->_group_by, $columns);
- return $this;
- }
- /**
- * Alias of and_having()
- *
- * @param mixed column name or array($column, $alias) or object
- * @param string logic operator
- * @param mixed column value
- * @return $this
- */
- public function having($column, $op = null, $value = NULL)
- {
- return call_user_func_array(array($this, 'and_having'), func_get_args());
- }
- /**
- * Creates a new "AND HAVING" condition for the query.
- *
- * @param mixed column name or array($column, $alias) or object
- * @param string logic operator
- * @param mixed column value
- * @return $this
- */
- public function and_having($column, $op = null, $value = null)
- {
- if($column instanceof \Closure)
- {
- $this->and_having_open();
- $column($this);
- $this->and_having_close();
- return $this;
- }
- if(func_num_args() === 2)
- {
- $value = $op;
- $op = '=';
- }
- $this->_having[] = array('AND' => array($column, $op, $value));
- return $this;
- }
- /**
- * Creates a new "OR HAVING" condition for the query.
- *
- * @param mixed column name or array($column, $alias) or object
- * @param string logic operator
- * @param mixed column value
- * @return $this
- */
- public function or_having($column, $op = null, $value = null)
- {
- if($column instanceof \Closure)
- {
- $this->or_having_open();
- $column($this);
- $this->or_having_close();
- return $this;
- }
- if(func_num_args() === 2)
- {
- $value = $op;
- $op = '=';
- }
- $this->_having[] = array('OR' => array($column, $op, $value));
- return $this;
- }
- /**
- * Alias of and_having_open()
- *
- * @return $this
- */
- public function having_open()
- {
- return $this->and_having_open();
- }
- /**
- * Opens a new "AND HAVING (...)" grouping.
- *
- * @return $this
- */
- public function and_having_open()
- {
- $this->_having[] = array('AND' => '(');
- return $this;
- }
- /**
- * Opens a new "OR HAVING (...)" grouping.
- *
- * @return $this
- */
- public function or_having_open()
- {
- $this->_having[] = array('OR' => '(');
- return $this;
- }
- /**
- * Closes an open "AND HAVING (...)" grouping.
- *
- * @return $this
- */
- public function having_close()
- {
- return $this->and_having_close();
- }
- /**
- * Closes an open "AND HAVING (...)" grouping.
- *
- * @return $this
- */
- public function and_having_close()
- {
- $this->_having[] = array('AND' => ')');
- return $this;
- }
- /**
- * Closes an open "OR HAVING (...)" grouping.
- *
- * @return $this
- */
- public function or_having_close()
- {
- $this->_having[] = array('OR' => ')');
- return $this;
- }
- /**
- * Start returning results after "OFFSET ..."
- *
- * @param integer starting result number
- * @return $this
- */
- public function offset($number)
- {
- $this->_offset = (int) $number;
- return $this;
- }
- /**
- * Compile the SQL query and return it.
- *
- * @param mixed Database instance or instance name
- * @return string
- */
- public function compile($db = null)
- {
- if ( ! $db instanceof \Database_Connection)
- {
- // Get the database instance
- $db = \Database_Connection::instance($db);
- }
- // Callback to quote identifiers
- $quote_ident = array($db, 'quote_identifier');
- // Callback to quote tables
- $quote_table = array($db, 'quote_table');
- // Start a selection query
- $query = 'SELECT ';
- if ($this->_distinct === TRUE)
- {
- // Select only unique results
- $query .= 'DISTINCT ';
- }
- if (empty($this->_select))
- {
- // Select all columns
- $query .= '*';
- }
- else
- {
- // Select all columns
- $query .= implode(', ', array_unique(array_map($quote_ident, $this->_select)));
- }
- if ( ! empty($this->_from))
- {
- // Set tables to select from
- $query .= ' FROM '.implode(', ', array_unique(array_map($quote_table, $this->_from)));
- }
- if ( ! empty($this->_join))
- {
- // Add tables to join
- $query .= ' '.$this->_compile_join($db, $this->_join);
- }
- if ( ! empty($this->_where))
- {
- // Add selection conditions
- $query .= ' WHERE '.$this->_compile_conditions($db, $this->_where);
- }
- if ( ! empty($this->_group_by))
- {
- // Add sorting
- $query .= ' GROUP BY '.implode(', ', array_map($quote_ident, $this->_group_by));
- }
- if ( ! empty($this->_having))
- {
- // Add filtering conditions
- $query .= ' HAVING '.$this->_compile_conditions($db, $this->_having);
- }
- if ( ! empty($this->_order_by))
- {
- // Add sorting
- $query .= ' '.$this->_compile_order_by($db, $this->_order_by);
- }
- if ($this->_limit !== NULL)
- {
- // Add limiting
- $query .= ' LIMIT '.$this->_limit;
- }
- if ($this->_offset !== NULL)
- {
- // Add offsets
- $query .= ' OFFSET '.$this->_offset;
- }
- return $query;
- }
- public function reset()
- {
- $this->_select =
- $this->_from =
- $this->_join =
- $this->_where =
- $this->_group_by =
- $this->_having =
- $this->_order_by = array();
- $this->_distinct = FALSE;
- $this->_limit =
- $this->_offset =
- $this->_last_join = NULL;
- $this->_parameters = array();
- return $this;
- }
- } // End Database_Query_Select