query.php 12 KB

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