mirror of
https://github.com/TotalFreedomMC/TotalFreedomBot.git
synced 2024-12-22 15:44:57 +00:00
Update server_commands.py
This commit is contained in:
parent
39e7336ac6
commit
601015fd94
1 changed files with 67 additions and 16 deletions
|
@ -1,10 +1,12 @@
|
||||||
import discord
|
import discord
|
||||||
|
import requests
|
||||||
|
|
||||||
from checks import *
|
from checks import *
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
import requests
|
|
||||||
from functions import fix_reports, format_list_entry
|
from functions import fix_reports, format_list_entry
|
||||||
|
from unicode import *
|
||||||
|
from telnetlib import Telnet
|
||||||
|
|
||||||
class ServerCommands(commands.Cog):
|
class ServerCommands(commands.Cog):
|
||||||
def __init__(self, bot):
|
def __init__(self, bot):
|
||||||
|
@ -44,30 +46,76 @@ class ServerCommands(commands.Cog):
|
||||||
@commands.command()
|
@commands.command()
|
||||||
@is_staff()
|
@is_staff()
|
||||||
async def stop(self, ctx):
|
async def stop(self, ctx):
|
||||||
'Not currently working'
|
'Stops the server'
|
||||||
stopEmbed = discord.Embed(description='stop being so sus')
|
em = discord.Embed()
|
||||||
await ctx.send(embed=stopEmbed)
|
try:
|
||||||
|
self.bot.telnet_session.write(bytes('stop', 'ascii') + b"\r\n")
|
||||||
|
except:
|
||||||
|
em.title='Command error'
|
||||||
|
em.colour = 0xFF0000
|
||||||
|
em.description='Something went wrong'
|
||||||
|
await ctx.send(embed=em)
|
||||||
|
else:
|
||||||
|
em.title = 'Success'
|
||||||
|
em.colour = 0x00FF00
|
||||||
|
em.description = 'Server stopped.'
|
||||||
|
await ctx.send(embed=em)
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
@is_senior()
|
@is_senior()
|
||||||
async def kill(self, ctx):
|
async def kill(self, ctx):
|
||||||
'Not currently working'
|
'Kills the server'
|
||||||
killEmbed = discord.Embed(description='kill youself')
|
em = discord.Embed()
|
||||||
await ctx.send(embed=killEmbed)
|
try:
|
||||||
|
self.bot.telnet_session.write(bytes('telnet.stop', 'ascii') + b"\r\n")
|
||||||
|
except:
|
||||||
|
em.title='Command error'
|
||||||
|
em.colour = 0xFF0000
|
||||||
|
em.description='Something went wrong'
|
||||||
|
await ctx.send(embed=em)
|
||||||
|
else:
|
||||||
|
em.title = 'Success'
|
||||||
|
em.colour = 0x00FF00
|
||||||
|
em.description = 'Killed the server.'
|
||||||
|
await ctx.send(embed=em)
|
||||||
|
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
@is_staff()
|
@is_staff()
|
||||||
async def restart(self, ctx):
|
async def restart(self, ctx):
|
||||||
'Not currently working'
|
'Restarts the server'
|
||||||
restartEmbed = discord.Embed(description='cant restart a dead server idiot')
|
em = discord.Embed()
|
||||||
await ctx.send(embed=restartEmbed)
|
try:
|
||||||
|
self.bot.telnet_session.write(bytes('restart', 'ascii') + b"\r\n")
|
||||||
|
except:
|
||||||
|
em.title='Command error'
|
||||||
|
em.colour = 0xFF0000
|
||||||
|
em.description='Something went wrong'
|
||||||
|
await ctx.send(embed=em)
|
||||||
|
else:
|
||||||
|
em.title = 'Success'
|
||||||
|
em.colour = 0x00FF00
|
||||||
|
em.description = 'Server restarting.'
|
||||||
|
await ctx.send(embed=em)
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
@is_senior()
|
@is_senior()
|
||||||
async def console(self, ctx,*, command):
|
async def console(self, ctx,*, command):
|
||||||
'Not currently working'
|
'Send a command as console'
|
||||||
await ctx.send(f'```:[{str(datetime.utcnow().replace(microsecond=0))[11:]} INFO]: {ctx.author.name} issued server command: /{command}```')
|
'''await ctx.send(f'```:[{str(datetime.utcnow().replace(microsecond=0))[11:]} INFO]: {ctx.author.name} issued server command: /{command}```')'''
|
||||||
|
em = discord.Embed()
|
||||||
|
try:
|
||||||
|
self.bot.telnet_session.write(bytes(command, 'ascii') + b"\r\n")
|
||||||
|
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)
|
||||||
|
|
||||||
@commands.command(aliases=['status'])
|
@commands.command(aliases=['status'])
|
||||||
async def state(self, ctx):
|
async def state(self, ctx):
|
||||||
|
@ -75,9 +123,12 @@ class ServerCommands(commands.Cog):
|
||||||
em = discord.Embed()
|
em = discord.Embed()
|
||||||
try:
|
try:
|
||||||
json = requests.get("http://play.totalfreedom.me:28966/list?json=true").json()
|
json = requests.get("http://play.totalfreedom.me:28966/list?json=true").json()
|
||||||
em.description = 'Server is online'
|
except:
|
||||||
except ConnectionError:
|
|
||||||
em.description = 'Server is offline'
|
em.description = 'Server is offline'
|
||||||
|
em.colour = 0xFF0000
|
||||||
|
else:
|
||||||
|
em.description = 'Server is online'
|
||||||
|
em.colour = 0x00FF00
|
||||||
await ctx.send(embed=em)
|
await ctx.send(embed=em)
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
|
|
Loading…
Reference in a new issue