Derek Jones | 4b9c629 | 2011-07-01 17:40:48 -0500 | [diff] [blame] | 1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2 | /** |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 3 | * CodeIgniter |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 4 | * |
Greg Aker | 741de1c | 2010-11-10 14:52:57 -0600 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.1.6 or newer |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
| 8 | * |
| 9 | * Licensed under the Open Software License version 3.0 |
| 10 | * |
| 11 | * This source file is subject to the Open Software License (OSL 3.0) that is |
| 12 | * bundled with this package in the files license.txt / license.rst. It is |
| 13 | * also available through the world wide web at this URL: |
| 14 | * http://opensource.org/licenses/OSL-3.0 |
| 15 | * If you did not receive a copy of the license and are unable to obtain it |
| 16 | * through the world wide web, please send an email to |
| 17 | * licensing@ellislab.com so we can send you a copy immediately. |
| 18 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 19 | * @package CodeIgniter |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 20 | * @author EllisLab Dev Team |
| 21 | * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc. (http://ellislab.com/) |
| 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
| 27 | |
| 28 | // ------------------------------------------------------------------------ |
| 29 | |
| 30 | /** |
| 31 | * Database Utility Class |
| 32 | * |
| 33 | * @category Database |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 34 | * @author EllisLab Dev Team |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 35 | * @link http://codeigniter.com/user_guide/database/ |
| 36 | */ |
| 37 | class CI_DB_forge { |
| 38 | |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 39 | var $fields = array(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 40 | var $keys = array(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 41 | var $primary_keys = array(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 42 | var $db_char_set = ''; |
| 43 | |
| 44 | /** |
| 45 | * Constructor |
| 46 | * |
| 47 | * Grabs the CI super object instance so we can access it. |
| 48 | * |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 49 | */ |
Timothy Warren | a2097a0 | 2011-10-10 10:10:46 -0400 | [diff] [blame] | 50 | function __construct() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 51 | { |
| 52 | // Assign the main database object to $this->db |
| 53 | $CI =& get_instance(); |
| 54 | $this->db =& $CI->db; |
| 55 | log_message('debug', "Database Forge Class Initialized"); |
| 56 | } |
| 57 | |
| 58 | // -------------------------------------------------------------------- |
| 59 | |
| 60 | /** |
| 61 | * Create database |
| 62 | * |
| 63 | * @access public |
| 64 | * @param string the database name |
| 65 | * @return bool |
| 66 | */ |
| 67 | function create_database($db_name) |
| 68 | { |
| 69 | $sql = $this->_create_database($db_name); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 70 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 71 | if (is_bool($sql)) |
| 72 | { |
| 73 | return $sql; |
| 74 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 75 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 76 | return $this->db->query($sql); |
| 77 | } |
| 78 | |
| 79 | // -------------------------------------------------------------------- |
| 80 | |
| 81 | /** |
| 82 | * Drop database |
| 83 | * |
| 84 | * @access public |
| 85 | * @param string the database name |
| 86 | * @return bool |
| 87 | */ |
| 88 | function drop_database($db_name) |
| 89 | { |
| 90 | $sql = $this->_drop_database($db_name); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 91 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 92 | if (is_bool($sql)) |
| 93 | { |
| 94 | return $sql; |
| 95 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 96 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 97 | return $this->db->query($sql); |
| 98 | } |
| 99 | |
| 100 | // -------------------------------------------------------------------- |
| 101 | |
| 102 | /** |
| 103 | * Add Key |
| 104 | * |
| 105 | * @access public |
| 106 | * @param string key |
| 107 | * @param string type |
| 108 | * @return void |
| 109 | */ |
| 110 | function add_key($key = '', $primary = FALSE) |
| 111 | { |
| 112 | if (is_array($key)) |
| 113 | { |
Pascal Kriete | c3a4a8d | 2011-02-14 13:40:08 -0500 | [diff] [blame] | 114 | foreach ($key as $one) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 115 | { |
| 116 | $this->add_key($one, $primary); |
| 117 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 118 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 119 | return; |
| 120 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 121 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 122 | if ($key == '') |
| 123 | { |
| 124 | show_error('Key information is required for that operation.'); |
| 125 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 126 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 127 | if ($primary === TRUE) |
| 128 | { |
| 129 | $this->primary_keys[] = $key; |
| 130 | } |
| 131 | else |
| 132 | { |
| 133 | $this->keys[] = $key; |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | // -------------------------------------------------------------------- |
| 138 | |
| 139 | /** |
| 140 | * Add Field |
| 141 | * |
| 142 | * @access public |
| 143 | * @param string collation |
| 144 | * @return void |
| 145 | */ |
| 146 | function add_field($field = '') |
| 147 | { |
| 148 | if ($field == '') |
| 149 | { |
| 150 | show_error('Field information is required.'); |
| 151 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 152 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 153 | if (is_string($field)) |
| 154 | { |
| 155 | if ($field == 'id') |
| 156 | { |
| 157 | $this->add_field(array( |
| 158 | 'id' => array( |
| 159 | 'type' => 'INT', |
| 160 | 'constraint' => 9, |
| 161 | 'auto_increment' => TRUE |
| 162 | ) |
| 163 | )); |
| 164 | $this->add_key('id', TRUE); |
| 165 | } |
| 166 | else |
| 167 | { |
| 168 | if (strpos($field, ' ') === FALSE) |
| 169 | { |
| 170 | show_error('Field information is required for that operation.'); |
| 171 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 172 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 173 | $this->fields[] = $field; |
| 174 | } |
| 175 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 176 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 177 | if (is_array($field)) |
| 178 | { |
| 179 | $this->fields = array_merge($this->fields, $field); |
| 180 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 181 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | // -------------------------------------------------------------------- |
| 185 | |
| 186 | /** |
| 187 | * Create Table |
| 188 | * |
| 189 | * @access public |
| 190 | * @param string the table name |
| 191 | * @return bool |
| 192 | */ |
| 193 | function create_table($table = '', $if_not_exists = FALSE) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 194 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 195 | if ($table == '') |
| 196 | { |
| 197 | show_error('A table name is required for that operation.'); |
| 198 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 199 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 200 | if (count($this->fields) == 0) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 201 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 202 | show_error('Field information is required.'); |
| 203 | } |
| 204 | |
| 205 | $sql = $this->_create_table($this->db->dbprefix.$table, $this->fields, $this->primary_keys, $this->keys, $if_not_exists); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 206 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 207 | $this->_reset(); |
Tomasz T | b9ec402 | 2011-12-05 15:28:33 +0100 | [diff] [blame^] | 208 | |
| 209 | if (is_bool($sql)) |
| 210 | { |
| 211 | return $sql; |
| 212 | } |
| 213 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 214 | return $this->db->query($sql); |
| 215 | } |
| 216 | |
| 217 | // -------------------------------------------------------------------- |
| 218 | |
| 219 | /** |
| 220 | * Drop Table |
| 221 | * |
| 222 | * @access public |
| 223 | * @param string the table name |
| 224 | * @return bool |
| 225 | */ |
| 226 | function drop_table($table_name) |
| 227 | { |
| 228 | $sql = $this->_drop_table($this->db->dbprefix.$table_name); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 229 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 230 | if (is_bool($sql)) |
| 231 | { |
| 232 | return $sql; |
| 233 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 234 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 235 | return $this->db->query($sql); |
| 236 | } |
| 237 | |
| 238 | // -------------------------------------------------------------------- |
| 239 | |
| 240 | /** |
| 241 | * Rename Table |
| 242 | * |
| 243 | * @access public |
| 244 | * @param string the old table name |
| 245 | * @param string the new table name |
| 246 | * @return bool |
| 247 | */ |
| 248 | function rename_table($table_name, $new_table_name) |
| 249 | { |
| 250 | if ($table_name == '' OR $new_table_name == '') |
| 251 | { |
| 252 | show_error('A table name is required for that operation.'); |
| 253 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 254 | |
Zac Wasielewski | 0acf65a | 2011-07-15 22:23:18 -0400 | [diff] [blame] | 255 | $sql = $this->_rename_table($this->db->dbprefix.$table_name, $this->db->dbprefix.$new_table_name); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 256 | return $this->db->query($sql); |
| 257 | } |
| 258 | |
| 259 | // -------------------------------------------------------------------- |
| 260 | |
| 261 | /** |
| 262 | * Column Add |
| 263 | * |
| 264 | * @access public |
| 265 | * @param string the table name |
| 266 | * @param string the column name |
| 267 | * @param string the column definition |
| 268 | * @return bool |
| 269 | */ |
| 270 | function add_column($table = '', $field = array(), $after_field = '') |
| 271 | { |
| 272 | if ($table == '') |
| 273 | { |
| 274 | show_error('A table name is required for that operation.'); |
| 275 | } |
| 276 | |
| 277 | // add field info into field array, but we can only do one at a time |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 278 | // so we cycle through |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 279 | |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 280 | foreach ($field as $k => $v) |
| 281 | { |
| 282 | $this->add_field(array($k => $field[$k])); |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 283 | |
| 284 | if (count($this->fields) == 0) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 285 | { |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 286 | show_error('Field information is required.'); |
| 287 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 288 | |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 289 | $sql = $this->_alter_table('ADD', $this->db->dbprefix.$table, $this->fields, $after_field); |
| 290 | |
| 291 | $this->_reset(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 292 | |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 293 | if ($this->db->query($sql) === FALSE) |
| 294 | { |
| 295 | return FALSE; |
| 296 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 297 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 298 | |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 299 | return TRUE; |
Derek Jones | 30b35eb | 2010-03-02 17:25:41 -0600 | [diff] [blame] | 300 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | // -------------------------------------------------------------------- |
| 304 | |
| 305 | /** |
| 306 | * Column Drop |
| 307 | * |
| 308 | * @access public |
| 309 | * @param string the table name |
| 310 | * @param string the column name |
| 311 | * @return bool |
| 312 | */ |
| 313 | function drop_column($table = '', $column_name = '') |
| 314 | { |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 315 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 316 | if ($table == '') |
| 317 | { |
| 318 | show_error('A table name is required for that operation.'); |
| 319 | } |
| 320 | |
| 321 | if ($column_name == '') |
| 322 | { |
| 323 | show_error('A column name is required for that operation.'); |
| 324 | } |
| 325 | |
| 326 | $sql = $this->_alter_table('DROP', $this->db->dbprefix.$table, $column_name); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 327 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 328 | return $this->db->query($sql); |
| 329 | } |
| 330 | |
| 331 | // -------------------------------------------------------------------- |
| 332 | |
| 333 | /** |
| 334 | * Column Modify |
| 335 | * |
| 336 | * @access public |
| 337 | * @param string the table name |
| 338 | * @param string the column name |
| 339 | * @param string the column definition |
| 340 | * @return bool |
| 341 | */ |
| 342 | function modify_column($table = '', $field = array()) |
| 343 | { |
| 344 | if ($table == '') |
| 345 | { |
| 346 | show_error('A table name is required for that operation.'); |
| 347 | } |
| 348 | |
| 349 | // add field info into field array, but we can only do one at a time |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 350 | // so we cycle through |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 351 | |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 352 | foreach ($field as $k => $v) |
| 353 | { |
Phil Sturgeon | a58ecae | 2010-12-15 10:32:10 +0000 | [diff] [blame] | 354 | // If no name provided, use the current name |
| 355 | if ( ! isset($field[$k]['name'])) |
| 356 | { |
| 357 | $field[$k]['name'] = $k; |
| 358 | } |
| 359 | |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 360 | $this->add_field(array($k => $field[$k])); |
| 361 | |
| 362 | if (count($this->fields) == 0) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 363 | { |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 364 | show_error('Field information is required.'); |
| 365 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 366 | |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 367 | $sql = $this->_alter_table('CHANGE', $this->db->dbprefix.$table, $this->fields); |
| 368 | |
| 369 | $this->_reset(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 370 | |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 371 | if ($this->db->query($sql) === FALSE) |
| 372 | { |
| 373 | return FALSE; |
| 374 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 375 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 376 | |
Robin Sowell | 8a54ef2 | 2009-03-04 14:49:53 +0000 | [diff] [blame] | 377 | return TRUE; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | // -------------------------------------------------------------------- |
| 381 | |
| 382 | /** |
| 383 | * Reset |
| 384 | * |
| 385 | * Resets table creation vars |
| 386 | * |
| 387 | * @access private |
| 388 | * @return void |
| 389 | */ |
| 390 | function _reset() |
| 391 | { |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 392 | $this->fields = array(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 393 | $this->keys = array(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 394 | $this->primary_keys = array(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | } |
| 398 | |
| 399 | /* End of file DB_forge.php */ |
Derek Jones | a3ffbbb | 2008-05-11 18:18:29 +0000 | [diff] [blame] | 400 | /* Location: ./system/database/DB_forge.php */ |