add option to specify config file
[bdrem.git] / src / bdrem / Config.php
index 37c4c641a3d512aea937dba10e8ecd44ae62fc8f..57d0cfd7d1995527cb8163b3bb0355756071e417 100644 (file)
@@ -3,21 +3,48 @@ namespace bdrem;
 
 class Config
 {
-    public $source;
     public $date;
     public $daysPrev;
     public $daysNext;
     public $locale;
+    public $renderer;
+    public $source;
     public $stopOnEmpty;
 
+    public $cfgFiles = array();
+    public $cfgFileExists;
+
+
+
+    public function __construct()
+    {
+        $this->loadConfigFilePaths();
+    }
+
     public function load()
     {
-        $f = __DIR__ . '/../../data/bdrem.config.php';
-        if (file_exists($f)) {
-            return $this->loadFile($f);
+        foreach ($this->cfgFiles as $file) {
+            if (file_exists($file)) {
+                $this->cfgFileExists = true;
+                return $this->loadFile($file);
+            }
         }
+        $this->cfgFileExists = false;
+    }
+
+    protected function loadConfigFilePaths()
+    {
+        $pharFile = \Phar::running();
+        if ($pharFile == '') {
+            $this->cfgFiles[] = __DIR__ . '/../../data/bdrem.config.php';
+        } else {
+            //remove phar:// from the path
+            $this->cfgFiles[] = substr($pharFile, 7) . '.config.php';
+        }
+
+        //TODO: add ~/.config/bdrem.php
 
-        throw new \Exception('No config file found');
+        $this->cfgFiles[] = '/etc/bdrem.php';
     }
 
     protected function loadFile($filename)
@@ -25,7 +52,9 @@ class Config
         include $filename;
         $vars = get_defined_vars();
         foreach ($vars as $k => $value) {
-            $this->$k = $value;
+            if (!isset($this->$k) || $this->$k === null) {
+                $this->$k = $value;
+            }
         }
     }