PageRenderTime 64ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 1ms

/cake/lib/Cake/Model/Datasource/DboSource.php

https://github.com/yasuhiroki/FrameworkBenchmarks
PHP | 3323 lines | 2167 code | 283 blank | 873 comment | 571 complexity | 6c0a60825578d8c722d57a46965212c7 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, CC0-1.0, BSD-3-Clause, MIT, Apache-2.0
  1. <?php
  2. /**
  3. * Dbo Source
  4. *
  5. * PHP 5
  6. *
  7. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  8. * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  9. *
  10. * Licensed under The MIT License
  11. * Redistributions of files must retain the above copyright notice.
  12. *
  13. * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  14. * @link http://cakephp.org CakePHP(tm) Project
  15. * @package Cake.Model.Datasource
  16. * @since CakePHP(tm) v 0.10.0.1076
  17. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  18. */
  19. App::uses('DataSource', 'Model/Datasource');
  20. App::uses('String', 'Utility');
  21. App::uses('View', 'View');
  22. /**
  23. * DboSource
  24. *
  25. * Creates DBO-descendant objects from a given db connection configuration
  26. *
  27. * @package Cake.Model.Datasource
  28. */
  29. class DboSource extends DataSource {
  30. /**
  31. * Description string for this Database Data Source.
  32. *
  33. * @var string
  34. */
  35. public $description = "Database Data Source";
  36. /**
  37. * index definition, standard cake, primary, index, unique
  38. *
  39. * @var array
  40. */
  41. public $index = array('PRI' => 'primary', 'MUL' => 'index', 'UNI' => 'unique');
  42. /**
  43. * Database keyword used to assign aliases to identifiers.
  44. *
  45. * @var string
  46. */
  47. public $alias = 'AS ';
  48. /**
  49. * Caches result from query parsing operations. Cached results for both DboSource::name() and
  50. * DboSource::conditions() will be stored here. Method caching uses `md5()`. If you have
  51. * problems with collisions, set DboSource::$cacheMethods to false.
  52. *
  53. * @var array
  54. */
  55. public static $methodCache = array();
  56. /**
  57. * Whether or not to cache the results of DboSource::name() and DboSource::conditions()
  58. * into the memory cache. Set to false to disable the use of the memory cache.
  59. *
  60. * @var boolean
  61. */
  62. public $cacheMethods = true;
  63. /**
  64. * Flag to support nested transactions. If it is set to false, you will be able to use
  65. * the transaction methods (begin/commit/rollback), but just the global transaction will
  66. * be executed.
  67. *
  68. * @var boolean
  69. */
  70. public $useNestedTransactions = false;
  71. /**
  72. * Print full query debug info?
  73. *
  74. * @var boolean
  75. */
  76. public $fullDebug = false;
  77. /**
  78. * String to hold how many rows were affected by the last SQL operation.
  79. *
  80. * @var string
  81. */
  82. public $affected = null;
  83. /**
  84. * Number of rows in current resultset
  85. *
  86. * @var integer
  87. */
  88. public $numRows = null;
  89. /**
  90. * Time the last query took
  91. *
  92. * @var integer
  93. */
  94. public $took = null;
  95. /**
  96. * Result
  97. *
  98. * @var array
  99. */
  100. protected $_result = null;
  101. /**
  102. * Queries count.
  103. *
  104. * @var integer
  105. */
  106. protected $_queriesCnt = 0;
  107. /**
  108. * Total duration of all queries.
  109. *
  110. * @var integer
  111. */
  112. protected $_queriesTime = null;
  113. /**
  114. * Log of queries executed by this DataSource
  115. *
  116. * @var array
  117. */
  118. protected $_queriesLog = array();
  119. /**
  120. * Maximum number of items in query log
  121. *
  122. * This is to prevent query log taking over too much memory.
  123. *
  124. * @var integer Maximum number of queries in the queries log.
  125. */
  126. protected $_queriesLogMax = 200;
  127. /**
  128. * Caches serialized results of executed queries
  129. *
  130. * @var array Cache of results from executed sql queries.
  131. */
  132. protected $_queryCache = array();
  133. /**
  134. * A reference to the physical connection of this DataSource
  135. *
  136. * @var array
  137. */
  138. protected $_connection = null;
  139. /**
  140. * The DataSource configuration key name
  141. *
  142. * @var string
  143. */
  144. public $configKeyName = null;
  145. /**
  146. * The starting character that this DataSource uses for quoted identifiers.
  147. *
  148. * @var string
  149. */
  150. public $startQuote = null;
  151. /**
  152. * The ending character that this DataSource uses for quoted identifiers.
  153. *
  154. * @var string
  155. */
  156. public $endQuote = null;
  157. /**
  158. * The set of valid SQL operations usable in a WHERE statement
  159. *
  160. * @var array
  161. */
  162. protected $_sqlOps = array('like', 'ilike', 'or', 'not', 'in', 'between', 'regexp', 'similar to');
  163. /**
  164. * Indicates the level of nested transactions
  165. *
  166. * @var integer
  167. */
  168. protected $_transactionNesting = 0;
  169. /**
  170. * Default fields that are used by the DBO
  171. *
  172. * @var array
  173. */
  174. protected $_queryDefaults = array(
  175. 'conditions' => array(),
  176. 'fields' => null,
  177. 'table' => null,
  178. 'alias' => null,
  179. 'order' => null,
  180. 'limit' => null,
  181. 'joins' => array(),
  182. 'group' => null,
  183. 'offset' => null
  184. );
  185. /**
  186. * Separator string for virtualField composition
  187. *
  188. * @var string
  189. */
  190. public $virtualFieldSeparator = '__';
  191. /**
  192. * List of table engine specific parameters used on table creating
  193. *
  194. * @var array
  195. */
  196. public $tableParameters = array();
  197. /**
  198. * List of engine specific additional field parameters used on table creating
  199. *
  200. * @var array
  201. */
  202. public $fieldParameters = array();
  203. /**
  204. * Indicates whether there was a change on the cached results on the methods of this class
  205. * This will be used for storing in a more persistent cache
  206. *
  207. * @var boolean
  208. */
  209. protected $_methodCacheChange = false;
  210. /**
  211. * Constructor
  212. *
  213. * @param array $config Array of configuration information for the Datasource.
  214. * @param boolean $autoConnect Whether or not the datasource should automatically connect.
  215. * @throws MissingConnectionException when a connection cannot be made.
  216. */
  217. public function __construct($config = null, $autoConnect = true) {
  218. if (!isset($config['prefix'])) {
  219. $config['prefix'] = '';
  220. }
  221. parent::__construct($config);
  222. $this->fullDebug = Configure::read('debug') > 1;
  223. if (!$this->enabled()) {
  224. throw new MissingConnectionException(array(
  225. 'class' => get_class($this),
  226. 'message' => __d('cake_dev', 'Selected driver is not enabled'),
  227. 'enabled' => false
  228. ));
  229. }
  230. if ($autoConnect) {
  231. $this->connect();
  232. }
  233. }
  234. /**
  235. * Reconnects to database server with optional new settings
  236. *
  237. * @param array $config An array defining the new configuration settings
  238. * @return boolean True on success, false on failure
  239. */
  240. public function reconnect($config = array()) {
  241. $this->disconnect();
  242. $this->setConfig($config);
  243. $this->_sources = null;
  244. return $this->connect();
  245. }
  246. /**
  247. * Disconnects from database.
  248. *
  249. * @return boolean True if the database could be disconnected, else false
  250. */
  251. public function disconnect() {
  252. if ($this->_result instanceof PDOStatement) {
  253. $this->_result->closeCursor();
  254. }
  255. unset($this->_connection);
  256. $this->connected = false;
  257. return true;
  258. }
  259. /**
  260. * Get the underlying connection object.
  261. *
  262. * @return PDO
  263. */
  264. public function getConnection() {
  265. return $this->_connection;
  266. }
  267. /**
  268. * Gets the version string of the database server
  269. *
  270. * @return string The database version
  271. */
  272. public function getVersion() {
  273. return $this->_connection->getAttribute(PDO::ATTR_SERVER_VERSION);
  274. }
  275. /**
  276. * Returns a quoted and escaped string of $data for use in an SQL statement.
  277. *
  278. * @param string $data String to be prepared for use in an SQL statement
  279. * @param string $column The column into which this data will be inserted
  280. * @return string Quoted and escaped data
  281. */
  282. public function value($data, $column = null) {
  283. if (is_array($data) && !empty($data)) {
  284. return array_map(
  285. array(&$this, 'value'),
  286. $data, array_fill(0, count($data), $column)
  287. );
  288. } elseif (is_object($data) && isset($data->type, $data->value)) {
  289. if ($data->type == 'identifier') {
  290. return $this->name($data->value);
  291. } elseif ($data->type == 'expression') {
  292. return $data->value;
  293. }
  294. } elseif (in_array($data, array('{$__cakeID__$}', '{$__cakeForeignKey__$}'), true)) {
  295. return $data;
  296. }
  297. if ($data === null || (is_array($data) && empty($data))) {
  298. return 'NULL';
  299. }
  300. if (empty($column)) {
  301. $column = $this->introspectType($data);
  302. }
  303. switch ($column) {
  304. case 'binary':
  305. return $this->_connection->quote($data, PDO::PARAM_LOB);
  306. case 'boolean':
  307. return $this->_connection->quote($this->boolean($data, true), PDO::PARAM_BOOL);
  308. case 'string':
  309. case 'text':
  310. return $this->_connection->quote($data, PDO::PARAM_STR);
  311. default:
  312. if ($data === '') {
  313. return 'NULL';
  314. }
  315. if (is_float($data)) {
  316. return str_replace(',', '.', strval($data));
  317. }
  318. if ((is_int($data) || $data === '0') || (
  319. is_numeric($data) && strpos($data, ',') === false &&
  320. $data[0] != '0' && strpos($data, 'e') === false)
  321. ) {
  322. return $data;
  323. }
  324. return $this->_connection->quote($data);
  325. }
  326. }
  327. /**
  328. * Returns an object to represent a database identifier in a query. Expression objects
  329. * are not sanitized or escaped.
  330. *
  331. * @param string $identifier A SQL expression to be used as an identifier
  332. * @return stdClass An object representing a database identifier to be used in a query
  333. */
  334. public function identifier($identifier) {
  335. $obj = new stdClass();
  336. $obj->type = 'identifier';
  337. $obj->value = $identifier;
  338. return $obj;
  339. }
  340. /**
  341. * Returns an object to represent a database expression in a query. Expression objects
  342. * are not sanitized or escaped.
  343. *
  344. * @param string $expression An arbitrary SQL expression to be inserted into a query.
  345. * @return stdClass An object representing a database expression to be used in a query
  346. */
  347. public function expression($expression) {
  348. $obj = new stdClass();
  349. $obj->type = 'expression';
  350. $obj->value = $expression;
  351. return $obj;
  352. }
  353. /**
  354. * Executes given SQL statement.
  355. *
  356. * @param string $sql SQL statement
  357. * @param array $params Additional options for the query.
  358. * @return boolean
  359. */
  360. public function rawQuery($sql, $params = array()) {
  361. $this->took = $this->numRows = false;
  362. return $this->execute($sql, $params);
  363. }
  364. /**
  365. * Queries the database with given SQL statement, and obtains some metadata about the result
  366. * (rows affected, timing, any errors, number of rows in resultset). The query is also logged.
  367. * If Configure::read('debug') is set, the log is shown all the time, else it is only shown on errors.
  368. *
  369. * ### Options
  370. *
  371. * - log - Whether or not the query should be logged to the memory log.
  372. *
  373. * @param string $sql SQL statement
  374. * @param array $options
  375. * @param array $params values to be bound to the query
  376. * @return mixed Resource or object representing the result set, or false on failure
  377. */
  378. public function execute($sql, $options = array(), $params = array()) {
  379. $options += array('log' => $this->fullDebug);
  380. $t = microtime(true);
  381. $this->_result = $this->_execute($sql, $params);
  382. if ($options['log']) {
  383. $this->took = round((microtime(true) - $t) * 1000, 0);
  384. $this->numRows = $this->affected = $this->lastAffected();
  385. $this->logQuery($sql, $params);
  386. }
  387. return $this->_result;
  388. }
  389. /**
  390. * Executes given SQL statement.
  391. *
  392. * @param string $sql SQL statement
  393. * @param array $params list of params to be bound to query
  394. * @param array $prepareOptions Options to be used in the prepare statement
  395. * @return mixed PDOStatement if query executes with no problem, true as the result of a successful, false on error
  396. * query returning no rows, such as a CREATE statement, false otherwise
  397. * @throws PDOException
  398. */
  399. protected function _execute($sql, $params = array(), $prepareOptions = array()) {
  400. $sql = trim($sql);
  401. if (preg_match('/^(?:CREATE|ALTER|DROP)\s+(?:TABLE|INDEX)/i', $sql)) {
  402. $statements = array_filter(explode(';', $sql));
  403. if (count($statements) > 1) {
  404. $result = array_map(array($this, '_execute'), $statements);
  405. return array_search(false, $result) === false;
  406. }
  407. }
  408. try {
  409. $query = $this->_connection->prepare($sql, $prepareOptions);
  410. $query->setFetchMode(PDO::FETCH_LAZY);
  411. if (!$query->execute($params)) {
  412. $this->_results = $query;
  413. $query->closeCursor();
  414. return false;
  415. }
  416. if (!$query->columnCount()) {
  417. $query->closeCursor();
  418. if (!$query->rowCount()) {
  419. return true;
  420. }
  421. }
  422. return $query;
  423. } catch (PDOException $e) {
  424. if (isset($query->queryString)) {
  425. $e->queryString = $query->queryString;
  426. } else {
  427. $e->queryString = $sql;
  428. }
  429. throw $e;
  430. }
  431. }
  432. /**
  433. * Returns a formatted error message from previous database operation.
  434. *
  435. * @param PDOStatement $query the query to extract the error from if any
  436. * @return string Error message with error number
  437. */
  438. public function lastError(PDOStatement $query = null) {
  439. if ($query) {
  440. $error = $query->errorInfo();
  441. } else {
  442. $error = $this->_connection->errorInfo();
  443. }
  444. if (empty($error[2])) {
  445. return null;
  446. }
  447. return $error[1] . ': ' . $error[2];
  448. }
  449. /**
  450. * Returns number of affected rows in previous database operation. If no previous operation exists,
  451. * this returns false.
  452. *
  453. * @param mixed $source
  454. * @return integer Number of affected rows
  455. */
  456. public function lastAffected($source = null) {
  457. if ($this->hasResult()) {
  458. return $this->_result->rowCount();
  459. }
  460. return 0;
  461. }
  462. /**
  463. * Returns number of rows in previous resultset. If no previous resultset exists,
  464. * this returns false.
  465. *
  466. * @param mixed $source Not used
  467. * @return integer Number of rows in resultset
  468. */
  469. public function lastNumRows($source = null) {
  470. return $this->lastAffected();
  471. }
  472. /**
  473. * DataSource Query abstraction
  474. *
  475. * @return resource Result resource identifier.
  476. */
  477. public function query() {
  478. $args = func_get_args();
  479. $fields = null;
  480. $order = null;
  481. $limit = null;
  482. $page = null;
  483. $recursive = null;
  484. if (count($args) === 1) {
  485. return $this->fetchAll($args[0]);
  486. } elseif (count($args) > 1 && (strpos($args[0], 'findBy') === 0 || strpos($args[0], 'findAllBy') === 0)) {
  487. $params = $args[1];
  488. if (substr($args[0], 0, 6) === 'findBy') {
  489. $all = false;
  490. $field = Inflector::underscore(substr($args[0], 6));
  491. } else {
  492. $all = true;
  493. $field = Inflector::underscore(substr($args[0], 9));
  494. }
  495. $or = (strpos($field, '_or_') !== false);
  496. if ($or) {
  497. $field = explode('_or_', $field);
  498. } else {
  499. $field = explode('_and_', $field);
  500. }
  501. $off = count($field) - 1;
  502. if (isset($params[1 + $off])) {
  503. $fields = $params[1 + $off];
  504. }
  505. if (isset($params[2 + $off])) {
  506. $order = $params[2 + $off];
  507. }
  508. if (!array_key_exists(0, $params)) {
  509. return false;
  510. }
  511. $c = 0;
  512. $conditions = array();
  513. foreach ($field as $f) {
  514. $conditions[$args[2]->alias . '.' . $f] = $params[$c++];
  515. }
  516. if ($or) {
  517. $conditions = array('OR' => $conditions);
  518. }
  519. if ($all) {
  520. if (isset($params[3 + $off])) {
  521. $limit = $params[3 + $off];
  522. }
  523. if (isset($params[4 + $off])) {
  524. $page = $params[4 + $off];
  525. }
  526. if (isset($params[5 + $off])) {
  527. $recursive = $params[5 + $off];
  528. }
  529. return $args[2]->find('all', compact('conditions', 'fields', 'order', 'limit', 'page', 'recursive'));
  530. } else {
  531. if (isset($params[3 + $off])) {
  532. $recursive = $params[3 + $off];
  533. }
  534. return $args[2]->find('first', compact('conditions', 'fields', 'order', 'recursive'));
  535. }
  536. } else {
  537. if (isset($args[1]) && $args[1] === true) {
  538. return $this->fetchAll($args[0], true);
  539. } elseif (isset($args[1]) && !is_array($args[1])) {
  540. return $this->fetchAll($args[0], false);
  541. } elseif (isset($args[1]) && is_array($args[1])) {
  542. if (isset($args[2])) {
  543. $cache = $args[2];
  544. } else {
  545. $cache = true;
  546. }
  547. return $this->fetchAll($args[0], $args[1], array('cache' => $cache));
  548. }
  549. }
  550. }
  551. /**
  552. * Returns a row from current resultset as an array
  553. *
  554. * @param string $sql Some SQL to be executed.
  555. * @return array The fetched row as an array
  556. */
  557. public function fetchRow($sql = null) {
  558. if (is_string($sql) && strlen($sql) > 5 && !$this->execute($sql)) {
  559. return null;
  560. }
  561. if ($this->hasResult()) {
  562. $this->resultSet($this->_result);
  563. $resultRow = $this->fetchResult();
  564. if (isset($resultRow[0])) {
  565. $this->fetchVirtualField($resultRow);
  566. }
  567. return $resultRow;
  568. } else {
  569. return null;
  570. }
  571. }
  572. /**
  573. * Returns an array of all result rows for a given SQL query.
  574. * Returns false if no rows matched.
  575. *
  576. *
  577. * ### Options
  578. *
  579. * - `cache` - Returns the cached version of the query, if exists and stores the result in cache.
  580. * This is a non-persistent cache, and only lasts for a single request. This option
  581. * defaults to true. If you are directly calling this method, you can disable caching
  582. * by setting $options to `false`
  583. *
  584. * @param string $sql SQL statement
  585. * @param array $params parameters to be bound as values for the SQL statement
  586. * @param array $options additional options for the query.
  587. * @return array Array of resultset rows, or false if no rows matched
  588. */
  589. public function fetchAll($sql, $params = array(), $options = array()) {
  590. if (is_string($options)) {
  591. $options = array('modelName' => $options);
  592. }
  593. if (is_bool($params)) {
  594. $options['cache'] = $params;
  595. $params = array();
  596. }
  597. $options += array('cache' => true);
  598. $cache = $options['cache'];
  599. if ($cache && ($cached = $this->getQueryCache($sql, $params)) !== false) {
  600. return $cached;
  601. }
  602. if ($result = $this->execute($sql, array(), $params)) {
  603. $out = array();
  604. if ($this->hasResult()) {
  605. $first = $this->fetchRow();
  606. if ($first) {
  607. $out[] = $first;
  608. }
  609. while ($item = $this->fetchResult()) {
  610. if (isset($item[0])) {
  611. $this->fetchVirtualField($item);
  612. }
  613. $out[] = $item;
  614. }
  615. }
  616. if (!is_bool($result) && $cache) {
  617. $this->_writeQueryCache($sql, $out, $params);
  618. }
  619. if (empty($out) && is_bool($this->_result)) {
  620. return $this->_result;
  621. }
  622. return $out;
  623. }
  624. return false;
  625. }
  626. /**
  627. * Fetches the next row from the current result set
  628. *
  629. * @return boolean
  630. */
  631. public function fetchResult() {
  632. return false;
  633. }
  634. /**
  635. * Modifies $result array to place virtual fields in model entry where they belongs to
  636. *
  637. * @param array $result Reference to the fetched row
  638. * @return void
  639. */
  640. public function fetchVirtualField(&$result) {
  641. if (isset($result[0]) && is_array($result[0])) {
  642. foreach ($result[0] as $field => $value) {
  643. if (strpos($field, $this->virtualFieldSeparator) === false) {
  644. continue;
  645. }
  646. list($alias, $virtual) = explode($this->virtualFieldSeparator, $field);
  647. if (!ClassRegistry::isKeySet($alias)) {
  648. return;
  649. }
  650. $model = ClassRegistry::getObject($alias);
  651. if ($model->isVirtualField($virtual)) {
  652. $result[$alias][$virtual] = $value;
  653. unset($result[0][$field]);
  654. }
  655. }
  656. if (empty($result[0])) {
  657. unset($result[0]);
  658. }
  659. }
  660. }
  661. /**
  662. * Returns a single field of the first of query results for a given SQL query, or false if empty.
  663. *
  664. * @param string $name Name of the field
  665. * @param string $sql SQL query
  666. * @return mixed Value of field read.
  667. */
  668. public function field($name, $sql) {
  669. $data = $this->fetchRow($sql);
  670. if (empty($data[$name])) {
  671. return false;
  672. }
  673. return $data[$name];
  674. }
  675. /**
  676. * Empties the method caches.
  677. * These caches are used by DboSource::name() and DboSource::conditions()
  678. *
  679. * @return void
  680. */
  681. public function flushMethodCache() {
  682. $this->_methodCacheChange = true;
  683. self::$methodCache = array();
  684. }
  685. /**
  686. * Cache a value into the methodCaches. Will respect the value of DboSource::$cacheMethods.
  687. * Will retrieve a value from the cache if $value is null.
  688. *
  689. * If caching is disabled and a write is attempted, the $value will be returned.
  690. * A read will either return the value or null.
  691. *
  692. * @param string $method Name of the method being cached.
  693. * @param string $key The key name for the cache operation.
  694. * @param mixed $value The value to cache into memory.
  695. * @return mixed Either null on failure, or the value if its set.
  696. */
  697. public function cacheMethod($method, $key, $value = null) {
  698. if ($this->cacheMethods === false) {
  699. return $value;
  700. }
  701. if (empty(self::$methodCache)) {
  702. self::$methodCache = Cache::read('method_cache', '_cake_core_');
  703. }
  704. if ($value === null) {
  705. return (isset(self::$methodCache[$method][$key])) ? self::$methodCache[$method][$key] : null;
  706. }
  707. $this->_methodCacheChange = true;
  708. return self::$methodCache[$method][$key] = $value;
  709. }
  710. /**
  711. * Returns a quoted name of $data for use in an SQL statement.
  712. * Strips fields out of SQL functions before quoting.
  713. *
  714. * Results of this method are stored in a memory cache. This improves performance, but
  715. * because the method uses a hashing algorithm it can have collisions.
  716. * Setting DboSource::$cacheMethods to false will disable the memory cache.
  717. *
  718. * @param mixed $data Either a string with a column to quote. An array of columns to quote or an
  719. * object from DboSource::expression() or DboSource::identifier()
  720. * @return string SQL field
  721. */
  722. public function name($data) {
  723. if (is_object($data) && isset($data->type)) {
  724. return $data->value;
  725. }
  726. if ($data === '*') {
  727. return '*';
  728. }
  729. if (is_array($data)) {
  730. foreach ($data as $i => $dataItem) {
  731. $data[$i] = $this->name($dataItem);
  732. }
  733. return $data;
  734. }
  735. $cacheKey = md5($this->startQuote . $data . $this->endQuote);
  736. if ($return = $this->cacheMethod(__FUNCTION__, $cacheKey)) {
  737. return $return;
  738. }
  739. $data = trim($data);
  740. if (preg_match('/^[\w-]+(?:\.[^ \*]*)*$/', $data)) { // string, string.string
  741. if (strpos($data, '.') === false) { // string
  742. return $this->cacheMethod(__FUNCTION__, $cacheKey, $this->startQuote . $data . $this->endQuote);
  743. }
  744. $items = explode('.', $data);
  745. return $this->cacheMethod(__FUNCTION__, $cacheKey,
  746. $this->startQuote . implode($this->endQuote . '.' . $this->startQuote, $items) . $this->endQuote
  747. );
  748. }
  749. if (preg_match('/^[\w-]+\.\*$/', $data)) { // string.*
  750. return $this->cacheMethod(__FUNCTION__, $cacheKey,
  751. $this->startQuote . str_replace('.*', $this->endQuote . '.*', $data)
  752. );
  753. }
  754. if (preg_match('/^([\w-]+)\((.*)\)$/', $data, $matches)) { // Functions
  755. return $this->cacheMethod(__FUNCTION__, $cacheKey,
  756. $matches[1] . '(' . $this->name($matches[2]) . ')'
  757. );
  758. }
  759. if (
  760. preg_match('/^([\w-]+(\.[\w-]+|\(.*\))*)\s+' . preg_quote($this->alias) . '\s*([\w-]+)$/i', $data, $matches
  761. )) {
  762. return $this->cacheMethod(
  763. __FUNCTION__, $cacheKey,
  764. preg_replace(
  765. '/\s{2,}/', ' ', $this->name($matches[1]) . ' ' . $this->alias . ' ' . $this->name($matches[3])
  766. )
  767. );
  768. }
  769. if (preg_match('/^[\w-_\s]*[\w-_]+/', $data)) {
  770. return $this->cacheMethod(__FUNCTION__, $cacheKey, $this->startQuote . $data . $this->endQuote);
  771. }
  772. return $this->cacheMethod(__FUNCTION__, $cacheKey, $data);
  773. }
  774. /**
  775. * Checks if the source is connected to the database.
  776. *
  777. * @return boolean True if the database is connected, else false
  778. */
  779. public function isConnected() {
  780. return $this->connected;
  781. }
  782. /**
  783. * Checks if the result is valid
  784. *
  785. * @return boolean True if the result is valid else false
  786. */
  787. public function hasResult() {
  788. return is_a($this->_result, 'PDOStatement');
  789. }
  790. /**
  791. * Get the query log as an array.
  792. *
  793. * @param boolean $sorted Get the queries sorted by time taken, defaults to false.
  794. * @param boolean $clear If True the existing log will cleared.
  795. * @return array Array of queries run as an array
  796. */
  797. public function getLog($sorted = false, $clear = true) {
  798. if ($sorted) {
  799. $log = sortByKey($this->_queriesLog, 'took', 'desc', SORT_NUMERIC);
  800. } else {
  801. $log = $this->_queriesLog;
  802. }
  803. if ($clear) {
  804. $this->_queriesLog = array();
  805. }
  806. return array('log' => $log, 'count' => $this->_queriesCnt, 'time' => $this->_queriesTime);
  807. }
  808. /**
  809. * Outputs the contents of the queries log. If in a non-CLI environment the sql_log element
  810. * will be rendered and output. If in a CLI environment, a plain text log is generated.
  811. *
  812. * @param boolean $sorted Get the queries sorted by time taken, defaults to false.
  813. * @return void
  814. */
  815. public function showLog($sorted = false) {
  816. $log = $this->getLog($sorted, false);
  817. if (empty($log['log'])) {
  818. return;
  819. }
  820. if (PHP_SAPI != 'cli') {
  821. $controller = null;
  822. $View = new View($controller, false);
  823. $View->set('logs', array($this->configKeyName => $log));
  824. echo $View->element('sql_dump', array('_forced_from_dbo_' => true));
  825. } else {
  826. foreach ($log['log'] as $k => $i) {
  827. print (($k + 1) . ". {$i['query']}\n");
  828. }
  829. }
  830. }
  831. /**
  832. * Log given SQL query.
  833. *
  834. * @param string $sql SQL statement
  835. * @param array $params Values binded to the query (prepared statements)
  836. * @return void
  837. */
  838. public function logQuery($sql, $params = array()) {
  839. $this->_queriesCnt++;
  840. $this->_queriesTime += $this->took;
  841. $this->_queriesLog[] = array(
  842. 'query' => $sql,
  843. 'params' => $params,
  844. 'affected' => $this->affected,
  845. 'numRows' => $this->numRows,
  846. 'took' => $this->took
  847. );
  848. if (count($this->_queriesLog) > $this->_queriesLogMax) {
  849. array_shift($this->_queriesLog);
  850. }
  851. }
  852. /**
  853. * Gets full table name including prefix
  854. *
  855. * @param Model|string $model Either a Model object or a string table name.
  856. * @param boolean $quote Whether you want the table name quoted.
  857. * @param boolean $schema Whether you want the schema name included.
  858. * @return string Full quoted table name
  859. */
  860. public function fullTableName($model, $quote = true, $schema = true) {
  861. if (is_object($model)) {
  862. $schemaName = $model->schemaName;
  863. $table = $model->tablePrefix . $model->table;
  864. } elseif (!empty($this->config['prefix']) && strpos($model, $this->config['prefix']) !== 0) {
  865. $table = $this->config['prefix'] . strval($model);
  866. } else {
  867. $table = strval($model);
  868. }
  869. if ($schema && !isset($schemaName)) {
  870. $schemaName = $this->getSchemaName();
  871. }
  872. if ($quote) {
  873. if ($schema && !empty($schemaName)) {
  874. if (false == strstr($table, '.')) {
  875. return $this->name($schemaName) . '.' . $this->name($table);
  876. }
  877. }
  878. return $this->name($table);
  879. }
  880. if ($schema && !empty($schemaName)) {
  881. if (false == strstr($table, '.')) {
  882. return $schemaName . '.' . $table;
  883. }
  884. }
  885. return $table;
  886. }
  887. /**
  888. * The "C" in CRUD
  889. *
  890. * Creates new records in the database.
  891. *
  892. * @param Model $model Model object that the record is for.
  893. * @param array $fields An array of field names to insert. If null, $model->data will be
  894. * used to generate field names.
  895. * @param array $values An array of values with keys matching the fields. If null, $model->data will
  896. * be used to generate values.
  897. * @return boolean Success
  898. */
  899. public function create(Model $model, $fields = null, $values = null) {
  900. $id = null;
  901. if (!$fields) {
  902. unset($fields, $values);
  903. $fields = array_keys($model->data);
  904. $values = array_values($model->data);
  905. }
  906. $count = count($fields);
  907. for ($i = 0; $i < $count; $i++) {
  908. $valueInsert[] = $this->value($values[$i], $model->getColumnType($fields[$i]));
  909. $fieldInsert[] = $this->name($fields[$i]);
  910. if ($fields[$i] == $model->primaryKey) {
  911. $id = $values[$i];
  912. }
  913. }
  914. $query = array(
  915. 'table' => $this->fullTableName($model),
  916. 'fields' => implode(', ', $fieldInsert),
  917. 'values' => implode(', ', $valueInsert)
  918. );
  919. if ($this->execute($this->renderStatement('create', $query))) {
  920. if (empty($id)) {
  921. $id = $this->lastInsertId($this->fullTableName($model, false, false), $model->primaryKey);
  922. }
  923. $model->setInsertID($id);
  924. $model->id = $id;
  925. return true;
  926. }
  927. $model->onError();
  928. return false;
  929. }
  930. /**
  931. * The "R" in CRUD
  932. *
  933. * Reads record(s) from the database.
  934. *
  935. * @param Model $model A Model object that the query is for.
  936. * @param array $queryData An array of queryData information containing keys similar to Model::find()
  937. * @param integer $recursive Number of levels of association
  938. * @return mixed boolean false on error/failure. An array of results on success.
  939. */
  940. public function read(Model $model, $queryData = array(), $recursive = null) {
  941. $queryData = $this->_scrubQueryData($queryData);
  942. $null = null;
  943. $array = array('callbacks' => $queryData['callbacks']);
  944. $linkedModels = array();
  945. $bypass = false;
  946. if ($recursive === null && isset($queryData['recursive'])) {
  947. $recursive = $queryData['recursive'];
  948. }
  949. if (!is_null($recursive)) {
  950. $_recursive = $model->recursive;
  951. $model->recursive = $recursive;
  952. }
  953. if (!empty($queryData['fields'])) {
  954. $bypass = true;
  955. $queryData['fields'] = $this->fields($model, null, $queryData['fields']);
  956. } else {
  957. $queryData['fields'] = $this->fields($model);
  958. }
  959. $_associations = $model->associations();
  960. if ($model->recursive == -1) {
  961. $_associations = array();
  962. } elseif ($model->recursive === 0) {
  963. unset($_associations[2], $_associations[3]);
  964. }
  965. foreach ($_associations as $type) {
  966. foreach ($model->{$type} as $assoc => $assocData) {
  967. $linkModel = $model->{$assoc};
  968. $external = isset($assocData['external']);
  969. $linkModel->getDataSource();
  970. if ($model->useDbConfig === $linkModel->useDbConfig) {
  971. if ($bypass) {
  972. $assocData['fields'] = false;
  973. }
  974. if (true === $this->generateAssociationQuery($model, $linkModel, $type, $assoc, $assocData, $queryData, $external, $null)) {
  975. $linkedModels[$type . '/' . $assoc] = true;
  976. }
  977. }
  978. }
  979. }
  980. $query = trim($this->generateAssociationQuery($model, null, null, null, null, $queryData, false, $null));
  981. $resultSet = $this->fetchAll($query, $model->cacheQueries);
  982. if ($resultSet === false) {
  983. $model->onError();
  984. return false;
  985. }
  986. $filtered = array();
  987. if ($queryData['callbacks'] === true || $queryData['callbacks'] === 'after') {
  988. $filtered = $this->_filterResults($resultSet, $model);
  989. }
  990. if ($model->recursive > -1) {
  991. $joined = array();
  992. if (isset($queryData['joins'][0]['alias'])) {
  993. $joined[$model->alias] = (array)Hash::extract($queryData['joins'], '{n}.alias');
  994. }
  995. foreach ($_associations as $type) {
  996. foreach ($model->{$type} as $assoc => $assocData) {
  997. $linkModel = $model->{$assoc};
  998. if (!isset($linkedModels[$type . '/' . $assoc])) {
  999. if ($model->useDbConfig === $linkModel->useDbConfig) {
  1000. $db = $this;
  1001. } else {
  1002. $db = ConnectionManager::getDataSource($linkModel->useDbConfig);
  1003. }
  1004. } elseif ($model->recursive > 1 && ($type === 'belongsTo' || $type === 'hasOne')) {
  1005. $db = $this;
  1006. }
  1007. if (isset($db) && method_exists($db, 'queryAssociation')) {
  1008. $stack = array($assoc);
  1009. $stack['_joined'] = $joined;
  1010. $db->queryAssociation($model, $linkModel, $type, $assoc, $assocData, $array, true, $resultSet, $model->recursive - 1, $stack);
  1011. unset($db);
  1012. if ($type === 'hasMany') {
  1013. $filtered[] = $assoc;
  1014. }
  1015. }
  1016. }
  1017. }
  1018. if ($queryData['callbacks'] === true || $queryData['callbacks'] === 'after') {
  1019. $this->_filterResults($resultSet, $model, $filtered);
  1020. }
  1021. }
  1022. if (!is_null($recursive)) {
  1023. $model->recursive = $_recursive;
  1024. }
  1025. return $resultSet;
  1026. }
  1027. /**
  1028. * Passes association results thru afterFind filters of corresponding model
  1029. *
  1030. * @param array $results Reference of resultset to be filtered
  1031. * @param Model $model Instance of model to operate against
  1032. * @param array $filtered List of classes already filtered, to be skipped
  1033. * @return array Array of results that have been filtered through $model->afterFind
  1034. */
  1035. protected function _filterResults(&$results, Model $model, $filtered = array()) {
  1036. $current = reset($results);
  1037. if (!is_array($current)) {
  1038. return array();
  1039. }
  1040. $keys = array_diff(array_keys($current), $filtered, array($model->alias));
  1041. $filtering = array();
  1042. foreach ($keys as $className) {
  1043. if (!isset($model->{$className}) || !is_object($model->{$className})) {
  1044. continue;
  1045. }
  1046. $linkedModel = $model->{$className};
  1047. $filtering[] = $className;
  1048. foreach ($results as $key => &$result) {
  1049. $data = $linkedModel->afterFind(array(array($className => $result[$className])), false);
  1050. if (isset($data[0][$className])) {
  1051. $result[$className] = $data[0][$className];
  1052. } else {
  1053. unset($results[$key]);
  1054. }
  1055. }
  1056. }
  1057. return $filtering;
  1058. }
  1059. /**
  1060. * Queries associations. Used to fetch results on recursive models.
  1061. *
  1062. * @param Model $model Primary Model object
  1063. * @param Model $linkModel Linked model that
  1064. * @param string $type Association type, one of the model association types ie. hasMany
  1065. * @param string $association
  1066. * @param array $assocData
  1067. * @param array $queryData
  1068. * @param boolean $external Whether or not the association query is on an external datasource.
  1069. * @param array $resultSet Existing results
  1070. * @param integer $recursive Number of levels of association
  1071. * @param array $stack
  1072. * @return mixed
  1073. * @throws CakeException when results cannot be created.
  1074. */
  1075. public function queryAssociation(Model $model, &$linkModel, $type, $association, $assocData, &$queryData, $external, &$resultSet, $recursive, $stack) {
  1076. if (isset($stack['_joined'])) {
  1077. $joined = $stack['_joined'];
  1078. unset($stack['_joined']);
  1079. }
  1080. if ($query = $this->generateAssociationQuery($model, $linkModel, $type, $association, $assocData, $queryData, $external, $resultSet)) {
  1081. if (!is_array($resultSet)) {
  1082. throw new CakeException(__d('cake_dev', 'Error in Model %s', get_class($model)));
  1083. }
  1084. if ($type === 'hasMany' && empty($assocData['limit']) && !empty($assocData['foreignKey'])) {
  1085. $ins = $fetch = array();
  1086. foreach ($resultSet as &$result) {
  1087. if ($in = $this->insertQueryData('{$__cakeID__$}', $result, $association, $assocData, $model, $linkModel, $stack)) {
  1088. $ins[] = $in;
  1089. }
  1090. }
  1091. if (!empty($ins)) {
  1092. $ins = array_unique($ins);
  1093. $fetch = $this->fetchAssociated($model, $query, $ins);
  1094. }
  1095. if (!empty($fetch) && is_array($fetch)) {
  1096. if ($recursive > 0) {
  1097. foreach ($linkModel->associations() as $type1) {
  1098. foreach ($linkModel->{$type1} as $assoc1 => $assocData1) {
  1099. $deepModel = $linkModel->{$assoc1};
  1100. $tmpStack = $stack;
  1101. $tmpStack[] = $assoc1;
  1102. if ($linkModel->useDbConfig === $deepModel->useDbConfig) {
  1103. $db = $this;
  1104. } else {
  1105. $db = ConnectionManager::getDataSource($deepModel->useDbConfig);
  1106. }
  1107. $db->queryAssociation($linkModel, $deepModel, $type1, $assoc1, $assocData1, $queryData, true, $fetch, $recursive - 1, $tmpStack);
  1108. }
  1109. }
  1110. }
  1111. }
  1112. if ($queryData['callbacks'] === true || $queryData['callbacks'] === 'after') {
  1113. $this->_filterResults($fetch, $model);
  1114. }
  1115. return $this->_mergeHasMany($resultSet, $fetch, $association, $model, $linkModel);
  1116. } elseif ($type === 'hasAndBelongsToMany') {
  1117. $ins = $fetch = array();
  1118. foreach ($resultSet as &$result) {
  1119. if ($in = $this->insertQueryData('{$__cakeID__$}', $result, $association, $assocData, $model, $linkModel, $stack)) {
  1120. $ins[] = $in;
  1121. }
  1122. }
  1123. if (!empty($ins)) {
  1124. $ins = array_unique($ins);
  1125. if (count($ins) > 1) {
  1126. $query = str_replace('{$__cakeID__$}', '(' . implode(', ', $ins) . ')', $query);
  1127. $query = str_replace('= (', 'IN (', $query);
  1128. } else {
  1129. $query = str_replace('{$__cakeID__$}', $ins[0], $query);
  1130. }
  1131. $query = str_replace(' WHERE 1 = 1', '', $query);
  1132. }
  1133. $foreignKey = $model->hasAndBelongsToMany[$association]['foreignKey'];
  1134. $joinKeys = array($foreignKey, $model->hasAndBelongsToMany[$association]['associationForeignKey']);
  1135. list($with, $habtmFields) = $model->joinModel($model->hasAndBelongsToMany[$association]['with'], $joinKeys);
  1136. $habtmFieldsCount = count($habtmFields);
  1137. $q = $this->insertQueryData($query, null, $association, $assocData, $model, $linkModel, $stack);
  1138. if ($q !== false) {
  1139. $fetch = $this->fetchAll($q, $model->cacheQueries);
  1140. } else {
  1141. $fetch = null;
  1142. }
  1143. }
  1144. $modelAlias = $model->alias;
  1145. $modelPK = $model->primaryKey;
  1146. foreach ($resultSet as &$row) {
  1147. if ($type !== 'hasAndBelongsToMany') {
  1148. $q = $this->insertQueryData($query, $row, $association, $assocData, $model, $linkModel, $stack);
  1149. $fetch = null;
  1150. if ($q !== false) {
  1151. $joinedData = array();
  1152. if (($type === 'belongsTo' || $type === 'hasOne') && isset($row[$linkModel->alias], $joined[$model->alias]) && in_array($linkModel->alias, $joined[$model->alias])) {
  1153. $joinedData = Hash::filter($row[$linkModel->alias]);
  1154. if (!empty($joinedData)) {
  1155. $fetch[0] = array($linkModel->alias => $row[$linkModel->alias]);
  1156. }
  1157. } else {
  1158. $fetch = $this->fetchAll($q, $model->cacheQueries);
  1159. }
  1160. }
  1161. }
  1162. $selfJoin = $linkModel->name === $model->name;
  1163. if (!empty($fetch) && is_array($fetch)) {
  1164. if ($recursive > 0) {
  1165. foreach ($linkModel->associations() as $type1) {
  1166. foreach ($linkModel->{$type1} as $assoc1 => $assocData1) {
  1167. $deepModel = $linkModel->{$assoc1};
  1168. if ($type1 === 'belongsTo' || ($deepModel->alias === $modelAlias && $type === 'belongsTo') || ($deepModel->alias !== $modelAlias)) {
  1169. $tmpStack = $stack;
  1170. $tmpStack[] = $assoc1;
  1171. if ($linkModel->useDbConfig == $deepModel->useDbConfig) {
  1172. $db = $this;
  1173. } else {
  1174. $db = ConnectionManager::getDataSource($deepModel->useDbConfig);
  1175. }
  1176. $db->queryAssociation($linkModel, $deepModel, $type1, $assoc1, $assocData1, $queryData, true, $fetch, $recursive - 1, $tmpStack);
  1177. }
  1178. }
  1179. }
  1180. }
  1181. if ($type === 'hasAndBelongsToMany') {
  1182. $merge = array();
  1183. foreach ($fetch as $data) {
  1184. if (isset($data[$with]) && $data[$with][$foreignKey] === $row[$modelAlias][$modelPK]) {
  1185. if ($habtmFieldsCount <= 2) {
  1186. unset($data[$with]);
  1187. }
  1188. $merge[] = $data;
  1189. }
  1190. }
  1191. if (empty($merge) && !isset($row[$association])) {
  1192. $row[$association] = $merge;
  1193. } else {
  1194. $this->_mergeAssociation($row, $merge, $association, $type);
  1195. }
  1196. } else {
  1197. $this->_mergeAssociation($row, $fetch, $association, $type, $selfJoin);
  1198. }
  1199. if (isset($row[$association])) {
  1200. $row[$association] = $linkModel->afterFind($row[$association], false);
  1201. }
  1202. } else {
  1203. $tempArray[0][$association] = false;
  1204. $this->_mergeAssociation($row, $tempArray, $association, $type, $selfJoin);
  1205. }
  1206. }
  1207. }
  1208. }
  1209. /**
  1210. * A more efficient way to fetch associations. Woohoo!
  1211. *
  1212. * @param Model $model Primary model object
  1213. * @param string $query Association query
  1214. * @param array $ids Array of IDs of associated records
  1215. * @return array Association results
  1216. */
  1217. public function fetchAssociated(Model $model, $query, $ids) {
  1218. $query = str_replace('{$__cakeID__$}', implode(', ', $ids), $query);
  1219. if (count($ids) > 1) {
  1220. $query = str_replace('= (', 'IN (', $query);
  1221. }
  1222. return $this->fetchAll($query, $model->cacheQueries);
  1223. }
  1224. /**
  1225. * mergeHasMany - Merge the results of hasMany relations.
  1226. *
  1227. *
  1228. * @param array $resultSet Data to merge into
  1229. * @param array $merge Data to merge
  1230. * @param string $association Name of Model being Merged
  1231. * @param Model $model Model being merged onto
  1232. * @param Model $linkModel Model being merged
  1233. * @return void
  1234. */
  1235. protected function _mergeHasMany(&$resultSet, $merge, $association, $model, $linkModel) {
  1236. $modelAlias = $model->alias;
  1237. $modelPK = $model->primaryKey;
  1238. $modelFK = $model->hasMany[$association]['foreignKey'];
  1239. foreach ($resultSet as &$result) {
  1240. if (!isset($result[$modelAlias])) {
  1241. continue;
  1242. }
  1243. $merged = array();
  1244. foreach ($merge as $data) {
  1245. if ($result[$modelAlias][$modelPK] === $data[$association][$modelFK]) {
  1246. if (count($data) > 1) {
  1247. $data = array_merge($data[$association], $data);
  1248. unset($data[$association]);
  1249. foreach ($data as $key => $name) {
  1250. if (is_numeric($key)) {
  1251. $data[$association][] = $name;
  1252. unset($data[$key]);
  1253. }
  1254. }
  1255. $merged[] = $data;
  1256. } else {
  1257. $merged[] = $data[$association];
  1258. }
  1259. }
  1260. }
  1261. $result = Hash::mergeDiff($result, array($association => $merged));
  1262. }
  1263. }
  1264. /**
  1265. * Merge association of merge into data
  1266. *
  1267. * @param array $data
  1268. * @param array $merge
  1269. * @param string $association
  1270. * @param string $type
  1271. * @param boolean $selfJoin
  1272. * @return void
  1273. */
  1274. protected function _mergeAssociation(&$data, &$merge, $association, $type, $selfJoin = false) {
  1275. if (isset($merge[0]) && !isset($merge[0][$association])) {
  1276. $association = Inflector::pluralize($association);
  1277. }
  1278. if ($type === 'belongsTo' || $type === 'hasOne') {
  1279. if (isset($merge[$association])) {
  1280. $data[$association] = $merge[$association][0];
  1281. } else {
  1282. if (count($merge[0][$association]) > 1) {
  1283. foreach ($merge[0] as $assoc => $data2) {
  1284. if ($assoc !== $association) {
  1285. $merge[0][$association][$assoc] = $data2;
  1286. }
  1287. }
  1288. }
  1289. if (!isset($data[$association])) {
  1290. $data[$association] = array();
  1291. if ($merge[0][$association]) {
  1292. $data[$association] = $merge[0][$association];
  1293. }
  1294. } else {
  1295. if (is_array($merge[0][$association])) {
  1296. foreach ($data[$association] as $k => $v) {
  1297. if (!is_array($v)) {
  1298. $dataAssocTmp[$k] = $v;
  1299. }
  1300. }
  1301. foreach ($merge[0][$association] as $k => $v) {
  1302. if (!is_array($v)) {
  1303. $mergeAssocTmp[$k] = $v;
  1304. }
  1305. }
  1306. $dataKeys = array_keys($data);
  1307. $mergeKeys = array_keys($merge[0]);
  1308. if ($mergeKeys[0] === $dataKeys[0] || $mergeKeys === $dataKeys) {
  1309. $data[$association][$association] = $merge[0][$association];
  1310. } else {
  1311. $diff = Hash::diff($dataAssocTmp, $mergeAssocTmp);
  1312. $data[$association] = array_merge($merge[0][$association], $diff);
  1313. }
  1314. } elseif ($selfJoin && array_key_exists($association, $merge[0])) {
  1315. $data[$association] = array_merge($data[$association], array($association => array()));
  1316. }
  1317. }
  1318. }
  1319. } else {
  1320. if (isset($merge[0][$association]) && $merge[0][$association] === false) {
  1321. if (!isset($data[$association])) {
  1322. $data[$association] = array();
  1323. }
  1324. } else {
  1325. foreach ($merge as $row) {
  1326. $insert = array();
  1327. if (count($row) === 1) {
  1328. $insert = $row[$association];
  1329. } elseif (isset($row[$association])) {
  1330. $insert = array_merge($row[$association], $row);
  1331. unset($insert[$association]);
  1332. }
  1333. if (empty($data[$association]) || (isset($data[$association]) && !in_array($insert, $data[$association], true))) {
  1334. $data[$association][] = $insert;
  1335. }
  1336. }
  1337. }
  1338. }
  1339. }
  1340. /**
  1341. * Generates an array representing a query or part of a query from a single model or two associated models
  1342. *
  1343. * @param Model $model
  1344. * @param Model $linkModel
  1345. * @param string $type
  1346. * @param string $association
  1347. * @param array $assocData
  1348. * @param array $queryData
  1349. * @param boolean $external
  1350. * @param array $resultSet
  1351. * @return mixed
  1352. */
  1353. public function generateAssociationQuery(Model $model, $linkModel, $type, $association, $assocData, &$queryData, $external, &$resultSet) {
  1354. $queryData = $this->_scrubQueryData($queryData);
  1355. $assocData = $this->_scrubQueryData($assocData);
  1356. $modelAlias = $model->alias;
  1357. if (empty($queryData['fields'])) {
  1358. $queryData['fields'] = $this->fields($model, $modelAlias);
  1359. } elseif (!empty($model->hasMany) && $model->recursive > -1) {
  1360. $assocFields = $this->fields($model, $modelAlias, array("{$modelAlias}.{$model->primaryKey}"));
  1361. $passedFields = $queryData['fields'];
  1362. if (count($passedFields) === 1) {
  1363. if (strpos($passedFields[0], $assocFields[0]) === false && !preg_match('/^[a-z]+\(/i', $passedFields[0])) {
  1364. $queryData['fields'] = array_merge($passedFields, $assocFields);
  1365. } else {
  1366. $queryData['fields'] = $passedFields;
  1367. }
  1368. } else {
  1369. $queryData['fields'] = array_merge($passedFields, $assocFields);
  1370. }
  1371. unset($assocFields, $passedFields);
  1372. }
  1373. if ($linkModel === null) {
  1374. return $this->buildStatement(
  1375. array(
  1376. 'fields' => array_unique($queryData['fields']),
  1377. 'table' => $this->fullTableName($model),
  1378. 'alias' => $modelAlias,
  1379. 'limit' => $queryData['limit'],
  1380. 'offset' => $queryData['offset'],
  1381. 'joins' => $queryData['joins'],
  1382. 'conditions' => $queryData['conditions'],
  1383. 'order' => $queryData['order'],
  1384. 'group' => $queryData['group']
  1385. ),
  1386. $model
  1387. );
  1388. }
  1389. if ($external && !empty($assocData['finderQuery'])) {
  1390. return $assocData['finderQuery'];
  1391. }
  1392. $self = $model->name === $linkModel->name;
  1393. $fields = array();
  1394. if ($external || (in_array($type, array('hasOne', 'belongsTo')) && $assocData['fields'] !== false)) {
  1395. $fields = $this->fields($linkModel, $association, $assocData['fields']);
  1396. }
  1397. if (empty($assocData['offset']) && !empty($assocData['page'])) {
  1398. $assocData['offset'] = ($assocData['page'] - 1) * $assocData['limit'];
  1399. }
  1400. $assocData['limit'] = $this->limit($assocData['limit'], $assocData['offset']);
  1401. switch ($type) {
  1402. case 'hasOne':
  1403. case 'belongsTo':
  1404. $conditions = $this->_mergeConditions(
  1405. $assocData['conditions'],
  1406. $this->getConstraint($type, $model, $linkModel, $association, array_merge($assocData, compact('external', 'self')))
  1407. );
  1408. if (!$self && $external) {
  1409. foreach ($conditions as $key => $condition) {
  1410. if (is_numeric($key) && strpos($condition, $modelAlias . '.') !== false) {
  1411. unset($conditions[$key]);
  1412. }
  1413. }
  1414. }
  1415. if ($external) {
  1416. $query = array_merge($assocData, array(
  1417. 'conditions' => $conditions,
  1418. 'table' => $this->fullTableName($linkModel),
  1419. 'fields' => $fields,
  1420. 'alias' => $association,
  1421. 'group' => null
  1422. ));
  1423. $query += array('order' => $assocData['order'], 'limit' => $assocData['limit']);
  1424. } else {
  1425. $join = array(
  1426. 'table' => $linkModel,
  1427. 'alias' => $association,
  1428. 'type' => isset($assocData['type']) ? $assocData['type'] : 'LEFT',
  1429. 'conditions' => trim($this->conditions($conditions, true, false, $model))
  1430. );
  1431. $queryData['fields'] = array_merge($queryData['fields'], $fields);
  1432. if (!empty($assocData['order'])) {
  1433. $queryData['order'][] = $assocData['order'];
  1434. }
  1435. if (!in_array($join, $queryData['joins'])) {
  1436. $queryData['joins'][] = $join;
  1437. }
  1438. return true;
  1439. }
  1440. break;
  1441. case 'hasMany':
  1442. $assocData['fields'] = $this->fields($linkModel, $association, $assocData['fields']);
  1443. if (!empty($assocData['foreignKey'])) {
  1444. $assocData['fields'] = array_merge($assocData['fields'], $this->fields($linkModel, $association, array("{$association}.{$assocData['foreignKey']}")));
  1445. }
  1446. $query = array(
  1447. 'conditions' => $this->_mergeConditions($this->getConstraint('hasMany', $model, $linkModel, $association, $assocData), $assocData['conditions']),
  1448. 'fields' => array_unique($assocData['fields']),
  1449. 'table' => $this->fullTableName($linkModel),
  1450. 'alias' => $association,
  1451. 'order' => $assocData['order'],
  1452. 'limit' => $assocData['limit'],
  1453. 'group' => null
  1454. );
  1455. break;
  1456. case 'hasAndBelongsToMany':
  1457. $joinFields = array();
  1458. $joinAssoc = null;
  1459. if (isset($assocData['with']) && !empty($assocData['with'])) {
  1460. $joinKeys = array($assocData['foreignKey'], $assocData['associationForeignKey']);
  1461. list($with, $joinFields) = $model->joinModel($assocData['with'], $joinKeys);
  1462. $joinTbl = $model->{$with};
  1463. $joinAlias = $joinTbl;
  1464. if (is_array($joinFields) && !empty($joinFields)) {
  1465. $joinAssoc = $joinAlias = $model->{$with}->alias;
  1466. $joinFields = $this->fields($model->{$with}, $joinAlias, $joinFields);
  1467. } else {
  1468. $joinFields = array();
  1469. }
  1470. } else {
  1471. $joinTbl = $assocData['joinTable'];
  1472. $joinAlias = $this->fullTableName($assocData['joinTable']);
  1473. }
  1474. $query = array(
  1475. 'conditions' => $assocData['conditions'],
  1476. 'limit' => $assocData['limit'],
  1477. 'table' => $this->fullTableName($linkModel),
  1478. 'alias' => $association,
  1479. 'fields' => array_merge($this->fields($linkModel, $association, $assocData['fields']), $joinFields),
  1480. 'order' => $assocData['order'],
  1481. 'group' => null,
  1482. 'joins' => array(array(
  1483. 'table' => $joinTbl,
  1484. 'alias' => $joinAssoc,
  1485. 'conditions' => $this->getConstraint('hasAndBelongsToMany', $model, $linkModel, $joinAlias, $assocData, $association)
  1486. ))
  1487. );
  1488. break;
  1489. }
  1490. if (isset($query)) {
  1491. return $this->buildStatement($query, $model);
  1492. }
  1493. return null;
  1494. }
  1495. /**
  1496. * Returns a conditions array for the constraint between two models
  1497. *
  1498. * @param string $type Association type
  1499. * @param Model $model Model object
  1500. * @param string $linkModel
  1501. * @param string $alias
  1502. * @param array $assoc
  1503. * @param string $alias2
  1504. * @return array Conditions array defining the constraint between $model and $association
  1505. */
  1506. public function getConstraint($type, $model, $linkModel, $alias, $assoc, $alias2 = null) {
  1507. $assoc += array('external' => false, 'self' => false);
  1508. if (empty($assoc['foreignKey'])) {
  1509. return array();
  1510. }
  1511. switch (true) {
  1512. case ($assoc['external'] && $type === 'hasOne'):
  1513. return array("{$alias}.{$assoc['foreignKey']}" => '{$__cakeID__$}');
  1514. case ($assoc['external'] && $type === 'belongsTo'):
  1515. return array("{$alias}.{$linkModel->primaryKey}" => '{$__cakeForeignKey__$}');
  1516. case (!$assoc['external'] && $type === 'hasOne'):
  1517. return array("{$alias}.{$assoc['foreignKey']}" => $this->identifier("{$model->alias}.{$model->primaryKey}"));
  1518. case (!$assoc['external'] && $type === 'belongsTo'):
  1519. return array("{$model->alias}.{$assoc['foreignKey']}" => $this->identifier("{$alias}.{$linkModel->primaryKey}"));
  1520. case ($type === 'hasMany'):
  1521. return array("{$alias}.{$assoc['foreignKey']}" => array('{$__cakeID__$}'));
  1522. case ($type === 'hasAndBelongsToMany'):
  1523. return array(
  1524. array("{$alias}.{$assoc['foreignKey']}" => '{$__cakeID__$}'),
  1525. array("{$alias}.{$assoc['associationForeignKey']}" => $this->identifier("{$alias2}.{$linkModel->primaryKey}"))
  1526. );
  1527. }
  1528. return array();
  1529. }
  1530. /**
  1531. * Builds and generates a JOIN statement from an array. Handles final clean-up before conversion.
  1532. *
  1533. * @param array $join An array defining a JOIN statement in a query
  1534. * @return string An SQL JOIN statement to be used in a query
  1535. * @see DboSource::renderJoinStatement()
  1536. * @see DboSource::buildStatement()
  1537. */
  1538. public function buildJoinStatement($join) {
  1539. $data = array_merge(array(
  1540. 'type' => null,
  1541. 'alias' => null,
  1542. 'table' => 'join_table',
  1543. 'conditions' => array()
  1544. ), $join);
  1545. if (!empty($data['alias'])) {
  1546. $data['alias'] = $this->alias . $this->name($data['alias']);
  1547. }
  1548. if (!empty($data['conditions'])) {
  1549. $data['conditions'] = trim($this->conditions($data['conditions'], true, false));
  1550. }
  1551. if (!empty($data['table'])) {
  1552. $schema = !(is_string($data['table']) && strpos($data['table'], '(') === 0);
  1553. $data['table'] = $this->fullTableName($data['table'], true, $schema);
  1554. }
  1555. return $this->renderJoinStatement($data);
  1556. }
  1557. /**
  1558. * Builds and generates an SQL statement from an array. Handles final clean-up before conversion.
  1559. *
  1560. * @param array $query An array defining an SQL query
  1561. * @param Model $model The model object which initiated the query
  1562. * @return string An executable SQL statement
  1563. * @see DboSource::renderStatement()
  1564. */
  1565. public function buildStatement($query, $model) {
  1566. $query = array_merge($this->_queryDefaults, $query);
  1567. if (!empty($query['joins'])) {
  1568. $count = count($query['joins']);
  1569. for ($i = 0; $i < $count; $i++) {
  1570. if (is_array($query['joins'][$i])) {
  1571. $query['joins'][$i] = $this->buildJoinStatement($query['joins'][$i]);
  1572. }
  1573. }
  1574. }
  1575. return $this->renderStatement('select', array(
  1576. 'conditions' => $this->conditions($query['conditions'], true, true, $model),
  1577. 'fields' => implode(', ', $query['fields']),
  1578. 'table' => $query['table'],
  1579. 'alias' => $this->alias . $this->name($query['alias']),
  1580. 'order' => $this->order($query['order'], 'ASC', $model),
  1581. 'limit' => $this->limit($query['limit'], $query['offset']),
  1582. 'joins' => implode(' ', $query['joins']),
  1583. 'group' => $this->group($query['group'], $model)
  1584. ));
  1585. }
  1586. /**
  1587. * Renders a final SQL JOIN statement
  1588. *
  1589. * @param array $data
  1590. * @return string
  1591. */
  1592. public function renderJoinStatement($data) {
  1593. extract($data);
  1594. return trim("{$type} JOIN {$table} {$alias} ON ({$conditions})");
  1595. }
  1596. /**
  1597. * Renders a final SQL statement by putting together the component parts in the correct order
  1598. *
  1599. * @param string $type type of query being run. e.g select, create, update, delete, schema, alter.
  1600. * @param array $data Array of data to insert into the query.
  1601. * @return string Rendered SQL expression to be run.
  1602. */
  1603. public function renderStatement($type, $data) {
  1604. extract($data);
  1605. $aliases = null;
  1606. switch (strtolower($type)) {
  1607. case 'select':
  1608. return "SELECT {$fields} FROM {$table} {$alias} {$joins} {$conditions} {$group} {$order} {$limit}";
  1609. case 'create':
  1610. return "INSERT INTO {$table} ({$fields}) VALUES ({$values})";
  1611. case 'update':
  1612. if (!empty($alias)) {
  1613. $aliases = "{$this->alias}{$alias} {$joins} ";
  1614. }
  1615. return "UPDATE {$table} {$aliases}SET {$fields} {$conditions}";
  1616. case 'delete':
  1617. if (!empty($alias)) {
  1618. $aliases = "{$this->alias}{$alias} {$joins} ";
  1619. }
  1620. return "DELETE {$alias} FROM {$table} {$aliases}{$conditions}";
  1621. case 'schema':
  1622. foreach (array('columns', 'indexes', 'tableParameters') as $var) {
  1623. if (is_array(${$var})) {
  1624. ${$var} = "\t" . implode(",\n\t", array_filter(${$var}));
  1625. } else {
  1626. ${$var} = '';
  1627. }
  1628. }
  1629. if (trim($indexes) !== '') {
  1630. $columns .= ',';
  1631. }
  1632. return "CREATE TABLE {$table} (\n{$columns}{$indexes}) {$tableParameters};";
  1633. case 'alter':
  1634. return;
  1635. }
  1636. }
  1637. /**
  1638. * Merges a mixed set of string/array conditions
  1639. *
  1640. * @param mixed $query
  1641. * @param mixed $assoc
  1642. * @return array
  1643. */
  1644. protected function _mergeConditions($query, $assoc) {
  1645. if (empty($assoc)) {
  1646. return $query;
  1647. }
  1648. if (is_array($query)) {
  1649. return array_merge((array)$assoc, $query);
  1650. }
  1651. if (!empty($query)) {
  1652. $query = array($query);
  1653. if (is_array($assoc)) {
  1654. $query = array_merge($query, $assoc);
  1655. } else {
  1656. $query[] = $assoc;
  1657. }
  1658. return $query;
  1659. }
  1660. return $assoc;
  1661. }
  1662. /**
  1663. * Generates and executes an SQL UPDATE statement for given model, fields, and values.
  1664. * For databases that do not support aliases in UPDATE queries.
  1665. *
  1666. * @param Model $model
  1667. * @param array $fields
  1668. * @param array $values
  1669. * @param mixed $conditions
  1670. * @return boolean Success
  1671. */
  1672. public function update(Model $model, $fields = array(), $values = null, $conditions = null) {
  1673. if (!$values) {
  1674. $combined = $fields;
  1675. } else {
  1676. $combined = array_combine($fields, $values);
  1677. }
  1678. $fields = implode(', ', $this->_prepareUpdateFields($model, $combined, empty($conditions)));
  1679. $alias = $joins = null;
  1680. $table = $this->fullTableName($model);
  1681. $conditions = $this->_matchRecords($model, $conditions);
  1682. if ($conditions === false) {
  1683. return false;
  1684. }
  1685. $query = compact('table', 'alias', 'joins', 'fields', 'conditions');
  1686. if (!$this->execute($this->renderStatement('update', $query))) {
  1687. $model->onError();
  1688. return false;
  1689. }
  1690. return true;
  1691. }
  1692. /**
  1693. * Quotes and prepares fields and values for an SQL UPDATE statement
  1694. *
  1695. * @param Model $model
  1696. * @param array $fields
  1697. * @param boolean $quoteValues If values should be quoted, or treated as SQL snippets
  1698. * @param boolean $alias Include the model alias in the field name
  1699. * @return array Fields and values, quoted and prepared
  1700. */
  1701. protected function _prepareUpdateFields(Model $model, $fields, $quoteValues = true, $alias = false) {
  1702. $quotedAlias = $this->startQuote . $model->alias . $this->endQuote;
  1703. $updates = array();
  1704. foreach ($fields as $field => $value) {
  1705. if ($alias && strpos($field, '.') === false) {
  1706. $quoted = $model->escapeField($field);
  1707. } elseif (!$alias && strpos($field, '.') !== false) {
  1708. $quoted = $this->name(str_replace($quotedAlias . '.', '', str_replace(
  1709. $model->alias . '.', '', $field
  1710. )));
  1711. } else {
  1712. $quoted = $this->name($field);
  1713. }
  1714. if ($value === null) {
  1715. $updates[] = $quoted . ' = NULL';
  1716. continue;
  1717. }
  1718. $update = $quoted . ' = ';
  1719. if ($quoteValues) {
  1720. $update .= $this->value($value, $model->getColumnType($field));
  1721. } elseif ($model->getColumnType($field) == 'boolean' && (is_int($value) || is_bool($value))) {
  1722. $update .= $this->boolean($value, true);
  1723. } elseif (!$alias) {
  1724. $update .= str_replace($quotedAlias . '.', '', str_replace(
  1725. $model->alias . '.', '', $value
  1726. ));
  1727. } else {
  1728. $update .= $value;
  1729. }
  1730. $updates[] = $update;
  1731. }
  1732. return $updates;
  1733. }
  1734. /**
  1735. * Generates and executes an SQL DELETE statement.
  1736. * For databases that do not support aliases in UPDATE queries.
  1737. *
  1738. * @param Model $model
  1739. * @param mixed $conditions
  1740. * @return boolean Success
  1741. */
  1742. public function delete(Model $model, $conditions = null) {
  1743. $alias = $joins = null;
  1744. $table = $this->fullTableName($model);
  1745. $conditions = $this->_matchRecords($model, $conditions);
  1746. if ($conditions === false) {
  1747. return false;
  1748. }
  1749. if ($this->execute($this->renderStatement('delete', compact('alias', 'table', 'joins', 'conditions'))) === false) {
  1750. $model->onError();
  1751. return false;
  1752. }
  1753. return true;
  1754. }
  1755. /**
  1756. * Gets a list of record IDs for the given conditions. Used for multi-record updates and deletes
  1757. * in databases that do not support aliases in UPDATE/DELETE queries.
  1758. *
  1759. * @param Model $model
  1760. * @param mixed $conditions
  1761. * @return array List of record IDs
  1762. */
  1763. protected function _matchRecords(Model $model, $conditions = null) {
  1764. if ($conditions === true) {
  1765. $conditions = $this->conditions(true);
  1766. } elseif ($conditions === null) {
  1767. $conditions = $this->conditions($this->defaultConditions($model, $conditions, false), true, true, $model);
  1768. } else {
  1769. $noJoin = true;
  1770. foreach ($conditions as $field => $value) {
  1771. $originalField = $field;
  1772. if (strpos($field, '.') !== false) {
  1773. list(, $field) = explode('.', $field);
  1774. $field = ltrim($field, $this->startQuote);
  1775. $field = rtrim($field, $this->endQuote);
  1776. }
  1777. if (!$model->hasField($field)) {
  1778. $noJoin = false;
  1779. break;
  1780. }
  1781. if ($field !== $originalField) {
  1782. $conditions[$field] = $value;
  1783. unset($conditions[$originalField]);
  1784. }
  1785. }
  1786. if ($noJoin === true) {
  1787. return $this->conditions($conditions);
  1788. }
  1789. $idList = $model->find('all', array(
  1790. 'fields' => "{$model->alias}.{$model->primaryKey}",
  1791. 'conditions' => $conditions
  1792. ));
  1793. if (empty($idList)) {
  1794. return false;
  1795. }
  1796. $conditions = $this->conditions(array(
  1797. $model->primaryKey => Hash::extract($idList, "{n}.{$model->alias}.{$model->primaryKey}")
  1798. ));
  1799. }
  1800. return $conditions;
  1801. }
  1802. /**
  1803. * Returns an array of SQL JOIN fragments from a model's associations
  1804. *
  1805. * @param Model $model
  1806. * @return array
  1807. */
  1808. protected function _getJoins(Model $model) {
  1809. $join = array();
  1810. $joins = array_merge($model->getAssociated('hasOne'), $model->getAssociated('belongsTo'));
  1811. foreach ($joins as $assoc) {
  1812. if (isset($model->{$assoc}) && $model->useDbConfig == $model->{$assoc}->useDbConfig && $model->{$assoc}->getDataSource()) {
  1813. $assocData = $model->getAssociated($assoc);
  1814. $join[] = $this->buildJoinStatement(array(
  1815. 'table' => $model->{$assoc},
  1816. 'alias' => $assoc,
  1817. 'type' => isset($assocData['type']) ? $assocData['type'] : 'LEFT',
  1818. 'conditions' => trim($this->conditions(
  1819. $this->_mergeConditions($assocData['conditions'], $this->getConstraint($assocData['association'], $model, $model->{$assoc}, $assoc, $assocData)),
  1820. true, false, $model
  1821. ))
  1822. ));
  1823. }
  1824. }
  1825. return $join;
  1826. }
  1827. /**
  1828. * Returns an SQL calculation, i.e. COUNT() or MAX()
  1829. *
  1830. * @param Model $model
  1831. * @param string $func Lowercase name of SQL function, i.e. 'count' or 'max'
  1832. * @param array $params Function parameters (any values must be quoted manually)
  1833. * @return string An SQL calculation function
  1834. */
  1835. public function calculate(Model $model, $func, $params = array()) {
  1836. $params = (array)$params;
  1837. switch (strtolower($func)) {
  1838. case 'count':
  1839. if (!isset($params[0])) {
  1840. $params[0] = '*';
  1841. }
  1842. if (!isset($params[1])) {
  1843. $params[1] = 'count';
  1844. }
  1845. if (is_object($model) && $model->isVirtualField($params[0])) {
  1846. $arg = $this->_quoteFields($model->getVirtualField($params[0]));
  1847. } else {
  1848. $arg = $this->name($params[0]);
  1849. }
  1850. return 'COUNT(' . $arg . ') AS ' . $this->name($params[1]);
  1851. case 'max':
  1852. case 'min':
  1853. if (!isset($params[1])) {
  1854. $params[1] = $params[0];
  1855. }
  1856. if (is_object($model) && $model->isVirtualField($params[0])) {
  1857. $arg = $this->_quoteFields($model->getVirtualField($params[0]));
  1858. } else {
  1859. $arg = $this->name($params[0]);
  1860. }
  1861. return strtoupper($func) . '(' . $arg . ') AS ' . $this->name($params[1]);
  1862. }
  1863. }
  1864. /**
  1865. * Deletes all the records in a table and resets the count of the auto-incrementing
  1866. * primary key, where applicable.
  1867. *
  1868. * @param Model|string $table A string or model class representing the table to be truncated
  1869. * @return boolean SQL TRUNCATE TABLE statement, false if not applicable.
  1870. */
  1871. public function truncate($table) {
  1872. return $this->execute('TRUNCATE TABLE ' . $this->fullTableName($table));
  1873. }
  1874. /**
  1875. * Check if the server support nested transactions
  1876. *
  1877. * @return boolean
  1878. */
  1879. public function nestedTransactionSupported() {
  1880. return false;
  1881. }
  1882. /**
  1883. * Begin a transaction
  1884. *
  1885. * @return boolean True on success, false on fail
  1886. * (i.e. if the database/model does not support transactions,
  1887. * or a transaction has not started).
  1888. */
  1889. public function begin() {
  1890. if ($this->_transactionStarted) {
  1891. if ($this->nestedTransactionSupported()) {
  1892. return $this->_beginNested();
  1893. }
  1894. $this->_transactionNesting++;
  1895. return $this->_transactionStarted;
  1896. }
  1897. $this->_transactionNesting = 0;
  1898. if ($this->fullDebug) {
  1899. $this->logQuery('BEGIN');
  1900. }
  1901. return $this->_transactionStarted = $this->_connection->beginTransaction();
  1902. }
  1903. /**
  1904. * Begin a nested transaction
  1905. *
  1906. * @return boolean
  1907. */
  1908. protected function _beginNested() {
  1909. $query = 'SAVEPOINT LEVEL' . ++$this->_transactionNesting;
  1910. if ($this->fullDebug) {
  1911. $this->logQuery($query);
  1912. }
  1913. $this->_connection->exec($query);
  1914. return true;
  1915. }
  1916. /**
  1917. * Commit a transaction
  1918. *
  1919. * @return boolean True on success, false on fail
  1920. * (i.e. if the database/model does not support transactions,
  1921. * or a transaction has not started).
  1922. */
  1923. public function commit() {
  1924. if (!$this->_transactionStarted) {
  1925. return false;
  1926. }
  1927. if ($this->_transactionNesting === 0) {
  1928. if ($this->fullDebug) {
  1929. $this->logQuery('COMMIT');
  1930. }
  1931. $this->_transactionStarted = false;
  1932. return $this->_connection->commit();
  1933. }
  1934. if ($this->nestedTransactionSupported()) {
  1935. return $this->_commitNested();
  1936. }
  1937. $this->_transactionNesting--;
  1938. return true;
  1939. }
  1940. /**
  1941. * Commit a nested transaction
  1942. *
  1943. * @return boolean
  1944. */
  1945. protected function _commitNested() {
  1946. $query = 'RELEASE SAVEPOINT LEVEL' . $this->_transactionNesting--;
  1947. if ($this->fullDebug) {
  1948. $this->logQuery($query);
  1949. }
  1950. $this->_connection->exec($query);
  1951. return true;
  1952. }
  1953. /**
  1954. * Rollback a transaction
  1955. *
  1956. * @return boolean True on success, false on fail
  1957. * (i.e. if the database/model does not support transactions,
  1958. * or a transaction has not started).
  1959. */
  1960. public function rollback() {
  1961. if (!$this->_transactionStarted) {
  1962. return false;
  1963. }
  1964. if ($this->_transactionNesting === 0) {
  1965. if ($this->fullDebug) {
  1966. $this->logQuery('ROLLBACK');
  1967. }
  1968. $this->_transactionStarted = false;
  1969. return $this->_connection->rollBack();
  1970. }
  1971. if ($this->nestedTransactionSupported()) {
  1972. return $this->_rollbackNested();
  1973. }
  1974. $this->_transactionNesting--;
  1975. return true;
  1976. }
  1977. /**
  1978. * Rollback a nested transaction
  1979. *
  1980. * @return boolean
  1981. */
  1982. protected function _rollbackNested() {
  1983. $query = 'ROLLBACK TO SAVEPOINT LEVEL' . $this->_transactionNesting--;
  1984. if ($this->fullDebug) {
  1985. $this->logQuery($query);
  1986. }
  1987. $this->_connection->exec($query);
  1988. return true;
  1989. }
  1990. /**
  1991. * Returns the ID generated from the previous INSERT operation.
  1992. *
  1993. * @param mixed $source
  1994. * @return mixed
  1995. */
  1996. public function lastInsertId($source = null) {
  1997. return $this->_connection->lastInsertId();
  1998. }
  1999. /**
  2000. * Creates a default set of conditions from the model if $conditions is null/empty.
  2001. * If conditions are supplied then they will be returned. If a model doesn't exist and no conditions
  2002. * were provided either null or false will be returned based on what was input.
  2003. *
  2004. * @param Model $model
  2005. * @param string|array|boolean $conditions Array of conditions, conditions string, null or false. If an array of conditions,
  2006. * or string conditions those conditions will be returned. With other values the model's existence will be checked.
  2007. * If the model doesn't exist a null or false will be returned depending on the input value.
  2008. * @param boolean $useAlias Use model aliases rather than table names when generating conditions
  2009. * @return mixed Either null, false, $conditions or an array of default conditions to use.
  2010. * @see DboSource::update()
  2011. * @see DboSource::conditions()
  2012. */
  2013. public function defaultConditions(Model $model, $conditions, $useAlias = true) {
  2014. if (!empty($conditions)) {
  2015. return $conditions;
  2016. }
  2017. $exists = $model->exists();
  2018. if (!$exists && $conditions !== null) {
  2019. return false;
  2020. } elseif (!$exists) {
  2021. return null;
  2022. }
  2023. $alias = $model->alias;
  2024. if (!$useAlias) {
  2025. $alias = $this->fullTableName($model, false);
  2026. }
  2027. return array("{$alias}.{$model->primaryKey}" => $model->getID());
  2028. }
  2029. /**
  2030. * Returns a key formatted like a string Model.fieldname(i.e. Post.title, or Country.name)
  2031. *
  2032. * @param Model $model
  2033. * @param string $key
  2034. * @param string $assoc
  2035. * @return string
  2036. */
  2037. public function resolveKey(Model $model, $key, $assoc = null) {
  2038. if (strpos('.', $key) !== false) {
  2039. return $this->name($model->alias) . '.' . $this->name($key);
  2040. }
  2041. return $key;
  2042. }
  2043. /**
  2044. * Private helper method to remove query metadata in given data array.
  2045. *
  2046. * @param array $data
  2047. * @return array
  2048. */
  2049. protected function _scrubQueryData($data) {
  2050. static $base = null;
  2051. if ($base === null) {
  2052. $base = array_fill_keys(array('conditions', 'fields', 'joins', 'order', 'limit', 'offset', 'group'), array());
  2053. $base['callbacks'] = null;
  2054. }
  2055. return (array)$data + $base;
  2056. }
  2057. /**
  2058. * Converts model virtual fields into sql expressions to be fetched later
  2059. *
  2060. * @param Model $model
  2061. * @param string $alias Alias table name
  2062. * @param array $fields virtual fields to be used on query
  2063. * @return array
  2064. */
  2065. protected function _constructVirtualFields(Model $model, $alias, $fields) {
  2066. $virtual = array();
  2067. foreach ($fields as $field) {
  2068. $virtualField = $this->name($alias . $this->virtualFieldSeparator . $field);
  2069. $expression = $this->_quoteFields($model->getVirtualField($field));
  2070. $virtual[] = '(' . $expression . ") {$this->alias} {$virtualField}";
  2071. }
  2072. return $virtual;
  2073. }
  2074. /**
  2075. * Generates the fields list of an SQL query.
  2076. *
  2077. * @param Model $model
  2078. * @param string $alias Alias table name
  2079. * @param mixed $fields
  2080. * @param boolean $quote If false, returns fields array unquoted
  2081. * @return array
  2082. */
  2083. public function fields(Model $model, $alias = null, $fields = array(), $quote = true) {
  2084. if (empty($alias)) {
  2085. $alias = $model->alias;
  2086. }
  2087. $virtualFields = $model->getVirtualField();
  2088. $cacheKey = array(
  2089. $alias,
  2090. get_class($model),
  2091. $model->alias,
  2092. $virtualFields,
  2093. $fields,
  2094. $quote,
  2095. ConnectionManager::getSourceName($this),
  2096. $model->table
  2097. );
  2098. $cacheKey = md5(serialize($cacheKey));
  2099. if ($return = $this->cacheMethod(__FUNCTION__, $cacheKey)) {
  2100. return $return;
  2101. }
  2102. $allFields = empty($fields);
  2103. if ($allFields) {
  2104. $fields = array_keys($model->schema());
  2105. } elseif (!is_array($fields)) {
  2106. $fields = String::tokenize($fields);
  2107. }
  2108. $fields = array_values(array_filter($fields));
  2109. $allFields = $allFields || in_array('*', $fields) || in_array($model->alias . '.*', $fields);
  2110. $virtual = array();
  2111. if (!empty($virtualFields)) {
  2112. $virtualKeys = array_keys($virtualFields);
  2113. foreach ($virtualKeys as $field) {
  2114. $virtualKeys[] = $model->alias . '.' . $field;
  2115. }
  2116. $virtual = ($allFields) ? $virtualKeys : array_intersect($virtualKeys, $fields);
  2117. foreach ($virtual as $i => $field) {
  2118. if (strpos($field, '.') !== false) {
  2119. $virtual[$i] = str_replace($model->alias . '.', '', $field);
  2120. }
  2121. $fields = array_diff($fields, array($field));
  2122. }
  2123. $fields = array_values($fields);
  2124. }
  2125. if (!$quote) {
  2126. if (!empty($virtual)) {
  2127. $fields = array_merge($fields, $this->_constructVirtualFields($model, $alias, $virtual));
  2128. }
  2129. return $fields;
  2130. }
  2131. $count = count($fields);
  2132. if ($count >= 1 && !in_array($fields[0], array('*', 'COUNT(*)'))) {
  2133. for ($i = 0; $i < $count; $i++) {
  2134. if (is_string($fields[$i]) && in_array($fields[$i], $virtual)) {
  2135. unset($fields[$i]);
  2136. continue;
  2137. }
  2138. if (is_object($fields[$i]) && isset($fields[$i]->type) && $fields[$i]->type === 'expression') {
  2139. $fields[$i] = $fields[$i]->value;
  2140. } elseif (preg_match('/^\(.*\)\s' . $this->alias . '.*/i', $fields[$i])) {
  2141. continue;
  2142. } elseif (!preg_match('/^.+\\(.*\\)/', $fields[$i])) {
  2143. $prepend = '';
  2144. if (strpos($fields[$i], 'DISTINCT') !== false) {
  2145. $prepend = 'DISTINCT ';
  2146. $fields[$i] = trim(str_replace('DISTINCT', '', $fields[$i]));
  2147. }
  2148. $dot = strpos($fields[$i], '.');
  2149. if ($dot === false) {
  2150. $prefix = !(
  2151. strpos($fields[$i], ' ') !== false ||
  2152. strpos($fields[$i], '(') !== false
  2153. );
  2154. $fields[$i] = $this->name(($prefix ? $alias . '.' : '') . $fields[$i]);
  2155. } else {
  2156. if (strpos($fields[$i], ',') === false) {
  2157. $build = explode('.', $fields[$i]);
  2158. if (!Hash::numeric($build)) {
  2159. $fields[$i] = $this->name(implode('.', $build));
  2160. }
  2161. }
  2162. }
  2163. $fields[$i] = $prepend . $fields[$i];
  2164. } elseif (preg_match('/\(([\.\w]+)\)/', $fields[$i], $field)) {
  2165. if (isset($field[1])) {
  2166. if (strpos($field[1], '.') === false) {
  2167. $field[1] = $this->name($alias . '.' . $field[1]);
  2168. } else {
  2169. $field[0] = explode('.', $field[1]);
  2170. if (!Hash::numeric($field[0])) {
  2171. $field[0] = implode('.', array_map(array(&$this, 'name'), $field[0]));
  2172. $fields[$i] = preg_replace('/\(' . $field[1] . '\)/', '(' . $field[0] . ')', $fields[$i], 1);
  2173. }
  2174. }
  2175. }
  2176. }
  2177. }
  2178. }
  2179. if (!empty($virtual)) {
  2180. $fields = array_merge($fields, $this->_constructVirtualFields($model, $alias, $virtual));
  2181. }
  2182. return $this->cacheMethod(__FUNCTION__, $cacheKey, array_unique($fields));
  2183. }
  2184. /**
  2185. * Creates a WHERE clause by parsing given conditions data. If an array or string
  2186. * conditions are provided those conditions will be parsed and quoted. If a boolean
  2187. * is given it will be integer cast as condition. Null will return 1 = 1.
  2188. *
  2189. * Results of this method are stored in a memory cache. This improves performance, but
  2190. * because the method uses a hashing algorithm it can have collisions.
  2191. * Setting DboSource::$cacheMethods to false will disable the memory cache.
  2192. *
  2193. * @param mixed $conditions Array or string of conditions, or any value.
  2194. * @param boolean $quoteValues If true, values should be quoted
  2195. * @param boolean $where If true, "WHERE " will be prepended to the return value
  2196. * @param Model $model A reference to the Model instance making the query
  2197. * @return string SQL fragment
  2198. */
  2199. public function conditions($conditions, $quoteValues = true, $where = true, $model = null) {
  2200. $clause = $out = '';
  2201. if ($where) {
  2202. $clause = ' WHERE ';
  2203. }
  2204. if (is_array($conditions) && !empty($conditions)) {
  2205. $out = $this->conditionKeysToString($conditions, $quoteValues, $model);
  2206. if (empty($out)) {
  2207. return $clause . ' 1 = 1';
  2208. }
  2209. return $clause . implode(' AND ', $out);
  2210. }
  2211. if (is_bool($conditions)) {
  2212. return $clause . (int)$conditions . ' = 1';
  2213. }
  2214. if (empty($conditions) || trim($conditions) === '') {
  2215. return $clause . '1 = 1';
  2216. }
  2217. $clauses = '/^WHERE\\x20|^GROUP\\x20BY\\x20|^HAVING\\x20|^ORDER\\x20BY\\x20/i';
  2218. if (preg_match($clauses, $conditions)) {
  2219. $clause = '';
  2220. }
  2221. $conditions = $this->_quoteFields($conditions);
  2222. return $clause . $conditions;
  2223. }
  2224. /**
  2225. * Creates a WHERE clause by parsing given conditions array. Used by DboSource::conditions().
  2226. *
  2227. * @param array $conditions Array or string of conditions
  2228. * @param boolean $quoteValues If true, values should be quoted
  2229. * @param Model $model A reference to the Model instance making the query
  2230. * @return string SQL fragment
  2231. */
  2232. public function conditionKeysToString($conditions, $quoteValues = true, $model = null) {
  2233. $out = array();
  2234. $data = $columnType = null;
  2235. $bool = array('and', 'or', 'not', 'and not', 'or not', 'xor', '||', '&&');
  2236. foreach ($conditions as $key => $value) {
  2237. $join = ' AND ';
  2238. $not = null;
  2239. if (is_array($value)) {
  2240. $valueInsert = (
  2241. !empty($value) &&
  2242. (substr_count($key, '?') === count($value) || substr_count($key, ':') === count($value))
  2243. );
  2244. }
  2245. if (is_numeric($key) && empty($value)) {
  2246. continue;
  2247. } elseif (is_numeric($key) && is_string($value)) {
  2248. $out[] = $this->_quoteFields($value);
  2249. } elseif ((is_numeric($key) && is_array($value)) || in_array(strtolower(trim($key)), $bool)) {
  2250. if (in_array(strtolower(trim($key)), $bool)) {
  2251. $join = ' ' . strtoupper($key) . ' ';
  2252. } else {
  2253. $key = $join;
  2254. }
  2255. $value = $this->conditionKeysToString($value, $quoteValues, $model);
  2256. if (strpos($join, 'NOT') !== false) {
  2257. if (strtoupper(trim($key)) === 'NOT') {
  2258. $key = 'AND ' . trim($key);
  2259. }
  2260. $not = 'NOT ';
  2261. }
  2262. if (empty($value)) {
  2263. continue;
  2264. }
  2265. if (empty($value[1])) {
  2266. if ($not) {
  2267. $out[] = $not . '(' . $value[0] . ')';
  2268. } else {
  2269. $out[] = $value[0];
  2270. }
  2271. } else {
  2272. $out[] = '(' . $not . '(' . implode(') ' . strtoupper($key) . ' (', $value) . '))';
  2273. }
  2274. } else {
  2275. if (is_object($value) && isset($value->type)) {
  2276. if ($value->type === 'identifier') {
  2277. $data .= $this->name($key) . ' = ' . $this->name($value->value);
  2278. } elseif ($value->type === 'expression') {
  2279. if (is_numeric($key)) {
  2280. $data .= $value->value;
  2281. } else {
  2282. $data .= $this->name($key) . ' = ' . $value->value;
  2283. }
  2284. }
  2285. } elseif (is_array($value) && !empty($value) && !$valueInsert) {
  2286. $keys = array_keys($value);
  2287. if ($keys === array_values($keys)) {
  2288. $count = count($value);
  2289. if ($count === 1 && !preg_match("/\s+NOT$/", $key)) {
  2290. $data = $this->_quoteFields($key) . ' = (';
  2291. if ($quoteValues) {
  2292. if (is_object($model)) {
  2293. $columnType = $model->getColumnType($key);
  2294. }
  2295. $data .= implode(', ', $this->value($value, $columnType));
  2296. }
  2297. $data .= ')';
  2298. } else {
  2299. $data = $this->_parseKey($model, $key, $value);
  2300. }
  2301. } else {
  2302. $ret = $this->conditionKeysToString($value, $quoteValues, $model);
  2303. if (count($ret) > 1) {
  2304. $data = '(' . implode(') AND (', $ret) . ')';
  2305. } elseif (isset($ret[0])) {
  2306. $data = $ret[0];
  2307. }
  2308. }
  2309. } elseif (is_numeric($key) && !empty($value)) {
  2310. $data = $this->_quoteFields($value);
  2311. } else {
  2312. $data = $this->_parseKey($model, trim($key), $value);
  2313. }
  2314. if ($data) {
  2315. $out[] = $data;
  2316. $data = null;
  2317. }
  2318. }
  2319. }
  2320. return $out;
  2321. }
  2322. /**
  2323. * Extracts a Model.field identifier and an SQL condition operator from a string, formats
  2324. * and inserts values, and composes them into an SQL snippet.
  2325. *
  2326. * @param Model $model Model object initiating the query
  2327. * @param string $key An SQL key snippet containing a field and optional SQL operator
  2328. * @param mixed $value The value(s) to be inserted in the string
  2329. * @return string
  2330. */
  2331. protected function _parseKey($model, $key, $value) {
  2332. $operatorMatch = '/^(((' . implode(')|(', $this->_sqlOps);
  2333. $operatorMatch .= ')\\x20?)|<[>=]?(?![^>]+>)\\x20?|[>=!]{1,3}(?!<)\\x20?)/is';
  2334. $bound = (strpos($key, '?') !== false || (is_array($value) && strpos($key, ':') !== false));
  2335. if (strpos($key, ' ') === false) {
  2336. $operator = '=';
  2337. } else {
  2338. list($key, $operator) = explode(' ', trim($key), 2);
  2339. if (!preg_match($operatorMatch, trim($operator)) && strpos($operator, ' ') !== false) {
  2340. $key = $key . ' ' . $operator;
  2341. $split = strrpos($key, ' ');
  2342. $operator = substr($key, $split);
  2343. $key = substr($key, 0, $split);
  2344. }
  2345. }
  2346. $virtual = false;
  2347. if (is_object($model) && $model->isVirtualField($key)) {
  2348. $key = $this->_quoteFields($model->getVirtualField($key));
  2349. $virtual = true;
  2350. }
  2351. $type = is_object($model) ? $model->getColumnType($key) : null;
  2352. $null = $value === null || (is_array($value) && empty($value));
  2353. if (strtolower($operator) === 'not') {
  2354. $data = $this->conditionKeysToString(
  2355. array($operator => array($key => $value)), true, $model
  2356. );
  2357. return $data[0];
  2358. }
  2359. $value = $this->value($value, $type);
  2360. if (!$virtual && $key !== '?') {
  2361. $isKey = (
  2362. strpos($key, '(') !== false ||
  2363. strpos($key, ')') !== false ||
  2364. strpos($key, '|') !== false
  2365. );
  2366. $key = $isKey ? $this->_quoteFields($key) : $this->name($key);
  2367. }
  2368. if ($bound) {
  2369. return String::insert($key . ' ' . trim($operator), $value);
  2370. }
  2371. if (!preg_match($operatorMatch, trim($operator))) {
  2372. $operator .= ' =';
  2373. }
  2374. $operator = trim($operator);
  2375. if (is_array($value)) {
  2376. $value = implode(', ', $value);
  2377. switch ($operator) {
  2378. case '=':
  2379. $operator = 'IN';
  2380. break;
  2381. case '!=':
  2382. case '<>':
  2383. $operator = 'NOT IN';
  2384. break;
  2385. }
  2386. $value = "({$value})";
  2387. } elseif ($null || $value === 'NULL') {
  2388. switch ($operator) {
  2389. case '=':
  2390. $operator = 'IS';
  2391. break;
  2392. case '!=':
  2393. case '<>':
  2394. $operator = 'IS NOT';
  2395. break;
  2396. }
  2397. }
  2398. if ($virtual) {
  2399. return "({$key}) {$operator} {$value}";
  2400. }
  2401. return "{$key} {$operator} {$value}";
  2402. }
  2403. /**
  2404. * Quotes Model.fields
  2405. *
  2406. * @param string $conditions
  2407. * @return string or false if no match
  2408. */
  2409. protected function _quoteFields($conditions) {
  2410. $start = $end = null;
  2411. $original = $conditions;
  2412. if (!empty($this->startQuote)) {
  2413. $start = preg_quote($this->startQuote);
  2414. }
  2415. if (!empty($this->endQuote)) {
  2416. $end = preg_quote($this->endQuote);
  2417. }
  2418. $conditions = str_replace(array($start, $end), '', $conditions);
  2419. $conditions = preg_replace_callback(
  2420. '/(?:[\'\"][^\'\"\\\]*(?:\\\.[^\'\"\\\]*)*[\'\"])|([a-z0-9_][a-z0-9\\-_]*\\.[a-z0-9_][a-z0-9_\\-]*)/i',
  2421. array(&$this, '_quoteMatchedField'),
  2422. $conditions
  2423. );
  2424. if ($conditions !== null) {
  2425. return $conditions;
  2426. }
  2427. return $original;
  2428. }
  2429. /**
  2430. * Auxiliary function to quote matches `Model.fields` from a preg_replace_callback call
  2431. *
  2432. * @param string $match matched string
  2433. * @return string quoted string
  2434. */
  2435. protected function _quoteMatchedField($match) {
  2436. if (is_numeric($match[0])) {
  2437. return $match[0];
  2438. }
  2439. return $this->name($match[0]);
  2440. }
  2441. /**
  2442. * Returns a limit statement in the correct format for the particular database.
  2443. *
  2444. * @param integer $limit Limit of results returned
  2445. * @param integer $offset Offset from which to start results
  2446. * @return string SQL limit/offset statement
  2447. */
  2448. public function limit($limit, $offset = null) {
  2449. if ($limit) {
  2450. $rt = '';
  2451. if (!strpos(strtolower($limit), 'limit')) {
  2452. $rt = ' LIMIT';
  2453. }
  2454. if ($offset) {
  2455. $rt .= ' ' . $offset . ',';
  2456. }
  2457. $rt .= ' ' . $limit;
  2458. return $rt;
  2459. }
  2460. return null;
  2461. }
  2462. /**
  2463. * Returns an ORDER BY clause as a string.
  2464. *
  2465. * @param array|string $keys Field reference, as a key (i.e. Post.title)
  2466. * @param string $direction Direction (ASC or DESC)
  2467. * @param Model $model model reference (used to look for virtual field)
  2468. * @return string ORDER BY clause
  2469. */
  2470. public function order($keys, $direction = 'ASC', $model = null) {
  2471. if (!is_array($keys)) {
  2472. $keys = array($keys);
  2473. }
  2474. $keys = array_filter($keys);
  2475. $result = array();
  2476. while (!empty($keys)) {
  2477. list($key, $dir) = each($keys);
  2478. array_shift($keys);
  2479. if (is_numeric($key)) {
  2480. $key = $dir;
  2481. $dir = $direction;
  2482. }
  2483. if (is_string($key) && strpos($key, ',') !== false && !preg_match('/\(.+\,.+\)/', $key)) {
  2484. $key = array_map('trim', explode(',', $key));
  2485. }
  2486. if (is_array($key)) {
  2487. //Flatten the array
  2488. $key = array_reverse($key, true);
  2489. foreach ($key as $k => $v) {
  2490. if (is_numeric($k)) {
  2491. array_unshift($keys, $v);
  2492. } else {
  2493. $keys = array($k => $v) + $keys;
  2494. }
  2495. }
  2496. continue;
  2497. } elseif (is_object($key) && isset($key->type) && $key->type === 'expression') {
  2498. $result[] = $key->value;
  2499. continue;
  2500. }
  2501. if (preg_match('/\\x20(ASC|DESC).*/i', $key, $_dir)) {
  2502. $dir = $_dir[0];
  2503. $key = preg_replace('/\\x20(ASC|DESC).*/i', '', $key);
  2504. }
  2505. $key = trim($key);
  2506. if (is_object($model) && $model->isVirtualField($key)) {
  2507. $key = '(' . $this->_quoteFields($model->getVirtualField($key)) . ')';
  2508. }
  2509. list($alias, $field) = pluginSplit($key);
  2510. if (is_object($model) && $alias !== $model->alias && is_object($model->{$alias}) && $model->{$alias}->isVirtualField($key)) {
  2511. $key = '(' . $this->_quoteFields($model->{$alias}->getVirtualField($key)) . ')';
  2512. }
  2513. if (strpos($key, '.')) {
  2514. $key = preg_replace_callback('/([a-zA-Z0-9_-]{1,})\\.([a-zA-Z0-9_-]{1,})/', array(&$this, '_quoteMatchedField'), $key);
  2515. }
  2516. if (!preg_match('/\s/', $key) && strpos($key, '.') === false) {
  2517. $key = $this->name($key);
  2518. }
  2519. $key .= ' ' . trim($dir);
  2520. $result[] = $key;
  2521. }
  2522. if (!empty($result)) {
  2523. return ' ORDER BY ' . implode(', ', $result);
  2524. }
  2525. return '';
  2526. }
  2527. /**
  2528. * Create a GROUP BY SQL clause
  2529. *
  2530. * @param string $group Group By Condition
  2531. * @param Model $model
  2532. * @return string string condition or null
  2533. */
  2534. public function group($group, $model = null) {
  2535. if ($group) {
  2536. if (!is_array($group)) {
  2537. $group = array($group);
  2538. }
  2539. foreach ($group as $index => $key) {
  2540. if (is_object($model) && $model->isVirtualField($key)) {
  2541. $group[$index] = '(' . $model->getVirtualField($key) . ')';
  2542. }
  2543. }
  2544. $group = implode(', ', $group);
  2545. return ' GROUP BY ' . $this->_quoteFields($group);
  2546. }
  2547. return null;
  2548. }
  2549. /**
  2550. * Disconnects database, kills the connection and says the connection is closed.
  2551. *
  2552. * @return void
  2553. */
  2554. public function close() {
  2555. $this->disconnect();
  2556. }
  2557. /**
  2558. * Checks if the specified table contains any record matching specified SQL
  2559. *
  2560. * @param Model $Model Model to search
  2561. * @param string $sql SQL WHERE clause (condition only, not the "WHERE" part)
  2562. * @return boolean True if the table has a matching record, else false
  2563. */
  2564. public function hasAny(Model $Model, $sql) {
  2565. $sql = $this->conditions($sql);
  2566. $table = $this->fullTableName($Model);
  2567. $alias = $this->alias . $this->name($Model->alias);
  2568. $where = $sql ? "{$sql}" : ' WHERE 1 = 1';
  2569. $id = $Model->escapeField();
  2570. $out = $this->fetchRow("SELECT COUNT({$id}) {$this->alias}count FROM {$table} {$alias}{$where}");
  2571. if (is_array($out)) {
  2572. return $out[0]['count'];
  2573. }
  2574. return false;
  2575. }
  2576. /**
  2577. * Gets the length of a database-native column description, or null if no length
  2578. *
  2579. * @param string $real Real database-layer column type (i.e. "varchar(255)")
  2580. * @return mixed An integer or string representing the length of the column, or null for unknown length.
  2581. */
  2582. public function length($real) {
  2583. if (!preg_match_all('/([\w\s]+)(?:\((\d+)(?:,(\d+))?\))?(\sunsigned)?(\szerofill)?/', $real, $result)) {
  2584. $col = str_replace(array(')', 'unsigned'), '', $real);
  2585. $limit = null;
  2586. if (strpos($col, '(') !== false) {
  2587. list($col, $limit) = explode('(', $col);
  2588. }
  2589. if ($limit !== null) {
  2590. return intval($limit);
  2591. }
  2592. return null;
  2593. }
  2594. $types = array(
  2595. 'int' => 1, 'tinyint' => 1, 'smallint' => 1, 'mediumint' => 1, 'integer' => 1, 'bigint' => 1
  2596. );
  2597. list($real, $type, $length, $offset, $sign, $zerofill) = $result;
  2598. $typeArr = $type;
  2599. $type = $type[0];
  2600. $length = $length[0];
  2601. $offset = $offset[0];
  2602. $isFloat = in_array($type, array('dec', 'decimal', 'float', 'numeric', 'double'));
  2603. if ($isFloat && $offset) {
  2604. return $length . ',' . $offset;
  2605. }
  2606. if (($real[0] == $type) && (count($real) === 1)) {
  2607. return null;
  2608. }
  2609. if (isset($types[$type])) {
  2610. $length += $types[$type];
  2611. if (!empty($sign)) {
  2612. $length--;
  2613. }
  2614. } elseif (in_array($type, array('enum', 'set'))) {
  2615. $length = 0;
  2616. foreach ($typeArr as $key => $enumValue) {
  2617. if ($key === 0) {
  2618. continue;
  2619. }
  2620. $tmpLength = strlen($enumValue);
  2621. if ($tmpLength > $length) {
  2622. $length = $tmpLength;
  2623. }
  2624. }
  2625. }
  2626. return intval($length);
  2627. }
  2628. /**
  2629. * Translates between PHP boolean values and Database (faked) boolean values
  2630. *
  2631. * @param mixed $data Value to be translated
  2632. * @param boolean $quote
  2633. * @return string|boolean Converted boolean value
  2634. */
  2635. public function boolean($data, $quote = false) {
  2636. if ($quote) {
  2637. return !empty($data) ? '1' : '0';
  2638. }
  2639. return !empty($data);
  2640. }
  2641. /**
  2642. * Inserts multiple values into a table
  2643. *
  2644. * @param string $table The table being inserted into.
  2645. * @param array $fields The array of field/column names being inserted.
  2646. * @param array $values The array of values to insert. The values should
  2647. * be an array of rows. Each row should have values keyed by the column name.
  2648. * Each row must have the values in the same order as $fields.
  2649. * @return boolean
  2650. */
  2651. public function insertMulti($table, $fields, $values) {
  2652. $table = $this->fullTableName($table);
  2653. $holder = implode(',', array_fill(0, count($fields), '?'));
  2654. $fields = implode(', ', array_map(array(&$this, 'name'), $fields));
  2655. $pdoMap = array(
  2656. 'integer' => PDO::PARAM_INT,
  2657. 'float' => PDO::PARAM_STR,
  2658. 'boolean' => PDO::PARAM_BOOL,
  2659. 'string' => PDO::PARAM_STR,
  2660. 'text' => PDO::PARAM_STR
  2661. );
  2662. $columnMap = array();
  2663. $sql = "INSERT INTO {$table} ({$fields}) VALUES ({$holder})";
  2664. $statement = $this->_connection->prepare($sql);
  2665. $this->begin();
  2666. foreach ($values[key($values)] as $key => $val) {
  2667. $type = $this->introspectType($val);
  2668. $columnMap[$key] = $pdoMap[$type];
  2669. }
  2670. foreach ($values as $value) {
  2671. $i = 1;
  2672. foreach ($value as $col => $val) {
  2673. $statement->bindValue($i, $val, $columnMap[$col]);
  2674. $i += 1;
  2675. }
  2676. $statement->execute();
  2677. $statement->closeCursor();
  2678. if ($this->fullDebug) {
  2679. $this->logQuery($sql, $value);
  2680. }
  2681. }
  2682. return $this->commit();
  2683. }
  2684. /**
  2685. * Reset a sequence based on the MAX() value of $column. Useful
  2686. * for resetting sequences after using insertMulti().
  2687. *
  2688. * This method should be implemented by datasources that require sequences to be used.
  2689. *
  2690. * @param string $table The name of the table to update.
  2691. * @param string $column The column to use when reseting the sequence value.
  2692. * @return boolean|void success.
  2693. */
  2694. public function resetSequence($table, $column) {
  2695. }
  2696. /**
  2697. * Returns an array of the indexes in given datasource name.
  2698. *
  2699. * @param string $model Name of model to inspect
  2700. * @return array Fields in table. Keys are column and unique
  2701. */
  2702. public function index($model) {
  2703. return false;
  2704. }
  2705. /**
  2706. * Generate a database-native schema for the given Schema object
  2707. *
  2708. * @param CakeSchema $schema An instance of a subclass of CakeSchema
  2709. * @param string $tableName Optional. If specified only the table name given will be generated.
  2710. * Otherwise, all tables defined in the schema are generated.
  2711. * @return string
  2712. */
  2713. public function createSchema($schema, $tableName = null) {
  2714. if (!is_a($schema, 'CakeSchema')) {
  2715. trigger_error(__d('cake_dev', 'Invalid schema object'), E_USER_WARNING);
  2716. return null;
  2717. }
  2718. $out = '';
  2719. foreach ($schema->tables as $curTable => $columns) {
  2720. if (!$tableName || $tableName == $curTable) {
  2721. $cols = $indexes = $tableParameters = array();
  2722. $primary = null;
  2723. $table = $this->fullTableName($curTable);
  2724. $primaryCount = 0;
  2725. foreach ($columns as $col) {
  2726. if (isset($col['key']) && $col['key'] === 'primary') {
  2727. $primaryCount++;
  2728. }
  2729. }
  2730. foreach ($columns as $name => $col) {
  2731. if (is_string($col)) {
  2732. $col = array('type' => $col);
  2733. }
  2734. $isPrimary = isset($col['key']) && $col['key'] === 'primary';
  2735. // Multi-column primary keys are not supported.
  2736. if ($isPrimary && $primaryCount > 1) {
  2737. unset($col['key']);
  2738. $isPrimary = false;
  2739. }
  2740. if ($isPrimary) {
  2741. $primary = $name;
  2742. }
  2743. if ($name !== 'indexes' && $name !== 'tableParameters') {
  2744. $col['name'] = $name;
  2745. if (!isset($col['type'])) {
  2746. $col['type'] = 'string';
  2747. }
  2748. $cols[] = $this->buildColumn($col);
  2749. } elseif ($name === 'indexes') {
  2750. $indexes = array_merge($indexes, $this->buildIndex($col, $table));
  2751. } elseif ($name === 'tableParameters') {
  2752. $tableParameters = array_merge($tableParameters, $this->buildTableParameters($col, $table));
  2753. }
  2754. }
  2755. if (!isset($columns['indexes']['PRIMARY']) && !empty($primary)) {
  2756. $col = array('PRIMARY' => array('column' => $primary, 'unique' => 1));
  2757. $indexes = array_merge($indexes, $this->buildIndex($col, $table));
  2758. }
  2759. $columns = $cols;
  2760. $out .= $this->renderStatement('schema', compact('table', 'columns', 'indexes', 'tableParameters')) . "\n\n";
  2761. }
  2762. }
  2763. return $out;
  2764. }
  2765. /**
  2766. * Generate a alter syntax from CakeSchema::compare()
  2767. *
  2768. * @param mixed $compare
  2769. * @param string $table
  2770. * @return boolean
  2771. */
  2772. public function alterSchema($compare, $table = null) {
  2773. return false;
  2774. }
  2775. /**
  2776. * Generate a "drop table" statement for the given Schema object
  2777. *
  2778. * @param CakeSchema $schema An instance of a subclass of CakeSchema
  2779. * @param string $table Optional. If specified only the table name given will be generated.
  2780. * Otherwise, all tables defined in the schema are generated.
  2781. * @return string
  2782. */
  2783. public function dropSchema(CakeSchema $schema, $table = null) {
  2784. $out = '';
  2785. if ($table && array_key_exists($table, $schema->tables)) {
  2786. return $this->_dropTable($table) . "\n";
  2787. } elseif ($table) {
  2788. return $out;
  2789. }
  2790. foreach (array_keys($schema->tables) as $curTable) {
  2791. $out .= $this->_dropTable($curTable) . "\n";
  2792. }
  2793. return $out;
  2794. }
  2795. /**
  2796. * Generate a "drop table" statement for a single table
  2797. *
  2798. * @param type $table Name of the table to drop
  2799. * @return string Drop table SQL statement
  2800. */
  2801. protected function _dropTable($table) {
  2802. return 'DROP TABLE ' . $this->fullTableName($table) . ";";
  2803. }
  2804. /**
  2805. * Generate a database-native column schema string
  2806. *
  2807. * @param array $column An array structured like the following: array('name' => 'value', 'type' => 'value'[, options]),
  2808. * where options can be 'default', 'length', or 'key'.
  2809. * @return string
  2810. */
  2811. public function buildColumn($column) {
  2812. $name = $type = null;
  2813. extract(array_merge(array('null' => true), $column));
  2814. if (empty($name) || empty($type)) {
  2815. trigger_error(__d('cake_dev', 'Column name or type not defined in schema'), E_USER_WARNING);
  2816. return null;
  2817. }
  2818. if (!isset($this->columns[$type])) {
  2819. trigger_error(__d('cake_dev', 'Column type %s does not exist', $type), E_USER_WARNING);
  2820. return null;
  2821. }
  2822. $real = $this->columns[$type];
  2823. $out = $this->name($name) . ' ' . $real['name'];
  2824. if (isset($column['length'])) {
  2825. $length = $column['length'];
  2826. } elseif (isset($column['limit'])) {
  2827. $length = $column['limit'];
  2828. } elseif (isset($real['length'])) {
  2829. $length = $real['length'];
  2830. } elseif (isset($real['limit'])) {
  2831. $length = $real['limit'];
  2832. }
  2833. if (isset($length)) {
  2834. $out .= '(' . $length . ')';
  2835. }
  2836. if (($column['type'] === 'integer' || $column['type'] === 'float') && isset($column['default']) && $column['default'] === '') {
  2837. $column['default'] = null;
  2838. }
  2839. $out = $this->_buildFieldParameters($out, $column, 'beforeDefault');
  2840. if (isset($column['key']) && $column['key'] === 'primary' && ($type === 'integer' || $type === 'biginteger')) {
  2841. $out .= ' ' . $this->columns['primary_key']['name'];
  2842. } elseif (isset($column['key']) && $column['key'] === 'primary') {
  2843. $out .= ' NOT NULL';
  2844. } elseif (isset($column['default']) && isset($column['null']) && $column['null'] === false) {
  2845. $out .= ' DEFAULT ' . $this->value($column['default'], $type) . ' NOT NULL';
  2846. } elseif (isset($column['default'])) {
  2847. $out .= ' DEFAULT ' . $this->value($column['default'], $type);
  2848. } elseif ($type !== 'timestamp' && !empty($column['null'])) {
  2849. $out .= ' DEFAULT NULL';
  2850. } elseif ($type === 'timestamp' && !empty($column['null'])) {
  2851. $out .= ' NULL';
  2852. } elseif (isset($column['null']) && $column['null'] === false) {
  2853. $out .= ' NOT NULL';
  2854. }
  2855. if ($type === 'timestamp' && isset($column['default']) && strtolower($column['default']) === 'current_timestamp') {
  2856. $out = str_replace(array("'CURRENT_TIMESTAMP'", "'current_timestamp'"), 'CURRENT_TIMESTAMP', $out);
  2857. }
  2858. return $this->_buildFieldParameters($out, $column, 'afterDefault');
  2859. }
  2860. /**
  2861. * Build the field parameters, in a position
  2862. *
  2863. * @param string $columnString The partially built column string
  2864. * @param array $columnData The array of column data.
  2865. * @param string $position The position type to use. 'beforeDefault' or 'afterDefault' are common
  2866. * @return string a built column with the field parameters added.
  2867. */
  2868. protected function _buildFieldParameters($columnString, $columnData, $position) {
  2869. foreach ($this->fieldParameters as $paramName => $value) {
  2870. if (isset($columnData[$paramName]) && $value['position'] == $position) {
  2871. if (isset($value['options']) && !in_array($columnData[$paramName], $value['options'])) {
  2872. continue;
  2873. }
  2874. $val = $columnData[$paramName];
  2875. if ($value['quote']) {
  2876. $val = $this->value($val);
  2877. }
  2878. $columnString .= ' ' . $value['value'] . $value['join'] . $val;
  2879. }
  2880. }
  2881. return $columnString;
  2882. }
  2883. /**
  2884. * Format indexes for create table.
  2885. *
  2886. * @param array $indexes
  2887. * @param string $table
  2888. * @return array
  2889. */
  2890. public function buildIndex($indexes, $table = null) {
  2891. $join = array();
  2892. foreach ($indexes as $name => $value) {
  2893. $out = '';
  2894. if ($name === 'PRIMARY') {
  2895. $out .= 'PRIMARY ';
  2896. $name = null;
  2897. } else {
  2898. if (!empty($value['unique'])) {
  2899. $out .= 'UNIQUE ';
  2900. } elseif (!empty($value['type']) && strtoupper($value['type']) === 'FULLTEXT') {
  2901. $out .= 'FULLTEXT ';
  2902. }
  2903. $name = $this->startQuote . $name . $this->endQuote;
  2904. }
  2905. if (is_array($value['column'])) {
  2906. $out .= 'KEY ' . $name . ' (' . implode(', ', array_map(array(&$this, 'name'), $value['column'])) . ')';
  2907. } else {
  2908. $out .= 'KEY ' . $name . ' (' . $this->name($value['column']) . ')';
  2909. }
  2910. $join[] = $out;
  2911. }
  2912. return $join;
  2913. }
  2914. /**
  2915. * Read additional table parameters
  2916. *
  2917. * @param string $name
  2918. * @return array
  2919. */
  2920. public function readTableParameters($name) {
  2921. $parameters = array();
  2922. if (method_exists($this, 'listDetailedSources')) {
  2923. $currentTableDetails = $this->listDetailedSources($name);
  2924. foreach ($this->tableParameters as $paramName => $parameter) {
  2925. if (!empty($parameter['column']) && !empty($currentTableDetails[$parameter['column']])) {
  2926. $parameters[$paramName] = $currentTableDetails[$parameter['column']];
  2927. }
  2928. }
  2929. }
  2930. return $parameters;
  2931. }
  2932. /**
  2933. * Format parameters for create table
  2934. *
  2935. * @param array $parameters
  2936. * @param string $table
  2937. * @return array
  2938. */
  2939. public function buildTableParameters($parameters, $table = null) {
  2940. $result = array();
  2941. foreach ($parameters as $name => $value) {
  2942. if (isset($this->tableParameters[$name])) {
  2943. if ($this->tableParameters[$name]['quote']) {
  2944. $value = $this->value($value);
  2945. }
  2946. $result[] = $this->tableParameters[$name]['value'] . $this->tableParameters[$name]['join'] . $value;
  2947. }
  2948. }
  2949. return $result;
  2950. }
  2951. /**
  2952. * Guesses the data type of an array
  2953. *
  2954. * @param string $value
  2955. * @return void
  2956. */
  2957. public function introspectType($value) {
  2958. if (!is_array($value)) {
  2959. if (is_bool($value)) {
  2960. return 'boolean';
  2961. }
  2962. if (is_float($value) && floatval($value) === $value) {
  2963. return 'float';
  2964. }
  2965. if (is_int($value) && intval($value) === $value) {
  2966. return 'integer';
  2967. }
  2968. if (is_string($value) && strlen($value) > 255) {
  2969. return 'text';
  2970. }
  2971. return 'string';
  2972. }
  2973. $isAllFloat = $isAllInt = true;
  2974. $containsFloat = $containsInt = $containsString = false;
  2975. foreach ($value as $valElement) {
  2976. $valElement = trim($valElement);
  2977. if (!is_float($valElement) && !preg_match('/^[\d]+\.[\d]+$/', $valElement)) {
  2978. $isAllFloat = false;
  2979. } else {
  2980. $containsFloat = true;
  2981. continue;
  2982. }
  2983. if (!is_int($valElement) && !preg_match('/^[\d]+$/', $valElement)) {
  2984. $isAllInt = false;
  2985. } else {
  2986. $containsInt = true;
  2987. continue;
  2988. }
  2989. $containsString = true;
  2990. }
  2991. if ($isAllFloat) {
  2992. return 'float';
  2993. }
  2994. if ($isAllInt) {
  2995. return 'integer';
  2996. }
  2997. if ($containsInt && !$containsString) {
  2998. return 'integer';
  2999. }
  3000. return 'string';
  3001. }
  3002. /**
  3003. * Writes a new key for the in memory sql query cache
  3004. *
  3005. * @param string $sql SQL query
  3006. * @param mixed $data result of $sql query
  3007. * @param array $params query params bound as values
  3008. * @return void
  3009. */
  3010. protected function _writeQueryCache($sql, $data, $params = array()) {
  3011. if (preg_match('/^\s*select/i', $sql)) {
  3012. $this->_queryCache[$sql][serialize($params)] = $data;
  3013. }
  3014. }
  3015. /**
  3016. * Returns the result for a sql query if it is already cached
  3017. *
  3018. * @param string $sql SQL query
  3019. * @param array $params query params bound as values
  3020. * @return mixed results for query if it is cached, false otherwise
  3021. */
  3022. public function getQueryCache($sql, $params = array()) {
  3023. if (isset($this->_queryCache[$sql]) && preg_match('/^\s*select/i', $sql)) {
  3024. $serialized = serialize($params);
  3025. if (isset($this->_queryCache[$sql][$serialized])) {
  3026. return $this->_queryCache[$sql][$serialized];
  3027. }
  3028. }
  3029. return false;
  3030. }
  3031. /**
  3032. * Used for storing in cache the results of the in-memory methodCache
  3033. *
  3034. */
  3035. public function __destruct() {
  3036. if ($this->_methodCacheChange) {
  3037. Cache::write('method_cache', self::$methodCache, '_cake_core_');
  3038. }
  3039. }
  3040. }