-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathMigrateCommand.php
More file actions
202 lines (179 loc) · 6.9 KB
/
MigrateCommand.php
File metadata and controls
202 lines (179 loc) · 6.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
<?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\Event\EventDispatcherTrait;
use DateTime;
use Exception;
use LogicException;
use Migrations\Config\ConfigInterface;
use Migrations\Migration\ManagerFactory;
use Throwable;
/**
* Migrate command runs migrations
*/
class MigrateCommand extends Command
{
/**
* @use \Cake\Event\EventDispatcherTrait<\Migrations\Command\MigrateCommand>
*/
use EventDispatcherTrait;
/**
* The default name added to the application command list
*
* @return string
*/
public static function defaultName(): string
{
return 'migrations migrate';
}
/**
* 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([
'Apply migrations to a SQL datasource',
'',
'Will run all available migrations, optionally up to a specific version',
'',
'<info>migrations migrate --connection secondary</info>',
'<info>migrations migrate --connection secondary --target 003</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('target', [
'short' => 't',
'help' => 'The target version to migrate to.',
])->addOption('date', [
'short' => 'd',
'help' => 'The date to migrate to',
])->addOption('count', [
'short' => 'k',
'help' => 'The number of migrations to run',
])->addOption('fake', [
'help' => "Mark any migrations selected as run, but don't actually execute them",
'boolean' => true,
])->addOption('dry-run', [
'short' => 'x',
'help' => 'Dump queries to stdout instead of executing them',
'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.beforeMigrate');
if ($event->isStopped()) {
return $event->getResult() ? self::CODE_SUCCESS : self::CODE_ERROR;
}
$result = $this->executeMigrations($args, $io);
$this->dispatchEvent('Migration.afterMigrate');
return $result;
}
/**
* Execute migrations based on console inputs.
*
* @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
*/
protected function executeMigrations(Arguments $args, ConsoleIo $io): ?int
{
$version = $args->getOption('target') !== null ? (int)$args->getOption('target') : null;
$date = $args->getOption('date');
$fake = (bool)$args->getOption('fake');
$count = $args->getOption('count') !== null ? (int)$args->getOption('count') : null;
if ($count !== null && $count < 1) {
throw new LogicException('Count must be > 0.');
}
if ($count && $date) {
throw new LogicException('Can only use one of `--count` or `--date` options at a time.');
}
if ($version && $date) {
throw new LogicException('Can only use one of `--version` or `--date` options at a time.');
}
$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();
$versionOrder = $config->getVersionOrder();
if ($config->isDryRun()) {
$io->info('DRY-RUN mode enabled');
}
$io->verbose('<info>using connection</info> ' . (string)$args->getOption('connection'));
$io->verbose('<info>using paths</info> ' . $config->getMigrationPath());
$io->verbose('<info>ordering by</info> ' . $versionOrder . ' time');
if ($fake) {
$io->out('<warning>warning</warning> performing fake migrations');
}
try {
// run the migrations
$start = microtime(true);
if ($date !== null) {
$manager->migrateToDateTime(new DateTime((string)$date), $fake);
} else {
$manager->migrate($version, $fake, $count);
}
$end = microtime(true);
} catch (Exception $e) {
$io->err('<error>' . $e->getMessage() . '</error>');
$io->verbose($e->getTraceAsString());
return self::CODE_ERROR;
} 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;
}
}