query.php 11 KB

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