diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-11-27 16:17:05 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-04-24 01:33:04 +0300 |
commit | c412bf2ee0a3fbf9032fc32a26837d4fbc7585c5 (patch) | |
tree | 5cca6bcab79331ad82cab4219c7692b9dd4eea21 /src/home/bot/reporting.py |
initial public
Diffstat (limited to 'src/home/bot/reporting.py')
-rw-r--r-- | src/home/bot/reporting.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/home/bot/reporting.py b/src/home/bot/reporting.py new file mode 100644 index 0000000..df3da2a --- /dev/null +++ b/src/home/bot/reporting.py @@ -0,0 +1,22 @@ +import logging + +from telegram import Message +from ..api import WebAPIClient as APIClient +from ..api.errors import ApiResponseError +from ..api.types import BotType + +logger = logging.getLogger(__name__) + + +class ReportingHelper: + def __init__(self, client: APIClient, bot_type: BotType): + self.client = client + self.bot_type = bot_type + + def report(self, message, text: str = None) -> None: + if text is None: + text = message.text + try: + self.client.log_bot_request(self.bot_type, message.chat_id, text) + except ApiResponseError as error: + logger.exception(error) |