surok/surok.py

76 lines
1.6 KiB
Python
Raw Normal View History

2016-08-01 12:54:48 +03:00
#!/usr/bin/python3
from time import sleep
from os import listdir
from os.path import isfile, join
import json
2016-08-01 14:56:35 +03:00
from surok.templates import gen
from surok.discovery import resolve
2016-08-01 15:24:13 +03:00
from surok.system import reload_conf
2016-08-01 12:54:48 +03:00
import argparse
2016-08-04 11:10:36 +03:00
2016-08-01 12:54:48 +03:00
# Load base configurations
2016-08-04 11:10:36 +03:00
surok_conf = '/etc/surok/conf/surok.json'
# Command line arguments
parser = argparse.ArgumentParser()
parser.add_argument('-c', '--config')
args = parser.parse_args()
if args.config:
surok_conf = args.config
2016-08-05 10:32:18 +03:00
# Read config file
2016-08-04 11:10:36 +03:00
f = open(surok_conf, 'r')
2016-08-01 12:54:48 +03:00
conf = json.loads(f.read())
print(conf)
2016-08-01 14:56:35 +03:00
f.close()
2016-08-01 12:54:48 +03:00
2016-08-05 10:32:18 +03:00
# Get app configurations
# Return list of patches to app discovery configuration
2016-08-01 12:54:48 +03:00
def get_configs():
confs = [f for f in listdir(conf['confd']) if isfile( join(conf['confd'], f) )]
2016-08-01 12:54:48 +03:00
return confs
2016-08-01 14:56:35 +03:00
# Get Surok App configuration
2016-08-05 10:32:18 +03:00
# Read app conf from file and return dict
2016-08-01 14:56:35 +03:00
def load_app_conf(app):
f = open( conf['confd'] + '/' + app )
c = json.loads( f.read() )
2016-08-01 14:56:35 +03:00
f.close()
return c
2016-08-01 12:54:48 +03:00
# Main loop
2016-08-05 10:32:18 +03:00
###########
# Bad hack for detect first run
# On host system set it to False
# TODO: put it to config
first = True
2016-08-01 12:54:48 +03:00
while 1:
confs = get_configs()
2016-08-01 14:56:35 +03:00
for app in confs:
app_conf = load_app_conf(app)
# Resolve services
2016-08-01 14:56:35 +03:00
app_hosts = resolve(app_conf, conf)
# Populate my dictionary
2016-08-04 13:16:06 +03:00
my = { "services": app_hosts,
"conf_name": app_conf['conf_name']
}
2016-08-05 10:32:18 +03:00
# Generate config from template
2016-08-01 15:24:13 +03:00
service_conf = gen(my, app_conf['template'])
stdout, first = reload_conf(service_conf, app_conf, first)
print(stdout)
2016-08-01 15:24:13 +03:00
2016-08-01 14:56:35 +03:00
sleep( conf['wait_time'] )
2016-08-01 12:54:48 +03:00