query.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682
  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. All bindings will be cleared.
  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. * Dynamic queries are caught by the __call magic method and are parsed here.
  310. * They provide a convenient, expressive API for building simple conditions.
  311. *
  312. * @param string $method
  313. * @param array $parameters
  314. * @return Query
  315. */
  316. private function dynamic_where($method, $parameters)
  317. {
  318. // Strip the "where_" off of the method.
  319. $finder = substr($method, 6);
  320. // Split the column names from the connectors.
  321. $segments = preg_split('/(_and_|_or_)/i', $finder, -1, PREG_SPLIT_DELIM_CAPTURE);
  322. // The connector variable will determine which connector will be used for the condition.
  323. // We'll change it as we come across new connectors in the dynamic method string.
  324. //
  325. // The index variable helps us get the correct parameter value for the where condition.
  326. // We increment it each time we add a condition.
  327. $connector = 'AND';
  328. $index = 0;
  329. foreach ($segments as $segment)
  330. {
  331. if ($segment != '_and_' and $segment != '_or_')
  332. {
  333. $this->where($segment, '=', $parameters[$index], $connector);
  334. $index++;
  335. }
  336. else
  337. {
  338. $connector = trim(strtoupper($segment), '_');
  339. }
  340. }
  341. return $this;
  342. }
  343. /**
  344. * Add an ordering to the query.
  345. *
  346. * @param string $column
  347. * @param string $direction
  348. * @return Query
  349. */
  350. public function order_by($column, $direction)
  351. {
  352. $this->orderings[] = $this->wrap($column).' '.strtoupper($direction);
  353. return $this;
  354. }
  355. /**
  356. * Set the query offset.
  357. *
  358. * @param int $value
  359. * @return Query
  360. */
  361. public function skip($value)
  362. {
  363. $this->offset = $value;
  364. return $this;
  365. }
  366. /**
  367. * Set the query limit.
  368. *
  369. * @param int $value
  370. * @return Query
  371. */
  372. public function take($value)
  373. {
  374. $this->limit = $value;
  375. return $this;
  376. }
  377. /**
  378. * Set the limit and offset values for a given page.
  379. *
  380. * @param int $page
  381. * @param int $per_page
  382. * @return Query
  383. */
  384. public function for_page($page, $per_page)
  385. {
  386. return $this->skip(($page - 1) * $per_page)->take($per_page);
  387. }
  388. /**
  389. * Find a record by the primary key.
  390. *
  391. * @param int $id
  392. * @param array $columns
  393. * @return object
  394. */
  395. public function find($id, $columns = array('*'))
  396. {
  397. return $this->where('id', '=', $id)->first($columns);
  398. }
  399. /**
  400. * Get an aggregate value.
  401. *
  402. * @param string $aggregate
  403. * @param string $column
  404. * @return mixed
  405. */
  406. private function aggregate($aggregator, $column)
  407. {
  408. $this->select = 'SELECT '.$aggregator.'('.$this->wrap($column).') AS '.$this->wrap('aggregate');
  409. return $this->first()->aggregate;
  410. }
  411. /**
  412. * Get paginated query results.
  413. *
  414. * @param int $per_page
  415. * @param array $columns
  416. * @return Paginator
  417. */
  418. public function paginate($per_page, $columns = array('*'))
  419. {
  420. $total = $this->count();
  421. $this->select($columns);
  422. return \System\Paginator::make($this->for_page(\System\Paginator::page($total, $per_page), $per_page)->get(), $total, $per_page);
  423. }
  424. /**
  425. * Execute the query as a SELECT statement and return the first result.
  426. *
  427. * @param array $columns
  428. * @return object
  429. */
  430. public function first($columns = array('*'))
  431. {
  432. return (count($results = $this->take(1)->get($columns)) > 0) ? $results[0] : null;
  433. }
  434. /**
  435. * Execute the query as a SELECT statement.
  436. *
  437. * @param array $columns
  438. * @return array
  439. */
  440. public function get($columns = array('*'))
  441. {
  442. if (is_null($this->select))
  443. {
  444. $this->select($columns);
  445. }
  446. $sql = $this->select.' '.$this->from.' '.$this->where;
  447. if (count($this->orderings) > 0)
  448. {
  449. $sql .= ' ORDER BY '.implode(', ', $this->orderings);
  450. }
  451. if ( ! is_null($this->limit))
  452. {
  453. $sql .= ' LIMIT '.$this->limit;
  454. }
  455. if ( ! is_null($this->offset))
  456. {
  457. $sql .= ' OFFSET '.$this->offset;
  458. }
  459. $results = $this->connection->query($sql, $this->bindings);
  460. // Reset the SELECT clause so more queries can be performed using the same instance.
  461. // This is helpful for getting aggregates and then getting actual results.
  462. $this->select = null;
  463. return $results;
  464. }
  465. /**
  466. * Execute an INSERT statement.
  467. *
  468. * @param array $values
  469. * @return bool
  470. */
  471. public function insert($values)
  472. {
  473. return $this->connection->query($this->compile_insert($values), array_values($values));
  474. }
  475. /**
  476. * Execute an INSERT statement and get the insert ID.
  477. *
  478. * @param array $values
  479. * @return int
  480. */
  481. public function insert_get_id($values)
  482. {
  483. $sql = $this->compile_insert($values);
  484. // Use the RETURNING clause on PostgreSQL so don't have to worry about sequence columns.
  485. // MySQL and SQLite can use the PDO's lastInsertID() method.
  486. if ($this->connection->driver() == 'pgsql')
  487. {
  488. $query = $this->connection->pdo->prepare($sql.' RETURNING '.$this->wrap('id'));
  489. $query->execute(array_values($values));
  490. return $query->fetch(\PDO::FETCH_CLASS, 'stdClass')->id;
  491. }
  492. $this->connection->query($sql, array_values($values));
  493. return $this->connection->pdo->lastInsertId();
  494. }
  495. /**
  496. * Compile an SQL INSERT statement.
  497. *
  498. * @param array $values
  499. * @return string
  500. */
  501. private function compile_insert($values)
  502. {
  503. $sql = 'INSERT INTO '.$this->wrap($this->table);
  504. $columns = array_map(array($this, 'wrap'), array_keys($values));
  505. return $sql .= ' ('.implode(', ', $columns).') VALUES ('.$this->parameterize($values).')';
  506. }
  507. /**
  508. * Execute the query as an UPDATE statement.
  509. *
  510. * @param array $values
  511. * @return bool
  512. */
  513. public function update($values)
  514. {
  515. $sql = 'UPDATE '.$this->wrap($this->table).' SET ';
  516. foreach (array_keys($values) as $column)
  517. {
  518. $sets[] = $this->wrap($column).' = ?';
  519. }
  520. return $this->connection->query($sql.implode(', ', $sets).' '.$this->where, array_merge(array_values($values), $this->bindings));
  521. }
  522. /**
  523. * Execute the query as a DELETE statement.
  524. *
  525. * @param int $id
  526. * @return bool
  527. */
  528. public function delete($id = null)
  529. {
  530. if ( ! is_null($id))
  531. {
  532. $this->where('id', '=', $id);
  533. }
  534. return $this->connection->query('DELETE FROM '.$this->wrap($this->table).' '.$this->where, $this->bindings);
  535. }
  536. /**
  537. * Wrap a value in keyword identifiers.
  538. *
  539. * @param string $value
  540. * @return string
  541. */
  542. private function wrap($value)
  543. {
  544. if (strpos(strtolower($value), ' as ') !== false)
  545. {
  546. return $this->wrap_alias($value);
  547. }
  548. $wrap = $this->connection->wrapper();
  549. foreach (explode('.', $value) as $segment)
  550. {
  551. $wrapped[] = ($segment != '*') ? $wrap.$segment.$wrap : $segment;
  552. }
  553. return implode('.', $wrapped);
  554. }
  555. /**
  556. * Wrap an alias in keyword identifiers.
  557. *
  558. * @param string $value
  559. * @return string
  560. */
  561. private function wrap_alias($value)
  562. {
  563. $segments = explode(' ', $value);
  564. return $this->wrap($segments[0]).' AS '.$this->wrap($segments[2]);
  565. }
  566. /**
  567. * Create query parameters from an array of values.
  568. *
  569. * @param array $values
  570. * @return string
  571. */
  572. private function parameterize($values)
  573. {
  574. return implode(', ', array_fill(0, count($values), '?'));
  575. }
  576. /**
  577. * Magic Method for handling dynamic functions.
  578. */
  579. public function __call($method, $parameters)
  580. {
  581. // Dynamically handle the addition of dynamic where clauses.
  582. if (strpos($method, 'where_') === 0)
  583. {
  584. return $this->dynamic_where($method, $parameters, $this);
  585. }
  586. // Dynamically handle calls to any of the aggregate query functions.
  587. if (in_array($method, array('count', 'min', 'max', 'avg', 'sum')))
  588. {
  589. return ($method == 'count') ? $this->aggregate(strtoupper($method), '*') : $this->aggregate(strtoupper($method), $parameters[0]);
  590. }
  591. throw new \Exception("Method [$method] is not defined on the Query class.");
  592. }
  593. }