Use environment variables to define rainbowstream's configuration file location if...
authorjimdoescode <jimdoescode@gmail.com>
Tue, 20 Mar 2018 02:25:06 +0000 (22:25 -0400)
committerjimdoescode <jimdoescode@gmail.com>
Tue, 20 Mar 2018 02:25:06 +0000 (22:25 -0400)
rainbowstream/config.py

index 5f5b81bd18fe67f23339fe631e6e7b9b3e6b25ea..f97b2099740da2a5dc22ee26e2cf50254509dbed 100644 (file)
@@ -13,6 +13,14 @@ comment_re = re.compile(
 # Config dictionary
 c = {}
 
+def user_filepath():
+    """
+    Determine the user's config file location
+    """
+    if 'RAINBOW_CONFIG' in os.environ:
+        return os.environ['RAINBOW_CONFIG']
+
+    return os.path.expanduser("~") + os.sep + '.rainbow_config.json'
 
 def fixup(adict, k, v):
     """
@@ -43,7 +51,7 @@ def get_all_config():
     Get all config
     """
     try:
-        path = os.path.expanduser("~") + os.sep + '.rainbow_config.json'
+        path = user_filepath()
         data = load_config(path)
         # Hard to set from prompt
         data.pop('ONLY_LIST', None)
@@ -89,7 +97,7 @@ def set_config(key, value):
     # Update global config
     c[key] = value
     # Load current user config
-    path = os.path.expanduser("~") + os.sep + '.rainbow_config.json'
+    path = user_filepath()
     data = {}
     try:
         data = load_config(path)
@@ -110,7 +118,7 @@ def delete_config(key):
     """
     Delete a config key
     """
-    path = os.path.expanduser("~") + os.sep + '.rainbow_config.json'
+    path = user_filepath()
     try:
         data = load_config(path)
     except:
@@ -136,8 +144,7 @@ def reload_config():
     Reload config
     """
     try:
-        rainbow_config = os.path.expanduser("~") + \
-            os.sep + '.rainbow_config.json'
+        rainbow_config = user_filepath()
         data = load_config(rainbow_config)
         for d in data:
             c[d] = data[d]
@@ -159,7 +166,7 @@ def init_config():
     except:
         pass
     # Load user's config
-    rainbow_config = os.path.expanduser("~") + os.sep + '.rainbow_config.json'
+    rainbow_config = user_filepath()
     try:
         data = load_config(rainbow_config)
         for d in data: