postgre_driver.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619
  1. <?php
  2. /**
  3. * CodeIgniter
  4. *
  5. * An open source application development framework for PHP
  6. *
  7. * This content is released under the MIT License (MIT)
  8. *
  9. * Copyright (c) 2014 - 2019, British Columbia Institute of Technology
  10. *
  11. * Permission is hereby granted, free of charge, to any person obtaining a copy
  12. * of this software and associated documentation files (the "Software"), to deal
  13. * in the Software without restriction, including without limitation the rights
  14. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  15. * copies of the Software, and to permit persons to whom the Software is
  16. * furnished to do so, subject to the following conditions:
  17. *
  18. * The above copyright notice and this permission notice shall be included in
  19. * all copies or substantial portions of the Software.
  20. *
  21. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  22. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  23. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  24. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  25. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  26. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  27. * THE SOFTWARE.
  28. *
  29. * @package CodeIgniter
  30. * @author EllisLab Dev Team
  31. * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
  32. * @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
  33. * @license https://opensource.org/licenses/MIT MIT License
  34. * @link https://codeigniter.com
  35. * @since Version 1.3.0
  36. * @filesource
  37. */
  38. defined('BASEPATH') OR exit('No direct script access allowed');
  39. /**
  40. * Postgre Database Adapter Class
  41. *
  42. * Note: _DB is an extender class that the app controller
  43. * creates dynamically based on whether the query builder
  44. * class is being used or not.
  45. *
  46. * @package CodeIgniter
  47. * @subpackage Drivers
  48. * @category Database
  49. * @author EllisLab Dev Team
  50. * @link https://codeigniter.com/user_guide/database/
  51. */
  52. class CI_DB_postgre_driver extends CI_DB {
  53. /**
  54. * Database driver
  55. *
  56. * @var string
  57. */
  58. public $dbdriver = 'postgre';
  59. /**
  60. * Database schema
  61. *
  62. * @var string
  63. */
  64. public $schema = 'public';
  65. // --------------------------------------------------------------------
  66. /**
  67. * ORDER BY random keyword
  68. *
  69. * @var array
  70. */
  71. protected $_random_keyword = array('RANDOM()', 'RANDOM()');
  72. // --------------------------------------------------------------------
  73. /**
  74. * Class constructor
  75. *
  76. * Creates a DSN string to be used for db_connect() and db_pconnect()
  77. *
  78. * @param array $params
  79. * @return void
  80. */
  81. public function __construct($params)
  82. {
  83. parent::__construct($params);
  84. if ( ! empty($this->dsn))
  85. {
  86. return;
  87. }
  88. $this->dsn === '' OR $this->dsn = '';
  89. if (strpos($this->hostname, '/') !== FALSE)
  90. {
  91. // If UNIX sockets are used, we shouldn't set a port
  92. $this->port = '';
  93. }
  94. $this->hostname === '' OR $this->dsn = 'host='.$this->hostname.' ';
  95. if ( ! empty($this->port) && ctype_digit($this->port))
  96. {
  97. $this->dsn .= 'port='.$this->port.' ';
  98. }
  99. if ($this->username !== '')
  100. {
  101. $this->dsn .= 'user='.$this->username.' ';
  102. /* An empty password is valid!
  103. *
  104. * $db['password'] = NULL must be done in order to ignore it.
  105. */
  106. $this->password === NULL OR $this->dsn .= "password='".$this->password."' ";
  107. }
  108. $this->database === '' OR $this->dsn .= 'dbname='.$this->database.' ';
  109. /* We don't have these options as elements in our standard configuration
  110. * array, but they might be set by parse_url() if the configuration was
  111. * provided via string. Example:
  112. *
  113. * postgre://username:password@localhost:5432/database?connect_timeout=5&sslmode=1
  114. */
  115. foreach (array('connect_timeout', 'options', 'sslmode', 'service') as $key)
  116. {
  117. if (isset($this->$key) && is_string($this->$key) && $this->$key !== '')
  118. {
  119. $this->dsn .= $key."='".$this->$key."' ";
  120. }
  121. }
  122. $this->dsn = rtrim($this->dsn);
  123. }
  124. // --------------------------------------------------------------------
  125. /**
  126. * Database connection
  127. *
  128. * @param bool $persistent
  129. * @return resource
  130. */
  131. public function db_connect($persistent = FALSE)
  132. {
  133. $this->conn_id = ($persistent === TRUE)
  134. ? pg_pconnect($this->dsn)
  135. : pg_connect($this->dsn);
  136. if ($this->conn_id !== FALSE)
  137. {
  138. if ($persistent === TRUE
  139. && pg_connection_status($this->conn_id) === PGSQL_CONNECTION_BAD
  140. && pg_ping($this->conn_id) === FALSE
  141. )
  142. {
  143. return FALSE;
  144. }
  145. empty($this->schema) OR $this->simple_query('SET search_path TO '.$this->schema.',public');
  146. }
  147. return $this->conn_id;
  148. }
  149. // --------------------------------------------------------------------
  150. /**
  151. * Reconnect
  152. *
  153. * Keep / reestablish the db connection if no queries have been
  154. * sent for a length of time exceeding the server's idle timeout
  155. *
  156. * @return void
  157. */
  158. public function reconnect()
  159. {
  160. if (pg_ping($this->conn_id) === FALSE)
  161. {
  162. $this->conn_id = FALSE;
  163. }
  164. }
  165. // --------------------------------------------------------------------
  166. /**
  167. * Set client character set
  168. *
  169. * @param string $charset
  170. * @return bool
  171. */
  172. protected function _db_set_charset($charset)
  173. {
  174. return (pg_set_client_encoding($this->conn_id, $charset) === 0);
  175. }
  176. // --------------------------------------------------------------------
  177. /**
  178. * Database version number
  179. *
  180. * @return string
  181. */
  182. public function version()
  183. {
  184. if (isset($this->data_cache['version']))
  185. {
  186. return $this->data_cache['version'];
  187. }
  188. if ( ! $this->conn_id OR ($pg_version = pg_version($this->conn_id)) === FALSE)
  189. {
  190. return FALSE;
  191. }
  192. /* If PHP was compiled with PostgreSQL lib versions earlier
  193. * than 7.4, pg_version() won't return the server version
  194. * and so we'll have to fall back to running a query in
  195. * order to get it.
  196. */
  197. return (isset($pg_version['server']) && preg_match('#^(\d+\.\d+)#', $pg_version['server'], $match))
  198. ? $this->data_cache['version'] = $match[1]
  199. : parent::version();
  200. }
  201. // --------------------------------------------------------------------
  202. /**
  203. * Execute the query
  204. *
  205. * @param string $sql an SQL query
  206. * @return resource
  207. */
  208. protected function _execute($sql)
  209. {
  210. return pg_query($this->conn_id, $sql);
  211. }
  212. // --------------------------------------------------------------------
  213. /**
  214. * Begin Transaction
  215. *
  216. * @return bool
  217. */
  218. protected function _trans_begin()
  219. {
  220. return (bool) pg_query($this->conn_id, 'BEGIN');
  221. }
  222. // --------------------------------------------------------------------
  223. /**
  224. * Commit Transaction
  225. *
  226. * @return bool
  227. */
  228. protected function _trans_commit()
  229. {
  230. return (bool) pg_query($this->conn_id, 'COMMIT');
  231. }
  232. // --------------------------------------------------------------------
  233. /**
  234. * Rollback Transaction
  235. *
  236. * @return bool
  237. */
  238. protected function _trans_rollback()
  239. {
  240. return (bool) pg_query($this->conn_id, 'ROLLBACK');
  241. }
  242. // --------------------------------------------------------------------
  243. /**
  244. * Determines if a query is a "write" type.
  245. *
  246. * @param string An SQL query string
  247. * @return bool
  248. */
  249. public function is_write_type($sql)
  250. {
  251. if (preg_match('#^(INSERT|UPDATE).*RETURNING\s.+(\,\s?.+)*$#is', $sql))
  252. {
  253. return FALSE;
  254. }
  255. return parent::is_write_type($sql);
  256. }
  257. // --------------------------------------------------------------------
  258. /**
  259. * Platform-dependent string escape
  260. *
  261. * @param string
  262. * @return string
  263. */
  264. protected function _escape_str($str)
  265. {
  266. return pg_escape_string($this->conn_id, $str);
  267. }
  268. // --------------------------------------------------------------------
  269. /**
  270. * "Smart" Escape String
  271. *
  272. * Escapes data based on type
  273. *
  274. * @param string $str
  275. * @return mixed
  276. */
  277. public function escape($str)
  278. {
  279. if (is_php('5.4.4') && (is_string($str) OR (is_object($str) && method_exists($str, '__toString'))))
  280. {
  281. return pg_escape_literal($this->conn_id, $str);
  282. }
  283. elseif (is_bool($str))
  284. {
  285. return ($str) ? 'TRUE' : 'FALSE';
  286. }
  287. return parent::escape($str);
  288. }
  289. // --------------------------------------------------------------------
  290. /**
  291. * Affected Rows
  292. *
  293. * @return int
  294. */
  295. public function affected_rows()
  296. {
  297. return pg_affected_rows($this->result_id);
  298. }
  299. // --------------------------------------------------------------------
  300. /**
  301. * Insert ID
  302. *
  303. * @return string
  304. */
  305. public function insert_id()
  306. {
  307. $v = $this->version();
  308. $table = (func_num_args() > 0) ? func_get_arg(0) : NULL;
  309. $column = (func_num_args() > 1) ? func_get_arg(1) : NULL;
  310. if ($table === NULL && $v >= '8.1')
  311. {
  312. $sql = 'SELECT LASTVAL() AS ins_id';
  313. }
  314. elseif ($table !== NULL)
  315. {
  316. if ($column !== NULL && $v >= '8.0')
  317. {
  318. $sql = 'SELECT pg_get_serial_sequence(\''.$table."', '".$column."') AS seq";
  319. $query = $this->query($sql);
  320. $query = $query->row();
  321. $seq = $query->seq;
  322. }
  323. else
  324. {
  325. // seq_name passed in table parameter
  326. $seq = $table;
  327. }
  328. $sql = 'SELECT CURRVAL(\''.$seq."') AS ins_id";
  329. }
  330. else
  331. {
  332. return pg_last_oid($this->result_id);
  333. }
  334. $query = $this->query($sql);
  335. $query = $query->row();
  336. return (int) $query->ins_id;
  337. }
  338. // --------------------------------------------------------------------
  339. /**
  340. * Show table query
  341. *
  342. * Generates a platform-specific query string so that the table names can be fetched
  343. *
  344. * @param bool $prefix_limit
  345. * @return string
  346. */
  347. protected function _list_tables($prefix_limit = FALSE)
  348. {
  349. $sql = 'SELECT "table_name" FROM "information_schema"."tables" WHERE "table_schema" = \''.$this->schema."'";
  350. if ($prefix_limit !== FALSE && $this->dbprefix !== '')
  351. {
  352. return $sql.' AND "table_name" LIKE \''
  353. .$this->escape_like_str($this->dbprefix)."%' "
  354. .sprintf($this->_like_escape_str, $this->_like_escape_chr);
  355. }
  356. return $sql;
  357. }
  358. // --------------------------------------------------------------------
  359. /**
  360. * List column query
  361. *
  362. * Generates a platform-specific query string so that the column names can be fetched
  363. *
  364. * @param string $table
  365. * @return string
  366. */
  367. protected function _list_columns($table = '')
  368. {
  369. return 'SELECT "column_name"
  370. FROM "information_schema"."columns"
  371. WHERE LOWER("table_name") = '.$this->escape(strtolower($table));
  372. }
  373. // --------------------------------------------------------------------
  374. /**
  375. * Returns an object with field data
  376. *
  377. * @param string $table
  378. * @return array
  379. */
  380. public function field_data($table)
  381. {
  382. $sql = 'SELECT "column_name", "data_type", "character_maximum_length", "numeric_precision", "column_default"
  383. FROM "information_schema"."columns"
  384. WHERE LOWER("table_name") = '.$this->escape(strtolower($table));
  385. if (($query = $this->query($sql)) === FALSE)
  386. {
  387. return FALSE;
  388. }
  389. $query = $query->result_object();
  390. $retval = array();
  391. for ($i = 0, $c = count($query); $i < $c; $i++)
  392. {
  393. $retval[$i] = new stdClass();
  394. $retval[$i]->name = $query[$i]->column_name;
  395. $retval[$i]->type = $query[$i]->data_type;
  396. $retval[$i]->max_length = ($query[$i]->character_maximum_length > 0) ? $query[$i]->character_maximum_length : $query[$i]->numeric_precision;
  397. $retval[$i]->default = $query[$i]->column_default;
  398. }
  399. return $retval;
  400. }
  401. // --------------------------------------------------------------------
  402. /**
  403. * Error
  404. *
  405. * Returns an array containing code and message of the last
  406. * database error that has occurred.
  407. *
  408. * @return array
  409. */
  410. public function error()
  411. {
  412. return array('code' => '', 'message' => pg_last_error($this->conn_id));
  413. }
  414. // --------------------------------------------------------------------
  415. /**
  416. * ORDER BY
  417. *
  418. * @param string $orderby
  419. * @param string $direction ASC, DESC or RANDOM
  420. * @param bool $escape
  421. * @return object
  422. */
  423. public function order_by($orderby, $direction = '', $escape = NULL)
  424. {
  425. $direction = strtoupper(trim($direction));
  426. if ($direction === 'RANDOM')
  427. {
  428. if ( ! is_float($orderby) && ctype_digit((string) $orderby))
  429. {
  430. $orderby = ($orderby > 1)
  431. ? (float) '0.'.$orderby
  432. : (float) $orderby;
  433. }
  434. if (is_float($orderby))
  435. {
  436. $this->simple_query('SET SEED '.$orderby);
  437. }
  438. $orderby = $this->_random_keyword[0];
  439. $direction = '';
  440. $escape = FALSE;
  441. }
  442. return parent::order_by($orderby, $direction, $escape);
  443. }
  444. // --------------------------------------------------------------------
  445. /**
  446. * Update statement
  447. *
  448. * Generates a platform-specific update string from the supplied data
  449. *
  450. * @param string $table
  451. * @param array $values
  452. * @return string
  453. */
  454. protected function _update($table, $values)
  455. {
  456. $this->qb_limit = FALSE;
  457. $this->qb_orderby = array();
  458. return parent::_update($table, $values);
  459. }
  460. // --------------------------------------------------------------------
  461. /**
  462. * Update_Batch statement
  463. *
  464. * Generates a platform-specific batch update string from the supplied data
  465. *
  466. * @param string $table Table name
  467. * @param array $values Update data
  468. * @param string $index WHERE key
  469. * @return string
  470. */
  471. protected function _update_batch($table, $values, $index)
  472. {
  473. $ids = array();
  474. foreach ($values as $key => $val)
  475. {
  476. $ids[] = $val[$index]['value'];
  477. foreach (array_keys($val) as $field)
  478. {
  479. if ($field !== $index)
  480. {
  481. $final[$val[$field]['field']][] = 'WHEN '.$val[$index]['value'].' THEN '.$val[$field]['value'];
  482. }
  483. }
  484. }
  485. $cases = '';
  486. foreach ($final as $k => $v)
  487. {
  488. $cases .= $k.' = (CASE '.$val[$index]['field']."\n"
  489. .implode("\n", $v)."\n"
  490. .'ELSE '.$k.' END), ';
  491. }
  492. $this->where($val[$index]['field'].' IN('.implode(',', $ids).')', NULL, FALSE);
  493. return 'UPDATE '.$table.' SET '.substr($cases, 0, -2).$this->_compile_wh('qb_where');
  494. }
  495. // --------------------------------------------------------------------
  496. /**
  497. * Delete statement
  498. *
  499. * Generates a platform-specific delete string from the supplied data
  500. *
  501. * @param string $table
  502. * @return string
  503. */
  504. protected function _delete($table)
  505. {
  506. $this->qb_limit = FALSE;
  507. return parent::_delete($table);
  508. }
  509. // --------------------------------------------------------------------
  510. /**
  511. * LIMIT
  512. *
  513. * Generates a platform-specific LIMIT clause
  514. *
  515. * @param string $sql SQL Query
  516. * @return string
  517. */
  518. protected function _limit($sql)
  519. {
  520. return $sql.' LIMIT '.$this->qb_limit.($this->qb_offset ? ' OFFSET '.$this->qb_offset : '');
  521. }
  522. // --------------------------------------------------------------------
  523. /**
  524. * Close DB Connection
  525. *
  526. * @return void
  527. */
  528. protected function _close()
  529. {
  530. pg_close($this->conn_id);
  531. }
  532. }