Plex-Meta-Manager/modules/notifiarr.py

30 lines
1.1 KiB
Python
Raw Normal View History

2021-12-20 14:32:19 +00:00
from json import JSONDecodeError
from modules import util
2021-10-04 17:51:32 +00:00
from modules.util import Failed
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}
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:
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)