query.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709
  1. <?php namespace System\DB;
  2. use System\Str;
  3. use System\Config;
  4. use System\Paginator;
  5. class Query {
  6. /**
  7. * The database connection.
  8. *
  9. * @var Connection
  10. */
  11. public $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 Connection $connection
  71. * @return void
  72. */
  73. public function __construct($table, $connection)
  74. {
  75. $this->table = $table;
  76. $this->connection = $connection;
  77. $this->from = 'FROM '.$this->wrap($table);
  78. }
  79. /**
  80. * Create a new query instance.
  81. *
  82. * @param string $table
  83. * @param Connection $connection
  84. * @return Query
  85. */
  86. public static function table($table, $connection)
  87. {
  88. return new static($table, $connection);
  89. }
  90. /**
  91. * Force the query to return distinct results.
  92. *
  93. * @return Query
  94. */
  95. public function distinct()
  96. {
  97. $this->distinct = true;
  98. return $this;
  99. }
  100. /**
  101. * Add columns to the SELECT clause.
  102. *
  103. * @param array $columns
  104. * @return Query
  105. */
  106. public function select($columns = array('*'))
  107. {
  108. $this->select = ($this->distinct) ? 'SELECT DISTINCT ' : 'SELECT ';
  109. $this->select .= implode(', ', array_map(array($this, 'wrap'), $columns));
  110. return $this;
  111. }
  112. /**
  113. * Set the FROM clause.
  114. *
  115. * @param string $from
  116. * @return Query
  117. */
  118. public function from($from)
  119. {
  120. $this->from = $from;
  121. return $this;
  122. }
  123. /**
  124. * Add a join to the query.
  125. *
  126. * @param string $table
  127. * @param string $column1
  128. * @param string $operator
  129. * @param string $column2
  130. * @param string $type
  131. * @return Query
  132. */
  133. public function join($table, $column1, $operator, $column2, $type = 'INNER')
  134. {
  135. $this->from .= ' '.$type.' JOIN '.$this->wrap($table).' ON '.$this->wrap($column1).' '.$operator.' '.$this->wrap($column2);
  136. return $this;
  137. }
  138. /**
  139. * Add a left join to the query.
  140. *
  141. * @param string $table
  142. * @param string $column1
  143. * @param string $operator
  144. * @param string $column2
  145. * @return Query
  146. */
  147. public function left_join($table, $column1, $operator, $column2)
  148. {
  149. return $this->join($table, $column1, $operator, $column2, 'LEFT');
  150. }
  151. /**
  152. * Reset the where clause to its initial state. All bindings will be cleared.
  153. *
  154. * @return void
  155. */
  156. public function reset_where()
  157. {
  158. $this->where = 'WHERE 1 = 1';
  159. $this->bindings = array();
  160. }
  161. /**
  162. * Add a raw where condition to the query.
  163. *
  164. * @param string $where
  165. * @param array $bindings
  166. * @param string $connector
  167. * @return Query
  168. */
  169. public function raw_where($where, $bindings = array(), $connector = 'AND')
  170. {
  171. $this->where .= ' '.$connector.' '.$where;
  172. $this->bindings = array_merge($this->bindings, $bindings);
  173. return $this;
  174. }
  175. /**
  176. * Add a raw or where condition to the query.
  177. *
  178. * @param string $where
  179. * @param array $bindings
  180. * @return Query
  181. */
  182. public function raw_or_where($where, $bindings = array())
  183. {
  184. return $this->raw_where($where, $bindings, 'OR');
  185. }
  186. /**
  187. * Add a where condition to the query.
  188. *
  189. * @param string $column
  190. * @param string $operator
  191. * @param mixed $value
  192. * @param string $connector
  193. * @return Query
  194. */
  195. public function where($column, $operator, $value, $connector = 'AND')
  196. {
  197. $this->where .= ' '.$connector.' '.$this->wrap($column).' '.$operator.' ?';
  198. $this->bindings[] = $value;
  199. return $this;
  200. }
  201. /**
  202. * Add an or where condition to the query.
  203. *
  204. * @param string $column
  205. * @param string $operator
  206. * @param mixed $value
  207. * @return Query
  208. */
  209. public function or_where($column, $operator, $value)
  210. {
  211. return $this->where($column, $operator, $value, 'OR');
  212. }
  213. /**
  214. * Add a where condition for the primary key to the query.
  215. * This is simply a short-cut method for convenience.
  216. *
  217. * @param mixed $value
  218. * @return Query
  219. */
  220. public function where_id($value)
  221. {
  222. return $this->where('id', '=', $value);
  223. }
  224. /**
  225. * Add an or where condition for the primary key to the query.
  226. * This is simply a short-cut method for convenience.
  227. *
  228. * @param mixed $value
  229. * @return Query
  230. */
  231. public function or_where_id($value)
  232. {
  233. return $this->or_where('id', '=', $value);
  234. }
  235. /**
  236. * Add a where in condition to the query.
  237. *
  238. * @param string $column
  239. * @param array $values
  240. * @param string $connector
  241. * @return Query
  242. */
  243. public function where_in($column, $values, $connector = 'AND')
  244. {
  245. $this->where .= ' '.$connector.' '.$this->wrap($column).' IN ('.$this->parameterize($values).')';
  246. $this->bindings = array_merge($this->bindings, $values);
  247. return $this;
  248. }
  249. /**
  250. * Add an or where in condition to the query.
  251. *
  252. * @param string $column
  253. * @param array $values
  254. * @return Query
  255. */
  256. public function or_where_in($column, $values)
  257. {
  258. return $this->where_in($column, $values, 'OR');
  259. }
  260. /**
  261. * Add a where not in condition to the query.
  262. *
  263. * @param string $column
  264. * @param array $values
  265. * @param string $connector
  266. * @return Query
  267. */
  268. public function where_not_in($column, $values, $connector = 'AND')
  269. {
  270. $this->where .= ' '.$connector.' '.$this->wrap($column).' NOT IN ('.$this->parameterize($values).')';
  271. $this->bindings = array_merge($this->bindings, $values);
  272. return $this;
  273. }
  274. /**
  275. * Add an or where not in condition to the query.
  276. *
  277. * @param string $column
  278. * @param array $values
  279. * @return Query
  280. */
  281. public function or_where_not_in($column, $values)
  282. {
  283. return $this->where_not_in($column, $values, 'OR');
  284. }
  285. /**
  286. * Add a where null condition to the query.
  287. *
  288. * @param string $column
  289. * @param string $connector
  290. * @return Query
  291. */
  292. public function where_null($column, $connector = 'AND')
  293. {
  294. $this->where .= ' '.$connector.' '.$this->wrap($column).' IS NULL';
  295. return $this;
  296. }
  297. /**
  298. * Add an or where null condition to the query.
  299. *
  300. * @param string $column
  301. * @return Query
  302. */
  303. public function or_where_null($column)
  304. {
  305. return $this->where_null($column, 'OR');
  306. }
  307. /**
  308. * Add a where not null condition to the query.
  309. *
  310. * @param string $column
  311. * @param string $connector
  312. * @return Query
  313. */
  314. public function where_not_null($column, $connector = 'AND')
  315. {
  316. $this->where .= ' '.$connector.' '.$this->wrap($column).' IS NOT NULL';
  317. return $this;
  318. }
  319. /**
  320. * Add an or where not null condition to the query.
  321. *
  322. * @param string $column
  323. * @return Query
  324. */
  325. public function or_where_not_null($column)
  326. {
  327. return $this->where_not_null($column, 'OR');
  328. }
  329. /**
  330. * Add dynamic where conditions to the query.
  331. *
  332. * Dynamic queries are caught by the __call magic method and are parsed here.
  333. * They provide a convenient, expressive API for building simple conditions.
  334. *
  335. * @param string $method
  336. * @param array $parameters
  337. * @return Query
  338. */
  339. private function dynamic_where($method, $parameters)
  340. {
  341. // Strip the "where_" off of the method.
  342. $finder = substr($method, 6);
  343. // Split the column names from the connectors.
  344. $segments = preg_split('/(_and_|_or_)/i', $finder, -1, PREG_SPLIT_DELIM_CAPTURE);
  345. // The connector variable will determine which connector will be used for the condition.
  346. // We'll change it as we come across new connectors in the dynamic method string.
  347. //
  348. // The index variable helps us get the correct parameter value for the where condition.
  349. // We increment it each time we add a condition.
  350. $connector = 'AND';
  351. $index = 0;
  352. foreach ($segments as $segment)
  353. {
  354. if ($segment != '_and_' and $segment != '_or_')
  355. {
  356. $this->where($segment, '=', $parameters[$index], $connector);
  357. $index++;
  358. }
  359. else
  360. {
  361. $connector = trim(strtoupper($segment), '_');
  362. }
  363. }
  364. return $this;
  365. }
  366. /**
  367. * Add an ordering to the query.
  368. *
  369. * @param string $column
  370. * @param string $direction
  371. * @return Query
  372. */
  373. public function order_by($column, $direction = 'asc')
  374. {
  375. $this->orderings[] = $this->wrap($column).' '.strtoupper($direction);
  376. return $this;
  377. }
  378. /**
  379. * Set the query offset.
  380. *
  381. * @param int $value
  382. * @return Query
  383. */
  384. public function skip($value)
  385. {
  386. $this->offset = $value;
  387. return $this;
  388. }
  389. /**
  390. * Set the query limit.
  391. *
  392. * @param int $value
  393. * @return Query
  394. */
  395. public function take($value)
  396. {
  397. $this->limit = $value;
  398. return $this;
  399. }
  400. /**
  401. * Set the limit and offset values for a given page.
  402. *
  403. * @param int $page
  404. * @param int $per_page
  405. * @return Query
  406. */
  407. public function for_page($page, $per_page)
  408. {
  409. return $this->skip(($page - 1) * $per_page)->take($per_page);
  410. }
  411. /**
  412. * Find a record by the primary key.
  413. *
  414. * @param int $id
  415. * @param array $columns
  416. * @return object
  417. */
  418. public function find($id, $columns = array('*'))
  419. {
  420. return $this->where('id', '=', $id)->first($columns);
  421. }
  422. /**
  423. * Get an aggregate value.
  424. *
  425. * @param string $aggregate
  426. * @param string $column
  427. * @return mixed
  428. */
  429. private function aggregate($aggregator, $column)
  430. {
  431. $this->select = 'SELECT '.$aggregator.'('.$this->wrap($column).') AS '.$this->wrap('aggregate');
  432. return $this->first()->aggregate;
  433. }
  434. /**
  435. * Get paginated query results.
  436. *
  437. * @param int $per_page
  438. * @param array $columns
  439. * @return Paginator
  440. */
  441. public function paginate($per_page, $columns = array('*'))
  442. {
  443. $total = $this->count();
  444. return Paginator::make($this->for_page(Paginator::page($total, $per_page), $per_page)->get($columns), $total, $per_page);
  445. }
  446. /**
  447. * Execute the query as a SELECT statement and return the first result.
  448. *
  449. * @param array $columns
  450. * @return object
  451. */
  452. public function first($columns = array('*'))
  453. {
  454. return (count($results = $this->take(1)->get($columns)) > 0) ? $results[0] : null;
  455. }
  456. /**
  457. * Execute the query as a SELECT statement.
  458. *
  459. * @param array $columns
  460. * @return array
  461. */
  462. public function get($columns = array('*'))
  463. {
  464. if (is_null($this->select))
  465. {
  466. $this->select($columns);
  467. }
  468. $results = $this->connection->query($this->compile_select(), $this->bindings);
  469. // Reset the SELECT clause so more queries can be performed using the same instance.
  470. // This is helpful for getting aggregates and then getting actual results.
  471. $this->select = null;
  472. return $results;
  473. }
  474. /**
  475. * Compile the query into a SQL SELECT statement.
  476. *
  477. * @return string
  478. */
  479. private function compile_select()
  480. {
  481. $sql = $this->select.' '.$this->from.' '.$this->where;
  482. if (count($this->orderings) > 0)
  483. {
  484. $sql .= ' ORDER BY '.implode(', ', $this->orderings);
  485. }
  486. if ( ! is_null($this->limit))
  487. {
  488. $sql .= ' LIMIT '.$this->limit;
  489. }
  490. if ( ! is_null($this->offset))
  491. {
  492. $sql .= ' OFFSET '.$this->offset;
  493. }
  494. return $sql;
  495. }
  496. /**
  497. * Execute an INSERT statement.
  498. *
  499. * @param array $values
  500. * @return bool
  501. */
  502. public function insert($values)
  503. {
  504. return $this->connection->query($this->compile_insert($values), array_values($values));
  505. }
  506. /**
  507. * Execute an INSERT statement and get the insert ID.
  508. *
  509. * @param array $values
  510. * @return int
  511. */
  512. public function insert_get_id($values)
  513. {
  514. $sql = $this->compile_insert($values);
  515. if ($this->connection->driver() == 'pgsql')
  516. {
  517. $query = $this->connection->pdo->prepare($sql.' RETURNING '.$this->wrap('id'));
  518. $query->execute(array_values($values));
  519. return $query->fetch(\PDO::FETCH_CLASS, 'stdClass')->id;
  520. }
  521. $this->connection->query($sql, array_values($values));
  522. return $this->connection->pdo->lastInsertId();
  523. }
  524. /**
  525. * Compile the query into a SQL INSERT statement.
  526. *
  527. * @param array $values
  528. * @return string
  529. */
  530. private function compile_insert($values)
  531. {
  532. $sql = 'INSERT INTO '.$this->wrap($this->table);
  533. $columns = array_map(array($this, 'wrap'), array_keys($values));
  534. return $sql .= ' ('.implode(', ', $columns).') VALUES ('.$this->parameterize($values).')';
  535. }
  536. /**
  537. * Execute the query as an UPDATE statement.
  538. *
  539. * @param array $values
  540. * @return bool
  541. */
  542. public function update($values)
  543. {
  544. $sql = 'UPDATE '.$this->wrap($this->table).' SET ';
  545. foreach (array_keys($values) as $column)
  546. {
  547. $sets[] = $this->wrap($column).' = ?';
  548. }
  549. return $this->connection->query($sql.implode(', ', $sets).' '.$this->where, array_merge(array_values($values), $this->bindings));
  550. }
  551. /**
  552. * Execute the query as a DELETE statement.
  553. *
  554. * @param int $id
  555. * @return bool
  556. */
  557. public function delete($id = null)
  558. {
  559. if ( ! is_null($id)) $this->where('id', '=', $id);
  560. return $this->connection->query('DELETE FROM '.$this->wrap($this->table).' '.$this->where, $this->bindings);
  561. }
  562. /**
  563. * Wrap a value in keyword identifiers.
  564. *
  565. * @param string $value
  566. * @return string
  567. */
  568. private function wrap($value)
  569. {
  570. if (strpos(strtolower($value), ' as ') !== false)
  571. {
  572. return $this->wrap_alias($value);
  573. }
  574. $wrap = $this->connection->wrapper();
  575. foreach (explode('.', $value) as $segment)
  576. {
  577. $wrapped[] = ($segment != '*') ? $wrap.$segment.$wrap : $segment;
  578. }
  579. return implode('.', $wrapped);
  580. }
  581. /**
  582. * Wrap an alias in keyword identifiers.
  583. *
  584. * @param string $value
  585. * @return string
  586. */
  587. private function wrap_alias($value)
  588. {
  589. $segments = explode(' ', $value);
  590. return $this->wrap($segments[0]).' AS '.$this->wrap($segments[2]);
  591. }
  592. /**
  593. * Create query parameters from an array of values.
  594. *
  595. * @param array $values
  596. * @return string
  597. */
  598. private function parameterize($values)
  599. {
  600. return implode(', ', array_fill(0, count($values), '?'));
  601. }
  602. /**
  603. * Magic Method for handling dynamic functions.
  604. */
  605. public function __call($method, $parameters)
  606. {
  607. if (strpos($method, 'where_') === 0)
  608. {
  609. return $this->dynamic_where($method, $parameters, $this);
  610. }
  611. if (in_array($method, array('count', 'min', 'max', 'avg', 'sum')))
  612. {
  613. return ($method == 'count') ? $this->aggregate(strtoupper($method), '*') : $this->aggregate(strtoupper($method), $parameters[0]);
  614. }
  615. throw new \Exception("Method [$method] is not defined on the Query class.");
  616. }
  617. }