You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.8 KiB
42 lines
1.8 KiB
import discord
|
|
import aiohttp
|
|
import os
|
|
|
|
class Extension:
|
|
def __init__(self, core):
|
|
@core.tree.command(name = "buyvip", description = "Купить випку")
|
|
async def buyvip(
|
|
interaction: discord.Interaction
|
|
):
|
|
await interaction.response.defer(thinking=True)
|
|
steam64 = await core.GetSteam64OfDiscord(interaction.user)
|
|
player = await core.GetPlayer(steam64, steam64)
|
|
content = f"""
|
|
Ознакомиться с випкой можно:
|
|
(кратко) https://tf2.pblr-nyk.pro/#VIPSection
|
|
(подробно) https://vk.com/topic-173269854_48239948
|
|
|
|
Ниже кнопочки покупки используя киви или стим.
|
|
После покупки если ты играешь тебя кикнет, чтоб перезайти.
|
|
Кнопочки ниже ведут на ссылки которые гарантируют покупку випа на профиль привязанный к дискорду: {player.community_url}
|
|
"""
|
|
|
|
prices = []
|
|
async with aiohttp.ClientSession() as session:
|
|
async with session.get(f"{os.getenv('BACKEND_URL')}/api/external/vip", ssl=False) as response:
|
|
prices = await response.json()
|
|
|
|
view = discord.ui.View()
|
|
#qiwi
|
|
for price in prices:
|
|
if price["money_price"] == 0:
|
|
continue
|
|
view.add_item(discord.ui.Button(label=f"Qiwi {price['human_duration'].split()[1]} - {price['money_price']} Рублей", url=f"https://tf2.pblr-nyk.pro/api/profile/current/buyvip?buy_type=qiwi&steam64={steam64}&cost={price['money_price']}"))
|
|
|
|
#steam
|
|
for price in prices:
|
|
if price["money_price"] == 0:
|
|
continue
|
|
view.add_item(discord.ui.Button(label=f"Steam {price['human_duration'].split()[1]} - {price['item_price']}", url=f"https://tf2.pblr-nyk.pro/api/profile/current/buyvip?buy_type=steam"))
|
|
|
|
return await interaction.followup.send(content=content, view=view, ephemeral=False)
|