mirror of
https://github.com/sileht/bird-lg.git
synced 2024-11-22 06:54:43 +01:00
DOMAIN is now optional
This commit is contained in:
parent
6f277c23cb
commit
d3e9d5c6b9
14
lg.py
14
lg.py
|
@ -148,8 +148,14 @@ def bird_proxy(host, proto, service, query):
|
||||||
return False, 'Host "%s" invalid' % host
|
return False, 'Host "%s" invalid' % host
|
||||||
elif not path:
|
elif not path:
|
||||||
return False, 'Proto "%s" invalid' % proto
|
return False, 'Proto "%s" invalid' % proto
|
||||||
else:
|
|
||||||
url = "http://%s.%s:%d/%s?q=%s" % (host, app.config["DOMAIN"], port, path, quote(query))
|
url = "http://%s" % (host)
|
||||||
|
if "DOMAIN" in app.config:
|
||||||
|
url = "%s.%s" % (url, app.config["DOMAIN"])
|
||||||
|
url = "%s:%d/%s?" % (url, port, path)
|
||||||
|
|
||||||
|
url = "%sq=%s" % (url, quote(query))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
f = urlopen(url)
|
f = urlopen(url)
|
||||||
resultat = f.read()
|
resultat = f.read()
|
||||||
|
@ -157,6 +163,7 @@ def bird_proxy(host, proto, service, query):
|
||||||
except IOError:
|
except IOError:
|
||||||
resultat = "Failed retreive url: %s" % url
|
resultat = "Failed retreive url: %s" % url
|
||||||
status = False
|
status = False
|
||||||
|
|
||||||
return status, resultat
|
return status, resultat
|
||||||
|
|
||||||
|
|
||||||
|
@ -459,7 +466,10 @@ def show_bgpmap():
|
||||||
return edges[edge_tuple]
|
return edges[edge_tuple]
|
||||||
|
|
||||||
for host, asmaps in data.iteritems():
|
for host, asmaps in data.iteritems():
|
||||||
|
if "DOMAIN" in app.config:
|
||||||
add_node(host, label= "%s\r%s" % (host.upper(), app.config["DOMAIN"].upper()), shape="box", fillcolor="#F5A9A9")
|
add_node(host, label= "%s\r%s" % (host.upper(), app.config["DOMAIN"].upper()), shape="box", fillcolor="#F5A9A9")
|
||||||
|
else:
|
||||||
|
add_node(host, label= "%s" % (host.upper()), shape="box", fillcolor="#F5A9A9")
|
||||||
|
|
||||||
as_number = app.config["AS_NUMBER"].get(host, None)
|
as_number = app.config["AS_NUMBER"].get(host, None)
|
||||||
if as_number:
|
if as_number:
|
||||||
|
|
Loading…
Reference in a new issue