-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathResetCommand.php
More file actions
282 lines (243 loc) · 9 KB
/
ResetCommand.php
File metadata and controls
282 lines (243 loc) · 9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<?php
declare(strict_types=1);
/**
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @license https://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Migrations\Command;
use Cake\Command\Command;
use Cake\Console\Arguments;
use Cake\Console\ConsoleIo;
use Cake\Console\ConsoleOptionParser;
use Cake\Database\Connection;
use Cake\Datasource\ConnectionManager;
use Cake\Event\EventDispatcherTrait;
use Migrations\Config\ConfigInterface;
use Migrations\Db\Adapter\AdapterInterface;
use Migrations\Db\Adapter\DirectActionInterface;
use Migrations\Migration\ManagerFactory;
use RuntimeException;
use Throwable;
/**
* Reset command drops all tables and re-runs all migrations.
*
* This is a destructive operation intended for development use.
*/
class ResetCommand extends Command
{
/**
* @use \Cake\Event\EventDispatcherTrait<\Migrations\Command\ResetCommand>
*/
use EventDispatcherTrait;
/**
* The default name added to the application command list
*
* @return string
*/
public static function defaultName(): string
{
return 'migrations reset';
}
/**
* Configure the option parser
*
* @param \Cake\Console\ConsoleOptionParser $parser The option parser to configure
* @return \Cake\Console\ConsoleOptionParser
*/
public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser
{
$parser->setDescription([
'Drop all tables and re-run all migrations.',
'',
'<warning>This is a destructive operation!</warning>',
'All data in the database will be lost.',
'',
'<info>migrations reset</info>',
'<info>migrations reset -c secondary</info>',
'<info>migrations reset --dry-run</info>',
])->addOption('plugin', [
'short' => 'p',
'help' => 'The plugin to run migrations for',
])->addOption('connection', [
'short' => 'c',
'help' => 'The datasource connection to use',
'default' => 'default',
])->addOption('source', [
'short' => 's',
'default' => ConfigInterface::DEFAULT_MIGRATION_FOLDER,
'help' => 'The folder where your migrations are',
])->addOption('dry-run', [
'short' => 'x',
'help' => 'Preview what tables would be dropped without making changes',
'boolean' => true,
])->addOption('no-lock', [
'help' => 'If present, no lock file will be generated after migrating',
'boolean' => true,
]);
return $parser;
}
/**
* Execute the command.
*
* @param \Cake\Console\Arguments $args The command arguments.
* @param \Cake\Console\ConsoleIo $io The console io
* @return int|null The exit code or null for success
*/
public function execute(Arguments $args, ConsoleIo $io): ?int
{
$event = $this->dispatchEvent('Migration.beforeReset');
if ($event->isStopped()) {
return $event->getResult() ? self::CODE_SUCCESS : self::CODE_ERROR;
}
$connectionName = (string)$args->getOption('connection');
/** @var \Cake\Database\Connection $connection */
$connection = ConnectionManager::get($connectionName);
$dryRun = (bool)$args->getOption('dry-run');
if ($dryRun) {
$io->out('<warning>DRY-RUN mode enabled - no changes will be made</warning>');
$io->out('');
}
// Get tables to drop
$tablesToDrop = $this->getTablesToDrop($connection);
if (empty($tablesToDrop)) {
$io->out('<info>No tables to drop.</info>');
$io->out('');
$io->out('Running migrations...');
return $this->runMigrationsAndDispatch($args, $io);
}
// Show what will be dropped
$io->out('<warning>The following tables will be dropped:</warning>');
foreach ($tablesToDrop as $table) {
$io->out(' - ' . $table);
}
$io->out('');
// Ask for confirmation (unless dry-run)
if (!$dryRun) {
$continue = $io->askChoice(
'This will permanently delete all data. Do you want to continue?',
['y', 'n'],
'n',
);
if ($continue !== 'y') {
$io->warning('Reset operation aborted.');
return self::CODE_SUCCESS;
}
}
// Drop tables
$io->out('');
if (!$dryRun) {
$factory = new ManagerFactory([
'plugin' => $args->getOption('plugin'),
'source' => $args->getOption('source'),
'connection' => $args->getOption('connection'),
]);
$manager = $factory->createManager($io);
$adapter = $manager->getEnvironment()->getAdapter();
$this->dropTables($adapter, $tablesToDrop, $io);
} else {
$io->info('DRY-RUN: Would drop ' . count($tablesToDrop) . ' table(s).');
}
$io->out('');
// Re-run migrations
if (!$dryRun) {
return $this->runMigrationsAndDispatch($args, $io);
}
$io->info('DRY-RUN: Would re-run all migrations.');
return self::CODE_SUCCESS;
}
/**
* Get list of tables to drop.
*
* @param \Cake\Database\Connection $connection Database connection
* @return array<string> List of table names
*/
protected function getTablesToDrop(Connection $connection): array
{
$schema = $connection->getDriver()->schemaDialect();
return $schema->listTables();
}
/**
* Drop tables with foreign key handling.
*
* @param \Migrations\Db\Adapter\AdapterInterface $adapter The adapter
* @param array<string> $tables Tables to drop
* @param \Cake\Console\ConsoleIo $io Console IO
* @return void
*/
protected function dropTables(AdapterInterface $adapter, array $tables, ConsoleIo $io): void
{
if (!$adapter instanceof DirectActionInterface) {
throw new RuntimeException('The adapter must implement DirectActionInterface');
}
$adapter->disableForeignKeyConstraints();
try {
foreach ($tables as $table) {
$io->verbose("Dropping table: {$table}");
$adapter->dropTable($table);
}
} finally {
$adapter->enableForeignKeyConstraints();
}
$io->success('Dropped ' . count($tables) . ' table(s).');
}
/**
* Run migrations and dispatch afterReset event.
*
* @param \Cake\Console\Arguments $args The command arguments.
* @param \Cake\Console\ConsoleIo $io The console io
* @return int|null The exit code
*/
protected function runMigrationsAndDispatch(Arguments $args, ConsoleIo $io): ?int
{
$result = $this->runMigrations($args, $io);
$this->dispatchEvent('Migration.afterReset');
return $result;
}
/**
* Run migrations.
*
* @param \Cake\Console\Arguments $args The command arguments.
* @param \Cake\Console\ConsoleIo $io The console io
* @return int|null The exit code
*/
protected function runMigrations(Arguments $args, ConsoleIo $io): ?int
{
$factory = new ManagerFactory([
'plugin' => $args->getOption('plugin'),
'source' => $args->getOption('source'),
'connection' => $args->getOption('connection'),
'dry-run' => (bool)$args->getOption('dry-run'),
]);
$manager = $factory->createManager($io);
$config = $manager->getConfig();
$io->verbose('<info>using connection</info> ' . (string)$args->getOption('connection'));
$io->verbose('<info>using paths</info> ' . $config->getMigrationPath());
try {
$start = microtime(true);
$manager->migrate(null, false, null);
$end = microtime(true);
} catch (Throwable $e) {
$io->err('<error>' . $e->getMessage() . '</error>');
$io->verbose($e->getTraceAsString());
return self::CODE_ERROR;
}
$io->comment('All Done. Took ' . sprintf('%.4fs', $end - $start));
$io->out('');
$exitCode = self::CODE_SUCCESS;
// Run dump command to generate lock file
if (!$args->getOption('no-lock') && !$args->getOption('dry-run')) {
$io->verbose('');
$io->verbose('Dumping the current schema of the database to be used while baking a diff');
$io->verbose('');
$newArgs = DumpCommand::extractArgs($args);
$exitCode = $this->executeCommand(DumpCommand::class, $newArgs, $io);
}
return $exitCode;
}
}