blob: df3da2a4ae02dfdeca63c8e26a98185cd43b4a60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)
|