v2board/app/Console/Commands/V2boardInstall.php

156 lines
5.2 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()
{
2020-02-08 15:49:59 +08:00
try {
2020-02-08 16:19:22 +08:00
$this->info("__ ______ ____ _ ");
$this->info("\ \ / /___ \| __ ) ___ __ _ _ __ __| | ");
$this->info(" \ \ / / __) | _ \ / _ \ / _` | '__/ _` | ");
$this->info(" \ V / / __/| |_) | (_) | (_| | | | (_| | ");
$this->info(" \_/ |_____|____/ \___/ \__,_|_| \__,_| ");
2021-09-07 02:18:45 +08:00
if (\File::exists(base_path() . '/.env')) {
2022-12-19 13:50:37 +08:00
$securePath = config('v2board.secure_path', config('v2board.frontend_admin_path', hash('crc32b', config('app.key'))));
$this->info("访问 http(s)://你的站点/{$securePath} 进入管理面板,你可以在用户中心修改你的密码。");
2022-12-15 10:34:32 +08:00
abort(500, '如需重新安装请删除目录下.env文件');
2020-02-08 16:16:12 +08:00
}
2021-09-07 02:18:45 +08:00
if (!copy(base_path() . '/.env.example', base_path() . '/.env')) {
abort(500, '复制环境文件失败,请检查目录权限');
2020-02-08 16:16:12 +08:00
}
$this->saveToEnv([
'APP_KEY' => 'base64:' . base64_encode(Encrypter::generateKey('AES-256-CBC')),
'DB_HOST' => $this->ask('请输入数据库地址(默认:localhost', 'localhost'),
'DB_DATABASE' => $this->ask('请输入数据库名'),
'DB_USERNAME' => $this->ask('请输入数据库用户名'),
'DB_PASSWORD' => $this->ask('请输入数据库密码')
]);
\Artisan::call('config:clear');
\Artisan::call('config:cache');
2020-01-11 13:36:52 +08:00
try {
2020-02-08 16:16:12 +08:00
DB::connection()->getPdo();
2020-01-11 13:36:52 +08:00
} catch (\Exception $e) {
2020-02-08 16:16:12 +08:00
abort(500, '数据库连接失败');
}
$file = \File::get(base_path() . '/database/install.sql');
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) {
}
}
$this->info('数据库导入完成');
$email = '';
while (!$email) {
$email = $this->ask('请输入管理员邮箱?');
}
2022-12-14 22:12:28 +08:00
$password = Helper::guid(false);
2020-02-08 16:16:12 +08:00
if (!$this->registerAdmin($email, $password)) {
abort(500, '管理员账号注册失败,请重试');
2020-01-11 13:36:52 +08:00
}
2020-02-08 16:16:12 +08:00
$this->info('一切就绪');
2022-12-14 22:12:28 +08:00
$this->info("管理员邮箱:{$email}");
$this->info("管理员密码:{$password}");
2022-12-15 01:58:01 +08:00
2022-12-15 10:59:27 +08:00
$defaultSecurePath = hash('crc32b', config('app.key'));
2022-12-15 11:28:29 +08:00
$this->info("访问 http(s)://你的站点/{$defaultSecurePath} 进入管理面板,你可以在用户中心修改你的密码。");
2020-02-08 16:16:12 +08:00
} catch (\Exception $e) {
$this->error($e->getMessage());
}
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) {
2020-02-08 16:16:12 +08:00
abort(500, '管理员密码长度最小为8位字符');
2020-01-14 19:48:18 +08:00
}
2019-12-19 22:22:31 +08:00
$user->password = password_hash($password, PASSWORD_DEFAULT);
2020-06-08 01:08:07 +08:00
$user->uuid = Helper::guid(true);
2019-12-19 22:22:31 +08:00
$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 = [])
{
2020-02-08 15:48:25 +08:00
function set_env_var($key, $value)
{
if (! is_bool(strpos($value, ' '))) {
$value = '"' . $value . '"';
}
$key = strtoupper($key);
$envPath = app()->environmentFilePath();
$contents = file_get_contents($envPath);
preg_match("/^{$key}=[^\r\n]*/m", $contents, $matches);
$oldValue = count($matches) ? $matches[0] : '';
if ($oldValue) {
$contents = str_replace("{$oldValue}", "{$key}={$value}", $contents);
} else {
$contents = $contents . "\n{$key}={$value}\n";
}
$file = fopen($envPath, 'w');
fwrite($file, $contents);
return fclose($file);
}
2020-02-08 15:26:18 +08:00
foreach($data as $key => $value) {
set_env_var($key, $value);
}
return true;
}
2019-12-19 21:53:47 +08:00
}