MigrateRollbackCommand.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php
  2. /**
  3. * @filename MigrateRollbackCommand.php
  4. * @createdAt 2020/1/20
  5. * @project https://github.com/yanwenwu/catch-admin
  6. * @document http://doc.catchadmin.com
  7. * @author JaguarJack <njphper@gmail.com>
  8. * @copyright By CatchAdmin
  9. * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
  10. */
  11. namespace catcher\command;
  12. use catcher\CatchAdmin;
  13. use Phinx\Db\Adapter\AdapterFactory;
  14. use Phinx\Migration\MigrationInterface;
  15. use think\console\Input;
  16. use think\console\input\Argument;
  17. use think\console\input\Option as InputOption;
  18. use think\console\Output;
  19. use think\facade\Console;
  20. use think\migration\command\migrate\Rollback;
  21. use think\migration\command\migrate\Run;
  22. class MigrateRollbackCommand extends Rollback
  23. {
  24. protected $module;
  25. protected function configure()
  26. {
  27. $this->setName('catch-migrate:rollback')
  28. ->setDescription('Rollback the last or to a specific migration')
  29. ->addArgument('module', Argument::REQUIRED, 'migrate the module database')
  30. ->addOption('--target', '-t', InputOption::VALUE_REQUIRED, 'The version number to rollback to')
  31. ->addOption('--date', '-d', InputOption::VALUE_REQUIRED, 'The date to rollback to')
  32. ->addOption('--force', '-f', InputOption::VALUE_NONE, 'Force rollback to ignore breakpoints')
  33. ->setHelp(<<<EOT
  34. The <info>catch-migrate:rollback</info> command reverts the last migration, or optionally up to a specific version
  35. <info>php think catch-migrate:rollback</info>
  36. <info>php think catch-migrate:rollback module -t 20111018185412</info>
  37. <info>php think catch-migrate:rollback module -d 20111018</info>
  38. <info>php think catch-migrate:rollback -v</info>
  39. EOT
  40. );
  41. }
  42. /**
  43. * Rollback the migration.
  44. *
  45. * @param Input $input
  46. * @param Output $output
  47. * @return void
  48. */
  49. protected function execute(Input $input, Output $output)
  50. {
  51. $this->module = $input->getArgument('module');
  52. $version = $input->getOption('target');
  53. $date = $input->getOption('date');
  54. $force = !!$input->getOption('force');
  55. // rollback the specified environment
  56. $start = microtime(true);
  57. if (null !== $date) {
  58. $this->rollbackToDateTime(new \DateTime($date), $force);
  59. } else {
  60. if (!$version) {
  61. $migrations = glob(CatchAdmin::moduleMigrationsDirectory($this->module) . '*.php');
  62. foreach ($migrations as $migration) {
  63. $version = explode('_', basename($migration))[0];
  64. $this->rollback($version, $force);
  65. }
  66. } else {
  67. $this->rollback($version, $force);
  68. }
  69. }
  70. $end = microtime(true);
  71. $this->migrations = null;
  72. $output->writeln('');
  73. $output->writeln('<comment>All Done. Took ' . sprintf('%.4fs', $end - $start) . '</comment>');
  74. }
  75. /**
  76. * 获取 migration path
  77. *
  78. * @time 2019年12月03日
  79. * @return string
  80. */
  81. protected function getPath(): string
  82. {
  83. return CatchAdmin::moduleMigrationsDirectory($this->module);
  84. }
  85. /**
  86. *
  87. * @time 2020年01月21日
  88. * @param null $version
  89. * @param bool $force
  90. * @return void
  91. */
  92. protected function rollback($version = null, $force = false)
  93. {
  94. $migrations = $this->getMigrations();
  95. $versionLog = $this->getVersionLog();
  96. $versions = array_keys($versionLog);
  97. if ($version) {
  98. $this->executeMigration($migrations[$version], MigrationInterface::DOWN);
  99. } else {
  100. foreach ($migrations as $key => $migration) {
  101. if (in_array($key, $versions)) {
  102. $this->executeMigration($migration, MigrationInterface::DOWN);
  103. }
  104. }
  105. }
  106. }
  107. }