mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-06 01:52:48 +08:00
修复seeder错误;删除第三方的think迁移工具,在extend中重新实现;
This commit is contained in:
78
extend/think/migration/command/Seed.php
Normal file
78
extend/think/migration/command/Seed.php
Normal file
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016 http://thinkphp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: yunwuxin <448901948@qq.com>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace think\migration\command;
|
||||
|
||||
use InvalidArgumentException;
|
||||
use Phinx\Seed\AbstractSeed;
|
||||
use Phinx\Util\Util;
|
||||
use think\migration\Command;
|
||||
use think\migration\Seeder;
|
||||
|
||||
abstract class Seed extends Command
|
||||
{
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $seeds;
|
||||
|
||||
protected function getPath()
|
||||
{
|
||||
return $this->app->getRootPath() . 'database' . DIRECTORY_SEPARATOR . 'seeds';
|
||||
}
|
||||
|
||||
public function getSeeds()
|
||||
{
|
||||
if (null === $this->seeds) {
|
||||
$phpFiles = glob($this->getPath() . DIRECTORY_SEPARATOR . '*.php', defined('GLOB_BRACE') ? GLOB_BRACE : 0);
|
||||
|
||||
// filter the files to only get the ones that match our naming scheme
|
||||
$fileNames = [];
|
||||
/** @var Seeder[] $seeds */
|
||||
$seeds = [];
|
||||
|
||||
foreach ($phpFiles as $filePath) {
|
||||
if (Util::isValidSeedFileName(basename($filePath))) {
|
||||
// convert the filename to a class name
|
||||
$class = pathinfo($filePath, PATHINFO_FILENAME);
|
||||
$fileNames[$class] = basename($filePath);
|
||||
|
||||
// load the seed file
|
||||
/** @noinspection PhpIncludeInspection */
|
||||
require_once $filePath;
|
||||
if (!class_exists($class)) {
|
||||
throw new InvalidArgumentException(sprintf('Could not find class "%s" in file "%s"', $class, $filePath));
|
||||
}
|
||||
|
||||
// instantiate it
|
||||
$seed = new $class($this->input, $this->output);
|
||||
|
||||
if (!($seed instanceof AbstractSeed)) {
|
||||
throw new InvalidArgumentException(sprintf('The class "%s" in file "%s" must extend \Phinx\Seed\AbstractSeed', $class, $filePath));
|
||||
}
|
||||
|
||||
if($seed instanceof Seeder){
|
||||
$seed->setInput($this->input);
|
||||
$seed->setOutput($this->output);
|
||||
}
|
||||
|
||||
$seeds[$class] = $seed;
|
||||
}
|
||||
}
|
||||
|
||||
ksort($seeds);
|
||||
$this->seeds = $seeds;
|
||||
}
|
||||
|
||||
return $this->seeds;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user