Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 1 | <?php |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
Eric Barnes | dd81c43 | 2011-11-16 11:07:35 -0500 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Eric Barnes | dd81c43 | 2011-11-16 11:07:35 -0500 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 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 | * |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 19 | * @package CodeIgniter |
| 20 | * @author EllisLab Dev Team |
Greg Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2006 - 2012, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 23 | * @link http://codeigniter.com |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 24 | * @since Version 3.0 |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 25 | * @filesource |
| 26 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 27 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 28 | |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 29 | /** |
| 30 | * Migration Class |
| 31 | * |
| 32 | * All migrations should implement this, forces up() and down() and gives |
| 33 | * access to the CI super-global. |
| 34 | * |
| 35 | * @package CodeIgniter |
| 36 | * @subpackage Libraries |
| 37 | * @category Libraries |
| 38 | * @author Reactor Engineers |
| 39 | * @link |
| 40 | */ |
| 41 | class CI_Migration { |
| 42 | |
Timothy Warren | 86611db | 2012-04-27 10:06:25 -0400 | [diff] [blame] | 43 | /** |
| 44 | * Whether the library is enabled |
| 45 | * |
| 46 | * @var bool |
| 47 | */ |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 48 | protected $_migration_enabled = FALSE; |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 49 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 50 | /** |
Jonathon Hill | b719bfd | 2012-11-12 09:03:36 -0500 | [diff] [blame] | 51 | * Migration numbering type |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 52 | * |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 53 | * @var bool |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 54 | */ |
Jonathon Hill | b719bfd | 2012-11-12 09:03:36 -0500 | [diff] [blame] | 55 | protected $_migration_type = 'sequential'; |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 56 | |
Timothy Warren | 86611db | 2012-04-27 10:06:25 -0400 | [diff] [blame] | 57 | /** |
| 58 | * Path to migration classes |
| 59 | * |
| 60 | * @var string |
| 61 | */ |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 62 | protected $_migration_path = NULL; |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 63 | |
Timothy Warren | 86611db | 2012-04-27 10:06:25 -0400 | [diff] [blame] | 64 | /** |
| 65 | * Current migration version |
| 66 | * |
| 67 | * @var mixed |
| 68 | */ |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 69 | protected $_migration_version = 0; |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 70 | |
Timothy Warren | 86611db | 2012-04-27 10:06:25 -0400 | [diff] [blame] | 71 | /** |
| 72 | * Database table with migration info |
| 73 | * |
| 74 | * @var string |
| 75 | */ |
Cloudmanic Labs, LLC | 539dcb0 | 2011-09-18 12:08:56 -0700 | [diff] [blame] | 76 | protected $_migration_table = 'migrations'; |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 77 | |
Timothy Warren | 86611db | 2012-04-27 10:06:25 -0400 | [diff] [blame] | 78 | /** |
| 79 | * Whether to automatically run migrations |
| 80 | * |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 81 | * @var bool |
Timothy Warren | 86611db | 2012-04-27 10:06:25 -0400 | [diff] [blame] | 82 | */ |
Cloudmanic Labs, LLC | d1ba8f7 | 2011-09-18 12:23:00 -0700 | [diff] [blame] | 83 | protected $_migration_auto_latest = FALSE; |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 84 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 85 | /** |
| 86 | * Migration basename regex |
| 87 | * |
| 88 | * @var bool |
| 89 | */ |
| 90 | protected $_migration_regex = NULL; |
Eric Barnes | dd81c43 | 2011-11-16 11:07:35 -0500 | [diff] [blame] | 91 | |
Timothy Warren | 86611db | 2012-04-27 10:06:25 -0400 | [diff] [blame] | 92 | /** |
| 93 | * Error message |
| 94 | * |
| 95 | * @var string |
| 96 | */ |
Phil Sturgeon | cb06c65 | 2011-05-04 10:50:25 +0100 | [diff] [blame] | 97 | protected $_error_string = ''; |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 98 | |
Timothy Warren | 86611db | 2012-04-27 10:06:25 -0400 | [diff] [blame] | 99 | /** |
| 100 | * Initialize Migration Class |
| 101 | * |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 102 | * @param array $config |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 103 | * @return void |
Timothy Warren | 86611db | 2012-04-27 10:06:25 -0400 | [diff] [blame] | 104 | */ |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 105 | public function __construct($config = array()) |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 106 | { |
| 107 | # Only run this constructor on main library load |
| 108 | if (get_parent_class($this) !== FALSE) |
| 109 | { |
| 110 | return; |
| 111 | } |
| 112 | |
| 113 | foreach ($config as $key => $val) |
| 114 | { |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 115 | $this->{'_'.$key} = $val; |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | log_message('debug', 'Migrations class initialized'); |
| 119 | |
| 120 | // Are they trying to use migrations while it is disabled? |
| 121 | if ($this->_migration_enabled !== TRUE) |
| 122 | { |
| 123 | show_error('Migrations has been loaded but is disabled or set up incorrectly.'); |
| 124 | } |
| 125 | |
| 126 | // If not set, set it |
Alex Bilbie | d261b1e | 2012-06-02 11:12:16 +0100 | [diff] [blame] | 127 | $this->_migration_path !== '' OR $this->_migration_path = APPPATH.'migrations/'; |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 128 | |
| 129 | // Add trailing slash if not set |
| 130 | $this->_migration_path = rtrim($this->_migration_path, '/').'/'; |
| 131 | |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 132 | // Load migration language |
| 133 | $this->lang->load('migration'); |
| 134 | |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 135 | // They'll probably be using dbforge |
| 136 | $this->load->dbforge(); |
| 137 | |
Cloudmanic Labs, LLC | 539dcb0 | 2011-09-18 12:08:56 -0700 | [diff] [blame] | 138 | // Make sure the migration table name was set. |
Cloudmanic Labs, LLC | 63b61e3 | 2011-09-19 09:35:05 -0700 | [diff] [blame] | 139 | if (empty($this->_migration_table)) |
Cloudmanic Labs, LLC | 539dcb0 | 2011-09-18 12:08:56 -0700 | [diff] [blame] | 140 | { |
Eric Barnes | dd81c43 | 2011-11-16 11:07:35 -0500 | [diff] [blame] | 141 | show_error('Migrations configuration file (migration.php) must have "migration_table" set.'); |
Cloudmanic Labs, LLC | 539dcb0 | 2011-09-18 12:08:56 -0700 | [diff] [blame] | 142 | } |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 143 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 144 | // Migration basename regex |
Jonathon Hill | 4ddf944 | 2012-11-12 18:30:59 -0500 | [diff] [blame] | 145 | $this->_migration_regex = ($this->_migration_type === 'timestamp') |
| 146 | ? '/^\d{14}_(\w+)$/' |
| 147 | : '/^\d{3}_(\w+)$/'; |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 148 | |
Jonathon Hill | b719bfd | 2012-11-12 09:03:36 -0500 | [diff] [blame] | 149 | // Make sure a valid migration numbering type was set. |
| 150 | if ( ! in_array($this->_migration_type, array('sequential', 'timestamp'))) |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 151 | { |
Jonathon Hill | b719bfd | 2012-11-12 09:03:36 -0500 | [diff] [blame] | 152 | show_error('An invalid migration numbering type was specified: '.$this->_migration_type); |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 153 | } |
Cloudmanic Labs, LLC | 539dcb0 | 2011-09-18 12:08:56 -0700 | [diff] [blame] | 154 | |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 155 | // If the migrations table is missing, make it |
Cloudmanic Labs, LLC | 539dcb0 | 2011-09-18 12:08:56 -0700 | [diff] [blame] | 156 | if ( ! $this->db->table_exists($this->_migration_table)) |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 157 | { |
| 158 | $this->dbforge->add_field(array( |
Jonathon Hill | 275cf27 | 2012-11-12 08:42:28 -0500 | [diff] [blame] | 159 | 'version' => array('type' => 'BIGINT', 'constraint' => 20), |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 160 | )); |
| 161 | |
Cloudmanic Labs, LLC | 539dcb0 | 2011-09-18 12:08:56 -0700 | [diff] [blame] | 162 | $this->dbforge->create_table($this->_migration_table, TRUE); |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 163 | |
Cloudmanic Labs, LLC | 539dcb0 | 2011-09-18 12:08:56 -0700 | [diff] [blame] | 164 | $this->db->insert($this->_migration_table, array('version' => 0)); |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 165 | } |
Eric Barnes | dd81c43 | 2011-11-16 11:07:35 -0500 | [diff] [blame] | 166 | |
Cloudmanic Labs, LLC | d1ba8f7 | 2011-09-18 12:23:00 -0700 | [diff] [blame] | 167 | // Do we auto migrate to the latest migration? |
Andrey Andreev | 9b1db79 | 2012-03-26 19:45:51 +0300 | [diff] [blame] | 168 | if ($this->_migration_auto_latest === TRUE && ! $this->latest()) |
Cloudmanic Labs, LLC | d1ba8f7 | 2011-09-18 12:23:00 -0700 | [diff] [blame] | 169 | { |
Andrey Andreev | dd4702f | 2011-12-24 19:33:44 +0200 | [diff] [blame] | 170 | show_error($this->error_string()); |
Cloudmanic Labs, LLC | d1ba8f7 | 2011-09-18 12:23:00 -0700 | [diff] [blame] | 171 | } |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | // -------------------------------------------------------------------- |
| 175 | |
| 176 | /** |
| 177 | * Migrate to a schema version |
| 178 | * |
| 179 | * Calls each migration step required to get to the schema version of |
| 180 | * choice |
| 181 | * |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 182 | * @param int $target_version Target schema version |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 183 | * @return mixed TRUE if already latest, FALSE if failed, int if upgraded |
| 184 | */ |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 185 | public function version($target_version) |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 186 | { |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 187 | $current_version = (int) $this->_get_version(); |
| 188 | $target_version = (int) $target_version; |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 189 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 190 | $migrations = $this->find_migrations(); |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 191 | |
Jonathon Hill | 02ea66e | 2012-11-12 17:26:36 -0500 | [diff] [blame] | 192 | if ($target_version > 0 && ! isset($migrations[$target_version])) |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 193 | { |
| 194 | $this->_error_string = sprintf($this->lang->line('migration_not_found'), $target_version); |
| 195 | return FALSE; |
| 196 | } |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 197 | |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 198 | if ($target_version > $current_version) |
| 199 | { |
| 200 | // Moving Up |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 201 | $method = 'up'; |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 202 | } |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 203 | else |
| 204 | { |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 205 | // Moving Down, apply in reverse order |
| 206 | $method = 'down'; |
| 207 | krsort($migrations); |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 208 | } |
Eric Barnes | dd81c43 | 2011-11-16 11:07:35 -0500 | [diff] [blame] | 209 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 210 | if (empty($migrations)) |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 211 | { |
| 212 | return TRUE; |
| 213 | } |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 214 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 215 | $previous = FALSE; |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 216 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 217 | // Validate all available migrations, and run the ones within our target range |
| 218 | foreach ($migrations as $number => $file) |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 219 | { |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 220 | // Check for sequence gaps |
Jonathon Hill | 02ea66e | 2012-11-12 17:26:36 -0500 | [diff] [blame] | 221 | if ($this->_migration_type === 'sequential' && $previous !== FALSE && abs($number - $previous) > 1) |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 222 | { |
| 223 | $this->_error_string = sprintf($this->lang->line('migration_sequence_gap'), $number); |
| 224 | return FALSE; |
| 225 | } |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 226 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 227 | include $file; |
| 228 | $class = 'Migration_'.ucfirst(strtolower($this->_get_migration_name(basename($file, '.php')))); |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 229 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 230 | // Validate the migration file structure |
| 231 | if ( ! class_exists($class)) |
| 232 | { |
| 233 | $this->_error_string = sprintf($this->lang->line('migration_class_doesnt_exist'), $class); |
| 234 | return FALSE; |
| 235 | } |
| 236 | elseif ( ! is_callable(array($class, $method))) |
| 237 | { |
| 238 | $this->_error_string = sprintf($this->lang->line('migration_missing_'.$method.'_method'), $class); |
| 239 | return FALSE; |
| 240 | } |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 241 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 242 | $previous = $number; |
| 243 | |
| 244 | // Run migrations that are inside the target range |
| 245 | if ( |
Jonathon Hill | 02ea66e | 2012-11-12 17:26:36 -0500 | [diff] [blame] | 246 | ($method === 'up' && $number > $current_version && $number <= $target_version) OR |
| 247 | ($method === 'down' && $number <= $current_version && $number > $target_version) |
| 248 | ) |
| 249 | { |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 250 | log_message('debug', 'Migrating '.$method.' from version '.$current_version.' to version '.$number); |
| 251 | call_user_func(array(new $class, $method)); |
| 252 | $current_version = $number; |
| 253 | $this->_update_version($current_version); |
| 254 | } |
| 255 | } |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 256 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 257 | // This is necessary when moving down, since the the last migration applied |
| 258 | // will be the down() method for the next migration up from the target |
| 259 | if ($current_version <> $target_version) |
| 260 | { |
| 261 | $current_version = $target_version; |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 262 | $this->_update_version($current_version); |
| 263 | } |
| 264 | |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 265 | log_message('debug', 'Finished migrating to '.$current_version); |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 266 | |
| 267 | return $current_version; |
| 268 | } |
| 269 | |
| 270 | // -------------------------------------------------------------------- |
| 271 | |
| 272 | /** |
| 273 | * Set's the schema to the latest migration |
| 274 | * |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 275 | * @return mixed TRUE if already latest, FALSE if failed, int if upgraded |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 276 | */ |
| 277 | public function latest() |
| 278 | { |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 279 | $migrations = $this->find_migrations(); |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 280 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 281 | if (empty($migrations)) |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 282 | { |
Cloudmanic Labs, LLC | 3d036e3 | 2011-11-11 22:46:21 -0800 | [diff] [blame] | 283 | $this->_error_string = $this->lang->line('migration_none_found'); |
Alex Bilbie | afee226 | 2012-07-15 18:59:01 +0100 | [diff] [blame] | 284 | return FALSE; |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | $last_migration = basename(end($migrations)); |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 288 | |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 289 | // Calculate the last migration step from existing migration |
| 290 | // filenames and procceed to the standard version migration |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 291 | return $this->version($this->_get_migration_number($last_migration)); |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | // -------------------------------------------------------------------- |
| 295 | |
| 296 | /** |
| 297 | * Set's the schema to the migration version set in config |
| 298 | * |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 299 | * @return mixed TRUE if already current, FALSE if failed, int if upgraded |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 300 | */ |
| 301 | public function current() |
| 302 | { |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 303 | return $this->version($this->_migration_version); |
| 304 | } |
| 305 | |
| 306 | // -------------------------------------------------------------------- |
| 307 | |
| 308 | /** |
| 309 | * Error string |
| 310 | * |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 311 | * @return string Error message returned as a string |
| 312 | */ |
| 313 | public function error_string() |
| 314 | { |
Phil Sturgeon | cb06c65 | 2011-05-04 10:50:25 +0100 | [diff] [blame] | 315 | return $this->_error_string; |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | // -------------------------------------------------------------------- |
| 319 | |
| 320 | /** |
Dumk0 | 5db4827 | 2012-07-05 02:58:10 +0300 | [diff] [blame] | 321 | * Retrieves list of available migration scripts |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 322 | * |
Dumk0 | 5db4827 | 2012-07-05 02:58:10 +0300 | [diff] [blame] | 323 | * @return array list of migration file paths sorted by version |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 324 | */ |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 325 | public function find_migrations() |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 326 | { |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 327 | $migrations = array(); |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 328 | |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 329 | // Load all *_*.php files in the migrations path |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 330 | foreach (glob($this->_migration_path.'*_*.php') as $file) |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 331 | { |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 332 | $name = basename($file, '.php'); |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 333 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 334 | // Filter out non-migration files |
| 335 | if (preg_match($this->_migration_regex, $name)) |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 336 | { |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 337 | $number = $this->_get_migration_number($name); |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 338 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 339 | // There cannot be duplicate migration numbers |
| 340 | if (isset($migrations[$number])) |
| 341 | { |
| 342 | $this->_error_string = sprintf($this->lang->line('migration_multiple_version'), $number); |
| 343 | show_error($this->_error_string); |
| 344 | } |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 345 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 346 | $migrations[$number] = $file; |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 347 | } |
| 348 | } |
Eric Barnes | dd81c43 | 2011-11-16 11:07:35 -0500 | [diff] [blame] | 349 | |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 350 | ksort($migrations); |
| 351 | return $migrations; |
| 352 | } |
| 353 | |
| 354 | // -------------------------------------------------------------------- |
| 355 | |
| 356 | /** |
| 357 | * Extracts the migration number from a filename |
| 358 | * |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 359 | * @param string $migration |
| 360 | * @return int Numeric portion of a migration filename |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 361 | */ |
| 362 | protected function _get_migration_number($migration) |
| 363 | { |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 364 | return sscanf($migration, '%d', $number) |
| 365 | ? $number : 0; |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | // -------------------------------------------------------------------- |
| 369 | |
| 370 | /** |
| 371 | * Extracts the migration class name from a filename |
| 372 | * |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 373 | * @param string $migration |
| 374 | * @return string text portion of a migration filename |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 375 | */ |
| 376 | protected function _get_migration_name($migration) |
| 377 | { |
| 378 | $parts = explode('_', $migration); |
| 379 | array_shift($parts); |
| 380 | return implode('_', $parts); |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | // -------------------------------------------------------------------- |
| 384 | |
| 385 | /** |
| 386 | * Retrieves current schema version |
| 387 | * |
Andrey Andreev | 9b1db79 | 2012-03-26 19:45:51 +0300 | [diff] [blame] | 388 | * @return int Current Migration |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 389 | */ |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 390 | protected function _get_version() |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 391 | { |
Phil Sturgeon | d268eda | 2011-12-31 16:20:11 +0000 | [diff] [blame] | 392 | $row = $this->db->select('version')->get($this->_migration_table)->row(); |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 393 | return $row ? $row->version : 0; |
| 394 | } |
| 395 | |
| 396 | // -------------------------------------------------------------------- |
| 397 | |
| 398 | /** |
| 399 | * Stores the current schema version |
| 400 | * |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 401 | * @param int $migration Migration reached |
Andrey Andreev | 9b1db79 | 2012-03-26 19:45:51 +0300 | [diff] [blame] | 402 | * @return void Outputs a report of the migration |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 403 | */ |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 404 | protected function _update_version($migration) |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 405 | { |
Cloudmanic Labs, LLC | 539dcb0 | 2011-09-18 12:08:56 -0700 | [diff] [blame] | 406 | return $this->db->update($this->_migration_table, array( |
Jonathon Hill | 34c8b9c | 2012-10-31 14:02:35 -0400 | [diff] [blame] | 407 | 'version' => $migration |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 408 | )); |
| 409 | } |
| 410 | |
| 411 | // -------------------------------------------------------------------- |
| 412 | |
| 413 | /** |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 414 | * Enable the use of CI super-global |
| 415 | * |
Andrey Andreev | 39eb806 | 2012-11-13 03:36:40 +0200 | [diff] [blame^] | 416 | * @param string $var |
Phil Sturgeon | 9758d84 | 2011-02-07 20:39:00 +0000 | [diff] [blame] | 417 | * @return mixed |
| 418 | */ |
| 419 | public function __get($var) |
| 420 | { |
| 421 | return get_instance()->$var; |
| 422 | } |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 423 | |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | /* End of file Migration.php */ |
Andrey Andreev | 9b1db79 | 2012-03-26 19:45:51 +0300 | [diff] [blame] | 427 | /* Location: ./system/libraries/Migration.php */ |