query.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  1. <?php namespace System\DB;
  2. use System\DB;
  3. use System\Config;
  4. use System\Str;
  5. class Query {
  6. /**
  7. * The database connection name.
  8. *
  9. * @var string
  10. */
  11. private $connection;
  12. /**
  13. * The SELECT clause.
  14. *
  15. * @var string
  16. */
  17. public $select;
  18. /**
  19. * Indicates if the query should return distinct results.
  20. *
  21. * @var bool
  22. */
  23. public $distinct = false;
  24. /**
  25. * The FROM clause.
  26. *
  27. * @var string
  28. */
  29. public $from;
  30. /**
  31. * The table name.
  32. *
  33. * @var string
  34. */
  35. public $table;
  36. /**
  37. * The WHERE clause.
  38. *
  39. * @var string
  40. */
  41. public $where = 'WHERE 1 = 1';
  42. /**
  43. * The ORDER BY columns.
  44. *
  45. * @var array
  46. */
  47. public $orderings = array();
  48. /**
  49. * The LIMIT value.
  50. *
  51. * @var int
  52. */
  53. public $limit;
  54. /**
  55. * The OFFSET value.
  56. *
  57. * @var int
  58. */
  59. public $offset;
  60. /**
  61. * The query value bindings.
  62. *
  63. * @var array
  64. */
  65. public $bindings = array();
  66. /**
  67. * Create a new query instance.
  68. *
  69. * @param string $table
  70. * @param string $connection
  71. * @return void
  72. */
  73. public function __construct($table, $connection = null)
  74. {
  75. $this->connection = (is_null($connection)) ? Config::get('db.default') : $connection;
  76. $this->from = 'FROM '.$this->wrap($this->table = $table);
  77. }
  78. /**
  79. * Create a new query instance.
  80. *
  81. * @param string $table
  82. * @param string $connection
  83. * @return Query
  84. */
  85. public static function table($table, $connection = null)
  86. {
  87. return new static($table, $connection);
  88. }
  89. /**
  90. * Force the query to return distinct results.
  91. *
  92. * @return Query
  93. */
  94. public function distinct()
  95. {
  96. $this->distinct = true;
  97. return $this;
  98. }
  99. /**
  100. * Add columns to the SELECT clause.
  101. *
  102. * @return Query
  103. */
  104. public function select()
  105. {
  106. $this->select = ($this->distinct) ? 'SELECT DISTINCT ' : 'SELECT ';
  107. $columns = array();
  108. foreach (func_get_args() as $column)
  109. {
  110. // If the column name is being aliased, we will need to wrap the column
  111. // name and its alias in keyword identifiers.
  112. if (strpos(strtolower($column), ' as ') !== false)
  113. {
  114. $segments = explode(' ', $column);
  115. $columns[] = $this->wrap($segments[0]).' AS '.$this->wrap($segments[2]);
  116. }
  117. else
  118. {
  119. $columns[] = $this->wrap($column);
  120. }
  121. }
  122. $this->select .= implode(', ', $columns);
  123. return $this;
  124. }
  125. /**
  126. * Set the FROM clause.
  127. *
  128. * @param string $from
  129. * @return Query
  130. */
  131. public function from($from)
  132. {
  133. $this->from = $from;
  134. return $this;
  135. }
  136. /**
  137. * Add a join to the query.
  138. *
  139. * @param string $table
  140. * @param string $column1
  141. * @param string $operator
  142. * @param string $column2
  143. * @param string $type
  144. * @return Query
  145. */
  146. public function join($table, $column1, $operator, $column2, $type = 'INNER')
  147. {
  148. $this->from .= ' '.$type.' JOIN '.$this->wrap($table).' ON '.$this->wrap($column1).' '.$operator.' '.$this->wrap($column2);
  149. return $this;
  150. }
  151. /**
  152. * Add a left join to the query.
  153. *
  154. * @param string $table
  155. * @param string $column1
  156. * @param string $operator
  157. * @param string $column2
  158. * @return Query
  159. */
  160. public function left_join($table, $column1, $operator, $column2)
  161. {
  162. return $this->join($table, $column1, $operator, $column2, 'LEFT');
  163. }
  164. /**
  165. * Add a raw where condition to the query.
  166. *
  167. * @param string $where
  168. * @param array $bindings
  169. * @param string $connector
  170. * @return Query
  171. */
  172. public function raw_where($where, $bindings = array(), $connector = 'AND')
  173. {
  174. $this->where .= ' '.$connector.' '.$where;
  175. $this->bindings = array_merge($this->bindings, $bindings);
  176. return $this;
  177. }
  178. /**
  179. * Add a raw or where condition to the query.
  180. *
  181. * @param string $where
  182. * @param array $bindings
  183. * @return Query
  184. */
  185. public function raw_or_where($where, $bindings = array())
  186. {
  187. return $this->raw_where($where, $bindings, 'OR');
  188. }
  189. /**
  190. * Add a where condition to the query.
  191. *
  192. * @param string $column
  193. * @param string $operator
  194. * @param mixed $value
  195. * @param string $connector
  196. * @return Query
  197. */
  198. public function where($column, $operator, $value, $connector = 'AND')
  199. {
  200. $this->where .= ' '.$connector.' '.$this->wrap($column).' '.$operator.' ?';
  201. $this->bindings[] = $value;
  202. return $this;
  203. }
  204. /**
  205. * Add an or where condition to the query.
  206. *
  207. * @param string $column
  208. * @param string $operator
  209. * @param mixed $value
  210. * @return Query
  211. */
  212. public function or_where($column, $operator, $value)
  213. {
  214. return $this->where($column, $operator, $value, 'OR');
  215. }
  216. /**
  217. * Add a where in condition to the query.
  218. *
  219. * @param string $column
  220. * @param array $values
  221. * @param string $connector
  222. * @return Query
  223. */
  224. public function where_in($column, $values, $connector = 'AND')
  225. {
  226. $this->where .= ' '.$connector.' '.$this->wrap($column).' IN ('.$this->parameterize($values).')';
  227. $this->bindings = array_merge($this->bindings, $values);
  228. return $this;
  229. }
  230. /**
  231. * Add an or where in condition to the query.
  232. *
  233. * @param string $column
  234. * @param array $values
  235. * @return Query
  236. */
  237. public function or_where_in($column, $values)
  238. {
  239. return $this->where_in($column, $values, 'OR');
  240. }
  241. /**
  242. * Add a where not in condition to the query.
  243. *
  244. * @param string $column
  245. * @param array $values
  246. * @param string $connector
  247. * @return Query
  248. */
  249. public function where_not_in($column, $values, $connector = 'AND')
  250. {
  251. $this->where .= ' '.$connector.' '.$this->wrap($column).' NOT IN ('.$this->parameterize($values).')';
  252. $this->bindings = array_merge($this->bindings, $values);
  253. return $this;
  254. }
  255. /**
  256. * Add an or where not in condition to the query.
  257. *
  258. * @param string $column
  259. * @param array $values
  260. * @return Query
  261. */
  262. public function or_where_not_in($column, $values)
  263. {
  264. return $this->where_not_in($column, $values, 'OR');
  265. }
  266. /**
  267. * Add a where null condition to the query.
  268. *
  269. * @param string $column
  270. * @param string $connector
  271. * @return Query
  272. */
  273. public function where_null($column, $connector = 'AND')
  274. {
  275. $this->where .= ' '.$connector.' '.$this->wrap($column).' IS NULL';
  276. return $this;
  277. }
  278. /**
  279. * Add an or where null condition to the query.
  280. *
  281. * @param string $column
  282. * @return Query
  283. */
  284. public function or_where_null($column)
  285. {
  286. return $this->where_null($column, 'OR');
  287. }
  288. /**
  289. * Add a where not null condition to the query.
  290. *
  291. * @param string $column
  292. * @param string $connector
  293. * @return Query
  294. */
  295. public function where_not_null($column, $connector = 'AND')
  296. {
  297. $this->where .= ' '.$connector.' '.$this->wrap($column).' IS NOT NULL';
  298. return $this;
  299. }
  300. /**
  301. * Add an or where not null condition to the query.
  302. *
  303. * @param string $column
  304. * @return Query
  305. */
  306. public function or_where_not_null($column)
  307. {
  308. return $this->where_not_null($column, 'OR');
  309. }
  310. /**
  311. * Add an ordering to the query.
  312. *
  313. * @param string $column
  314. * @param string $direction
  315. * @return Query
  316. */
  317. public function order_by($column, $direction)
  318. {
  319. $this->orderings[] = $this->wrap($column).' '.strtoupper($direction);
  320. return $this;
  321. }
  322. /**
  323. * Set the query offset.
  324. *
  325. * @param int $value
  326. * @return Query
  327. */
  328. public function skip($value)
  329. {
  330. $this->offset = $value;
  331. return $this;
  332. }
  333. /**
  334. * Set the query limit.
  335. *
  336. * @param int $value
  337. * @return Query
  338. */
  339. public function take($value)
  340. {
  341. $this->limit = $value;
  342. return $this;
  343. }
  344. /**
  345. * Find a record by the primary key.
  346. *
  347. * @param int $id
  348. * @return object
  349. */
  350. public function find($id)
  351. {
  352. return $this->where('id', '=', $id)->first();
  353. }
  354. /**
  355. * Execute the query as a SELECT statement and return the first result.
  356. *
  357. * @return object
  358. */
  359. public function first()
  360. {
  361. return (count($results = call_user_func_array(array($this->take(1), 'get'), func_get_args())) > 0) ? $results[0] : null;
  362. }
  363. /**
  364. * Execute the query as a SELECT statement.
  365. *
  366. * @return array
  367. */
  368. public function get()
  369. {
  370. if (is_null($this->select))
  371. {
  372. call_user_func_array(array($this, 'select'), (count(func_get_args()) > 0) ? func_get_args() : array('*'));
  373. }
  374. return DB::query(Query\Compiler::select($this), $this->bindings, $this->connection);
  375. }
  376. /**
  377. * Get an aggregate value.
  378. *
  379. * @param string $aggregate
  380. * @param string $column
  381. * @return mixed
  382. */
  383. private function aggregate($aggregator, $column)
  384. {
  385. $this->select = 'SELECT '.$aggregator.'('.$this->wrap($column).') AS '.$this->wrap('aggregate');
  386. return $this->first()->aggregate;
  387. }
  388. /**
  389. * Execute an INSERT statement.
  390. *
  391. * @param array $values
  392. * @return bool
  393. */
  394. public function insert($values)
  395. {
  396. return DB::query(Query\Compiler::insert($this, $values), array_values($values), $this->connection);
  397. }
  398. /**
  399. * Execute an INSERT statement and get the insert ID.
  400. *
  401. * @param array $values
  402. * @return int
  403. */
  404. public function insert_get_id($values)
  405. {
  406. $sql = Query\Compiler::insert($this, $values);
  407. // Use the RETURNING clause on Postgres instead of the PDO lastInsertID method.
  408. // The PDO method is a little cumbersome using Postgres.
  409. if (DB::driver($this->connection) == 'pgsql')
  410. {
  411. $query = DB::connection($this->connection)->prepare($sql.' RETURNING '.$this->wrap('id'));
  412. $query->execute(array_values($values));
  413. return $query->fetch(\PDO::FETCH_CLASS, 'stdClass')->id;
  414. }
  415. DB::query($sql, array_values($values), $this->connection);
  416. return DB::connection($this->connection)->lastInsertId();
  417. }
  418. /**
  419. * Execute the query as an UPDATE statement.
  420. *
  421. * @param array $values
  422. * @return bool
  423. */
  424. public function update($values)
  425. {
  426. return DB::query(Query\Compiler::update($this, $values), array_merge(array_values($values), $this->bindings), $this->connection);
  427. }
  428. /**
  429. * Execute the query as a DELETE statement.
  430. *
  431. * @param int $id
  432. * @return bool
  433. */
  434. public function delete($id = null)
  435. {
  436. if ( ! is_null($id))
  437. {
  438. $this->where('id', '=', $id);
  439. }
  440. return DB::query(Query\Compiler::delete($this), $this->bindings, $this->connection);
  441. }
  442. /**
  443. * Wrap a value in keyword identifiers.
  444. *
  445. * @param string $value
  446. * @return string
  447. */
  448. public function wrap($value)
  449. {
  450. $wrap = (DB::driver($this->connection) == 'mysql') ? '`' : '"';
  451. return implode('.', array_map(function($segment) use ($wrap) {return ($segment != '*') ? $wrap.$segment.$wrap : $segment;}, explode('.', $value)));
  452. }
  453. /**
  454. * Create query parameters from an array of values.
  455. *
  456. * @param array $values
  457. * @return string
  458. */
  459. public function parameterize($values)
  460. {
  461. return implode(', ', array_fill(0, count($values), '?'));
  462. }
  463. /**
  464. * Magic Method for handling dynamic functions.
  465. */
  466. public function __call($method, $parameters)
  467. {
  468. if (strpos($method, 'where_') === 0)
  469. {
  470. return Query\Dynamic::build($method, $parameters, $this);
  471. }
  472. if (in_array($method, array('count', 'min', 'max', 'avg', 'sum')))
  473. {
  474. return ($method == 'count') ? $this->aggregate(strtoupper($method), '*') : $this->aggregate(strtoupper($method), $parameters[0]);
  475. }
  476. throw new \Exception("Method [$method] is not defined on the Query class.");
  477. }
  478. }