2023-11-17 01:44:01 -05:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
|
use Illuminate\Encryption\Encrypter;
|
|
|
|
|
use App\Models\User;
|
|
|
|
|
use App\Utils\Helper;
|
|
|
|
|
use Illuminate\Support\Env;
|
2023-12-07 19:53:19 -05:00
|
|
|
|
use function Laravel\Prompts\confirm;
|
|
|
|
|
use function Laravel\Prompts\text;
|
|
|
|
|
use function Laravel\Prompts\note;
|
2023-11-17 01:44:01 -05:00
|
|
|
|
|
|
|
|
|
class XboardInstall extends Command
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The name and signature of the console command.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $signature = 'xboard:install';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The console command description.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $description = 'xboard 初始化安装';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a new command instance.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function __construct()
|
|
|
|
|
{
|
|
|
|
|
parent::__construct();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Execute the console command.
|
|
|
|
|
*
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
public function handle()
|
|
|
|
|
{
|
2023-12-07 19:53:19 -05:00
|
|
|
|
try {
|
|
|
|
|
// \Artisan::call('config:clear');
|
2023-11-22 02:52:07 -05:00
|
|
|
|
$isDocker = env('docker', false);
|
2023-11-17 01:44:01 -05:00
|
|
|
|
$this->info("__ __ ____ _ ");
|
|
|
|
|
$this->info("\ \ / /| __ ) ___ __ _ _ __ __| | ");
|
|
|
|
|
$this->info(" \ \/ / | __ \ / _ \ / _` | '__/ _` | ");
|
|
|
|
|
$this->info(" / /\ \ | |_) | (_) | (_| | | | (_| | ");
|
|
|
|
|
$this->info("/_/ \_\|____/ \___/ \__,_|_| \__,_| ");
|
2023-12-04 07:30:38 -05:00
|
|
|
|
if ((\File::exists(base_path() . '/.env') && $this->getEnvValue('INSTALLED'))
|
|
|
|
|
|| (env('INSTALLED', false) && $isDocker)
|
|
|
|
|
) {
|
2023-11-17 01:44:01 -05:00
|
|
|
|
$securePath = admin_setting('secure_path', admin_setting('frontend_admin_path', hash('crc32b', config('app.key'))));
|
|
|
|
|
$this->info("访问 http(s)://你的站点/{$securePath} 进入管理面板,你可以在用户中心修改你的密码。");
|
2023-11-22 01:01:58 -05:00
|
|
|
|
$this->warn("如需重新安装请清空目录下 .env 文件的内容(Docker安装方式不可以删除此文件)");
|
2023-12-07 19:53:19 -05:00
|
|
|
|
$this->warn("快捷清空.env命令:");
|
|
|
|
|
note('rm .env && touch .env');
|
|
|
|
|
return ;
|
|
|
|
|
}
|
|
|
|
|
if (is_dir(base_path() . '/.env')){
|
|
|
|
|
$this->error('😔:安装失败,Docker环境下安装请保留空的 .env 文件');
|
2023-11-22 01:01:58 -05:00
|
|
|
|
return ;
|
2023-11-17 01:44:01 -05:00
|
|
|
|
}
|
|
|
|
|
// 选择是否使用Sqlite
|
2023-12-07 19:53:19 -05:00
|
|
|
|
if(confirm(label: '是否启用Sqlite(无需额外安装)代替Mysql',default: false, yes: '启用', no: '不启用')) {
|
2023-11-17 01:44:01 -05:00
|
|
|
|
$sqliteFile = '.docker/.data/database.sqlite';
|
|
|
|
|
if (!file_exists(base_path($sqliteFile))) {
|
|
|
|
|
// 创建空文件
|
2023-12-07 19:53:19 -05:00
|
|
|
|
if (!touch(base_path($sqliteFile))) {
|
2023-11-17 01:44:01 -05:00
|
|
|
|
echo "sqlite创建成功: $sqliteFile";
|
|
|
|
|
} else {
|
2023-11-22 01:01:58 -05:00
|
|
|
|
echo "sqlite创建失败";
|
2023-11-17 01:44:01 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$envConfig = [
|
|
|
|
|
'DB_CONNECTION' => 'sqlite',
|
|
|
|
|
'DB_DATABASE' => $sqliteFile,
|
|
|
|
|
'DB_HOST' => '',
|
|
|
|
|
'DB_USERNAME' => '',
|
|
|
|
|
'DB_PASSWORD' => '',
|
|
|
|
|
];
|
|
|
|
|
}else{
|
|
|
|
|
$envConfig = [
|
|
|
|
|
'DB_CONNECTION' => 'mysql',
|
2023-12-07 19:53:19 -05:00
|
|
|
|
'DB_HOST' => text(label: "请输入数据库地址", default: '127.0.0.1', required: true),
|
|
|
|
|
'DB_PORT' => text(label: '请输入数据库端口', default: '3306', required: true),
|
|
|
|
|
'DB_DATABASE' => text(label:'请输入数据库名', default:'xboard', required: true),
|
|
|
|
|
'DB_USERNAME' => text(label:'请输入数据库用户名', required: true),
|
|
|
|
|
'DB_PASSWORD' => text(label:'请输入数据库密码', required: false),
|
2023-11-22 02:52:07 -05:00
|
|
|
|
];
|
2023-11-22 01:01:58 -05:00
|
|
|
|
}
|
2023-12-02 20:43:38 -05:00
|
|
|
|
$envConfig['APP_KEY'] = 'base64:' . base64_encode(Encrypter::generateKey('AES-256-CBC'));
|
2023-12-07 19:53:19 -05:00
|
|
|
|
$envConfig['INSTALLED'] = true;
|
2023-11-22 01:01:58 -05:00
|
|
|
|
// 判断是否为Docker环境
|
2023-12-07 19:53:19 -05:00
|
|
|
|
if ($isDocker == 'true' && (confirm(label: '是否启用Docker内置的Redis', default: true, yes:'启用', no:'不启用'))){
|
2023-11-22 02:52:07 -05:00
|
|
|
|
$envConfig['REDIS_HOST'] = '/run/redis-socket/redis.sock';
|
2023-11-22 01:01:58 -05:00
|
|
|
|
$envConfig['REDIS_PORT'] = 0;
|
|
|
|
|
$envConfig['REDIS_PASSWORD'] = null;
|
|
|
|
|
}else{
|
2023-12-07 19:53:19 -05:00
|
|
|
|
$envConfig['REDIS_HOST'] = text(label: '请输入Redis地址', default: '127.0.0.1',required: true);
|
|
|
|
|
$envConfig['REDIS_PORT'] = text(label: '请输入Redis端口', default: '6379', required: true);
|
|
|
|
|
$envConfig['REDIS_PASSWORD'] = text(label: '请输入redis密码(默认: null)', default: '');
|
2023-11-22 01:01:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!copy(base_path() . '/.env.example', base_path() . '/.env')) {
|
|
|
|
|
abort(500, '复制环境文件失败,请检查目录权限');
|
2023-12-07 19:53:19 -05:00
|
|
|
|
};
|
|
|
|
|
$email = text(label: '请输入管理员账号',required: true,
|
|
|
|
|
validate: fn (string $email): ?string => match (true) {
|
|
|
|
|
! filter_var($email, FILTER_VALIDATE_EMAIL) => '请输入有效的邮箱地址.',
|
|
|
|
|
default => null,
|
|
|
|
|
});
|
|
|
|
|
$password = Helper::guid(false);
|
2023-11-22 01:01:58 -05:00
|
|
|
|
$this->saveToEnv($envConfig);
|
2023-11-17 01:44:01 -05:00
|
|
|
|
|
2023-12-09 22:51:56 -05:00
|
|
|
|
\Artisan::call('config:clear');
|
2023-11-17 01:44:01 -05:00
|
|
|
|
\Artisan::call('config:cache');
|
|
|
|
|
\Artisan::call('cache:clear');
|
|
|
|
|
$this->info('正在清空数据库请稍等');
|
|
|
|
|
\Artisan::call('db:wipe');
|
|
|
|
|
$this->info('数据库清空完成');
|
|
|
|
|
$this->info('正在导入数据库请稍等...');
|
|
|
|
|
\Artisan::call("migrate");
|
|
|
|
|
$this->info(\Artisan::output());
|
|
|
|
|
$this->info('数据库导入完成');
|
2023-12-07 19:53:19 -05:00
|
|
|
|
$this->info('开始注册管理员账号');
|
2023-11-17 01:44:01 -05:00
|
|
|
|
if (!$this->registerAdmin($email, $password)) {
|
|
|
|
|
abort(500, '管理员账号注册失败,请重试');
|
|
|
|
|
}
|
2023-12-07 19:53:19 -05:00
|
|
|
|
$this->info('🎉:一切就绪');
|
2023-11-17 01:44:01 -05:00
|
|
|
|
$this->info("管理员邮箱:{$email}");
|
|
|
|
|
$this->info("管理员密码:{$password}");
|
|
|
|
|
|
|
|
|
|
$defaultSecurePath = hash('crc32b', config('app.key'));
|
|
|
|
|
$this->info("访问 http(s)://你的站点/{$defaultSecurePath} 进入管理面板,你可以在用户中心修改你的密码。");
|
|
|
|
|
} catch (\Exception $e) {
|
2023-11-22 01:01:58 -05:00
|
|
|
|
$this->error($e);
|
2023-11-17 01:44:01 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function registerAdmin($email, $password)
|
|
|
|
|
{
|
|
|
|
|
$user = new User();
|
|
|
|
|
$user->email = $email;
|
|
|
|
|
if (strlen($password) < 8) {
|
|
|
|
|
abort(500, '管理员密码长度最小为8位字符');
|
|
|
|
|
}
|
|
|
|
|
$user->password = password_hash($password, PASSWORD_DEFAULT);
|
|
|
|
|
$user->uuid = Helper::guid(true);
|
|
|
|
|
$user->token = Helper::guid();
|
|
|
|
|
$user->is_admin = 1;
|
|
|
|
|
return $user->save();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function saveToEnv($data = [])
|
|
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
foreach($data as $key => $value) {
|
|
|
|
|
set_env_var($key, $value);
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getEnvValue($key, $default = null)
|
|
|
|
|
{
|
|
|
|
|
$dotenv = \Dotenv\Dotenv::createImmutable(base_path());
|
|
|
|
|
$dotenv->load();
|
|
|
|
|
|
|
|
|
|
return Env::get($key, $default);
|
|
|
|
|
}
|
|
|
|
|
}
|