query.php 14 KB

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