fix table_def
[rainbowstream.git] / rainbowstream / config.py
index 2ede83b246ef6040dbfa1e471e70a5778d54c057..828a51710a6cbfccd740274e88f9969ba7b0fee4 100644 (file)
@@ -1,3 +1,50 @@
-# This is PTT App info
-CONSUMER_KEY = 'uS6hO2sV6tDKIOeVjhnFnQ'
-CONSUMER_SECRET = 'MEYTOS97VvlHX7K1rwHPEqVpTSqZ71HtvoK4sVuYk'
+import json
+import re
+import os
+import os.path
+
+from .db import *
+
+db = RainbowDB()
+
+# Regular expression for comments
+comment_re = re.compile(
+    '(^)?[^\S\n]*/(?:\*(.*?)\*/[^\S\n]*|/[^\n]*)($)?',
+    re.DOTALL | re.MULTILINE
+)
+
+
+def load_config(filepath):
+    """
+    Load config from filepath
+    """
+    try:
+        with open(filepath) as f:
+            content = ''.join(f.readlines())
+            match = comment_re.search(content)
+            while match:
+                content = content[:match.start()] + content[match.end():]
+                match = comment_re.search(content)
+        db.theme_store('user')
+        return json.loads(content)
+    except IOError:
+        db.theme_store('default')
+        return None
+
+# Load default colorset
+c = {}
+default_config = 'rainbowstream/colorset/default.json'
+data = load_config(default_config)
+if data:
+    for d in data:
+        c[d] = data[d]
+# Load user's colorset
+rainbow_config = os.environ.get(
+    'HOME',
+    os.environ.get(
+        'USERPROFILE',
+        '')) + os.sep + '.rainbow_config.json'
+data = load_config(rainbow_config)
+if data:
+    for d in data:
+        c[d] = data[d]