%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/nwidart/laravel-modules/src/Commands/ |
Upload File : |
<?php
namespace Nwidart\Modules\Commands;
use Illuminate\Support\Str;
use Nwidart\Modules\Support\Config\GenerateConfigReader;
use Nwidart\Modules\Support\Stub;
use Nwidart\Modules\Traits\ModuleCommandTrait;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
class ModelMakeCommand extends GeneratorCommand
{
use ModuleCommandTrait;
/**
* The name of argument name.
*
* @var string
*/
protected $argumentName = 'model';
/**
* The console command name.
*
* @var string
*/
protected $name = 'module:make-model';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Create a new model for the specified module.';
public function handle(): int
{
if (parent::handle() === E_ERROR) {
return E_ERROR;
}
$this->handleOptionalMigrationOption();
$this->handleOptionalControllerOption();
$this->handleOptionalSeedOption();
$this->handleOptionalRequestOption();
return 0;
}
/**
* Create a proper migration name:
* ProductDetail: product_details
* Product: products
* @return string
*/
private function createMigrationName()
{
$pieces = preg_split('/(?=[A-Z])/', $this->argument('model'), -1, PREG_SPLIT_NO_EMPTY);
$string = '';
foreach ($pieces as $i => $piece) {
if ($i+1 < count($pieces)) {
$string .= strtolower($piece) . '_';
} else {
$string .= Str::plural(strtolower($piece));
}
}
return $string;
}
/**
* Get the console command arguments.
*
* @return array
*/
protected function getArguments()
{
return [
['model', InputArgument::REQUIRED, 'The name of model will be created.'],
['module', InputArgument::OPTIONAL, 'The name of module will be used.'],
];
}
/**
* Get the console command options.
*
* @return array
*/
protected function getOptions()
{
return [
['fillable', null, InputOption::VALUE_OPTIONAL, 'The fillable attributes.', null],
['migration', 'm', InputOption::VALUE_NONE, 'Flag to create associated migrations', null],
['controller', 'c', InputOption::VALUE_NONE, 'Flag to create associated controllers', null],
['seed', 's', InputOption::VALUE_NONE, 'Create a new seeder for the model', null],
['request', 'r', InputOption::VALUE_NONE, 'Create a new request for the model', null]
];
}
/**
* Create the migration file with the given model if migration flag was used
*/
private function handleOptionalMigrationOption()
{
if ($this->option('migration') === true) {
$migrationName = 'create_' . $this->createMigrationName() . '_table';
$this->call('module:make-migration', ['name' => $migrationName, 'module' => $this->argument('module')]);
}
}
/**
* Create the controller file for the given model if controller flag was used
*/
private function handleOptionalControllerOption()
{
if ($this->option('controller') === true) {
$controllerName = "{$this->getModelName()}Controller";
$this->call('module:make-controller', array_filter([
'controller' => $controllerName,
'module' => $this->argument('module'),
]));
}
}
/**
* Create a seeder file for the model.
*
* @return void
*/
protected function handleOptionalSeedOption()
{
if ($this->option('seed') === true) {
$seedName = "{$this->getModelName()}Seeder";
$this->call('module:make-seed', array_filter([
'name' => $seedName,
'module' => $this->argument('module')
]));
}
}
/**
* Create a request file for the model.
*
* @return void
*/
protected function handleOptionalRequestOption()
{
if ($this->option('request') === true) {
$requestName = "{$this->getModelName()}Request";
$this->call('module:make-request', array_filter([
'name' => $requestName,
'module' => $this->argument('module')
]));
}
}
/**
* @return mixed
*/
protected function getTemplateContents()
{
$module = $this->laravel['modules']->findOrFail($this->getModuleName());
return (new Stub('/model.stub', [
'NAME' => $this->getModelName(),
'FILLABLE' => $this->getFillable(),
'NAMESPACE' => $this->getClassNamespace($module),
'CLASS' => $this->getClass(),
'LOWER_NAME' => $module->getLowerName(),
'MODULE' => $this->getModuleName(),
'STUDLY_NAME' => $module->getStudlyName(),
'MODULE_NAMESPACE' => $this->laravel['modules']->config('namespace'),
]))->render();
}
/**
* @return mixed
*/
protected function getDestinationFilePath()
{
$path = $this->laravel['modules']->getModulePath($this->getModuleName());
$modelPath = GenerateConfigReader::read('model');
return $path . $modelPath->getPath() . '/' . $this->getModelName() . '.php';
}
/**
* @return mixed|string
*/
private function getModelName()
{
return Str::studly($this->argument('model'));
}
/**
* @return string
*/
private function getFillable()
{
$fillable = $this->option('fillable');
if (!is_null($fillable)) {
$arrays = explode(',', $fillable);
return json_encode($arrays);
}
return '[]';
}
/**
* Get default namespace.
*
* @return string
*/
public function getDefaultNamespace(): string
{
$module = $this->laravel['modules'];
return $module->config('paths.generator.model.namespace') ?: $module->config('paths.generator.model.path', 'Entities');
}
}