TFM-4.3-Reloaded/src/main/java/me/StevenLawson/TotalFreedomMod/commands/Command_updatetfm.java
business-goose 4b9350ea26 &&
2022-03-21 21:01:55 +00:00

45 lines
2 KiB
Java

package me.StevenLawson.TotalFreedomMod.commands;
import me.StevenLawson.TotalFreedomMod.config.ConfigurationEntry;
import me.StevenLawson.TotalFreedomMod.config.MainConfig;
import me.StevenLawson.TotalFreedomMod.util.Utilities;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import java.io.File;
@CommandPermissions(level = AdminLevel.SENIOR, source = SourceType.BOTH)
@CommandParameters(description = "For developers only - update TFM.", usage = "/<command>")
public class Command_updatetfm extends FreedomCommand {
@Override
public boolean run(CommandSender sender, org.bukkit.entity.Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole) {
playerMsg("Updating TFM, please wait...", ChatColor.RED);
Utilities.adminAction(sender.getName(), "Updating TFM", true);
String path = MainConfig.getString(ConfigurationEntry.TFM_BUILD_SHELLSCRIPT);
File file = new File(path);
String directory = file.getParent();
try {
String command = String.format("\"cd %s && ./%s\"", directory, file.getAbsoluteFile());
System.out.println(command);
ProcessBuilder proc = new ProcessBuilder("/bin/bash", "-c", command);
proc.redirectErrorStream(true);
proc.inheritIO();
Process process = proc.start();
process.waitFor();
System.out.println(proc.redirectOutput());
playerMsg("Updated TFM! Reloading...");
Utilities.adminAction(sender.getName(), "Update successful, reloading TFM...", false);
Bukkit.dispatchCommand(sender, "plugman reload TotalFreedomMod");
} catch (Exception e) {
playerMsg("Failed to update TFM! Check the logs for more details.");
Utilities.adminAction(sender.getName(), "Could not update TFM", true);
e.printStackTrace();
}
return true;
}
}