MigrateCreateCommand.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. /**
  3. * @filename MigrateCreateCommand.php
  4. * @createdAt 2020/1/21
  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\Util\Util;
  14. use think\console\Input;
  15. use think\console\input\Argument as InputArgument;
  16. use think\console\Output;
  17. use think\exception\InvalidArgumentException;
  18. use think\migration\command\migrate\Create;
  19. class MigrateCreateCommand extends Create
  20. {
  21. /*
  22. *
  23. * {@inheritdoc}
  24. */
  25. protected function configure()
  26. {
  27. $this->setName('catch-migrate:create')
  28. ->setDescription('Create a new migration')
  29. ->addArgument('module', InputArgument::REQUIRED, 'the module where you create')
  30. ->addArgument('name', InputArgument::REQUIRED, 'What is the name of the migration?')
  31. ->setHelp(sprintf('%sCreates a new database migration%s', PHP_EOL, PHP_EOL));
  32. }
  33. /**
  34. * Create the new migration.
  35. *
  36. * @param Input $input
  37. * @param Output $output
  38. * @return void
  39. * @throws InvalidArgumentException
  40. * @throws RuntimeException
  41. */
  42. protected function execute(Input $input, Output $output)
  43. {
  44. $module = $input->getArgument('module');
  45. $className = $input->getArgument('name');
  46. $path = $this->create($module, $className);
  47. $output->writeln('<info>created</info> .' . str_replace(getcwd(), '', realpath($path)));
  48. }
  49. /**
  50. *
  51. * @time 2020年01月21日
  52. * @param $module
  53. * @param $className
  54. * @return string
  55. */
  56. protected function create($module, $className): string
  57. {
  58. $path = CatchAdmin::makeDirectory(CatchAdmin::moduleMigrationsDirectory($module));
  59. if (!Util::isValidPhinxClassName($className)) {
  60. throw new InvalidArgumentException(sprintf('The migration class name "%s" is invalid. Please use CamelCase format.', $className));
  61. }
  62. if (!Util::isUniqueMigrationClassName($className, $path)) {
  63. throw new InvalidArgumentException(sprintf('The migration class name "%s" already exists', $className));
  64. }
  65. // Compute the file path
  66. $fileName = Util::mapClassNameToFileName($className);
  67. $filePath = $path . DIRECTORY_SEPARATOR . $fileName;
  68. if (is_file($filePath)) {
  69. throw new InvalidArgumentException(sprintf('The file "%s" already exists', $filePath));
  70. }
  71. // Verify that the template creation class (or the aliased class) exists and that it implements the required interface.
  72. $aliasedClassName = null;
  73. // Load the alternative template if it is defined.
  74. $contents = file_get_contents($this->getTemplate());
  75. // inject the class names appropriate to this migration
  76. $contents = strtr($contents, [
  77. 'MigratorClass' => $className,
  78. ]);
  79. if (false === file_put_contents($filePath, $contents)) {
  80. throw new RuntimeException(sprintf('The file "%s" could not be written to', $path));
  81. }
  82. return $filePath;
  83. }
  84. protected function getTemplate()
  85. {
  86. return __DIR__ . '/stubs/migrate.stub';
  87. }
  88. }