mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
62 lines
2.6 KiB
Python
62 lines
2.6 KiB
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import random
|
|
import requests
|
|
|
|
from yunohost.diagnosis import Diagnoser
|
|
from yunohost.domain import domain_list
|
|
from yunohost.utils.error import YunohostError
|
|
|
|
|
|
class WebDiagnoser(Diagnoser):
|
|
|
|
id_ = os.path.splitext(os.path.basename(__file__))[0].split("-")[1]
|
|
cache_duration = 3600
|
|
dependencies = ["ip"]
|
|
|
|
def run(self):
|
|
|
|
nonce_digits = "0123456789abcedf"
|
|
|
|
all_domains = domain_list()["domains"]
|
|
for domain in all_domains:
|
|
|
|
nonce = ''.join(random.choice(nonce_digits) for i in range(16))
|
|
os.system("rm -rf /tmp/.well-known/ynh-diagnosis/")
|
|
os.system("mkdir -p /tmp/.well-known/ynh-diagnosis/")
|
|
os.system("touch /tmp/.well-known/ynh-diagnosis/%s" % nonce)
|
|
|
|
try:
|
|
r = requests.post('https://diagnosis.yunohost.org/check-http', json={'domain': domain, "nonce": nonce}, timeout=30)
|
|
if r.status_code not in [200, 400, 418]:
|
|
raise Exception("Bad response from the server https://diagnosis.yunohost.org/check-http : %s - %s" % (str(r.status_code), r.content))
|
|
r = r.json()
|
|
if "status" not in r.keys():
|
|
raise Exception("Bad syntax for response ? Raw json: %s" % str(r))
|
|
elif r["status"] == "error" and ("code" not in r.keys() or not r["code"].startswith("error_http_check_")):
|
|
if "content" in r.keys():
|
|
raise Exception(r["content"])
|
|
else:
|
|
raise Exception("Bad syntax for response ? Raw json: %s" % str(r))
|
|
except Exception as e:
|
|
raise YunohostError("diagnosis_http_could_not_diagnose", error=e)
|
|
|
|
if r["status"] == "ok":
|
|
yield dict(meta={"domain": domain},
|
|
status="SUCCESS",
|
|
summary=("diagnosis_http_ok", {"domain": domain}))
|
|
else:
|
|
detail = r["code"].replace("error_http_check", "diagnosis_http") if "code" in r else "diagnosis_http_unknown_error"
|
|
yield dict(meta={"domain": domain},
|
|
status="ERROR",
|
|
summary=("diagnosis_http_unreachable", {"domain": domain}),
|
|
details=[(detail,())])
|
|
|
|
# In there or idk where else ...
|
|
# try to diagnose hairpinning situation by crafting a request for the
|
|
# global ip (from within local network) and seeing if we're getting the right page ?
|
|
|
|
|
|
def main(args, env, loggers):
|
|
return WebDiagnoser(args, env, loggers).diagnose()
|