123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use Illuminate\Support\Collection;
- use Illuminate\Support\Str;
- use Prettus\Repository\Generators\FileAlreadyExistsException;
- use Prettus\Repository\Generators\MigrationGenerator;
- use Prettus\Repository\Generators\ModelGenerator;
- use Prettus\Repository\Generators\RepositoryEloquentGenerator;
- use Prettus\Repository\Generators\RepositoryInterfaceGenerator;
- use Symfony\Component\Console\Input\InputArgument;
- use Symfony\Component\Console\Input\InputOption;
- /**
- * Class RepositoryCommand
- * @package Prettus\Repository\Generators\Commands
- * @author Anderson Andrade <contato@andersonandra.de>
- */
- class RepositoryCommand extends Command
- {
- /**
- * The name of command.
- *
- * @var string
- */
- protected $name = 'make:repository';
- /**
- * The description of command.
- *
- * @var string
- */
- protected $description = 'Create a new repository.';
- /**
- * The type of class being generated.
- *
- * @var string
- */
- protected $type = 'Repository';
- /**
- * @var Collection
- */
- protected $generators = null;
- /**
- * Execute the command.
- *
- * @return void
- * @see fire()
- */
- public function handle()
- {
- $this->laravel->call([$this, 'fire'], func_get_args());
- }
- /**
- * Execute the command.
- *
- * @return void
- */
- public function fire()
- {
- $this->generators = new Collection();
- // $migrationGenerator = new MigrationGenerator([
- // 'name' => 'create_' . Str::snake(Str::plural($this->argument('name'))) . '_table',
- // 'fields' => $this->option('fillable'),
- // 'force' => $this->option('force'),
- // ]);
- // if (!$this->option('skip-migration')) {
- // $this->generators->push($migrationGenerator);
- // }
- $modelGenerator = new ModelGenerator([
- 'name' => $this->argument('name'),
- 'fillable' => $this->option('fillable'),
- 'force' => $this->option('force')
- ]);
- if (!$this->option('skip-model')) {
- $this->generators->push($modelGenerator);
- }
- $this->generators->push(new RepositoryInterfaceGenerator([
- 'name' => $this->argument('name'),
- 'force' => $this->option('force'),
- ]));
- foreach ($this->generators as $generator) {
- $generator->run();
- }
- $model = $modelGenerator->getRootNamespace() . '\\' . $modelGenerator->getName();
- $model = str_replace([
- "\\",
- '/'
- ], '\\', $model);
- try {
- (new RepositoryEloquentGenerator([
- 'name' => $this->argument('name'),
- 'rules' => $this->option('rules'),
- 'validator' => $this->option('validator'),
- 'force' => $this->option('force'),
- 'model' => $model
- ]))->run();
- $this->info("Repository created successfully.");
- } catch (FileAlreadyExistsException $e) {
- $this->error($this->type . ' already exists!');
- return false;
- }
- }
- /**
- * The array of command arguments.
- *
- * @return array
- */
- public function getArguments()
- {
- return [
- [
- 'name',
- InputArgument::REQUIRED,
- 'The name of class being generated.',
- null
- ],
- ];
- }
- /**
- * The array of command options.
- *
- * @return array
- */
- public function getOptions()
- {
- return [
- [
- 'fillable',
- null,
- InputOption::VALUE_OPTIONAL,
- 'The fillable attributes.',
- null
- ],
- [
- 'rules',
- null,
- InputOption::VALUE_OPTIONAL,
- 'The rules of validation attributes.',
- null
- ],
- [
- 'validator',
- null,
- InputOption::VALUE_OPTIONAL,
- 'Adds validator reference to the repository.',
- null
- ],
- [
- 'force',
- 'f',
- InputOption::VALUE_NONE,
- 'Force the creation if file already exists.',
- null
- ],
- [
- 'skip-migration',
- null,
- InputOption::VALUE_NONE,
- 'Skip the creation of a migration file.',
- null,
- ],
- [
- 'skip-model',
- null,
- InputOption::VALUE_NONE,
- 'Skip the creation of a model.',
- null,
- ],
- ];
- }
- }
|