surok/surok.py
2016-08-03 09:54:09 +03:00

47 lines
956 B
Python
Executable File

#!/usr/bin/python3
from time import sleep
from os import listdir
from os.path import isfile, join
import json
from surok.templates import gen
from surok.discovery import resolve
from surok.system import reload_conf
# Load base configurations
f = open('conf/surok.json', 'r')
conf = json.loads(f.read())
print(conf)
f.close()
# Get app configurations
def get_configs():
confs = [f for f in listdir(conf['confd']) if isfile(join(conf['confd'], f))]
return confs
# Get Surok App configuration
def load_app_conf(app):
f = open(conf['confd'] + '/' + app)
c = json.loads(f.read())
f.close()
return c
# Main loop
while 1:
confs = get_configs()
for app in confs:
app_conf = load_app_conf(app)
app_hosts = resolve(app_conf, conf)
my = { 'services': app_hosts }
service_conf = gen(my, app_conf['template'])
print(reload_conf(service_conf, app_conf))
sleep(conf['wait_time'])