2020-07-15 21:05:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Alltube;
|
|
|
|
|
|
|
|
use Symfony\Component\ErrorHandler\Debug;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ConfigFactory
|
|
|
|
* @package Alltube
|
|
|
|
*/
|
|
|
|
class ConfigFactory
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Config
|
|
|
|
* @throws Exception\ConfigException
|
|
|
|
*/
|
|
|
|
public static function create()
|
|
|
|
{
|
|
|
|
$configPath = __DIR__ . '/../config/config.yml';
|
|
|
|
if (is_file($configPath)) {
|
2020-10-17 20:07:07 +00:00
|
|
|
$config = Config::fromFile($configPath);
|
|
|
|
} else {
|
|
|
|
$config = new Config();
|
2020-07-15 21:05:41 +00:00
|
|
|
}
|
|
|
|
if ($config->uglyUrls) {
|
|
|
|
$container['router'] = new UglyRouter();
|
|
|
|
}
|
|
|
|
if ($config->debug) {
|
|
|
|
/*
|
|
|
|
We want to enable this as soon as possible,
|
|
|
|
in order to catch errors that are thrown
|
|
|
|
before the Slim error handler is ready.
|
|
|
|
*/
|
|
|
|
Debug::enable();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
}
|