| Current Path : /var/www/html/helpdesk/vendor/codeception/base/src/Codeception/Lib/ |
| Current File : /var/www/html/helpdesk/vendor/codeception/base/src/Codeception/Lib/ParamsLoader.php |
<?php
namespace Codeception\Lib;
use Codeception\Exception\ConfigurationException;
use Symfony\Component\Yaml\Yaml;
class ParamsLoader
{
protected $paramStorage;
protected $paramsFile;
public function load($paramStorage)
{
$this->paramsFile = null;
$this->paramStorage = $paramStorage;
if (is_array($paramStorage)) {
return $this->loadArray();
}
if ($paramStorage === 'env' || $paramStorage === 'environment') {
return $this->loadEnvironmentVars();
}
$this->paramsFile = codecept_root_dir($paramStorage);
if (!file_exists($this->paramsFile)) {
throw new ConfigurationException("Params file {$this->paramsFile} not found");
}
try {
if (preg_match('~\.yml$~', $paramStorage)) {
return $this->loadYamlFile();
}
if (preg_match('~\.ini$~', $paramStorage)) {
return $this->loadIniFile();
}
if (preg_match('~\.php$~', $paramStorage)) {
return $this->loadPhpFile();
}
if (preg_match('~(\.env(\.|$))~', $paramStorage)) {
return $this->loadDotEnvFile();
}
} catch (\Exception $e) {
throw new ConfigurationException("Failed loading params from $paramStorage\n" . $e->getMessage());
}
throw new ConfigurationException("Params can't be loaded from `$paramStorage`.");
}
public function loadArray()
{
return $this->paramStorage;
}
protected function loadIniFile()
{
return parse_ini_file($this->paramsFile);
}
protected function loadPhpFile()
{
return require $this->paramsFile;
}
protected function loadYamlFile()
{
$params = Yaml::parse(file_get_contents($this->paramsFile));
if (isset($params['parameters'])) { // Symfony style
$params = $params['parameters'];
}
return $params;
}
protected function loadDotEnvFile()
{
if (class_exists('Dotenv\Dotenv')) {
$dotEnv = new \Dotenv\Dotenv(codecept_root_dir(), $this->paramStorage);
$dotEnv->load();
return $_SERVER;
} elseif (class_exists('Symfony\Component\Dotenv\Dotenv')) {
$dotEnv = new \Symfony\Component\Dotenv\Dotenv();
$dotEnv->load(codecept_root_dir($this->paramStorage));
return $_SERVER;
}
throw new ConfigurationException(
"`vlucas/phpdotenv` library is required to parse .env files.\n" .
"Please install it via composer: composer require vlucas/phpdotenv"
);
}
protected function loadEnvironmentVars()
{
return $_SERVER;
}
}