%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/graphicd/public_html/vebto/common/Generators/Controller/
Upload File :
Create Path :
Current File : /home/graphicd/public_html/vebto/common/Generators/Controller/GenerateController.php

<?php

namespace Common\Generators\Controller;

use Illuminate\Routing\Console\ControllerMakeCommand;
use Illuminate\Support\Str;

class GenerateController extends ControllerMakeCommand
{
    public function handle()
    {
        if (parent::handle() !== false) {
            // add route
            $path = base_path('routes/web.php');
            if ($this->option('model')) {
                $marker = "});";
                file_put_contents($path, str_replace(
                    $marker,
                    "\n{$this->getRouteStub()}\n{$marker}",
                    file_get_contents($path)
                ));
            }
        }
    }

    protected function getRouteStub()
    {
        $resourceName = Str::kebab(class_basename($this->option('model')));
        $resourceComment = strtoupper(Str::title($this->option('model')));
        return str_replace(
            ['dummyResourceName', 'dummyControllerName', 'dummyResourceComment'],
            [$resourceName, $this->getNameInput(), $resourceComment],
            file_get_contents(__DIR__ . '/stubs/route.resource.stub')
        );
    }

    protected function buildClass($name)
    {
        $modelClass = $this->parseModel($this->option('model'));
        $modelName = class_basename($modelClass);
        return str_replace('DummyModelName', $modelName, parent::buildClass($name));
    }

    protected function getStub()
    {
        if ($this->option('model')) {
            return __DIR__ . '/stubs/controller.model.stub';
        }

        return parent::getStub();
    }
}

Zerion Mini Shell 1.0