query.php 12 KB

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