v2board/app/Console/Commands/V2boardInstall.php

91 lines
2.2 KiB
PHP
Raw Normal View History

2019-12-19 21:53:47 +08:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
2019-12-19 22:22:31 +08:00
use App\Models\User;
use App\Utils\Helper;
2019-12-19 21:53:47 +08:00
use Illuminate\Support\Facades\DB;
2019-12-22 14:58:49 +08:00
class V2boardInstall extends Command
2019-12-19 21:53:47 +08:00
{
/**
* The name and signature of the console command.
*
* @var string
*/
2019-12-22 14:58:49 +08:00
protected $signature = 'v2board:install';
2019-12-19 21:53:47 +08:00
/**
* The console command description.
*
* @var string
*/
2019-12-22 14:58:49 +08:00
protected $description = 'v2board 安装';
2019-12-19 21:53:47 +08:00
/**
* 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:03:55 +08:00
if (\File::exists(base_path() . '/.lock')) {
2019-12-22 14:58:49 +08:00
abort(500, 'V2board 已安装,如需重新安装请删除目录下.lock文件');
2019-12-19 22:03:01 +08:00
}
2019-12-19 22:00:03 +08:00
\Artisan::call('key:generate');
2019-12-27 15:11:26 +08:00
sleep(2);
2019-12-19 22:00:03 +08:00
\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
}
2019-12-19 22:22:31 +08:00
$this->info('正在导入数据库请稍等...');
2019-12-19 21:53:47 +08:00
foreach($sql as $item) {
try {
DB::select(DB::raw($item));
} catch (\Exception $e) {}
2019-12-19 22:03:01 +08:00
}
2019-12-19 22:22:31 +08:00
$email = '';
while (!$email) {
$email = $this->ask('请输入管理员邮箱?');
}
$password = '';
while (!$password) {
$password = $this->ask('请输入管理员密码?');
}
if (!$this->registerAdmin($email, $password)) {
abort(500, '管理员账号注册失败,请重试');
}
$this->info('一切就绪');
2019-12-19 22:03:01 +08:00
\File::put(base_path() . '/.lock', time());
2019-12-19 21:53:47 +08:00
}
2019-12-19 22:22:31 +08:00
private function registerAdmin ($email, $password) {
$user = new User();
$user->email = $email;
$user->password = password_hash($password, PASSWORD_DEFAULT);
$user->v2ray_uuid = Helper::guid(true);
$user->token = Helper::guid();
2019-12-21 12:38:41 +08:00
$user->is_admin = 1;
2019-12-19 22:22:31 +08:00
return $user->save();
}
2019-12-19 21:53:47 +08:00
}