2014-12-18 10:49:13 +01:00
|
|
|
#!/usr/bin/python3.4
|
|
|
|
|
|
|
|
import os
|
2015-01-07 11:38:22 +01:00
|
|
|
import sys
|
2014-12-18 10:49:13 +01:00
|
|
|
import http.client
|
|
|
|
import json
|
|
|
|
import signal
|
|
|
|
from string import Template
|
|
|
|
|
|
|
|
target_path="/tmp/nginx"
|
|
|
|
pid_file="/run/nginx.pid"
|
|
|
|
non_location_template = """server {
|
2015-01-07 15:06:15 +01:00
|
|
|
listen $listen;
|
2014-12-18 10:49:13 +01:00
|
|
|
server_name $name;
|
|
|
|
location / {
|
|
|
|
proxy_set_header X-Real-IP $$remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $$remote_addr;
|
|
|
|
proxy_set_header Host $$host;
|
|
|
|
proxy_pass http://$ip:$port/;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
location_template="""server {
|
2015-01-07 15:06:15 +01:00
|
|
|
listen $listen;
|
2014-12-18 10:49:13 +01:00
|
|
|
server_name $name;
|
|
|
|
location / {
|
|
|
|
return 301 $$scheme://$name/$location;
|
|
|
|
}
|
|
|
|
location /$location {
|
|
|
|
proxy_set_header X-Real-IP $$remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $$remote_addr;
|
|
|
|
proxy_set_header Host $$host;
|
|
|
|
proxy_pass http://$ip:$port/;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_pid():
|
|
|
|
with open(pid_file, 'r') as file:
|
|
|
|
return int(file.read())
|
|
|
|
|
|
|
|
def get_container_data():
|
|
|
|
conn = http.client.HTTPConnection("localhost:2375")
|
|
|
|
conn.request("GET", "/containers/json")
|
|
|
|
response = conn.getresponse()
|
|
|
|
data = response.read().decode("UTF-8")
|
|
|
|
data = json.loads(data)
|
|
|
|
# print(json.dumps(data, sort_keys=True, indent=4))
|
|
|
|
conn.close()
|
|
|
|
return data
|
|
|
|
|
|
|
|
def inspect_container(container_id):
|
|
|
|
conn = http.client.HTTPConnection("localhost:2375")
|
|
|
|
conn.request("GET", "/containers/"+str(container_id)+"/json")
|
|
|
|
response = conn.getresponse()
|
|
|
|
data = response.read().decode("UTF-8")
|
|
|
|
data = json.loads(data)
|
|
|
|
# print(json.dumps(data, sort_keys=True, indent=4))
|
|
|
|
conn.close()
|
|
|
|
return data
|
|
|
|
|
|
|
|
def analyse_env_vars(data):
|
|
|
|
env_data = {}
|
|
|
|
for env_var in data:
|
|
|
|
t = env_var.split("=")
|
|
|
|
env_data[t[0]] = t[1]
|
|
|
|
return env_data
|
|
|
|
|
|
|
|
def analyse_proxy_data(data):
|
|
|
|
proxy_data = {}
|
|
|
|
for proxy_var in data.split(','):
|
|
|
|
t = proxy_var.split(":")
|
|
|
|
proxy_data[t[0]] = t[1]
|
|
|
|
return proxy_data
|
|
|
|
|
|
|
|
def handle_event(event):
|
|
|
|
files = os.listdir(target_path)
|
|
|
|
print('deleting files')
|
|
|
|
for file in files:
|
|
|
|
if file.startswith('proxy_'):
|
|
|
|
os.remove(target_path+'/'+file)
|
|
|
|
event_data = json.loads(event)
|
|
|
|
containers_data = get_container_data()
|
|
|
|
for container_data in containers_data:
|
|
|
|
inspect_data = inspect_container(container_data['Id'])
|
|
|
|
env_data = analyse_env_vars(inspect_data['Config']['Env'])
|
|
|
|
if 'PROXY_DATA' in env_data:
|
|
|
|
container_id = container_data['Id']
|
|
|
|
ip = inspect_data['NetworkSettings']['IPAddress']
|
|
|
|
proxy_data = analyse_proxy_data(env_data['PROXY_DATA'])
|
|
|
|
|
|
|
|
server_name = ''
|
|
|
|
if 'server_name' in proxy_data:
|
|
|
|
server_name = proxy_data['server_name']
|
|
|
|
|
|
|
|
port = 0
|
|
|
|
if 'port' in proxy_data:
|
|
|
|
port = proxy_data['port']
|
|
|
|
|
|
|
|
location = ''
|
|
|
|
if 'location' in proxy_data:
|
|
|
|
location = proxy_data['location']
|
|
|
|
|
2015-01-07 15:06:15 +01:00
|
|
|
listen ='*:80'
|
|
|
|
if 'ip' in proxy_data:
|
|
|
|
listen = proxy_data['ip']+':80'
|
|
|
|
|
2014-12-18 10:49:13 +01:00
|
|
|
print('writing /tmp/nginx/proxy_'+container_id)
|
|
|
|
with open('/tmp/nginx/proxy_'+container_id, 'w') as file:
|
|
|
|
if location == '':
|
|
|
|
s = Template(non_location_template)
|
2015-01-07 15:06:15 +01:00
|
|
|
file.write(s.substitute(name=server_name,ip=ip,port=port,listen=listen))
|
2014-12-18 10:49:13 +01:00
|
|
|
else:
|
|
|
|
s = Template(location_template)
|
2015-01-07 15:06:15 +01:00
|
|
|
file.write(s.substitute(name=server_name,ip=ip,port=port,listen=listen,location=location))
|
2014-12-18 10:49:13 +01:00
|
|
|
print('HUPing nginx')
|
|
|
|
os.kill(pid, signal.SIGHUP)
|
|
|
|
|
2014-12-27 20:53:19 +01:00
|
|
|
if not os.path.exists(target_path):
|
2015-01-03 09:44:52 +01:00
|
|
|
os.mkdir(target_path)
|
2014-12-26 09:33:20 +01:00
|
|
|
|
2014-12-18 10:49:13 +01:00
|
|
|
pid = get_pid()
|
|
|
|
|
|
|
|
conn = http.client.HTTPConnection("localhost:2375")
|
2015-01-07 11:38:22 +01:00
|
|
|
try:
|
|
|
|
conn.request("GET", "/events")
|
|
|
|
except ConnectionRefusedError:
|
|
|
|
print('Docker does not expose events on its REST-API. Perhaps it is not running?')
|
|
|
|
sys.exit(-1)
|
|
|
|
|
2014-12-18 10:49:13 +01:00
|
|
|
response = conn.getresponse()
|
|
|
|
|
|
|
|
events = ""
|
|
|
|
while not response.closed:
|
|
|
|
data = response.read(80)
|
|
|
|
if len(data) != 0:
|
|
|
|
events += data.decode("UTF-8")
|
|
|
|
if events.find("{") != -1:
|
|
|
|
open_pos = events.index("{")
|
|
|
|
if events.find("}", open_pos) != -1:
|
|
|
|
close_pos = events.index("}", open_pos)+1
|
|
|
|
handle_event(events[open_pos:close_pos])
|
|
|
|
events = events[close_pos:]
|
|
|
|
|
|
|
|
|