This repository has been archived on 2023-04-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
CloudBot/core/config.py
2013-10-02 11:35:15 +13:00

61 lines
1.9 KiB
Python
Executable file

import json
import os
import time
import sys
from watchdog.observers import Observer
from watchdog.tricks import Trick
class Config(dict):
def __init__(self, logger, *args, **kwargs):
self.filename = "config.json"
self.path = os.path.abspath(self.filename)
self.logger = logger
self.update(*args, **kwargs)
# load self
self.load_config()
# start reloader
self.watcher()
def load_config(self):
if not os.path.exists(self.path):
# if there is no config, show an error and die
self.logger.critical("No config file found, bot shutting down!")
print "No config file found! Bot shutting down in five seconds."
print "Copy 'config.default' to 'config.json' for defaults."
print "For help, see http://git.io/cloudbotirc. Thank you for using CloudBot!"
time.sleep(5)
sys.exit()
with open(self.path) as f:
self.update(json.load(f))
self.logger.info("Config loaded from file.")
def save_config(self):
json.dump(self, open(self.path, 'w'), sort_keys=True, indent=2)
self.logger.info("Config saved to file.")
def watcher(self):
pattern = "*{}".format(self.filename)
event_handler = ConfigReloader(self, patterns=[pattern])
self.observer = Observer()
self.observer.schedule(event_handler,
path='.',
recursive=False
)
self.observer.start()
class ConfigReloader(Trick):
def __init__(self, config, *args, **kwargs):
self.config = config
self.logger = config.logger
Trick.__init__(self, *args, **kwargs)
def on_any_event(self, event):
self.logger.info("Config changed, triggering reload.")
self.config.load_config()