Query/classes/query_builder.php

1391 lines
29 KiB
PHP
Raw Normal View History

2012-03-15 09:25:18 -04:00
<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
2012-04-23 13:28:49 -04:00
* @package Query
* @author Timothy J. Warren
2012-03-15 09:25:18 -04:00
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/Query
2012-04-23 13:28:49 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
2012-03-15 09:25:18 -04:00
*/
// --------------------------------------------------------------------------
2012-07-26 13:21:24 -04:00
/**
* Generic exception for bad drivers
*
* @package Query
* @subpackage Query
*/
2012-08-02 11:59:11 -04:00
class BadDBDriverException extends InvalidArgumentException {}
2012-07-26 13:21:24 -04:00
// --------------------------------------------------------------------------
/**
* Generic exception for bad connection strings
*
* @package Query
* @subpackage Query
*/
class BadConnectionException extends UnexpectedValueException {}
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Convienience class for creating sql queries - also the class that
2012-03-15 09:25:18 -04:00
* instantiates the specific db driver
2012-04-20 13:17:39 -04:00
*
* @package Query
* @subpackage Query
2012-03-15 09:25:18 -04:00
*/
2012-04-27 16:18:59 -04:00
class Query_Builder {
2012-03-15 09:25:18 -04:00
2012-04-30 14:49:30 -04:00
// --------------------------------------------------------------------------
// ! SQL Clause Strings
// --------------------------------------------------------------------------
/**
* Compiled 'select' clause
2012-04-23 13:28:49 -04:00
*
* @var string
*/
private $select_string;
/**
* Compiled 'from' clause
2012-04-23 13:28:49 -04:00
*
* @var string
*/
private $from_string;
/**
* Compiled arguments for insert / update
2012-04-23 13:28:49 -04:00
*
* @var string
*/
private $set_string;
/**
* Order by clause
2012-04-23 13:28:49 -04:00
*
* @var string
*/
private $order_string;
/**
* Group by clause
2012-04-23 13:28:49 -04:00
*
* @var string
*/
private $group_string;
2012-04-30 14:49:30 -04:00
// --------------------------------------------------------------------------
// ! SQL Clause Arrays
// --------------------------------------------------------------------------
/**
* Keys for insert/update statement
2012-04-23 13:28:49 -04:00
*
* @var array
*/
private $set_array_keys;
/**
* Key/val pairs for order by clause
2012-04-23 13:28:49 -04:00
*
* @var array
*/
private $order_array;
/**
* Key/val pairs for group by clause
2012-04-23 13:28:49 -04:00
*
* @var array
*/
private $group_array;
2012-04-30 14:49:30 -04:00
// --------------------------------------------------------------------------
// ! Other Class vars
// --------------------------------------------------------------------------
/**
* Values to apply to prepared statements
2012-04-23 13:28:49 -04:00
*
* @var array
*/
2012-03-15 09:25:18 -04:00
private $values;
/**
* Value for limit string
2012-04-23 13:28:49 -04:00
*
* @var int
*/
private $limit;
/**
* Value for offset in limit string
2012-04-23 13:28:49 -04:00
*
* @var int
*/
private $offset;
/**
* Alias to $this->db->sql
2012-04-23 13:28:49 -04:00
*
* @var DB_PDO
*/
2012-05-08 15:37:36 -04:00
public $sql;
/**
* Query component order mapping
* for complex select queries
*
* Format:
*
* array(
* 'type' => 'where',
* 'conjunction' => ' AND ',
* 'string' => 'k=?'
* )
2012-04-23 13:28:49 -04:00
*
* @var array
*/
2012-03-15 09:25:18 -04:00
private $query_map;
/**
* Map for having clause
2012-04-23 13:28:49 -04:00
*
* @var array
*/
private $having_map;
2012-03-15 09:25:18 -04:00
/**
2012-04-23 13:28:49 -04:00
* Convenience property for connection management
*
* @var string
*/
2012-04-12 13:44:31 -04:00
public $conn_name = "";
2012-03-15 09:25:18 -04:00
/**
* Constructor
*
* @param object $params - the connection parametere
2012-03-15 09:25:18 -04:00
*/
public function __construct($params)
{
// Convert array to object
if (is_array($params))
{
$p = new stdClass();
foreach($params as $k => $v)
{
$p->$k = $v;
}
$params = $p;
}
2012-04-12 13:44:31 -04:00
2012-05-02 12:53:34 -04:00
// Let the connection work with 'conn_db' or 'database'
if (isset($params->database))
{
$params->conn_db = $params->database;
}
2012-03-15 09:25:18 -04:00
$params->type = strtolower($params->type);
$dbtype = ($params->type !== 'postgresql') ? $params->type : 'pgsql';
$dsn = '';
// Add the driver type to the dsn
if ($dbtype !== 'firebird' && $dbtype !== 'sqlite')
{
$dsn = strtolower($dbtype).':'.$dsn;
}
2012-07-26 13:21:24 -04:00
// Make sure the class exists
if ( ! class_exists($dbtype))
{
throw new BadDBDriverException('Database driver does not exist, or is not supported');
}
2012-03-15 09:25:18 -04:00
// Create the dsn for the database to connect to
2012-03-15 09:25:18 -04:00
switch($dbtype)
{
default:
$dsn .= "dbname={$params->conn_db}";
2012-04-10 14:06:34 -04:00
if ( ! empty($params->host))
{
$dsn .= ";host={$params->host}";
}
2012-03-15 09:25:18 -04:00
if ( ! empty($params->port))
2012-03-15 09:25:18 -04:00
{
$dsn .= ";port={$params->port}";
2012-03-15 09:25:18 -04:00
}
2012-04-12 13:44:31 -04:00
2012-03-15 09:25:18 -04:00
break;
case "sqlite":
$dsn .= $params->file;
break;
2012-03-15 09:25:18 -04:00
case "firebird":
$dsn = "{$params->host}:{$params->file}";
2012-03-15 09:25:18 -04:00
break;
}
2012-07-26 13:21:24 -04:00
try
{
2012-07-26 13:21:24 -04:00
// Create the database connection
if ( ! empty($params->user))
{
$this->db = new $dbtype($dsn, $params->user, $params->pass);
}
else
{
$this->db = new $dbtype($dsn);
}
}
2012-07-26 13:21:24 -04:00
catch(Exception $e)
{
2012-07-27 12:11:43 -04:00
throw new BadConnectionException('Connection failed, invalid arguments', 2);
}
2012-05-02 12:53:34 -04:00
// Set the connection name property, if applicable
2012-04-12 13:44:31 -04:00
if (isset($params->name))
{
$this->conn_name = $params->name;
}
2012-03-15 09:25:18 -04:00
// Make things just slightly shorter
$this->sql =& $this->db->sql;
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
// ! Select Queries
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Specifies rows to select in a query
*
* @param string $fields
* @return $this
*/
public function select($fields)
{
// Split fields by comma
$fields_array = explode(",", $fields);
$fields_array = array_map('trim', $fields_array);
// Split on 'As'
2012-05-14 13:33:41 -04:00
foreach ($fields_array as $key => &$field)
2012-03-15 09:25:18 -04:00
{
if (stripos($field, 'as') !== FALSE)
{
$fields_array[$key] = preg_split('`as`i', $field);
$fields_array[$key] = array_map('trim', $fields_array[$key]);
}
}
// Quote the identifiers
$safe_array = array_map(array($this->db, 'quote_ident'), $fields_array);
2012-03-15 09:25:18 -04:00
unset($fields_array);
// Join the strings back together
for($i = 0, $c = count($safe_array); $i < $c; $i++)
{
if (is_array($safe_array[$i]))
{
$safe_array[$i] = implode(' AS ', $safe_array[$i]);
}
}
$this->select_string .= implode(', ', $safe_array);
2012-03-15 09:25:18 -04:00
unset($safe_array);
return $this;
}
// --------------------------------------------------------------------------
/**
2012-04-30 15:29:45 -04:00
* Method to simplify select_ methods
*
* @param string $field
* @param string $as
2012-04-30 15:29:45 -04:00
* @return string
*/
2012-04-30 15:29:45 -04:00
private function _select($field, $as = FALSE)
{
// Escape the identifiers
$field = $this->quote_ident($field);
$as = ($as !== FALSE)
? $this->quote_ident($as)
: $field;
2012-04-30 15:29:45 -04:00
return "({$field}) AS {$as} ";
}
// --------------------------------------------------------------------------
/**
* Selects the maximum value of a field from a query
*
* @param string $field
* @param string $as
* @return $this
*/
public function select_max($field, $as=FALSE)
{
// Create the select string
2012-04-30 15:29:45 -04:00
$this->select_string .= $this->sql->max().$this->_select($field, $as);
return $this;
}
// --------------------------------------------------------------------------
/**
* Selects the minimum value of a field from a query
*
* @param string $field
* @param string $as
* @return $this
*/
public function select_min($field, $as=FALSE)
2012-04-30 15:29:45 -04:00
{
// Create the select string
2012-04-30 15:29:45 -04:00
$this->select_string .= $this->sql->min().$this->_select($field, $as);
return $this;
}
// --------------------------------------------------------------------------
/**
* Selects the average value of a field from a query
*
* @param string $field
* @param string $as
* @return $this
*/
public function select_avg($field, $as=FALSE)
{
// Create the select string
2012-04-30 15:29:45 -04:00
$this->select_string .= $this->sql->avg().$this->_select($field, $as);
return $this;
}
// --------------------------------------------------------------------------
/**
* Selects the sum of a field from a query
*
* @param string $field
* @param string $as
* @return $this
*/
public function select_sum($field, $as=FALSE)
{
// Create the select string
2012-04-30 15:29:45 -04:00
$this->select_string .= $this->sql->sum().$this->_select($field, $as);
return $this;
}
// --------------------------------------------------------------------------
/**
* Adds the 'distinct' keyword to a query
*
* @return $this
*/
public function distinct()
{
// Prepend the keyword to the select string
$this->select_string = $this->sql->distinct() . $this->select_string;
return $this;
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Specify the database table to select from
*
* @param string $dbname
* @return $this
*/
public function from($dbname)
{
// Split identifiers on spaces
$ident_array = explode(' ', trim($dbname));
$ident_array = array_map('trim', $ident_array);
// Quote the identifiers
2012-03-15 09:25:18 -04:00
$ident_array = array_map(array($this->db, 'quote_ident'), $ident_array);
2012-03-15 09:25:18 -04:00
// Paste it back together
$this->from_string = implode(' ', $ident_array);
2012-03-15 09:25:18 -04:00
return $this;
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
// ! 'Like' methods
// --------------------------------------------------------------------------
2012-04-30 16:06:06 -04:00
2012-03-15 09:25:18 -04:00
/**
2012-04-30 16:06:06 -04:00
* Simplify 'like' methods
2012-03-15 09:25:18 -04:00
*
* @param string $field
* @param mixed $val
* @param string $pos
2012-04-30 16:06:06 -04:00
* @param string $like
* @param string $conj
2012-05-01 13:45:11 -04:00
* @return $this
2012-03-15 09:25:18 -04:00
*/
2012-04-30 16:06:06 -04:00
private function _like($field, $val, $pos, $like='LIKE', $conj='AND')
{
$field = $this->quote_ident($field);
2012-03-15 09:25:18 -04:00
// Add the like string into the order map
2012-04-30 16:06:06 -04:00
$l = $field. " {$like} ?";
2012-03-15 09:25:18 -04:00
if ($pos == 'before')
{
$val = "%{$val}";
}
elseif ($pos == 'after')
{
$val = "{$val}%";
}
else
{
$val = "%{$val}%";
}
2012-04-30 16:06:06 -04:00
2012-03-15 09:25:18 -04:00
$this->query_map[] = array(
'type' => 'like',
'conjunction' => (empty($this->query_map)) ? ' WHERE ' : " {$conj} ",
2012-03-15 09:25:18 -04:00
'string' => $l
);
2012-04-30 16:06:06 -04:00
2012-03-15 09:25:18 -04:00
// Add to the values array
$this->values[] = $val;
2012-05-01 13:45:11 -04:00
return $this;
2012-04-30 16:06:06 -04:00
}
// --------------------------------------------------------------------------
2012-04-30 16:06:06 -04:00
/**
* Creates a Like clause in the sql statement
*
* @param string $field
* @param mixed $val
* @param string $pos
* @return $this
*/
public function like($field, $val, $pos='both')
{
2012-05-01 13:45:11 -04:00
return $this->_like($field, $val, $pos, 'LIKE', 'AND');
2012-03-15 09:25:18 -04:00
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Generates an OR Like clause
*
* @param string $field
* @param mixed $val
* @param string $pos
* @return $this
*/
public function or_like($field, $val, $pos='both')
{
2012-05-01 13:45:11 -04:00
return $this->_like($field, $val, $pos, 'LIKE', 'OR');
2012-03-15 09:25:18 -04:00
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Generates a NOT LIKE clause
*
* @param string $field
* @param mixed $val
* @param string $pos
* @return $this
*/
public function not_like($field, $val, $pos='both')
{
2012-05-01 13:45:11 -04:00
return $this->_like($field, $val, $pos, 'NOT LIKE', 'AND');
2012-03-15 09:25:18 -04:00
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Generates a OR NOT LIKE clause
*
* @param string $field
* @param mixed $val
* @param string $pos
2012-04-20 13:17:39 -04:00
* @return $this
2012-03-15 09:25:18 -04:00
*/
public function or_not_like($field, $val, $pos='both')
{
2012-05-01 13:45:11 -04:00
return $this->_like($field, $val, $pos, 'NOT LIKE', 'OR');
2012-03-15 09:25:18 -04:00
}
2012-04-16 13:43:41 -04:00
2012-05-01 13:45:11 -04:00
// --------------------------------------------------------------------------
// ! Having methods
2012-04-16 13:43:41 -04:00
// --------------------------------------------------------------------------
/**
2012-05-01 13:45:11 -04:00
* Simplify building having clauses
2012-04-16 13:43:41 -04:00
*
* @param mixed $key
* @param mixed $val
2012-05-01 13:45:11 -04:00
* @param string $conj
2012-04-16 13:43:41 -04:00
* @return $this
*/
2012-05-01 13:45:11 -04:00
private function _having($key, $val=array(), $conj='AND')
2012-04-16 13:43:41 -04:00
{
$where = $this->_where($key, $val);
// Create key/value placeholders
2012-05-14 13:33:41 -04:00
foreach($where as $f => &$val)
{
// Split each key by spaces, in case there
// is an operator such as >, <, !=, etc.
$f_array = explode(' ', trim($f));
$item = $this->quote_ident($f_array[0]);
// Simple key value, or an operator
$item .= (count($f_array) === 1) ? '= ?' : " {$f_array[1]} ?";
// Put in the query map for select statements
$this->having_map[] = array(
2012-05-01 13:45:11 -04:00
'conjunction' => ( ! empty($this->having_map)) ? " {$conj} " : ' HAVING ',
'string' => $item
);
}
2012-05-01 13:45:11 -04:00
return $this;
2012-04-16 13:43:41 -04:00
}
// --------------------------------------------------------------------------
2012-05-01 13:45:11 -04:00
/**
* Generates a 'Having' clause
*
* @param mixed $key
* @param mixed $val
* @return $this
*/
public function having($key, $val=array())
{
return $this->_having($key, $val, 'AND');
}
// --------------------------------------------------------------------------
2012-04-16 13:43:41 -04:00
/**
* Generates a 'Having' clause prefixed with 'OR'
*
* @param mixed $key
* @param mixed $val
* @return $this
*/
public function or_having($key, $val=array())
{
2012-05-01 13:45:11 -04:00
return $this->_having($key, $val, 'OR');
2012-04-16 13:43:41 -04:00
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
// ! 'Where' methods
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Do all the repeditive stuff for where/having type methods
2012-03-15 09:25:18 -04:00
*
* @param mixed $key
* @param mixed $val
* @return array
*/
private function _where($key, $val=array())
{
$where = array();
2012-03-15 09:25:18 -04:00
// Key and value passed? Add them to the where array
if (is_scalar($key) && is_scalar($val))
{
$where[$key] = $val;
$this->values[] = $val;
}
// Array or object, loop through and add to the where array
elseif ( ! is_scalar($key))
{
2012-05-14 13:33:41 -04:00
foreach($key as $k => &$v)
2012-03-15 09:25:18 -04:00
{
$where[$k] = $v;
$this->values[] = $v;
}
}
2012-03-15 09:25:18 -04:00
return $where;
}
2012-04-30 16:06:06 -04:00
// --------------------------------------------------------------------------
2012-05-01 13:45:11 -04:00
/**
* Simplify generating where string
*
* @param mixed $key
* @param mixed $val
* @param string $conj
* @return $this
*/
private function _where_string($key, $val=array(), $conj='AND')
{
$where = $this->_where($key, $val);
// Create key/value placeholders
2012-05-14 13:33:41 -04:00
foreach($where as $f => &$val)
2012-05-01 13:45:11 -04:00
{
// Split each key by spaces, in case there
// is an operator such as >, <, !=, etc.
$f_array = explode(' ', trim($f));
$item = $this->quote_ident($f_array[0]);
// Simple key value, or an operator
$item .= (count($f_array) === 1) ? '= ?' : " {$f_array[1]} ?";
// Put in the query map for select statements
$this->query_map[] = array(
'type' => 'where',
'conjunction' => ( ! empty($this->query_map)) ? " {$conj} " : ' WHERE ',
'string' => $item
);
}
return $this;
}
// --------------------------------------------------------------------------
2012-04-30 16:06:06 -04:00
/**
* Simplify where_in methods
*
* @param mixed $key
* @param mixed $val
* @param string
* @param string
2012-05-01 13:45:11 -04:00
* @return $this
2012-04-30 16:06:06 -04:00
*/
private function _where_in($key, $val=array(), $in='IN', $conj='AND')
{
2012-05-01 13:45:11 -04:00
$key = $this->quote_ident($key);
2012-04-30 16:06:06 -04:00
$params = array_fill(0, count($val), '?');
2012-05-14 13:33:41 -04:00
foreach($val as &$v)
2012-04-30 16:06:06 -04:00
{
$this->values[] = $v;
}
2012-05-01 13:45:11 -04:00
$string = $key . " {$in} ".implode(',', $params).') ';
2012-04-30 16:06:06 -04:00
$this->query_map[] = array(
'type' => 'where_in',
'conjunction' => ( ! empty($this->query_map)) ? " {$conj} " : ' WHERE ',
'string' => $string
);
2012-05-01 13:45:11 -04:00
return $this;
2012-04-30 16:06:06 -04:00
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Specify condition(s) in the where clause of a query
* Note: this function works with key / value, or a
2012-03-15 09:25:18 -04:00
* passed array with key / value pairs
*
* @param mixed $key
2012-03-15 09:25:18 -04:00
* @param mixed $val
* @return $this
*/
public function where($key, $val=array())
{
2012-05-01 13:45:11 -04:00
return $this->_where_string($key, $val, 'AND');
2012-03-15 09:25:18 -04:00
}
// --------------------------------------------------------------------------
/**
* Where clause prefixed with "OR"
*
2012-05-01 13:45:11 -04:00
* @param string $key
2012-03-15 09:25:18 -04:00
* @param mixed $val
* @return $this
*/
2012-05-01 13:45:11 -04:00
public function or_where($key, $val=array())
2012-03-15 09:25:18 -04:00
{
2012-05-01 13:45:11 -04:00
return $this->_where_string($key, $val, 'OR');
2012-03-15 09:25:18 -04:00
}
// --------------------------------------------------------------------------
/**
* Where clause with 'IN' statement
*
* @param mixed $field
* @param mixed $val
* @return $this
*/
public function where_in($field, $val=array())
{
2012-05-01 13:45:11 -04:00
return $this->_where_in($field, $val);
2012-03-15 09:25:18 -04:00
}
// --------------------------------------------------------------------------
/**
* Where in statement prefixed with "or"
*
* @param string $field
* @param mixed $val
* @return $this
*/
public function or_where_in($field, $val=array())
{
2012-05-01 13:45:11 -04:00
return $this->_where_in($field, $val, 'IN', 'OR');
2012-03-15 09:25:18 -04:00
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
/**
* WHERE NOT IN (FOO) clause
*
* @param string $field
* @param mixed $val
* @return $this
*/
public function where_not_in($field, $val=array())
{
2012-05-01 13:45:11 -04:00
return $this->_where_in($field, $val, 'NOT IN', 'AND');
2012-03-15 09:25:18 -04:00
}
// --------------------------------------------------------------------------
/**
* OR WHERE NOT IN (FOO) clause
*
2012-03-15 09:25:18 -04:00
* @param string $field
* @param mixed $val
* @return $this
*/
public function or_where_not_in($field, $val=array())
{
2012-05-01 13:45:11 -04:00
return $this->_where_in($field, $val, 'NOT IN', 'OR');
2012-03-15 09:25:18 -04:00
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
// ! Other Query Modifier methods
// --------------------------------------------------------------------------
2012-04-16 13:43:41 -04:00
/**
* Sets values for inserts / updates / deletes
*
* @param mixed $key
* @param mixed $val
* @return $this
*/
2012-04-30 14:49:30 -04:00
public function set($key, $val = NULL)
2012-04-16 13:43:41 -04:00
{
// Plain key, value pair
if (is_scalar($key) && is_scalar($val))
{
2012-04-30 14:49:30 -04:00
$this->set_array_keys[] = $key;
2012-04-16 13:43:41 -04:00
$this->values[] = $val;
}
// Object or array
elseif ( ! is_scalar($key))
{
2012-05-14 13:33:41 -04:00
foreach($key as $k => &$v)
2012-04-16 13:43:41 -04:00
{
2012-04-30 14:49:30 -04:00
$this->set_array_keys[] = $k;
$this->values[] = $v;
2012-04-16 13:43:41 -04:00
}
}
// Use the keys of the array to make the insert/update string
// Escape the field names
2012-04-30 14:49:30 -04:00
$this->set_array_keys = array_map(array($this->db, 'quote_ident'), $this->set_array_keys);
2012-04-16 13:43:41 -04:00
// Generate the "set" string
$this->set_string = implode('=?, ', $this->set_array_keys);
$this->set_string .= '=?';
return $this;
}
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Creates a join phrase in a compiled query
*
* @param string $table
* @param string $condition
* @param string $type
* @return $this
*/
public function join($table, $condition, $type='')
{
// TODO make able to handle operators without spaces
2012-04-30 15:29:45 -04:00
$table = implode(" ", array_map(array($this->db, 'quote_ident'), explode(' ', trim($table))));
2012-03-15 09:25:18 -04:00
//$condition = preg_replace('`(\W)`', " $1 ", $condition);
$cond_array = explode(' ', trim($condition));
$cond_array = array_map('trim', $cond_array);
$condition = $table . ' ON ' . $this->quote_ident($cond_array[0]) . $cond_array[1] .
' ' . $this->quote_ident($cond_array[2]);
2012-03-15 09:25:18 -04:00
$this->query_map[] = array(
'type' => 'join',
'conjunction' => strtoupper($type).' JOIN ',
'string' => $condition,
);
2012-03-15 09:25:18 -04:00
return $this;
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Group the results by the selected field(s)
*
* @param mixed $field
* @return $this
*/
public function group_by($field)
{
if ( ! is_scalar($field))
{
$this->group_array = array_map(array($this->db, 'quote_ident'), $field);
}
else
{
$this->group_array[] = $this->quote_ident($field);
2012-03-15 09:25:18 -04:00
}
2012-03-15 09:25:18 -04:00
$this->group_string = ' GROUP BY ' . implode(', ', $this->group_array);
2012-03-15 09:25:18 -04:00
return $this;
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Order the results by the selected field(s)
*
* @param string $field
* @param string $type
* @return $this
*/
public function order_by($field, $type="")
{
// Random case
if (stripos($type, 'rand') !== FALSE)
{
$type = (($rand = $this->sql->random()) !== FALSE ) ? $rand : 'ASC';
}
2012-03-15 09:25:18 -04:00
// Set fields for later manipulation
$field = $this->quote_ident($field);
2012-03-15 09:25:18 -04:00
$this->order_array[$field] = $type;
2012-03-15 09:25:18 -04:00
$order_clauses = array();
2012-03-15 09:25:18 -04:00
// Flatten key/val pairs into an array of space-separated pairs
2012-05-14 13:33:41 -04:00
foreach($this->order_array as $k => &$v)
2012-03-15 09:25:18 -04:00
{
$order_clauses[] = $k . ' ' . strtoupper($v);
}
2012-03-15 09:25:18 -04:00
// Set the final string
$this->order_string = (empty($rand))
2012-03-15 09:25:18 -04:00
? ' ORDER BY '.implode(',', $order_clauses)
: ' ORDER BY'.$rand;
2012-03-15 09:25:18 -04:00
return $this;
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Set a limit on the current sql statement
*
* @param int $limit
* @param int $offset
* @return string
*/
public function limit($limit, $offset=FALSE)
{
$this->limit = $limit;
$this->offset = $offset;
2012-03-15 09:25:18 -04:00
return $this;
}
// --------------------------------------------------------------------------
// ! Query Grouping Methods
// --------------------------------------------------------------------------
/**
* Adds a paren to the current query for query grouping
*
* @return $this
*/
public function group_start()
{
$this->query_map[] = array(
'type' => 'group_start',
'conjunction' => '',
'string' => ' ('
);
return $this;
}
// --------------------------------------------------------------------------
/**
* Adds a paren to the current query for query grouping,
* prefixed with 'OR'
*
* @return $this
*/
public function or_group_start()
{
$this->query_map[] = array(
'type' => 'group_start',
'conjunction' => '',
'string' => ' OR ('
);
return $this;
}
// --------------------------------------------------------------------------
/**
* Adds a paren to the current query for query grouping,
* prefixed with 'OR NOT'
*
* @return $this
*/
public function or_not_group_start()
{
$this->query_map[] = array(
'type' => 'group_start',
'conjunction' => '',
'string' => ' OR NOT ('
);
return $this;
}
// --------------------------------------------------------------------------
/**
* Ends a query group
*
* @return $this
*/
public function group_end()
{
$this->query_map[] = array(
'type' => 'group_end',
'conjunction' => '',
'string' => ' ) '
);
return $this;
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
// ! Query execution methods
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Select and retrieve all records from the current table, and/or
* execute current compiled query
*
* @param $table
* @param int $limit
* @param int $offset
* @return object
*/
public function get($table='', $limit=FALSE, $offset=FALSE)
{
// Set the table
if ( ! empty($table))
{
$this->from($table);
}
// Set the limit, if it exists
if ($limit !== FALSE)
{
$this->limit($limit, $offset);
}
2012-03-15 09:25:18 -04:00
$sql = $this->_compile();
// Do prepared statements for anything involving a "where" clause
if ( ! empty($this->query_map) || ! empty($this->having_map))
2012-03-15 09:25:18 -04:00
{
$result = $this->prepare_execute($sql, $this->values);
2012-03-15 09:25:18 -04:00
}
else
{
2012-03-15 09:25:18 -04:00
// Otherwise, a simple query will do.
$result = $this->query($sql);
2012-03-15 09:25:18 -04:00
}
// Reset for next query
$this->_reset();
2012-03-15 09:25:18 -04:00
return $result;
}
// --------------------------------------------------------------------------
/**
* Convience method for get() with a where clause
*
* @param string $table
* @param array $where
* @param int $limit
* @param int $offset
* @return object
*/
public function get_where($table, $where=array(), $limit=FALSE, $offset=FALSE)
{
// Create the where clause
$this->where($where);
// Return the result
return $this->get($table, $limit, $offset);
}
2012-04-16 13:43:41 -04:00
// --------------------------------------------------------------------------
/**
* Retreive the number of rows in the selected table
*
* @param string $table
* @return int
*/
public function count_all($table)
{
$sql = 'SELECT * FROM '.$this->quote_ident($table);
$res = $this->query($sql);
return (int) count($res->fetchAll());
2012-04-16 13:43:41 -04:00
}
// --------------------------------------------------------------------------
/**
* Retrieve the number of results for the generated query - used
* in place of the get() method
*
* @param string $table
* @return int
*/
public function count_all_results($table='')
{
// Set the table
if ( ! empty($table))
{
$this->from($table);
}
$sql = $this->_compile();
// Do prepared statements for anything involving a "where" clause
if ( ! empty($this->query_map))
{
$result = $this->prepare_execute($sql, $this->values);
}
else
{
// Otherwise, a simple query will do.
$result = $this->query($sql);
}
// Reset for next query
$this->_reset();
$rows = $result->fetchAll();
2012-04-17 11:43:06 -04:00
return (int) count($rows);
2012-04-16 13:43:41 -04:00
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
/**
* Creates an insert clause, and executes it
*
* @param string $table
* @param mixed $data
* @return mixed
*/
public function insert($table, $data=array())
{
// No use duplicating logic!
if ( ! empty($data))
{
$this->set($data);
}
2012-03-15 09:25:18 -04:00
$sql = $this->_compile("insert", $table);
$res = $this->prepare_execute($sql, $this->values);
2012-03-15 09:25:18 -04:00
$this->_reset();
2012-03-15 09:25:18 -04:00
return $res;
}
// --------------------------------------------------------------------------
/**
* Creates an update clause, and executes it
*
* @param string $table
* @param mixed $data
* @return mixed
*/
public function update($table, $data=array())
{
// No use duplicating logic!
if ( ! empty($data))
{
$this->set($data);
}
2012-03-15 09:25:18 -04:00
$sql = $this->_compile('update', $table);
$res = $this->prepare_execute($sql, $this->values);
2012-03-15 09:25:18 -04:00
$this->_reset();
// Run the query
return $res;
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
/**
* Deletes data from a table
*
* @param string $table
* @param mixed $where
* @return mixed
*/
public function delete($table, $where='')
{
// Set the where clause
if ( ! empty($where))
{
$this->where($where);
}
// Create the SQL and parameters
$sql = $this->_compile("delete", $table);
$res = $this->prepare_execute($sql, $this->values);
2012-03-15 09:25:18 -04:00
$this->_reset();
// Delete the table rows, and return the result
return $res;
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
// ! Miscellaneous Methods
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
/**
* Calls a function further down the inheritence chain
*
* @param string $name
* @param array $params
* @return mixed
*/
public function __call($name, $params)
{
if (method_exists($this->db, $name))
{
return call_user_func_array(array($this->db, $name), $params);
}
return NULL;
}
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* Clear out the class variables, so the next query can be run
*
* @return void
2012-03-15 09:25:18 -04:00
*/
private function _reset()
{
// Only unset class variables that
// are not callable. Otherwise, we'll
2012-03-15 09:25:18 -04:00
// delete class methods!
foreach($this as $name => $var)
2012-03-15 09:25:18 -04:00
{
// Skip properties that are needed for every query
2012-04-30 15:29:45 -04:00
if (in_array($name, array(
2012-03-15 09:25:18 -04:00
'db',
'sql'
2012-04-30 15:29:45 -04:00
)))
2012-03-15 09:25:18 -04:00
{
continue;
}
2012-03-15 09:25:18 -04:00
// Nothing query-generation related is safe!
if ( ! is_callable($this->$name))
{
$this->$name = NULL;
2012-03-15 09:25:18 -04:00
}
// Set empty arrays
2012-03-15 09:25:18 -04:00
$this->values = array();
// Set select string as an empty string, for proper handling
// of the 'distinct' keyword
$this->select_string = '';
2012-03-15 09:25:18 -04:00
}
}
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
2012-03-15 09:25:18 -04:00
/**
* String together the sql statements for sending to the db
*
* @param string $type
* @param string $table
* @return $string
*/
2012-04-30 14:22:27 -04:00
private function _compile($type='', $table='')
2012-03-15 09:25:18 -04:00
{
$sql = '';
2012-04-30 15:29:45 -04:00
$table = $this->quote_ident($table);
2012-03-15 09:25:18 -04:00
switch($type)
{
default:
2012-04-30 15:29:45 -04:00
$sql = "SELECT * FROM {$this->from_string}";
2012-03-15 09:25:18 -04:00
// Set the select string
if ( ! empty($this->select_string))
{
// Replace the star with the selected fields
$sql = str_replace('*', $this->select_string, $sql);
}
2012-03-15 09:25:18 -04:00
// Set the where string
if ( ! empty($this->query_map))
{
2012-05-14 13:33:41 -04:00
foreach($this->query_map as &$q)
2012-03-15 09:25:18 -04:00
{
$sql .= $q['conjunction'] . $q['string'];
}
}
2012-03-15 09:25:18 -04:00
// Set the group_by string
if ( ! empty($this->group_string))
{
$sql .= $this->group_string;
}
// Set the having string
if ( ! empty($this->having_map))
{
2012-05-14 13:33:41 -04:00
foreach($this->having_map as &$h)
{
$sql .= $h['conjunction'] . $h['string'];
}
}
2012-03-15 09:25:18 -04:00
// Set the order_by string
if ( ! empty($this->order_string))
{
$sql .= $this->order_string;
}
2012-03-15 09:25:18 -04:00
// Set the limit via the class variables
if (isset($this->limit) && is_numeric($this->limit))
{
$sql = $this->sql->limit($sql, $this->limit, $this->offset);
}
break;
2012-03-15 09:25:18 -04:00
case "insert":
2012-04-30 14:49:30 -04:00
$param_count = count($this->set_array_keys);
2012-03-15 09:25:18 -04:00
$params = array_fill(0, $param_count, '?');
2012-04-30 15:29:45 -04:00
$sql = "INSERT INTO {$table} ("
. implode(', ', $this->set_array_keys) .
2012-03-15 09:25:18 -04:00
') VALUES ('.implode(', ', $params).')';
break;
2012-03-15 09:25:18 -04:00
case "update":
2012-04-30 15:29:45 -04:00
$sql = "UPDATE {$table} SET {$this->set_string}";
2012-03-15 09:25:18 -04:00
// Set the where string
if ( ! empty($this->query_map))
{
2012-05-14 13:33:41 -04:00
foreach($this->query_map as &$q)
2012-03-15 09:25:18 -04:00
{
$sql .= $q['conjunction'] . $q['string'];
}
}
break;
2012-03-15 09:25:18 -04:00
case "delete":
2012-04-30 15:29:45 -04:00
$sql = "DELETE FROM {$table}";
2012-03-15 09:25:18 -04:00
// Set the where string
if ( ! empty($this->query_map))
{
2012-05-14 13:33:41 -04:00
foreach($this->query_map as &$q)
2012-03-15 09:25:18 -04:00
{
$sql .= $q['conjunction'] . $q['string'];
}
}
break;
}
2012-05-01 14:19:34 -04:00
//echo $sql . '<br />';
2012-03-15 09:25:18 -04:00
return $sql;
}
}
// End of query_builder.php