我为迁移创建了一个基类。目前我运行artisan migrate命令,它创建了一个扩展Migrations文件的新迁移,但是我希望包含我的BaseMigration并从那里扩展它。我一直在做这种改变,但我觉得我在不必要地重复自己。
有关如何进行新迁移的任何建议都会自动扩展并加载我的基本迁移?
答案 0 :(得分:9)
至少在Laravel 5中,这是可行的,至少在Laravel 5
中子类MigrationCreator
并覆盖getStubPath()
,只需从原始类复制该函数(它将使用您的子类的__DIR__
)
<?php
namespace App\Database;
use Illuminate\Database\Migrations\MigrationCreator;
class AppMigrationCreator extends MigrationCreator
{
public function getStubPath()
{
return __DIR__.'/stubs';
}
}
编写服务提供程序以使用您自己的子类覆盖migration.creator
(它必须是延迟服务提供程序,因为您无法使用急切的绑定覆盖延迟绑定):
<?php
namespace App\Database;
use Illuminate\Support\ServiceProvider;
class AppMigrationServiceProvider extends ServiceProvider
{
protected $defer = true;
public function register()
{
$this->app->singleton('migration.creator', function ($app) {
return new AppMigrationCreator($app['files']);
});
}
public function provides()
{
return ['migration.creator'];
}
}
将您的服务提供商添加到config/app.php
之后默认服务提供商。
最后,将vendor/laravel/framework/src/Illuminate/Database/Migrations/stubs
与您的MigrationCreator子类一起复制(在此示例中,它将变为app/Database/stubs
)并根据您的需要编辑模板。
保留DummyClass
和DummyTable
名称,因为它们已替换为str_replace()
以创建实际的迁移文件。
答案 1 :(得分:4)
我认为你不能,因为Laravel从vendor/laravel/framework/src/Illuminate/Database/Migrations/stubs
文件夹中进行迁移,你不能改变它,但你有一些选择:
1)创建自己的工匠命令migrate:makemyown
。
2)使用Jeffrey Way's Laravel 4 Generators。他们允许您通过执行以下操作来创建迁移:
php artisan generate:migration create_posts_table --fields="title:string, description:text"
如果你只需要一些字段,而不是那些比这更具体的字段,它就可以正常工作。
3)编辑Laravel存根,但问题是,只要你composer update
他们可能被Composer覆盖。
答案 2 :(得分:3)
我相信没有办法覆盖它(暂时),但我认为您可以创建使用Laravel逻辑的自定义命令。这是为Laravel 5创建的。
首先,您必须创建生成器命令app/Console/Commands/Generator.php
:
<?php namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;
use Symfony\Component\Console\Input\InputArgument;
class Generator extends Command
{
/**
* Command name
*
* @var string
*/
protected $name = 'generate';
/**
* Command description
*
* @var string
*/
protected $description = 'Custom object generator';
/**
* An array with all available generator classes
*
* @var array
*/
protected $types = ['request', 'model', 'middleware'];
/**
* Execute command
*
* @return mixed
*/
public function handle()
{
$type = $this->argument('type');
if (!in_array($type, $this->types)) {
return $this->error('Type must be one of: '.implode(', ', $this->types));
}
// Create new instance
$generatorClass = 'App\Console\Commands\Generators\\'.ucfirst($type);
$generator = new $generatorClass(new Filesystem());
// Each generator has "fire" method
$this->comment($generator->setClassName($this->argument('name'))->fire());
}
/**
* @return array
*/
public function getArguments()
{
return [
['type', InputArgument::REQUIRED, 'Type of class to generate: '.implode(', ', $this->types)],
['name', InputArgument::REQUIRED, 'Name of class to generate'],
];
}
}
然后,您必须为所有Generators类app/Console/Commands/Generators/Generator.php
创建一个抽象类:
<?php namespace App\Console\Commands\Generators;
use Illuminate\Console\GeneratorCommand;
abstract class Generator extends GeneratorCommand
{
// Directory name with whole application (by default app)
const APP_PATH = 'app';
/*
* Name and description of command wont be used
* Generators Commands are not loaded via Kernel
* Name and description property has been put just to avoid Exception thrown by Symfony Command class
*/
protected $name = 'fake';
protected $description = 'fake';
/**
* Class name to generate
*
* @var string
*/
protected $className;
/**
* Returns class name to generate
*
* @return string
*/
protected function getNameInput()
{
return $this->className;
}
/**
* Returns path under which class should be generated
*
* @param string $name
* @return string
*/
protected function getPath($name)
{
$name = str_replace($this->getAppNamespace(), '', $name);
return self::APP_PATH.'/'.str_replace('\\', '/', $name).'.php';
}
/**
* Sets class name to generate
*
* @param string $name
* @return $this
*/
public function setClassName($name)
{
$this->className = $name;
return $this;
}
/**
* Execute command
*
* @return string
*/
public function fire()
{
$name = $this->parseName($this->getNameInput());
if ($this->files->exists($path = $this->getPath($name)))
{
return $this->type.' already exists!';
}
$this->makeDirectory($path);
$this->files->put($path, $this->buildClass($name));
return $this->type.' '.$this->className.' created successfully.';
}
}
最后,您可以创建第一个Generator类! app/Console/Commands/Generators/Request.php
<?php namespace App\Console\Commands\Generators;
class Request extends Generator
{
/**
* Class type to generate
*
* @var string
*/
protected $type = 'Request';
/**
* Returns default namespace for objects being generated
*
* @param string $rootNamespace
* @return string
*/
protected function getDefaultNamespace($rootNamespace)
{
return $rootNamespace.'\Http\Requests';
}
/**
* Returns path to custom stub
*
* @return string
*/
public function getStub()
{
return base_path('resources').'/stubs/request.stub';
}
}
别忘了将生成命令添加到内核app/Console/Kernel.php
:
<?php namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel {
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
...
'App\Console\Commands\Generator',
...
];
将您的存根放在resources/stubs
目录下。让我们为请求生成器resources/stubs/request.stub
创建第一个:
<?php namespace {{namespace}};
class {{class}} extends Request
{
/**
* @return bool
*/
public function authorize()
{
// CUSTOM LOGIC
return false;
}
/**
* @return array
*/
public function rules()
{
$rules = [];
// CUSTOM LOGIC
return $rules;
}
}
然后拨打php artisan generate request MyRequest
。
您可以创建自定义模型,中间件,控制器等生成器,它非常简单 - 您必须在app/Commands/Console/Generators
下创建新的生成器类 - 请查看Request.php
生成器看看它是如何运作的!
答案 3 :(得分:3)
从Laravel 7开始,您可以使用php artisan stub:publish
publish stubs。
已发布的存根将位于应用程序根目录中的
stubs
目录中。您使用Artisanmake
命令生成它们的相应类时,将反映您对这些存根所做的任何更改。
答案 4 :(得分:-4)
对于Laravel 5,您可以编辑其中一个.stub
文件:
vendor/laravel/framework/src/Illuminate/Database/Migrations/stubs
没有理由不能编辑这些文件。
在vendor/laravel/framework/src/
中搜索.stub
个文件,找到工匠使用的所有其他存根(模板)。