|
@ -17,13 +17,15 @@ class CustomAlerts(Alert): |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
def __init__(self, token, backend): |
|
|
def __init__(self, token, backend): |
|
|
|
|
|
self.backend = backend |
|
|
super().__init__(token) |
|
|
super().__init__(token) |
|
|
|
|
|
|
|
|
def run(self): |
|
|
def run(self): |
|
|
|
|
|
info("Start pooling") |
|
|
@self.event() |
|
|
@self.event() |
|
|
async def handler(event): |
|
|
async def handler(event): |
|
|
print(event) |
|
|
print(event) |
|
|
self.calculate(event) |
|
|
await self.calculate(event) |
|
|
|
|
|
|
|
|
async def calculate(self, event: Event): |
|
|
async def calculate(self, event: Event): |
|
|
if event.currency != "RUB": |
|
|
if event.currency != "RUB": |
|
@ -34,14 +36,24 @@ class CustomAlerts(Alert): |
|
|
await self.update_prices_from_server() |
|
|
await self.update_prices_from_server() |
|
|
|
|
|
|
|
|
money = int(event.amount) |
|
|
money = int(event.amount) |
|
|
steam2 = self.backend.detect(event.message).steam2 |
|
|
|
|
|
uid = event.id |
|
|
uid = event.id |
|
|
|
|
|
|
|
|
seconds = self.price_checker(money) |
|
|
seconds = self.price_checker(money) |
|
|
if seconds == 0: |
|
|
if seconds == 0: |
|
|
warning(f"[{uid}] so smol donate {money} RUB") |
|
|
warning(f"[{uid}] so smol donate {money} RUB") |
|
|
|
|
|
|
|
|
info(f"Add vip {steam2}, amount {money}") |
|
|
try: |
|
|
|
|
|
if event._is_test_alert: |
|
|
|
|
|
event.message = "https://steamcommunity.com/id/gabe/" |
|
|
|
|
|
steam2 = (await self.backend.getSteam(event.message))['steam2'] |
|
|
|
|
|
except Exception as e: |
|
|
|
|
|
error(f"Cannot get steam64 to steam2: {e}") |
|
|
|
|
|
return |
|
|
|
|
|
|
|
|
|
|
|
info(f"Add vip {steam2}, amount {money}, seconds: {seconds}") |
|
|
|
|
|
if event._is_test_alert: |
|
|
|
|
|
warning(f"Is test alert! rub={int(money * 0.9)}; da_{uid}") |
|
|
|
|
|
return |
|
|
|
|
|
|
|
|
await self.backend.vip(steam2, seconds, f"rub={int(money * 0.9)};", unique=f"da_{uid}") |
|
|
await self.backend.vip(steam2, seconds, f"rub={int(money * 0.9)};", unique=f"da_{uid}") |
|
|
|
|
|
|
|
|
async def update_prices_from_server(self, exit_if_error = True): |
|
|
async def update_prices_from_server(self, exit_if_error = True): |
|
@ -50,11 +62,11 @@ class CustomAlerts(Alert): |
|
|
self.update_prices(prices) |
|
|
self.update_prices(prices) |
|
|
|
|
|
|
|
|
def update_prices(self, prices): |
|
|
def update_prices(self, prices): |
|
|
|
|
|
self.prices = {} |
|
|
for price in prices: |
|
|
for price in prices: |
|
|
if price["money_price"] == 0: |
|
|
if price["money_price"] == 0: |
|
|
continue |
|
|
continue |
|
|
self.prices = {} |
|
|
self.prices.update({float(price["money_price"]) + float(price["money_price"] * price["da_percent"] / 100):self.convert_map[price['period']]}) |
|
|
self.prices.update({float(price["money_price"]) + float(price["money_price"] * price["da_percent"] / 10):self.convert_map[price['period']]}) |
|
|
|
|
|
if not self.prices: |
|
|
if not self.prices: |
|
|
error("cannot get prices from server") |
|
|
error("cannot get prices from server") |
|
|
sys.exit(228) |
|
|
sys.exit(228) |
|
@ -74,7 +86,7 @@ if __name__ == "__main__": |
|
|
error("DA_TOKEN in not setted!") |
|
|
error("DA_TOKEN in not setted!") |
|
|
sys.exit(2) |
|
|
sys.exit(2) |
|
|
|
|
|
|
|
|
print("Build date: "+os.getenv("BUILDDATE", "not setted")) |
|
|
print("Build date: " + os.getenv("BUILDDATE", "not setted")) |
|
|
def run(): |
|
|
def run(): |
|
|
client = CustomAlerts(os.getenv("DA_TOKEN"), BackendClient()) |
|
|
client = CustomAlerts(os.getenv("DA_TOKEN"), BackendClient()) |
|
|
client.run() |
|
|
client.run() |
|
|