1
|
|
|
<?php |
|
|
|
|
2
|
|
|
|
|
|
|
|
3
|
|
|
/* |
|
|
|
|
4
|
|
|
* The MIT License |
|
|
|
|
5
|
|
|
* |
|
|
|
|
6
|
|
|
* Copyright 2014 James Ekow Abaka Ainooson |
|
|
|
|
7
|
|
|
* |
|
|
|
|
8
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
|
|
|
9
|
|
|
* of this software and associated documentation files (the "Software"), to deal |
|
|
|
|
10
|
|
|
* in the Software without restriction, including without limitation the rights |
|
|
|
|
11
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
|
|
|
12
|
|
|
* copies of the Software, and to permit persons to whom the Software is |
|
|
|
|
13
|
|
|
* furnished to do so, subject to the following conditions: |
|
|
|
|
14
|
|
|
* |
|
|
|
|
15
|
|
|
* The above copyright notice and this permission notice shall be included in |
|
|
|
|
16
|
|
|
* all copies or substantial portions of the Software. |
|
|
|
|
17
|
|
|
* |
|
|
|
|
18
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
|
|
|
19
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
|
|
|
20
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
|
|
|
21
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
|
|
|
22
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
|
|
|
23
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
|
|
|
24
|
|
|
* THE SOFTWARE. |
|
|
|
|
25
|
|
|
*/ |
|
|
|
|
26
|
|
|
|
27
|
|
|
namespace yentu\commands; |
28
|
|
|
|
29
|
|
|
use clearice\io\Io; |
30
|
|
|
use yentu\database\Begin; |
31
|
|
|
use yentu\database\DatabaseItem; |
32
|
|
|
use yentu\ChangeLogger; |
33
|
|
|
use yentu\database\ForeignKey; |
34
|
|
|
use yentu\Reversible; |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* The migrate command for the yentu database migration system. This class is |
38
|
|
|
* responsible for creating and updating items |
39
|
|
|
*/ |
|
|
|
|
40
|
|
|
class Migrate extends Command implements Reversible |
41
|
|
|
{ |
|
|
|
|
42
|
|
|
|
43
|
|
|
const FILTER_UNRUN = 'unrun'; |
|
|
|
|
44
|
|
|
const FILTER_LAST_SESSION = 'lastSession'; |
45
|
|
|
|
46
|
|
|
private $driver; |
|
|
|
|
47
|
|
|
private $dryDriver; |
|
|
|
|
48
|
|
|
private $defaultSchema = false; |
|
|
|
|
49
|
|
|
private $lastSession; |
|
|
|
|
50
|
|
|
private $currentPath; |
|
|
|
|
51
|
|
|
private $rollbackCommand; |
|
|
|
|
52
|
|
|
|
53
|
|
|
|
54
|
|
|
public function setupOptions($options, &$filter) |
|
|
|
|
55
|
|
|
{ |
|
|
|
|
56
|
|
|
if (isset($options['no-foreign-keys'])) { |
57
|
|
|
$this->io->output("Ignoring all foreign key constraints ...\n"); |
|
|
|
|
58
|
|
|
$this->driver->skip('ForeignKey'); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
if (isset($options['only-foreign-keys'])) { |
62
|
|
|
$this->io->output("Applying only foreign keys ...\n"); |
63
|
|
|
$this->lastSession = $this->driver->getLastSession(); |
64
|
|
|
$this->driver->allowOnly('ForeignKey'); |
65
|
|
|
$filter = self::FILTER_LAST_SESSION; |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
if (isset($options['force-foreign-keys'])) { |
69
|
|
|
$this->io->output("Applying only foreign keys and skipping on errors ...\n"); |
70
|
|
|
$this->lastSession = $this->driver->getLastSession(); |
71
|
|
|
$this->driver->setSkipOnErrors($options['force-foreign-keys']); |
72
|
|
|
$this->driver->allowOnly('ForeignKey'); |
73
|
|
|
$filter = self::FILTER_LAST_SESSION; |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
if (isset($options['default-ondelete-action'])) { |
77
|
|
|
ForeignKey::$defaultOnDelete = $options['default-ondelete-action']; |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
if (isset($options['default-onupdate-action'])) { |
81
|
|
|
ForeignKey::$defaultOnUpdate = $options['default-onupdate-action']; |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
$this->setDefaultSchema($options); |
85
|
|
|
} |
|
|
|
|
86
|
|
|
|
87
|
|
|
private function setDefaultSchema($options) |
|
|
|
|
88
|
|
|
{ |
|
|
|
|
89
|
|
|
global $defaultSchema; |
|
|
|
|
90
|
|
|
if (isset($options['default-schema'])) { |
91
|
|
|
$this->driver->setDefaultSchema($options['default-schema']); |
92
|
|
|
$this->defaultSchema = $options['default-schema']; |
93
|
|
|
$defaultSchema = $this->defaultSchema; |
|
|
|
|
94
|
|
|
} |
95
|
|
|
} |
|
|
|
|
96
|
|
|
|
97
|
|
|
private function announceMigration($migrations, $path) |
|
|
|
|
98
|
|
|
{ |
|
|
|
|
99
|
|
|
$size = count($migrations); |
|
|
|
|
100
|
|
|
$defaultSchema = null; |
|
|
|
|
101
|
|
|
if ($size > 0) { |
102
|
|
|
if (isset($path['default-schema'])) { |
103
|
|
|
$defaultSchema = $path['default-schema']; |
104
|
|
|
} |
|
|
|
|
105
|
|
|
$this->io->output("Running $size migration(s) from '{$path['home']}'"); |
|
|
|
|
106
|
|
|
if ($defaultSchema != '') { |
|
|
|
|
107
|
|
|
$this->io->output(" with '$defaultSchema' as the default schema.\n"); |
|
|
|
|
108
|
|
|
} |
109
|
|
|
} else { |
110
|
|
|
$this->io->output("No migrations to run from '{$path['home']}'\n"); |
|
|
|
|
111
|
|
|
} |
112
|
|
|
} |
|
|
|
|
113
|
|
|
|
114
|
|
|
public function getBegin() |
|
|
|
|
115
|
|
|
{ |
|
|
|
|
116
|
|
|
return new Begin($this->defaultSchema); |
117
|
|
|
} |
|
|
|
|
118
|
|
|
|
119
|
|
|
private static function fillOptions(&$options) |
|
|
|
|
120
|
|
|
{ |
|
|
|
|
121
|
|
|
if (!isset($options['dump-queries'])) { |
|
|
|
|
122
|
|
|
$options['dump-queries'] = false; |
|
|
|
|
123
|
|
|
} |
|
|
|
|
124
|
|
|
if (!isset($options['dry'])) { |
|
|
|
|
125
|
|
|
$options['dry'] = false; |
|
|
|
|
126
|
|
|
} |
127
|
|
|
} |
|
|
|
|
128
|
|
|
|
129
|
|
|
public function run($options = array()) |
|
|
|
|
130
|
|
|
{ |
|
|
|
|
131
|
|
|
global $migrateCommand; |
|
|
|
|
132
|
|
|
global $migrateVariables; |
|
|
|
|
133
|
|
|
|
134
|
|
|
self::fillOptions($options); |
135
|
|
|
|
136
|
|
|
$migrateCommand = $this; |
137
|
|
|
|
138
|
|
|
if ($options['dump-queries'] !== true) { |
|
|
|
|
139
|
|
|
$this->yentu->greet(); |
140
|
|
|
} |
141
|
|
|
|
142
|
|
|
$this->driver = ChangeLogger::wrap($this->manipulatorFactory->createManipulator(), $this->yentu, $this->io); |
|
|
|
|
143
|
|
|
$this->driver->setDumpQueriesOnly($options['dump-queries']); |
144
|
|
|
$this->driver->setDryRun($options['dry']); |
145
|
|
|
|
146
|
|
|
$totalOperations = 0; |
147
|
|
|
|
148
|
|
|
$filter = self::FILTER_UNRUN; |
149
|
|
|
$this->setupOptions($options, $filter); |
150
|
|
|
DatabaseItem::setDriver($this->driver); |
151
|
|
|
|
152
|
|
|
\yentu\Timer::start(); |
153
|
|
|
$migrationPaths = $this->yentu->getMigrationPaths(); |
154
|
|
|
//$migrationsToBeRun = []; |
|
|
|
|
155
|
|
|
foreach ($migrationPaths as $path) { |
156
|
|
|
$this->setDefaultSchema($path); |
157
|
|
|
$migrateVariables = $path['variables'] ?? []; |
|
|
|
|
158
|
|
|
$migrations = $this->filter($this->yentu->getMigrations($path['home']), $filter); |
|
|
|
|
159
|
|
|
$this->announceMigration($migrations, $path); |
160
|
|
|
$this->currentPath = $path; |
161
|
|
|
|
162
|
|
|
foreach ($migrations as $migration) { |
163
|
|
|
$this->countOperations("{$path['home']}/{$migration['file']}"); |
|
|
|
|
164
|
|
|
$this->driver->setVersion($migration['timestamp']); |
165
|
|
|
$this->driver->setMigration($migration['migration']); |
166
|
|
|
$this->io->output("\nApplying '{$migration['migration']}' migration\n"); |
|
|
|
|
167
|
|
|
require "{$path['home']}/{$migration['file']}"; |
|
|
|
|
168
|
|
|
DatabaseItem::purge(); |
169
|
|
|
$this->io->output("\n"); |
170
|
|
|
$totalOperations += $this->driver->resetOperations(); |
171
|
|
|
} |
172
|
|
|
} |
173
|
|
|
|
174
|
|
|
if ($this->driver->getChanges()) { |
175
|
|
|
$elapsed = \yentu\Timer::stop(); |
176
|
|
|
$this->io->output("\nMigration took " . \yentu\Timer::pretty($elapsed) . "\n"); |
|
|
|
|
177
|
|
|
$this->io->output($this->driver->getChanges() . " operations performed\n"); |
|
|
|
|
178
|
|
|
$this->io->output($totalOperations - $this->driver->getChanges() . " operations skipped\n"); |
|
|
|
|
179
|
|
|
} |
180
|
|
|
|
181
|
|
|
$this->driver->disconnect(); |
|
|
|
|
182
|
|
|
} |
|
|
|
|
183
|
|
|
|
184
|
|
|
private function filter($migrations, $type = self::FILTER_UNRUN) |
|
|
|
|
185
|
|
|
{ |
|
|
|
|
186
|
|
|
$filterMethod = "{$type}Filter"; |
|
|
|
|
187
|
|
|
return $this->$filterMethod($migrations); |
188
|
|
|
} |
|
|
|
|
189
|
|
|
|
190
|
|
|
private function countOperations($migrationFile) |
|
|
|
|
191
|
|
|
{ |
|
|
|
|
192
|
|
|
if ($this->dryDriver === null) { |
|
|
|
|
193
|
|
|
$this->dryDriver = clone $this->driver; |
194
|
|
|
$this->dryDriver->setDryRun(true); |
|
|
|
|
195
|
|
|
} |
|
|
|
|
196
|
|
|
$this->io->pushOutputLevel(Io::OUTPUT_LEVEL_0); |
197
|
|
|
DatabaseItem::setDriver($this->dryDriver); |
198
|
|
|
require "$migrationFile"; |
|
|
|
|
199
|
|
|
DatabaseItem::purge(); |
200
|
|
|
DatabaseItem::setDriver($this->driver); |
201
|
|
|
$this->io->popOutputLevel(); |
202
|
|
|
$this->driver->setExpectedOperations($this->dryDriver->resetOperations()); |
203
|
|
|
} |
|
|
|
|
204
|
|
|
|
205
|
|
|
public function getCurrentPath() |
|
|
|
|
206
|
|
|
{ |
|
|
|
|
207
|
|
|
return $this->currentPath; |
208
|
|
|
} |
|
|
|
|
209
|
|
|
|
210
|
|
|
private function unrunFilter($input) |
|
|
|
|
211
|
|
|
{ |
|
|
|
|
212
|
|
|
$output = array(); |
|
|
|
|
213
|
|
|
foreach ($input as $migration) { |
214
|
|
|
$run = $this->driver->query( |
215
|
|
|
"SELECT count(*) as number_run FROM yentu_history WHERE migration = ? and version = ? and default_schema = ?", |
|
|
|
|
216
|
|
|
array($migration['migration'], $migration['timestamp'], (string) $this->defaultSchema) |
|
|
|
|
217
|
|
|
); |
218
|
|
|
|
219
|
|
|
if ($run[0]['number_run'] == 0) { |
|
|
|
|
220
|
|
|
$output[] = $migration; |
221
|
|
|
} |
222
|
|
|
} |
|
|
|
|
223
|
|
|
return $output; |
224
|
|
|
} |
|
|
|
|
225
|
|
|
|
226
|
|
|
private function lastSessionFilter($input) |
|
|
|
|
227
|
|
|
{ |
|
|
|
|
228
|
|
|
$versions = $this->driver->getSessionVersions($this->lastSession); |
229
|
|
|
$output = array(); |
|
|
|
|
230
|
|
|
foreach ($input as $migration) { |
231
|
|
|
if (array_search($migration['timestamp'], $versions) !== false) { |
|
|
|
|
232
|
|
|
$output[] = $migration; |
233
|
|
|
} |
234
|
|
|
} |
|
|
|
|
235
|
|
|
return $output; |
236
|
|
|
} |
|
|
|
|
237
|
|
|
|
238
|
|
|
public function getChanges() |
|
|
|
|
239
|
|
|
{ |
|
|
|
|
240
|
|
|
return $this->driver->getChanges(); |
241
|
|
|
} |
|
|
|
|
242
|
|
|
|
243
|
|
|
public function setRollbackCommand(Rollback $rollbackCommand) |
|
|
|
|
244
|
|
|
{ |
|
|
|
|
245
|
|
|
$this->rollbackCommand = $rollbackCommand; |
246
|
|
|
} |
|
|
|
|
247
|
|
|
|
248
|
|
|
public function reverse() |
|
|
|
|
249
|
|
|
{ |
|
|
|
|
250
|
|
|
if ($this->driver === null) { |
|
|
|
|
251
|
|
|
return; |
252
|
|
|
} |
253
|
|
|
|
254
|
|
|
$this->io->output("Attempting to reverse all changes ... "); |
|
|
|
|
255
|
|
|
if ($this->getChanges() > 0) { |
256
|
|
|
$this->io->pushOutputLevel(0); |
257
|
|
|
$this->rollbackCommand->run(array()); |
|
|
|
|
258
|
|
|
$this->io->popOutputLevel(); |
259
|
|
|
} |
|
|
|
|
260
|
|
|
$this->io->output("OK\n"); |
261
|
|
|
} |
|
|
|
|
262
|
|
|
|
263
|
|
|
} |
|
|
|
|
264
|
|
|
|