query.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. <?php namespace System\DB;
  2. class Query {
  3. /**
  4. * The database connection name.
  5. *
  6. * @var string
  7. */
  8. private $connection;
  9. /**
  10. * The SELECT clause.
  11. *
  12. * @var string
  13. */
  14. public $select;
  15. /**
  16. * Indicates if the query should return distinct results.
  17. *
  18. * @var bool
  19. */
  20. public $distinct = false;
  21. /**
  22. * The FROM clause.
  23. *
  24. * @var string
  25. */
  26. public $from;
  27. /**
  28. * The table name.
  29. *
  30. * @var string
  31. */
  32. public $table;
  33. /**
  34. * The WHERE clause.
  35. *
  36. * @var string
  37. */
  38. public $where = 'WHERE 1 = 1';
  39. /**
  40. * The ORDER BY columns.
  41. *
  42. * @var array
  43. */
  44. public $orderings = array();
  45. /**
  46. * The LIMIT value.
  47. *
  48. * @var int
  49. */
  50. public $limit;
  51. /**
  52. * The OFFSET value.
  53. *
  54. * @var int
  55. */
  56. public $offset;
  57. /**
  58. * The query value bindings.
  59. *
  60. * @var array
  61. */
  62. public $bindings = array();
  63. /**
  64. * Create a new query instance.
  65. *
  66. * @param string $table
  67. * @param string $connection
  68. * @return void
  69. */
  70. public function __construct($table, $connection = null)
  71. {
  72. $this->connection = (is_null($connection)) ? \System\Config::get('db.default') : $connection;
  73. $this->from = 'FROM '.$this->wrap($this->table = $table);
  74. }
  75. /**
  76. * Create a new query instance.
  77. *
  78. * @param string $table
  79. * @param string $connection
  80. * @return Query
  81. */
  82. public static function table($table, $connection = null)
  83. {
  84. return new static($table, $connection);
  85. }
  86. /**
  87. * Force the query to return distinct results.
  88. *
  89. * @return Query
  90. */
  91. public function distinct()
  92. {
  93. $this->distinct = true;
  94. return $this;
  95. }
  96. /**
  97. * Add columns to the SELECT clause.
  98. *
  99. * @return Query
  100. */
  101. public function select()
  102. {
  103. $this->select = ($this->distinct) ? 'SELECT DISTINCT ' : 'SELECT ';
  104. // ---------------------------------------------------
  105. // Wrap all of the columns in keyword identifiers.
  106. // ---------------------------------------------------
  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).' '.\System\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 \System\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. $results = \System\DB::query(Query\Compiler::select($this), $this->bindings);
  361. return $results[0]->aggregate;
  362. }
  363. /**
  364. * Execute an INSERT statement.
  365. *
  366. * @param array $values
  367. * @return bool
  368. */
  369. public function insert($values)
  370. {
  371. return \System\DB::query(Query\Compiler::insert($this, $values), array_values($values), $this->connection);
  372. }
  373. /**
  374. * Execute an INSERT statement and get the insert ID.
  375. *
  376. * @param array $values
  377. * @return int
  378. */
  379. public function insert_get_id($values)
  380. {
  381. $sql = Query\Compiler::insert($this, $values);
  382. // ---------------------------------------------------
  383. // Postgres.
  384. // ---------------------------------------------------
  385. if (\System\DB::connection($this->connection)->getAttribute(\PDO::ATTR_DRIVER_NAME) == 'pgsql')
  386. {
  387. $sql .= ' RETURNING '.$this->wrap('id');
  388. $query = \System\DB::connection($this->connection)->prepare($sql);
  389. $query->execute(array_values($values));
  390. $result = $query->fetch(\PDO::FETCH_ASSOC);
  391. return $result['id'];
  392. }
  393. // ---------------------------------------------------
  394. // MySQL and SQLite.
  395. // ---------------------------------------------------
  396. else
  397. {
  398. \System\DB::query($sql, array_values($values), $this->connection);
  399. return \System\DB::connection($this->connection)->lastInsertId();
  400. }
  401. }
  402. /**
  403. * Execute the query as an UPDATE statement.
  404. *
  405. * @param array $values
  406. * @return bool
  407. */
  408. public function update($values)
  409. {
  410. return \System\DB::query(Query\Compiler::update($this, $values), array_merge(array_values($values), $this->bindings), $this->connection);
  411. }
  412. /**
  413. * Execute the query as a DELETE statement.
  414. *
  415. * @param int $id
  416. * @return bool
  417. */
  418. public function delete($id = null)
  419. {
  420. if ( ! is_null($id))
  421. {
  422. $this->where('id', '=', $id);
  423. }
  424. return \System\DB::query(Query\Compiler::delete($this), $this->bindings, $this->connection);
  425. }
  426. /**
  427. * Wrap a value in keyword identifiers.
  428. *
  429. * @param string $value
  430. * @param string $wrap
  431. * @return string
  432. */
  433. public function wrap($value, $wrap = '"')
  434. {
  435. // ---------------------------------------------------
  436. // If the application is using MySQL, we need to use
  437. // a non-standard keyword identifier.
  438. // ---------------------------------------------------
  439. if (\System\DB::connection($this->connection)->getAttribute(\PDO::ATTR_DRIVER_NAME) == 'mysql')
  440. {
  441. $wrap = '`';
  442. }
  443. return implode('.', array_map(function($segment) use ($wrap) {return ($segment != '*') ? $wrap.$segment.$wrap : $segment;}, explode('.', $value)));
  444. }
  445. /**
  446. * Create query parameters from an array of values.
  447. *
  448. * @param array $values
  449. * @return string
  450. */
  451. public function parameterize($values)
  452. {
  453. return implode(', ', array_fill(0, count($values), '?'));
  454. }
  455. /**
  456. * Magic Method for handling dynamic functions.
  457. */
  458. public function __call($method, $parameters)
  459. {
  460. // ---------------------------------------------------
  461. // Handle any of the aggregate functions.
  462. // ---------------------------------------------------
  463. if (in_array($method, array('count', 'min', 'max', 'avg', 'sum')))
  464. {
  465. return ($method == 'count') ? $this->aggregate(\System\Str::upper($method), '*') : $this->aggregate(\System\Str::upper($method), $parameters[0]);
  466. }
  467. else
  468. {
  469. throw new \Exception("Method [$method] is not defined on the Query class.");
  470. }
  471. }
  472. }