import json, os, sys, urllib.request, urllib.parse, urllib.error def _cfg(): s = json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) base = str(s.get("base_url") or "https://mockprod.riposte-labs.com").rstrip("/") instance = str(s.get("instance") or "s1").strip("/") headers = {"X-API-Key": s.get("api_key", ""), "Accept": "application/json"} return base, instance, headers def request(path, params): base, _, headers = _cfg() clean = {k: v for k, v in params.items() if v not in (None, "")} url = base + "/" + path.lstrip("/") + ("?" + urllib.parse.urlencode(clean, doseq=True) if clean else "") req = urllib.request.Request(url, headers=headers, method="GET") with urllib.request.urlopen(req, timeout=60) as r: raw = r.read() return json.loads(raw) if raw else {} def run(): _, instance, _ = _cfg() request("api/" + instance + "/incidents", {"limit": 1}) print(json.dumps({"ok": True})) try: run() except urllib.error.HTTPError as e: detail = e.read().decode("utf-8", "replace") msg = "API key is not valid." if e.code in (401, 403) else "HTTP " + str(e.code) print(json.dumps({"ok": False, "error": msg, "detail": detail})) sys.exit(1) except Exception as e: print(json.dumps({"ok": False, "error": str(e)})) sys.exit(1)