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://www.virustotal.com/api/v3").rstrip("/") headers = {"x-apikey": s.get("api_key", ""), "Accept": "application/json"} return base, headers def _inputs(): return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) def request(method, path): base, headers = _cfg() req = urllib.request.Request(base + "/" + path.lstrip("/"), headers=headers, method=method) with urllib.request.urlopen(req, timeout=90) as r: return r.read().decode("utf-8", "replace") def run(): comment_id = str(_inputs().get("id", "")) request("DELETE", "comments/" + urllib.parse.quote(comment_id, safe="")) print(json.dumps({"deleted": True, "id": comment_id})) try: run() except urllib.error.HTTPError as e: print(json.dumps({"error": "HTTP " + str(e.code), "detail": e.read().decode("utf-8", "replace")})) sys.exit(1) except Exception as e: print(json.dumps({"error": str(e)})) sys.exit(1)