139 lines
No EOL
4.3 KiB
PHP
139 lines
No EOL
4.3 KiB
PHP
<?php
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use App\Database\DB;
|
|
use App\Web\Session;
|
|
use Slim\App;
|
|
use Slim\Container;
|
|
use Slim\Http\Request;
|
|
use Slim\Http\Response;
|
|
|
|
define('PLATFORM_VERSION', json_decode(file_get_contents(__DIR__ . '/../composer.json'))->version);
|
|
|
|
$config = [
|
|
'app_name' => 'XBackBone',
|
|
'base_url' => isset($_SERVER['HTTPS']) ? 'https://' . $_SERVER['HTTP_HOST'] : 'http://' . $_SERVER['HTTP_HOST'],
|
|
'storage_dir' => 'storage',
|
|
'displayErrorDetails' => false,
|
|
'db' => [
|
|
'connection' => 'sqlite',
|
|
'dsn' => 'resources/database/xbackbone.db',
|
|
'username' => null,
|
|
'password' => null,
|
|
],
|
|
];
|
|
|
|
$container = new Container(['settings' => $config]);
|
|
|
|
Session::init('xbackbone_session');
|
|
|
|
$container['view'] = function ($container) use (&$config) {
|
|
$view = new \Slim\Views\Twig('templates', [
|
|
'cache' => false,
|
|
'autoescape' => 'html',
|
|
'debug' => $config['displayErrorDetails'],
|
|
'auto_reload' => $config['displayErrorDetails'],
|
|
]);
|
|
|
|
// Instantiate and add Slim specific extension
|
|
$router = $container->get('router');
|
|
$uri = \Slim\Http\Uri::createFromEnvironment(new \Slim\Http\Environment($_SERVER));
|
|
$view->addExtension(new Slim\Views\TwigExtension($router, $uri));
|
|
|
|
$view->getEnvironment()->addGlobal('config', $config);
|
|
$view->getEnvironment()->addGlobal('request', $container->get('request'));
|
|
$view->getEnvironment()->addGlobal('alerts', Session::getAlert());
|
|
$view->getEnvironment()->addGlobal('session', Session::all());
|
|
$view->getEnvironment()->addGlobal('PLATFORM_VERSION', PLATFORM_VERSION);
|
|
return $view;
|
|
};
|
|
|
|
$app = new App($container);
|
|
|
|
$app->get('/', function (Request $request, Response $response) {
|
|
return $this->view->render($response, 'install.twig');
|
|
});
|
|
|
|
$app->post('/', function (Request $request, Response $response) use (&$config) {
|
|
$config['base_url'] = $request->getParam('base_url');
|
|
$config['storage_dir'] = $request->getParam('storage_dir');
|
|
$config['db']['connection'] = $request->getParam('connection');
|
|
$config['db']['dsn'] = $request->getParam('dsn');
|
|
$config['db']['username'] = null;
|
|
$config['db']['password'] = null;
|
|
|
|
|
|
file_put_contents(__DIR__ . '/../config.php', '<?php' . PHP_EOL . 'return ' . var_export($config, true) . ';');
|
|
|
|
|
|
DB::setDsn($config['db']['connection'] . ':' . __DIR__ . '../' . $config['db']['dsn'], $config['db']['username'], $config['db']['password']);
|
|
|
|
$firstMigrate = false;
|
|
if (!file_exists(__DIR__ . '../' . $config['db']['dsn']) && DB::driver() === 'sqlite') {
|
|
touch(__DIR__ . '../' . $config['db']['dsn']);
|
|
$firstMigrate = true;
|
|
}
|
|
|
|
try {
|
|
DB::query('SELECT 1 FROM `migrations` LIMIT 1');
|
|
} catch (PDOException $exception) {
|
|
$firstMigrate = true;
|
|
}
|
|
|
|
echo 'Connected.' . PHP_EOL;
|
|
|
|
if ($firstMigrate) {
|
|
echo 'Creating migrations table...' . PHP_EOL;
|
|
DB::raw()->exec(file_get_contents(__DIR__ . '../resources/schemas/migrations.sql'));
|
|
}
|
|
|
|
$files = glob(__DIR__ . '../resources/schemas/' . DB::driver() . '/*.sql');
|
|
|
|
$names = array_map(function ($path) {
|
|
return basename($path);
|
|
}, $files);
|
|
|
|
$in = str_repeat('?, ', count($names) - 1) . '?';
|
|
|
|
$inMigrationsTable = DB::query("SELECT * FROM `migrations` WHERE `name` IN ($in)", $names)->fetchAll();
|
|
|
|
|
|
foreach ($files as $file) {
|
|
|
|
$continue = false;
|
|
$exists = false;
|
|
|
|
foreach ($inMigrationsTable as $migration) {
|
|
if (basename($file) === $migration->name && $migration->migrated) {
|
|
$continue = true;
|
|
break;
|
|
} elseif (basename($file) === $migration->name && !$migration->migrated) {
|
|
$exists = true;
|
|
break;
|
|
}
|
|
}
|
|
if ($continue) continue;
|
|
|
|
$sql = file_get_contents($file);
|
|
try {
|
|
DB::raw()->exec($sql);
|
|
if (!$exists) {
|
|
DB::query('INSERT INTO `migrations` VALUES (?,?)', [basename($file), 1]);
|
|
} else {
|
|
DB::query('UPDATE `migrations` SET `migrated`=? WHERE `name`=?', [1, basename($file)]);
|
|
}
|
|
} catch (PDOException $exception) {
|
|
if (!$exists) {
|
|
DB::query('INSERT INTO `migrations` VALUES (?,?)', [basename($file), 0]);
|
|
}
|
|
throw $exception;
|
|
}
|
|
}
|
|
|
|
DB::query("INSERT INTO `users` (`email`, `username`, `password`, `is_admin`, `user_code`) VALUES (?, 'admin', ?, 1, ?)", [$request->getParam('email'), password_hash($request->getParam('password'), PASSWORD_DEFAULT), substr(md5(microtime()), rand(0, 26), 5)]);
|
|
|
|
Session::alert('Installation completed successfully!', 'success');
|
|
return $response->withRedirect('../?afterInstall=true');
|
|
});
|
|
|
|
$app->run(); |