Added Error Handling for invalid JSOn

This commit is contained in:
Brandon Casey(Work) 2014-03-28 16:49:36 -04:00
parent 0cc194c37a
commit 85eb99df03

View File

@ -37,6 +37,10 @@
if (substr($config_file, 0, 1) !== '/') $config_file = $base . '/' . $config_file; if (substr($config_file, 0, 1) !== '/') $config_file = $base . '/' . $config_file;
if (file_exists($config_file)) { if (file_exists($config_file)) {
$config = json_decode(file_get_contents($config_file), true); $config = json_decode(file_get_contents($config_file), true);
if(!isset($config)) {
echo '<strong>Daux.io Config Error:</strong><br> The config file ' . $config_file . ' that was passed contained invalid JSON. <a href="http://daux.io">Learn More</a>.';
exit;
}
$options = array_merge($options, $config); $options = array_merge($options, $config);
} }
if (!isset($options['ignore']['files'])) $options['ignore']['files'] = array(); if (!isset($options['ignore']['files'])) $options['ignore']['files'] = array();