v2board/app/Console/Commands/V2boardInstall.php

118 lines
3.4 KiB
PHP
Raw Normal View History

2019-12-19 21:53:47 +08:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
2020-02-08 15:45:23 +08:00
use Illuminate\Encryption\Encrypter;
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
}
2020-02-08 15:26:18 +08:00
if (!\File::exists(base_path() . '/.env')) {
2020-02-08 15:43:13 +08:00
if (!copy(base_path() . '/.env.example', base_path() . '/.env')) {
2020-02-08 15:26:18 +08:00
abort(500, '复制环境文件失败,请检查目录权限');
}
}
$this->saveToEnv([
2020-02-08 15:45:23 +08:00
'APP_KEY' => 'base64:' . base64_encode(Encrypter::generateKey('AES-256-CBC')),
2020-02-08 15:26:18 +08:00
'DB_HOST' => $this->ask('请输入数据库地址(默认:localhost', 'localhost'),
'DB_DATABASE' => $this->ask('请输入数据库名'),
'DB_USERNAME' => $this->ask('请输入数据库用户名'),
'DB_PASSWORD' => $this->ask('请输入数据库密码')
]);
\Artisan::call('config:clear');
2019-12-19 22:00:03 +08:00
\Artisan::call('config:cache');
2020-02-08 15:26:18 +08:00
if (!DB::connection()->getPdo()) {
abort(500, '数据库连接失败');
}
2020-01-29 17:10:10 +08:00
$file = \File::get(base_path() . '/database/install.sql');
2020-01-11 13:36:52 +08:00
if (!$file) {
abort(500, '数据库文件不存在');
}
$sql = str_replace("\n", "", $file);
$sql = preg_split("/;/", $sql);
if (!is_array($sql)) {
abort(500, '数据库文件格式有误');
}
$this->info('正在导入数据库请稍等...');
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) {
2020-01-11 13:36:52 +08:00
$email = $this->ask('请输入管理员邮箱?');
2019-12-19 22:22:31 +08:00
}
$password = '';
while (!$password) {
2020-01-11 13:36:52 +08:00
$password = $this->ask('请输入管理员密码?');
2019-12-19 22:22:31 +08:00
}
if (!$this->registerAdmin($email, $password)) {
2020-01-11 13:36:52 +08:00
abort(500, '管理员账号注册失败,请重试');
2019-12-19 22:22:31 +08:00
}
2020-01-11 13:36:52 +08:00
$this->info('一切就绪');
2019-12-19 22:03:01 +08:00
\File::put(base_path() . '/.lock', time());
2019-12-19 21:53:47 +08:00
}
2020-01-11 13:36:52 +08:00
private function registerAdmin($email, $password)
{
2019-12-19 22:22:31 +08:00
$user = new User();
$user->email = $email;
2020-01-14 19:48:18 +08:00
if (strlen($password) < 8) {
abort(500, '管理员密码长度最小为8位字符');
}
2019-12-19 22:22:31 +08:00
$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();
}
2020-02-08 15:26:18 +08:00
private function saveToEnv($data = [])
{
foreach($data as $key => $value) {
set_env_var($key, $value);
}
return true;
}
2019-12-19 21:53:47 +08:00
}