2021-12-20 14:32:19 +00:00
|
|
|
from json import JSONDecodeError
|
2022-02-13 16:33:57 +00:00
|
|
|
from modules import util
|
2021-10-04 17:51:32 +00:00
|
|
|
from modules.util import Failed
|
|
|
|
|
2022-02-13 16:33:57 +00:00
|
|
|
logger = util.logger
|
2021-10-04 17:51:32 +00:00
|
|
|
|
|
|
|
base_url = "https://notifiarr.com/api/v1/"
|
|
|
|
|
|
|
|
|
2021-11-03 14:36:11 +00:00
|
|
|
class Notifiarr:
|
|
|
|
def __init__(self, config, params):
|
|
|
|
self.config = config
|
|
|
|
self.apikey = params["apikey"]
|
2022-10-26 18:01:39 +00:00
|
|
|
self.header = {"X-API-Key": self.apikey}
|
2022-02-13 16:33:57 +00:00
|
|
|
logger.secret(self.apikey)
|
2022-10-26 18:01:39 +00:00
|
|
|
response = self.config.get(f"{base_url}user/pmm/", headers=self.header, params={"fetch": "settings"})
|
2021-12-20 14:32:19 +00:00
|
|
|
try:
|
|
|
|
response_json = response.json()
|
|
|
|
except JSONDecodeError as e:
|
2021-12-21 18:48:27 +00:00
|
|
|
logger.debug(e)
|
|
|
|
raise Failed("Notifiarr Error: Invalid response")
|
2021-10-25 20:51:51 +00:00
|
|
|
if response.status_code >= 400 or ("result" in response_json and response_json["result"] == "error"):
|
2021-11-03 14:36:11 +00:00
|
|
|
logger.debug(f"Response: {response_json}")
|
2021-10-04 17:51:32 +00:00
|
|
|
raise Failed(f"({response.status_code} [{response.reason}]) {response_json}")
|
2022-10-26 18:01:39 +00:00
|
|
|
if not response_json["details"]["response"]:
|
2021-10-04 17:51:32 +00:00
|
|
|
raise Failed("Notifiarr Error: Invalid apikey")
|
|
|
|
|
2022-10-26 18:01:39 +00:00
|
|
|
def notification(self, json):
|
|
|
|
return self.config.get(f"{base_url}notification/pmm/", json=json, headers=self.header)
|