Files
gotify-tray-customized/gotify_tray/gotify/api.py
2022-01-29 17:40:15 +01:00

227 lines
7.1 KiB
Python

import logging
from typing import Callable, List, Optional, Union
import requests
from .listener import Listener
from .models import (
GotifyApplicationModel,
GotifyErrorModel,
GotifyHealthModel,
GotifyMessageModel,
GotifyPagedMessagesModel,
GotifyPagingModel,
GotifyVersionModel,
)
logger = logging.getLogger("gotify-tray")
class GotifySession(object):
def __init__(self, url: str, token: str):
self.url = url.rstrip("/")
self.session = requests.Session()
self.session.headers.update({"X-Gotify-Key": token})
def _get(self, endpoint: str = "/", **kwargs) -> requests.Response:
return self.session.get(self.url + endpoint, **kwargs)
def _post(self, endpoint: str = "/", **kwargs) -> requests.Response:
return self.session.post(self.url + endpoint, **kwargs)
def _put(self, endpoint: str = "/", **kwargs) -> requests.Response:
return self.session.put(self.url + endpoint, **kwargs)
def _delete(self, endpoint: str = "/", **kwargs) -> requests.Response:
return self.session.delete(self.url + endpoint, **kwargs)
# For sending messages
class GotifyApplication(GotifySession):
def __init__(self, url: str, application_token: str):
super(GotifyApplication, self).__init__(url, application_token)
def push(
self, title: str = "", message: str = "", priority: int = 0, extras: dict = None
) -> Union[GotifyMessageModel, GotifyErrorModel]:
response = self._post(
"/message",
json={
"title": title,
"message": message,
"priority": priority,
"extras": extras,
},
)
return (
GotifyMessageModel(response.json())
if response.ok
else GotifyErrorModel(response)
)
# For everything else
class GotifyClient(GotifySession):
def __init__(self, url: str, client_token: str):
super(GotifyClient, self).__init__(url, client_token)
self.hostname = self.url.lstrip("https://").lstrip("http://")
self.listener = Listener(self.hostname, client_token)
"""
Application
"""
def get_applications(self) -> Union[List[GotifyApplicationModel], GotifyErrorModel]:
response = self._get("/application")
return (
[GotifyApplicationModel(x) for x in response.json()]
if response.ok
else GotifyErrorModel(response)
)
def create_application(
self, name: str, description: str = ""
) -> Union[GotifyApplicationModel, GotifyErrorModel]:
response = self._post(
"/application", json={"name": name, "description": description}
)
return (
GotifyApplicationModel(response.json())
if response.ok
else GotifyErrorModel(response)
)
def update_application(
self, application_id: int, name: str, description: str = ""
) -> Union[GotifyApplicationModel, GotifyErrorModel]:
response = self._put(
f"/application/{application_id}",
json={"name": name, "description": description},
)
return (
GotifyApplicationModel(response.json())
if response.ok
else GotifyErrorModel(response)
)
def delete_application(self, application_id: int) -> bool:
return self._delete(f"/application/{application_id}").ok
def upload_application_image(
self, application_id: int, img_path: str
) -> Optional[GotifyApplicationModel]:
try:
with open(img_path, "rb") as f:
response = self._post(
f"/application/{application_id}/image", files={"file": f}
)
return response.json() if response.ok else None
except FileNotFoundError:
logger.error(
f"GotifyClient.upload_application_image: image '{img_path}' not found."
)
return None
"""
Message
"""
def get_application_messages(
self, application_id: int, limit: int = 100, since: int = None
) -> Union[GotifyPagedMessagesModel, GotifyErrorModel]:
response = self._get(
f"/application/{application_id}/message",
params={"limit": limit, "since": since},
)
if not response.ok:
return GotifyErrorModel(response)
j = response.json()
return GotifyPagedMessagesModel(
messages=[GotifyMessageModel(m) for m in j["messages"]],
paging=GotifyPagingModel(j["paging"]),
)
def delete_application_messages(self, application_id: int) -> bool:
return self._delete(f"/application/{application_id}/message").ok
def get_messages(
self, limit: int = 100, since: int = None
) -> Union[GotifyPagedMessagesModel, GotifyErrorModel]:
response = self._get("/message", params={"limit": limit, "since": since})
if not response.ok:
return GotifyErrorModel(response)
j = response.json()
return GotifyPagedMessagesModel(
messages=[GotifyMessageModel(m) for m in j["messages"]],
paging=GotifyPagingModel(j["paging"]),
)
def delete_messages(self) -> bool:
return self._delete("/message").ok
def delete_message(self, message_id: int) -> bool:
return self._delete(f"/message/{message_id}").ok
def listen(
self,
opened_callback: Callable[[], None] = None,
closed_callback: Callable[[int, str], None] = None,
new_message_callback: Callable[[GotifyMessageModel], None] = None,
error_callback: Callable[[Exception], None] = None,
):
def dummy(*args):
...
self.listener.opened.connect(lambda: self.opened_callback(opened_callback))
self.listener.closed.connect(closed_callback or dummy)
self.listener.new_message.connect(new_message_callback or dummy)
self.listener.error.connect(error_callback or dummy)
self.listener.start()
def opened_callback(self, user_callback: Callable[[], None] = None):
self.listener.reset_wait_time()
if user_callback:
user_callback()
def reconnect(self, increase_wait_time: bool = True):
if increase_wait_time:
self.listener.increase_wait_time()
self.listener.start()
def stop(self, reset_wait: bool = False):
if reset_wait:
self.listener.reset_wait_time()
self.listener.stop()
def is_listening(self) -> bool:
return self.listener.running
"""
Health
"""
def health(self) -> Union[GotifyHealthModel, GotifyErrorModel]:
response = self._get("/health")
return (
GotifyHealthModel(response.json())
if response.ok
else GotifyErrorModel(response)
)
"""
Version
"""
def version(self) -> Union[GotifyVersionModel, GotifyErrorModel]:
response = self._get("/version")
return (
GotifyVersionModel(response.json())
if response.ok
else GotifyErrorModel(response)
)