TotalFreedomBot/commands/server_commands.py

299 lines
11 KiB
Python
Raw Normal View History

2020-10-28 11:47:39 +00:00
import discord
2020-10-30 13:57:59 +00:00
import requests
2020-10-28 11:47:39 +00:00
from checks import *
from discord.ext import commands
from datetime import datetime
2020-10-31 02:02:54 +00:00
from functions import *
2020-10-30 13:57:59 +00:00
from unicode import *
from telnetlib import Telnet
2020-10-28 11:47:39 +00:00
class ServerCommands(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command()
@is_liaison()
async def eventhost(self, ctx, user: discord.Member):
'Add or remove event host role - liaison only'
eventhostrole = ctx.guild.get_role(event_host)
if eventhostrole in user.roles:
await user.remove_roles(eventhostrole)
2020-10-31 02:02:54 +00:00
await ctx.send(f'```Succesfully took {eventhostrole.name} from {user.name}```')
2020-10-28 11:47:39 +00:00
else:
await user.add_roles(eventhostrole)
2020-10-31 02:02:54 +00:00
await ctx.send(f'```Succesfully added {eventhostrole.name} to {user.name}```')
@commands.command()
@is_creative_designer()
async def masterbuilder(self, ctx, user: discord.Member):
'Add or remove master builder role - ECD only'
master_builder_role = ctx.guild.get_role(master_builder)
if master_builder_role in user.roles:
await user.remove_roles(master_builder_role)
await ctx.send(f'```Succesfully took {master_builder_role.name} from {user.name}```')
else:
await user.add_roles(master_builder_role)
await ctx.send(f'```Succesfully added {master_builder_role.name} to {user.name}```')
2020-10-28 11:47:39 +00:00
@commands.command()
@is_staff()
async def serverban(self, ctx, user: discord.Member):
'Add or remove server banned role'
serverbannedrole = ctx.guild.get_role(server_banned)
if serverbannedrole in user.roles:
await user.remove_roles(serverbannedrole)
await ctx.send(f'Took Server Banned role from {user.name}')
else:
await user.add_roles(serverbannedrole)
await ctx.send(f'Added Server Banned role to {user.name}')
@commands.command()
@is_staff()
async def start(self, ctx):
2020-11-21 12:52:12 +00:00
'Starts the server'
em = discord.Embed()
try:
attempt = hit_endpoint('start')
except Exception as e:
em.title='Command error'
em.colour = 0xFF0000
em.description='Something went wrong'
print(f'Error while starting server: {e}')
await ctx.send(embed=em)
else:
if 'error' in attempt.lower():
em.title='Command error'
em.colour = 0xFF0000
em.description=f'{attempt}'
await ctx.send(embed=em)
else:
em.title = 'Success'
em.colour = 0x00FF00
em.description = f'{attempt}'
await ctx.send(embed=em)
@commands.command()
async def uptime(self, ctx):
"Returns the uptime of the VPS"
em = discord.Embed()
em.title = 'VPS Uptime Information'
em.description = hit_endpoint('uptime')
await ctx.send(embed=em)
2020-10-28 11:47:39 +00:00
@commands.command()
@is_staff()
async def stop(self, ctx):
2020-10-30 13:57:59 +00:00
'Stops the server'
em = discord.Embed()
try:
2020-11-21 12:52:12 +00:00
attempt = hit_endpoint('stop')
except Exception as e:
2020-10-30 13:57:59 +00:00
em.title='Command error'
em.colour = 0xFF0000
em.description='Something went wrong'
2020-11-21 12:52:12 +00:00
print(f'Error while stopping server: {e}')
2020-10-30 13:57:59 +00:00
await ctx.send(embed=em)
else:
2020-11-21 12:52:12 +00:00
if 'error' in attempt.lower():
em.title='Command error'
em.colour = 0xFF0000
em.description=f'{attempt}'
await ctx.send(embed=em)
else:
em.title = 'Success'
em.colour = 0x00FF00
em.description = f'{attempt}'
await ctx.send(embed=em)
2020-10-31 02:02:54 +00:00
@commands.command(aliases=['adminconsole', 'ac'])
@is_staff()
async def telnet(self, ctx, *args):
'mv, gtfo, kick, mute or warn from discord'
em = discord.Embed()
command = ''
for x in range(len(args)):
command += f'{args[x]} '
try:
2020-10-31 20:05:54 +00:00
if args[0] in ['mute', 'stfu', 'gtfo', 'ban', 'unban', 'unmute', 'smite', 'noob', 'tban', 'tempban', 'warn', 'mv', 'kick', 'cc','say']:
2020-10-31 02:02:54 +00:00
self.bot.telnet_object.session.write(bytes(command, 'ascii') + b"\r\n")
2020-10-31 15:15:46 +00:00
elif args[0] == 'slconfig':
if args[1] not in ['add', 'remove']:
raise no_permission(['IS_SENIOR_ADMIN'])
else:
self.bot.telnet_object.session.write(bytes(command, 'ascii') + b"\r\n")
2020-10-31 02:02:54 +00:00
else:
raise no_permission(['IS_SENIOR_ADMIN'])
except Exception as e:
em.title='Command error'
em.colour = 0xFF0000
em.description = f'{e}'
await ctx.send(embed=em)
else:
em.title = 'Success'
em.colour = 0x00FF00
em.description = 'Command sent.'
await ctx.send(embed=em)
2020-10-28 11:47:39 +00:00
@commands.command()
@is_senior()
async def kill(self, ctx):
2020-10-30 13:57:59 +00:00
'Kills the server'
em = discord.Embed()
try:
2020-11-21 12:52:12 +00:00
attempt = hit_endpoint('kill')
except Exception as e:
2020-10-30 13:57:59 +00:00
em.title='Command error'
em.colour = 0xFF0000
em.description='Something went wrong'
2020-11-21 12:52:12 +00:00
print(f'Error while killing server: {e}')
2020-10-30 13:57:59 +00:00
await ctx.send(embed=em)
else:
2020-11-21 12:52:12 +00:00
if 'error' in attempt.lower():
em.title='Command error'
em.colour = 0xFF0000
em.description='{attempt}'
print(f'Error while killing server: {e}')
await ctx.send(embed=em)
else:
em.title = 'Success'
em.colour = 0x00FF00
em.description = f'{attempt}'
await ctx.send(embed=em)
2020-10-30 13:57:59 +00:00
2020-10-28 11:47:39 +00:00
@commands.command()
@is_staff()
async def restart(self, ctx):
2020-10-30 13:57:59 +00:00
'Restarts the server'
em = discord.Embed()
try:
2020-10-31 02:02:54 +00:00
self.bot.telnet_object.session.write(bytes('restart', 'ascii') + b"\r\n")
2020-11-21 12:52:12 +00:00
except Exception as e:
2020-10-30 13:57:59 +00:00
em.title='Command error'
em.colour = 0xFF0000
em.description='Something went wrong'
2020-11-21 12:52:12 +00:00
print(f'Error while restarting server: {e}')
2020-10-30 13:57:59 +00:00
await ctx.send(embed=em)
else:
em.title = 'Success'
em.colour = 0x00FF00
em.description = 'Server restarting.'
await ctx.send(embed=em)
2020-10-28 11:47:39 +00:00
@commands.command()
@is_senior()
async def console(self, ctx,*, command):
2020-10-30 13:57:59 +00:00
'Send a command as console'
em = discord.Embed()
try:
2020-10-31 02:02:54 +00:00
self.bot.telnet_object.session.write(bytes(command, 'ascii') + b"\r\n")
2020-10-30 13:57:59 +00:00
except Exception as e:
em.title='Command error'
em.colour = 0xFF0000
em.description = f'{e}'
await ctx.send(embed=em)
else:
em.title = 'Success'
em.colour = 0x00FF00
em.description = 'Command sent.'
await ctx.send(embed=em)
2020-10-28 11:47:39 +00:00
@commands.command(aliases=['status'])
async def state(self, ctx):
'Gets the current status of the Server'
em = discord.Embed()
try:
2020-11-21 12:52:12 +00:00
json = requests.get("http://play.totalfreedom.me:28966/list?json=true", timeout=5).json()
2020-10-30 13:57:59 +00:00
except:
2020-10-28 11:47:39 +00:00
em.description = 'Server is offline'
2020-10-30 13:57:59 +00:00
em.colour = 0xFF0000
else:
em.description = 'Server is online'
em.colour = 0x00FF00
2020-10-28 11:47:39 +00:00
await ctx.send(embed=em)
2020-11-21 12:52:12 +00:00
@commands.command(name='list')
async def online(self, ctx):
2020-10-28 11:47:39 +00:00
'Gives a list of online players.'
em = discord.Embed()
em.title = "Player List"
try:
2020-11-21 12:52:12 +00:00
json = requests.get("http://play.totalfreedom.me:28966/list?json=true", timeout=5).json()
2020-10-28 11:47:39 +00:00
if json["online"] == 0:
em.description = "There are no online players"
else:
em.description = "There are {} / {} online players".format(json["online"], json["max"])
owners = json["owners"]
if len(owners) != 0:
em = format_list_entry(em, owners, "Server Owners")
executives = json["executives"]
if len(executives) != 0:
em = format_list_entry(em, executives, "Executives")
developers = json["developers"]
if len(developers) != 0:
em = format_list_entry(em, developers, "Developers")
senior_admins = json["senioradmins"]
if len(senior_admins) != 0:
em = format_list_entry(em, senior_admins, "Senior Admins")
admins = json["admins"]
if len(admins) != 0:
em = format_list_entry(em, admins, "Admins")
#trialadmins = json["trialadmins"]
#if len(trialadmins) != 0:
#em = format_list_entry(em, trialmods, "Trial Mods")
masterbuilders = json["masterbuilders"]
if len(masterbuilders) != 0:
em = format_list_entry(em, masterbuilders, "Master Builders")
operators = json["operators"]
if len(operators) != 0:
em = format_list_entry(em, operators, "Operators")
imposters = json["imposters"]
if len(imposters) != 0:
em = format_list_entry(em, imposters, "Imposters")
2020-11-21 12:52:12 +00:00
except:
em.description = 'Server is offline'
2020-10-28 11:47:39 +00:00
await ctx.send(embed=em)
@commands.command()
async def ip(self, ctx):
'Returns the server IP'
2020-11-21 12:52:12 +00:00
await ctx.send(embed=discord.Embed(description='play.totalfreedom.me',title='Server IP'))
#pass #discordSRV responds already.
2020-10-28 11:47:39 +00:00
@commands.command()
@is_staff()
async def archivereports(self, ctx):
"""Archive all in-game reports older than 24 hours"""
count = 0
reports_channel = self.bot.get_channel(reports_channel_id)
archived_reports_channel = self.bot.get_channel(archived_reports_channel_id)
await ctx.channel.trigger_typing()
async for report in reports_channel.history(limit=100):
try:
embed = report.embeds[0]
except:
await report.delete()
time = embed.timestamp
difference = datetime.now() - time
if difference.days >= 0:
await report.delete()
await archived_reports_channel.send("Message archived because it is older than 24 hours", embed=embed)
count += 1
await ctx.send("Archived **{}** reports that are older than 24 hours".format(count))
@commands.command()
@is_mod_or_has_perms()
async def fixreports(self, ctx):
await ctx.channel.trigger_typing()
reports_channel = self.bot.get_channel(reports_channel_id)
messages = await reports_channel.history(limit=500).flatten()
fixed = 0
for message in messages:
if len(message.reactions) == 0 and message.author == message.guild.me:
await message.add_reaction(clipboard)
fixed += 1
await ctx.send(f'Fixed **{fixed}** reports')
def setup(bot):
bot.add_cog(ServerCommands(bot))