You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

211 lines
5.4 KiB

7 years ago
  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 - 2017, 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 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
  33. * @license http://opensource.org/licenses/MIT MIT License
  34. * @link https://codeigniter.com
  35. * @since Version 1.0.0
  36. * @filesource
  37. */
  38. defined('BASEPATH') OR exit('No direct script access allowed');
  39. /**
  40. * MySQL Utility Class
  41. *
  42. * @category Database
  43. * @author EllisLab Dev Team
  44. * @link https://codeigniter.com/user_guide/database/
  45. */
  46. class CI_DB_mysql_utility extends CI_DB_utility {
  47. /**
  48. * List databases statement
  49. *
  50. * @var string
  51. */
  52. protected $_list_databases = 'SHOW DATABASES';
  53. /**
  54. * OPTIMIZE TABLE statement
  55. *
  56. * @var string
  57. */
  58. protected $_optimize_table = 'OPTIMIZE TABLE %s';
  59. /**
  60. * REPAIR TABLE statement
  61. *
  62. * @var string
  63. */
  64. protected $_repair_table = 'REPAIR TABLE %s';
  65. // --------------------------------------------------------------------
  66. /**
  67. * Export
  68. *
  69. * @param array $params Preferences
  70. * @return mixed
  71. */
  72. protected function _backup($params = array())
  73. {
  74. if (count($params) === 0)
  75. {
  76. return FALSE;
  77. }
  78. // Extract the prefs for simplicity
  79. extract($params);
  80. // Build the output
  81. $output = '';
  82. // Do we need to include a statement to disable foreign key checks?
  83. if ($foreign_key_checks === FALSE)
  84. {
  85. $output .= 'SET foreign_key_checks = 0;'.$newline;
  86. }
  87. foreach ( (array) $tables as $table)
  88. {
  89. // Is the table in the "ignore" list?
  90. if (in_array($table, (array) $ignore, TRUE))
  91. {
  92. continue;
  93. }
  94. // Get the table schema
  95. $query = $this->db->query('SHOW CREATE TABLE '.$this->db->escape_identifiers($this->db->database.'.'.$table));
  96. // No result means the table name was invalid
  97. if ($query === FALSE)
  98. {
  99. continue;
  100. }
  101. // Write out the table schema
  102. $output .= '#'.$newline.'# TABLE STRUCTURE FOR: '.$table.$newline.'#'.$newline.$newline;
  103. if ($add_drop === TRUE)
  104. {
  105. $output .= 'DROP TABLE IF EXISTS '.$this->db->protect_identifiers($table).';'.$newline.$newline;
  106. }
  107. $i = 0;
  108. $result = $query->result_array();
  109. foreach ($result[0] as $val)
  110. {
  111. if ($i++ % 2)
  112. {
  113. $output .= $val.';'.$newline.$newline;
  114. }
  115. }
  116. // If inserts are not needed we're done...
  117. if ($add_insert === FALSE)
  118. {
  119. continue;
  120. }
  121. // Grab all the data from the current table
  122. $query = $this->db->query('SELECT * FROM '.$this->db->protect_identifiers($table));
  123. if ($query->num_rows() === 0)
  124. {
  125. continue;
  126. }
  127. // Fetch the field names and determine if the field is an
  128. // integer type. We use this info to decide whether to
  129. // surround the data with quotes or not
  130. $i = 0;
  131. $field_str = '';
  132. $is_int = array();
  133. while ($field = mysql_fetch_field($query->result_id))
  134. {
  135. // Most versions of MySQL store timestamp as a string
  136. $is_int[$i] = in_array(strtolower(mysql_field_type($query->result_id, $i)),
  137. array('tinyint', 'smallint', 'mediumint', 'int', 'bigint'), //, 'timestamp'),
  138. TRUE);
  139. // Create a string of field names
  140. $field_str .= $this->db->escape_identifiers($field->name).', ';
  141. $i++;
  142. }
  143. // Trim off the end comma
  144. $field_str = preg_replace('/, $/' , '', $field_str);
  145. // Build the insert string
  146. foreach ($query->result_array() as $row)
  147. {
  148. $val_str = '';
  149. $i = 0;
  150. foreach ($row as $v)
  151. {
  152. // Is the value NULL?
  153. if ($v === NULL)
  154. {
  155. $val_str .= 'NULL';
  156. }
  157. else
  158. {
  159. // Escape the data if it's not an integer
  160. $val_str .= ($is_int[$i] === FALSE) ? $this->db->escape($v) : $v;
  161. }
  162. // Append a comma
  163. $val_str .= ', ';
  164. $i++;
  165. }
  166. // Remove the comma at the end of the string
  167. $val_str = preg_replace('/, $/' , '', $val_str);
  168. // Build the INSERT string
  169. $output .= 'INSERT INTO '.$this->db->protect_identifiers($table).' ('.$field_str.') VALUES ('.$val_str.');'.$newline;
  170. }
  171. $output .= $newline.$newline;
  172. }
  173. // Do we need to include a statement to re-enable foreign key checks?
  174. if ($foreign_key_checks === FALSE)
  175. {
  176. $output .= 'SET foreign_key_checks = 1;'.$newline;
  177. }
  178. return $output;
  179. }
  180. }