mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
99 lines
2.9 KiB
PHP
99 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* Installation of Blessing Skin Server
|
|
*/
|
|
|
|
// Define Base Directory
|
|
define('BASE_DIR', dirname(dirname(__FILE__)));
|
|
|
|
// Register Composer Auto Loader
|
|
require BASE_DIR.'/vendor/autoload.php';
|
|
|
|
// Boot Services
|
|
App\Services\Boot::loadServices();
|
|
Boot::checkRuntimeEnv();
|
|
Boot::loadDotEnv(BASE_DIR);
|
|
Boot::registerErrorHandler();
|
|
Boot::startSession();
|
|
|
|
$db_config = Config::getDbConfig();
|
|
|
|
// Boot Eloquent to make Schema available
|
|
if (Config::checkDbConfig($db_config)) {
|
|
Boot::bootEloquent($db_config);
|
|
}
|
|
|
|
// If already installed
|
|
if (Config::checkTableExist($db_config)) {
|
|
View::show('setup.locked');
|
|
exit;
|
|
}
|
|
|
|
$step = isset($_GET['step']) ? $_GET['step'] : 1;
|
|
|
|
/*
|
|
* Stepped installation
|
|
*/
|
|
switch ($step) {
|
|
case 1:
|
|
$server = $db_config['username']."@".$db_config['host'];
|
|
echo View::make('setup.steps.1')->with('server', $server);
|
|
break;
|
|
|
|
case 2:
|
|
echo View::make('setup.steps.2');
|
|
break;
|
|
|
|
case 3:
|
|
// check post
|
|
if (isset($_POST['email']) && isset($_POST['password']) && isset($_POST['confirm-pwd']))
|
|
{
|
|
if ($_POST['password'] != $_POST['confirm-pwd'])
|
|
Http::redirect('index.php?step=2', '确认密码不一致');
|
|
|
|
$email = $_POST['email'];
|
|
$password = $_POST['password'];
|
|
$sitename = isset($_POST['sitename']) ? $_POST['sitename'] : "Blessing Skin Server";
|
|
|
|
if (Validate::checkValidEmail($email)) {
|
|
if (strlen($password) > 16 || strlen($password) < 8) {
|
|
Http::redirect('index.php?step=2', '无效的密码。密码长度应该大于 8 并小于 16。');
|
|
|
|
} else if (Utils::convertString($password) != $password) {
|
|
Http::redirect('index.php?step=2', '无效的密码。密码中包含了奇怪的字符。');
|
|
}
|
|
} else {
|
|
Http::redirect('index.php?step=2', '邮箱格式不正确。');
|
|
}
|
|
}
|
|
else {
|
|
Http::redirect('index.php?step=2', '表单信息不完整。');
|
|
}
|
|
|
|
// create tables
|
|
Migration::creatTables($db_config['prefix']);
|
|
|
|
// import options
|
|
$options = require "options.php";
|
|
$options['site_name'] = $_POST['sitename'];
|
|
$options['site_url'] = Http::getBaseUrl();
|
|
|
|
foreach ($options as $key => $value) {
|
|
Option::add($key, $value);
|
|
}
|
|
|
|
// register super admin
|
|
$user = new App\Models\User($_POST['email']);
|
|
$user->register($_POST['password'], Http::getRealIP());
|
|
$user->setPermission('2');
|
|
|
|
if (!is_dir(BASE_DIR.'/textures/')) {
|
|
if (!mkdir(BASE_DIR.'/textures/'))
|
|
throw new E('textures 文件夹创建失败,请确认目录权限是否正确,或者手动放置一个。', -1);
|
|
}
|
|
|
|
echo View::make('setup.steps.3')->with('email', $_POST['email'])->with('password', $_POST['password']);
|
|
|
|
break;
|
|
}
|