Public Repository for the Magicbane Shadowbane Emulator
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.

89 lines
2.9 KiB

// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
// Magicbane Emulator Project © 2013 - 2022
// www.magicbane.com
package discord.handlers;
import discord.MagicBot;
import net.dv8tion.jda.api.events.message.MessageReceivedEvent;
import org.pmw.tinylog.Logger;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
public class DevRequestHandler {
public static void handleRequest(MessageReceivedEvent event, String[] args) {
String serverCommand;
String commandArgument = "";
String commandString = "";
String logString = "";
ProcessBuilder processBuilder;
File outFile;
// Early exit if database unavailable or is not an admin
if (MagicBot.isAdminEvent(event) == false)
return;
serverCommand = args[0].toLowerCase().trim();
if (args.length == 2)
commandArgument = args[1].toLowerCase().trim();
switch (serverCommand) {
case "build" :
commandString = "./mbdevbuild.sh";
break;
case "restart":
commandString = "./mbdevrestart.sh";
break;
case "debug":
commandString = "./mbdevdebug.sh";
break;
case "shutdown":
commandString = "./mbdevkill.sh";
break;
default:
break;
}
if (commandString.isEmpty()) {
MagicBot.sendResponse(event, "Unrecognized Dev command: " + serverCommand + " " + commandArgument);
return;
}
processBuilder = new ProcessBuilder("/bin/sh", "-c", commandString + " " + commandArgument);
outFile = new File("devLastOut");
if (outFile.exists())
outFile.delete();
try {
outFile.createNewFile();
} catch (IOException e) {
throw new RuntimeException(e);
}
logString = String.join(" ",processBuilder.command().toArray(new String[0]));
try {
processBuilder.start();
processBuilder.redirectOutput(outFile);
} catch (IOException e) {
Logger.info(e.toString());
}
MagicBot.sendResponse(event, "Executed on dev: " + logString);
}
}