Browse Source

give vip

huy
gsd 2 years ago
parent
commit
b08fd064d9
  1. 23
      admin_ext/givevip.py
  2. 15
      admin_ext/unvip.py
  3. 41
      player.py

23
admin_ext/givevip.py

@ -0,0 +1,23 @@
import discord
class Extension:
def __init__(self, core):
@core.tree.command(name = "givevip", description = "Выдать игроку випку")
@discord.app_commands.checks.has_role("Администратор Фактов13")
@discord.app_commands.describe(profile=core.ANY_INPUT, days="Дней", hours="Часов", minutes="Минут")
async def givevip_command(
interaction: discord.Interaction,
profile: str,
days: int = 0,
hours: int = 0,
minutes: int = 0
):
await interaction.response.defer(thinking=True)
steam64 = await core.GetSteam64OfDiscord(interaction.user)
player = await core.GetPlayer(profile, steam64)
amount = days * 24 * 60 * 60 + hours * 60 * 60 + minutes * 60
if amount > 0:
return await interaction.followup.send(f'{await player.vip(amount)}', ephemeral=False)
else:
return await interaction.followup.send("Ты еблан, время то укажи дядя...")

15
admin_ext/unvip.py

@ -0,0 +1,15 @@
import discord
class Extension:
def __init__(self, core):
@core.tree.command(name = "unvip", description = "Забрать випку у игрока")
@discord.app_commands.checks.has_role("Администратор Фактов13")
@discord.app_commands.describe(profile=core.ANY_INPUT)
async def unvip_command(
interaction: discord.Interaction,
profile: str
):
await interaction.response.defer(thinking=True)
steam64 = await core.GetSteam64OfDiscord(interaction.user)
player = await core.GetPlayer(profile, steam64)
return await interaction.followup.send(f'{await player.unvip()}', ephemeral=False)

41
player.py

@ -167,6 +167,47 @@ class Player:
###############
#admin commands
###############
async def vip(self, amount):
async with aiohttp.ClientSession(cookies={
"secretkey":os.getenv("BACKEND_SECRETKEY"),
"steam64": self.requester_steam64}) as session:
async with session.post(f"{os.getenv('BACKEND_URL')}/api/admin/vip?steam64={self.steam64}&amount={amount}", ssl=False) as response:
await response.text()
if response.status == 409:
return "Нельзя выдать випку по причине что пользователь имеет отличные правила от випа"
elif response.status == 201:
return "Випка была выдана"
elif response.status == 205:
return "Випка была продленна"
elif response.status == 400:
return "На том конце проишел хуй знает что"
elif response.status == 403:
raise LowPermition
elif response.status == 406:
raise AdminLowPermition
raise UnknownBackendResponse
async def unvip(self):
async with aiohttp.ClientSession(cookies={
"secretkey":os.getenv("BACKEND_SECRETKEY"),
"steam64": self.requester_steam64}) as session:
async with session.delete(f"{os.getenv('BACKEND_URL')}/api/admin/vip?steam64={self.steam64}", ssl=False) as response:
await response.text()
if response.status == 409:
return "У пользователя есть права, но они не вип, так что хуй"
elif response.status == 200:
return "Удалены права"
elif response.status == 404:
return "У пользователя нет прав и так"
elif response.status == 400:
return "На том конце проишел хуй знает что"
elif response.status == 403:
raise LowPermition
elif response.status == 406:
raise AdminLowPermition
raise UnknownBackendResponse
async def kick(self, reason):
async with aiohttp.ClientSession(cookies={
"secretkey":os.getenv("BACKEND_SECRETKEY"),

Loading…
Cancel
Save