import telegram import telegram.error import time from configloader import config from strings import currency_format_string, currency_symbol import typing import os import sys if config["Error Reporting"]["sentry_token"] != \ "https://00000000000000000000000000000000:00000000000000000000000000000000@sentry.io/0000000": import raven sentry_client = raven.Client(config["Error Reporting"]["sentry_token"], release=raven.fetch_git_sha(os.path.dirname(__file__)), environment="Dev" if __debug__ else "Prod") else: sentry_client = None class Price: def __init__(self, value: typing.Union[int, float, str, "Price"]=0): if isinstance(value, int): # Keep the value as it is self.value = int(value) elif isinstance(value, float): # Convert the value to minimum units self.value = int(value * (10 ** int(config["Payments"]["currency_exp"]))) elif isinstance(value, str): # Remove decimal points, then cast to int self.value = int(float(value.replace(",", ".")) * (10 ** int(config["Payments"]["currency_exp"]))) elif isinstance(value, Price): # Copy self self.value = value.value def __repr__(self): return f"" def __str__(self): return currency_format_string.format(symbol=currency_symbol, value="{0:.2f}".format( self.value / (10 ** int(config["Payments"]["currency_exp"])))) def __int__(self): return self.value def __float__(self): return self.value / (10 ** int(config["Payments"]["currency_exp"])) def __ge__(self, other): return self.value >= Price(other).value def __le__(self, other): return self.value <= Price(other).value def __eq__(self, other): return self.value == Price(other).value def __gt__(self, other): return self.value > Price(other).value def __lt__(self, other): return self.value < Price(other).value def __add__(self, other): return Price(self.value + Price(other).value) def __sub__(self, other): return Price(self.value - Price(other).value) def __mul__(self, other): return Price(int(self.value * other)) def __floordiv__(self, other): return Price(int(self.value // other)) def __radd__(self, other): return self.__add__(other) def __rsub__(self, other): return Price(Price(other).value - self.value) def __rmul__(self, other): return self.__mul__(other) def __iadd__(self, other): self.value += Price(other).value return self def __isub__(self, other): self.value -= Price(other).value return self def __imul__(self, other): self.value *= other self.value = int(self.value) return self def __ifloordiv__(self, other): self.value //= other return self def telegram_html_escape(string: str): return string.replace("<", "<")\ .replace(">", ">")\ .replace("&", "&")\ .replace('"', """) def catch_telegram_errors(func): """Decorator, can be applied to any function to retry in case of Telegram errors.""" def result_func(*args, **kwargs): while True: try: return func(*args, **kwargs) # Bot was blocked by the user except telegram.error.Unauthorized: print(f"Unauthorized to call {func.__name__}(), skipping.") break # Telegram API didn't answer in time except telegram.error.TimedOut: print(f"Timed out while calling {func.__name__}(), retrying in 1 sec...") time.sleep(1) # Telegram is not reachable except telegram.error.NetworkError: print(f"Network error while calling {func.__name__}(), retrying in 5 secs...") time.sleep(5) # Unknown error except telegram.error.TelegramError: print(f"Telegram error while calling {func.__name__}(), retrying in 5 secs...") # Send the error to the Sentry server if sentry_client is not None: sentry_client.captureException(exc_info=sys.exc_info()) time.sleep(5) return result_func class DuckBot: def __init__(self, *args, **kwargs): self.bot = telegram.Bot(*args, **kwargs) @catch_telegram_errors def send_message(self, *args, **kwargs): return self.bot.send_message(*args, **kwargs) @catch_telegram_errors def edit_message_text(self, *args, **kwargs): return self.bot.edit_message_text(*args, **kwargs) @catch_telegram_errors def edit_message_caption(self, *args, **kwargs): return self.bot.edit_message_caption(*args, **kwargs) @catch_telegram_errors def edit_message_reply_markup(self, *args, **kwargs): return self.bot.edit_message_reply_markup(*args, **kwargs) @catch_telegram_errors def get_updates(self, *args, **kwargs): return self.bot.get_updates(*args, **kwargs) @catch_telegram_errors def get_me(self, *args, **kwargs): return self.bot.get_me(*args, **kwargs) @catch_telegram_errors def answer_callback_query(self, *args, **kwargs): return self.bot.answer_callback_query(*args, **kwargs) @catch_telegram_errors def answer_pre_checkout_query(self, *args, **kwargs): return self.bot.answer_pre_checkout_query(*args, **kwargs) @catch_telegram_errors def send_invoice(self, *args, **kwargs): return self.bot.send_invoice(*args, **kwargs) @catch_telegram_errors def get_file(self, *args, **kwargs): return self.bot.get_file(*args, **kwargs) @catch_telegram_errors def send_chat_action(self, *args, **kwargs): return self.bot.send_chat_action(*args, **kwargs) # TODO: add more methods