|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace Illuminate\Database\Console\Migrations; |
| 4 | + |
| 5 | +use Illuminate\Console\Command; |
| 6 | +use Illuminate\Console\ConfirmableTrait; |
| 7 | +use Symfony\Component\Console\Input\InputOption; |
| 8 | + |
| 9 | +class FreshCommand extends Command |
| 10 | +{ |
| 11 | + use ConfirmableTrait; |
| 12 | + |
| 13 | + /** |
| 14 | + * The console command name. |
| 15 | + * |
| 16 | + * @var string |
| 17 | + */ |
| 18 | + protected $name = 'migrate:fresh'; |
| 19 | + |
| 20 | + /** |
| 21 | + * The console command description. |
| 22 | + * |
| 23 | + * @var string |
| 24 | + */ |
| 25 | + protected $description = 'Drop all tables and re-run all migrations'; |
| 26 | + |
| 27 | + /** |
| 28 | + * Execute the console command. |
| 29 | + * |
| 30 | + * @return void |
| 31 | + */ |
| 32 | + public function fire() |
| 33 | + { |
| 34 | + if (! $this->confirmToProceed()) { |
| 35 | + return; |
| 36 | + } |
| 37 | + |
| 38 | + $this->dropAllTables( |
| 39 | + $database = $this->input->getOption('database') |
| 40 | + ); |
| 41 | + |
| 42 | + $this->call('migrate', [ |
| 43 | + '--database' => $database, |
| 44 | + '--path' => $this->input->getOption('path'), |
| 45 | + '--force' => $this->input->getOption('force'), |
| 46 | + ]); |
| 47 | + |
| 48 | + if ($this->needsSeeding()) { |
| 49 | + $this->runSeeder($database); |
| 50 | + } |
| 51 | + } |
| 52 | + |
| 53 | + /** |
| 54 | + * Drop all of the database tables. |
| 55 | + * |
| 56 | + * @param string $database |
| 57 | + * @return void |
| 58 | + */ |
| 59 | + protected function dropAllTables($database) |
| 60 | + { |
| 61 | + $this->laravel['db']->connection($database) |
| 62 | + ->getSchemaBuilder() |
| 63 | + ->dropAllTables(); |
| 64 | + } |
| 65 | + |
| 66 | + /** |
| 67 | + * Determine if the developer has requested database seeding. |
| 68 | + * |
| 69 | + * @return bool |
| 70 | + */ |
| 71 | + protected function needsSeeding() |
| 72 | + { |
| 73 | + return $this->option('seed') || $this->option('seeder'); |
| 74 | + } |
| 75 | + |
| 76 | + /** |
| 77 | + * Run the database seeder command. |
| 78 | + * |
| 79 | + * @param string $database |
| 80 | + * @return void |
| 81 | + */ |
| 82 | + protected function runSeeder($database) |
| 83 | + { |
| 84 | + $this->call('db:seed', [ |
| 85 | + '--database' => $database, |
| 86 | + '--class' => $this->option('seeder') ?: 'DatabaseSeeder', |
| 87 | + '--force' => $this->option('force'), |
| 88 | + ]); |
| 89 | + } |
| 90 | + |
| 91 | + /** |
| 92 | + * Get the console command options. |
| 93 | + * |
| 94 | + * @return array |
| 95 | + */ |
| 96 | + protected function getOptions() |
| 97 | + { |
| 98 | + return [ |
| 99 | + ['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use.'], |
| 100 | + |
| 101 | + ['force', null, InputOption::VALUE_NONE, 'Force the operation to run when in production.'], |
| 102 | + |
| 103 | + ['path', null, InputOption::VALUE_OPTIONAL, 'The path of migrations files to be executed.'], |
| 104 | + |
| 105 | + ['seed', null, InputOption::VALUE_NONE, 'Indicates if the seed task should be re-run.'], |
| 106 | + |
| 107 | + ['seeder', null, InputOption::VALUE_OPTIONAL, 'The class name of the root seeder.'], |
| 108 | + ]; |
| 109 | + } |
| 110 | +} |
0 commit comments