|
|
@ -7,17 +7,17 @@ class BackendClient: |
|
|
|
up = False |
|
|
|
warn = False |
|
|
|
|
|
|
|
def __init__(self): |
|
|
|
if not os.getenv("BACKEND_URL", ""): |
|
|
|
def __init__(self, backend_url = "", secret_key = ""): |
|
|
|
if not os.getenv("BACKEND_URL", backend_url): |
|
|
|
error("BACKEND_URL not setted in env") |
|
|
|
sys.exit(10) |
|
|
|
if not os.getenv("SECRET_KEY", ""): |
|
|
|
if not os.getenv("SECRET_KEY", secret_key): |
|
|
|
error("SECRET_KEY not setted in env") |
|
|
|
sys.exit(11) |
|
|
|
self.secret_key = os.getenv("SECRET_KEY") |
|
|
|
self.pulse_url = f"{os.getenv('BACKEND_URL')}/api/pulse" |
|
|
|
self.vip_url = f"{os.getenv('BACKEND_URL')}/api/external/vip" |
|
|
|
self.detect = f"{os.getenv('BACKEND_URL')}/api/profile/steam" |
|
|
|
self.secret_key = os.getenv("SECRET_KEY", secret_key) |
|
|
|
self.pulse_url = f"{os.getenv('BACKEND_URL', backend_url)}/api/pulse" |
|
|
|
self.vip_url = f"{os.getenv('BACKEND_URL', backend_url)}/api/external/vip" |
|
|
|
self.detect = f"{os.getenv('BACKEND_URL', backend_url)}/api/profile/steam" |
|
|
|
|
|
|
|
async def getSteam(self, any): |
|
|
|
async with aiohttp.ClientSession(cookies={ |
|
|
@ -47,7 +47,7 @@ class BackendClient: |
|
|
|
async def vip(self, steamid, amount: int, extra: str, unique: str = ""): |
|
|
|
async with aiohttp.ClientSession(cookies={ |
|
|
|
"secretkey":self.secret_key}) as session: |
|
|
|
async with session.post(self.vip_url + f"?steam={steamid}&amount={int(amount)}&service=qiwi&extra={extra}&unique={unique}", ssl=False) as response: |
|
|
|
async with session.post(self.vip_url + f"?steam={steamid}&amount={int(amount)}&service=donationalerts&extra={extra}&unique={unique}", ssl=False) as response: |
|
|
|
try: |
|
|
|
result = int(await response.text()) |
|
|
|
if result == 0: |
|
|
|