v2board/app/Console/Commands/V2boardInit.php

61 lines
1.2 KiB
PHP
Raw Normal View History

2019-12-19 21:53:47 +08:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;
class V2boardInit extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'v2board:init';
/**
* The console command description.
*
* @var string
*/
protected $description = 'v2board 初始化';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
2019-12-19 22:00:03 +08:00
\Artisan::call('key:generate');
\Artisan::call('config:cache');
DB::connection()->getPdo();
2019-12-19 21:54:28 +08:00
$file = \File::get(base_path() . '/install.sql');
2019-12-19 21:53:47 +08:00
if (!$file) {
2019-12-19 21:54:28 +08:00
abort(500, '数据库文件不存在');
2019-12-19 21:53:47 +08:00
}
$sql = str_replace("\n", "", $file);
$sql = preg_split("/;/", $sql);
if (!is_array($sql)) {
2019-12-19 21:54:28 +08:00
abort(500, '数据库文件格式有误');
2019-12-19 21:53:47 +08:00
}
foreach($sql as $item) {
2019-12-19 21:56:33 +08:00
echo 'RUN ' . $item . "\r\n";
2019-12-19 21:53:47 +08:00
try {
DB::select(DB::raw($item));
} catch (\Exception $e) {}
}
}
}