1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/usr/bin/env python3.4
import requests
from jinja2 import Template,Environment,FileSystemLoader
import json
endpoints = "read/oplog read/snmp read/switches-management public/config public/dhcp public/dhcp-summary public/ping public/switches public/switch-state".split()
objects = dict()
def getEndpoint(endpoint):
r = requests.get("http://gondul-front:/api/%s" % endpoint, auth=('demo','demo'))
if (r.status_code != 200):
raise Exception("Bad status code for endpoint %s: %s" % (endpoint, r.status_code))
return r.json()
def updateData():
for a in endpoints:
objects[a] = getEndpoint(a)
env = Environment(loader=FileSystemLoader(['templates/','/opt/gondul/web/templates']),lstrip_blocks=True, trim_blocks=True)
import http.server
class MyHandler(http.server.BaseHTTPRequestHandler):
def do_GET(self):
print (self.path[1:])
updateData()
url = self.path[1:]
options = dict()
if url.find("?") != -1:
(url, tmpoptions) = url.split("?")
print (tmpoptions)
tmptuples = tmpoptions.split("&")
print (tmptuples)
for a in tmptuples:
(x,y) = a.split("=")
options[x] = y
try:
template = env.get_template(url)
body = template.render(objects=objects, options=options).encode('UTF-8')
self.send_response(200)
except:
body = "baaad\n".encode('UTF-8')
self.send_response(500)
self.send_header('Cache-Control','max-age=30, s-maxage=5')
self.send_header('Content-Length', int(len(body)))
self.end_headers()
self.wfile.write(body)
self.wfile.flush()
def run(server_class=http.server.HTTPServer, handler_class=http.server.BaseHTTPRequestHandler):
server_address = ('', 8080)
httpd = server_class(server_address, handler_class)
httpd.serve_forever()
run(handler_class=MyHandler)
|