mirror of
https://github.com/sileht/bird-lg.git
synced 2024-11-22 06:54:43 +01:00
Handle error correctly
This commit is contained in:
parent
6311df95e8
commit
298b1459fa
75
lg.py
75
lg.py
|
@ -122,8 +122,10 @@ def bird_proxy(host, proto, service, query):
|
||||||
|
|
||||||
port = app.config["PROXY"].get(host, "")
|
port = app.config["PROXY"].get(host, "")
|
||||||
|
|
||||||
if not port or not path:
|
if not port:
|
||||||
return False, "Host/Proto not allowed"
|
return False, 'Host "%s" invalid' % host
|
||||||
|
elif not path:
|
||||||
|
return False, 'Proto "%s" invalid' % proto
|
||||||
else:
|
else:
|
||||||
url = "http://%s.%s:%d/%s?q=%s" % (host, app.config["DOMAIN"], port, path, quote(query))
|
url = "http://%s.%s:%d/%s?q=%s" % (host, app.config["DOMAIN"], port, path, quote(query))
|
||||||
try:
|
try:
|
||||||
|
@ -218,20 +220,26 @@ def summary(hosts, proto="ipv4"):
|
||||||
for host in hosts.split("+"):
|
for host in hosts.split("+"):
|
||||||
ret, res = bird_command(host, proto, command)
|
ret, res = bird_command(host, proto, command)
|
||||||
res = res.split("\n")
|
res = res.split("\n")
|
||||||
if len(res) > 1:
|
|
||||||
data = []
|
|
||||||
for line in res[1:]:
|
|
||||||
line = line.strip()
|
|
||||||
if line and (line.split() + [""])[1] not in SUMMARY_UNWANTED_PROTOS:
|
|
||||||
m = re.match(SUMMARY_RE_MATCH, line)
|
|
||||||
if m:
|
|
||||||
data.append(m.groupdict())
|
|
||||||
else:
|
|
||||||
app.logger.warning("couldn't parse: %s", line)
|
|
||||||
|
|
||||||
summary[host] = data
|
if ret is False:
|
||||||
else:
|
errors.append("%s" % res)
|
||||||
|
continue
|
||||||
|
|
||||||
|
if len(res) <= 1:
|
||||||
errors.append("%s: bird command failed with error, %s" % (host, "\n".join(res)))
|
errors.append("%s: bird command failed with error, %s" % (host, "\n".join(res)))
|
||||||
|
continue
|
||||||
|
|
||||||
|
data = []
|
||||||
|
for line in res[1:]:
|
||||||
|
line = line.strip()
|
||||||
|
if line and (line.split() + [""])[1] not in SUMMARY_UNWANTED_PROTOS:
|
||||||
|
m = re.match(SUMMARY_RE_MATCH, line)
|
||||||
|
if m:
|
||||||
|
data.append(m.groupdict())
|
||||||
|
else:
|
||||||
|
app.logger.warning("couldn't parse: %s", line)
|
||||||
|
|
||||||
|
summary[host] = data
|
||||||
|
|
||||||
return render_template('summary.html', summary=summary, command=command, errors=errors)
|
return render_template('summary.html', summary=summary, command=command, errors=errors)
|
||||||
|
|
||||||
|
@ -251,10 +259,16 @@ def detail(hosts, proto):
|
||||||
for host in hosts.split("+"):
|
for host in hosts.split("+"):
|
||||||
ret, res = bird_command(host, proto, command)
|
ret, res = bird_command(host, proto, command)
|
||||||
res = res.split("\n")
|
res = res.split("\n")
|
||||||
if len(res) > 1:
|
|
||||||
detail[host] = {"status": res[1], "description": add_links(res[2:])}
|
if ret is False:
|
||||||
else:
|
errors.append("%s" % res)
|
||||||
|
continue
|
||||||
|
|
||||||
|
if len(res) <= 1:
|
||||||
errors.append("%s: bird command failed with error, %s" % (host, "\n".join(res)))
|
errors.append("%s: bird command failed with error, %s" % (host, "\n".join(res)))
|
||||||
|
continue
|
||||||
|
|
||||||
|
detail[host] = {"status": res[1], "description": add_links(res[2:])}
|
||||||
|
|
||||||
return render_template('detail.html', detail=detail, command=command, errors=errors)
|
return render_template('detail.html', detail=detail, command=command, errors=errors)
|
||||||
|
|
||||||
|
@ -279,11 +293,17 @@ def traceroute(hosts, proto):
|
||||||
except:
|
except:
|
||||||
return error_page("%s is unresolvable or invalid for %s" % (q, proto))
|
return error_page("%s is unresolvable or invalid for %s" % (q, proto))
|
||||||
|
|
||||||
|
errors = []
|
||||||
infos = {}
|
infos = {}
|
||||||
for host in hosts.split("+"):
|
for host in hosts.split("+"):
|
||||||
status, resultat = bird_proxy(host, proto, "traceroute", q)
|
status, resultat = bird_proxy(host, proto, "traceroute", q)
|
||||||
|
if status is False:
|
||||||
|
errors.append("%s" % resultat)
|
||||||
|
continue
|
||||||
|
|
||||||
|
|
||||||
infos[host] = add_links(resultat)
|
infos[host] = add_links(resultat)
|
||||||
return render_template('traceroute.html', infos=infos)
|
return render_template('traceroute.html', infos=infos, errors=errors)
|
||||||
|
|
||||||
|
|
||||||
@app.route("/adv/<hosts>/<proto>")
|
@app.route("/adv/<hosts>/<proto>")
|
||||||
|
@ -563,15 +583,20 @@ def show_route(request_type, hosts, proto):
|
||||||
errors = []
|
errors = []
|
||||||
for host in hosts.split("+"):
|
for host in hosts.split("+"):
|
||||||
ret, res = bird_command(host, proto, command)
|
ret, res = bird_command(host, proto, command)
|
||||||
|
|
||||||
res = res.split("\n")
|
res = res.split("\n")
|
||||||
if len(res) > 1:
|
|
||||||
if bgpmap:
|
if ret is False:
|
||||||
detail[host] = build_as_tree_from_raw_bird_ouput(host, proto, res)
|
errors.append("%s" % res)
|
||||||
else:
|
continue
|
||||||
detail[host] = add_links(res)
|
|
||||||
else:
|
if len(res) <= 1:
|
||||||
errors.append("%s: bird command failed with error, %s" % (host, "\n".join(res)))
|
errors.append("%s: bird command failed with error, %s" % (host, "\n".join(res)))
|
||||||
|
continue
|
||||||
|
|
||||||
|
if bgpmap:
|
||||||
|
detail[host] = build_as_tree_from_raw_bird_ouput(host, proto, res)
|
||||||
|
else:
|
||||||
|
detail[host] = add_links(res)
|
||||||
|
|
||||||
if bgpmap:
|
if bgpmap:
|
||||||
detail = json.dumps(detail)
|
detail = json.dumps(detail)
|
||||||
|
|
Loading…
Reference in a new issue