mirror of
https://github.com/flarum/core.git
synced 2025-10-12 07:24:27 +02:00
73 lines
1.5 KiB
PHP
73 lines
1.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Install\Steps;
|
|
|
|
use Flarum\Install\BaseUrl;
|
|
use Flarum\Install\DatabaseConfig;
|
|
use Flarum\Install\ReversibleStep;
|
|
use Flarum\Install\Step;
|
|
|
|
class StoreConfig implements Step, ReversibleStep
|
|
{
|
|
private $debugMode;
|
|
|
|
private $dbConfig;
|
|
|
|
private $baseUrl;
|
|
|
|
private $configFile;
|
|
|
|
public function __construct($debugMode, DatabaseConfig $dbConfig, BaseUrl $baseUrl, $configFile)
|
|
{
|
|
$this->debugMode = $debugMode;
|
|
$this->dbConfig = $dbConfig;
|
|
$this->baseUrl = $baseUrl;
|
|
|
|
$this->configFile = $configFile;
|
|
}
|
|
|
|
public function getMessage()
|
|
{
|
|
return 'Writing config file';
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
file_put_contents(
|
|
$this->configFile,
|
|
'<?php return '.var_export($this->buildConfig(), true).';'
|
|
);
|
|
}
|
|
|
|
public function revert()
|
|
{
|
|
@unlink($this->configFile);
|
|
}
|
|
|
|
private function buildConfig()
|
|
{
|
|
return [
|
|
'debug' => $this->debugMode,
|
|
'poweredByHeader' => true,
|
|
'database' => $this->dbConfig->toArray(),
|
|
'url' => (string) $this->baseUrl,
|
|
'paths' => $this->getPathsConfig(),
|
|
];
|
|
}
|
|
|
|
private function getPathsConfig()
|
|
{
|
|
return [
|
|
'api' => 'api',
|
|
'admin' => 'admin',
|
|
];
|
|
}
|
|
}
|