Created
May 18, 2018 09:06
-
-
Save ar-android/07a601663f29413f02687bfe391df1b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Console\Commands; | |
use Illuminate\Support\Str; | |
use Illuminate\Console\GeneratorCommand; | |
use Symfony\Component\Console\Input\InputOption; | |
class ModelMakeCommand extends GeneratorCommand | |
{ | |
/** | |
* The console command name. | |
* | |
* @var string | |
*/ | |
protected $name = 'make:model'; | |
/** | |
* The console command description. | |
* | |
* @var string | |
*/ | |
protected $description = 'Create a new Eloquent model class'; | |
/** | |
* The type of class being generated. | |
* | |
* @var string | |
*/ | |
protected $type = 'Model'; | |
/** | |
* Execute the console command. | |
* | |
* @return void | |
*/ | |
public function handle() | |
{ | |
if (parent::handle() === false && ! $this->option('force')) { | |
return; | |
} | |
if ($this->option('all')) { | |
$this->input->setOption('factory', true); | |
$this->input->setOption('migration', true); | |
$this->input->setOption('controller', true); | |
$this->input->setOption('resource', true); | |
} | |
if ($this->option('factory')) { | |
$this->createFactory(); | |
} | |
if ($this->option('migration')) { | |
$this->createMigration(); | |
} | |
if ($this->option('controller') || $this->option('resource')) { | |
$this->createController(); | |
} | |
} | |
/** | |
* Create a model factory for the model. | |
* | |
* @return void | |
*/ | |
protected function createFactory() | |
{ | |
$factory = Str::studly(class_basename($this->argument('name'))); | |
$this->call('make:factory', [ | |
'name' => "{$factory}Factory", | |
'--model' => $this->argument('name'), | |
]); | |
} | |
/** | |
* Create a migration file for the model. | |
* | |
* @return void | |
*/ | |
protected function createMigration() | |
{ | |
$table = Str::plural(Str::snake(class_basename($this->argument('name')))); | |
$this->call('make:migration', [ | |
'name' => "create_{$table}_table", | |
'--create' => $table, | |
]); | |
} | |
/** | |
* Create a controller for the model. | |
* | |
* @return void | |
*/ | |
protected function createController() | |
{ | |
$controller = Str::studly(class_basename($this->argument('name'))); | |
$modelName = $this->qualifyClass($this->getNameInput()); | |
$this->call('make:controller', [ | |
'name' => "{$controller}Controller", | |
'--model' => $this->option('resource') ? $modelName : null, | |
]); | |
} | |
/** | |
* Get the stub file for the generator. | |
* | |
* @return string | |
*/ | |
protected function getStub() | |
{ | |
if ($this->option('pivot')) { | |
return __DIR__.'/stubs/pivot.model.stub'; | |
} | |
return __DIR__.'/stubs/model.stub'; | |
} | |
/** | |
* Get the default namespace for the class. | |
* | |
* @param string $rootNamespace | |
* @return string | |
*/ | |
protected function getDefaultNamespace($rootNamespace) | |
{ | |
return $rootNamespace; | |
} | |
/** | |
* Get the console command options. | |
* | |
* @return array | |
*/ | |
protected function getOptions() | |
{ | |
return [ | |
['all', 'a', InputOption::VALUE_NONE, 'Generate a migration, factory, and resource controller for the model'], | |
['controller', 'c', InputOption::VALUE_NONE, 'Create a new controller for the model'], | |
['factory', 'f', InputOption::VALUE_NONE, 'Create a new factory for the model'], | |
['force', null, InputOption::VALUE_NONE, 'Create the class even if the model already exists.'], | |
['migration', 'm', InputOption::VALUE_NONE, 'Create a new migration file for the model.'], | |
['pivot', 'p', InputOption::VALUE_NONE, 'Indicates if the generated model should be a custom intermediate table model.'], | |
['resource', 'r', InputOption::VALUE_NONE, 'Indicates if the generated controller should be a resource controller.'], | |
]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment