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.
72 lines
2.5 KiB
72 lines
2.5 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.IOException; |
|
|
|
public class DevRequestHandler { |
|
|
|
public static void handleRequest(MessageReceivedEvent event, String[] args) { |
|
|
|
String serverCommand; |
|
String commandArgument = ""; |
|
String commandString = ""; |
|
ProcessBuilder processBuilder; |
|
|
|
// Early exit if database unavailable or is not an admin |
|
|
|
if (MagicBot.isAdminEvent(event) == false) |
|
return; |
|
|
|
// No command supplied? |
|
|
|
if (args.length != 1) |
|
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() == false) { |
|
|
|
processBuilder = new ProcessBuilder("/bin/sh", "-c", commandString, commandArgument); |
|
try { |
|
processBuilder.start(); |
|
} catch (IOException e) { |
|
throw new RuntimeException(e); |
|
} |
|
|
|
MagicBot.sendResponse(event, "Executed on dev: " + serverCommand + " " + commandArgument); |
|
Logger.info(event.getAuthor().getName() + " told dev to " + serverCommand + " " + commandArgument); |
|
} |
|
} |
|
} |