query.php 11 KB

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