mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
ef85f49adc
Summary: This commit doesn't change license of any file. It just makes the license implicit (inherited from LICENSE file in the root directory). We are removing the headers for these reasons: - It wastes space in editors, less code is visible in editor upon opening a file. - It brings noise to diff of the first change of any file every year. - It confuses Git file copy detection when creating small files. - We don't have an explicit license header in other files (JS, CSS, images, documentation). - Using license header in every file is not obligatory: http://www.apache.org/dev/apply-license.html#new. This change is approved by Alma Chao (Lead Open Source and IP Counsel at Facebook). Test Plan: Verified that the license survived only in LICENSE file and that it didn't modify externals. Reviewers: epriestley, davidrecordon Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2035 Differential Revision: https://secure.phabricator.com/D3886
46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<?php
|
|
|
|
function phabricator_read_config_file($original_config) {
|
|
|
|
$root = dirname(dirname(__FILE__));
|
|
|
|
// Accept either "myconfig" (preferred) or "myconfig.conf.php".
|
|
$config = preg_replace('/\.conf\.php$/', '', $original_config);
|
|
$full_config_path = $root.'/conf/'.$config.'.conf.php';
|
|
|
|
// Make sure config file errors are reported.
|
|
$old_error_level = error_reporting(E_ALL | E_STRICT);
|
|
$old_display_errors = ini_get('display_errors');
|
|
ini_set('display_errors', 1);
|
|
|
|
ob_start();
|
|
$conf = include $full_config_path;
|
|
$errors = ob_get_clean();
|
|
|
|
error_reporting($old_error_level);
|
|
ini_set('display_errors', $old_display_errors);
|
|
|
|
if ($conf === false) {
|
|
if (!Filesystem::pathExists($full_config_path)) {
|
|
$files = id(new FileFinder($root.'/conf/'))
|
|
->withType('f')
|
|
->withSuffix('conf.php')
|
|
->withFollowSymlinks(true)
|
|
->find();
|
|
|
|
foreach ($files as $key => $file) {
|
|
$file = trim($file, './');
|
|
$files[$key] = preg_replace('/\.conf\.php$/', '', $file);
|
|
}
|
|
$files = " ".implode("\n ", $files);
|
|
|
|
throw new Exception(
|
|
"CONFIGURATION ERROR\n".
|
|
"Config file '{$original_config}' does not exist. Valid config files ".
|
|
"are:\n\n".$files);
|
|
}
|
|
throw new Exception("Failed to read config file '{$config}': {$errors}");
|
|
}
|
|
|
|
return $conf;
|
|
}
|