TFM-4.3-Reloaded/src/main/java/me/StevenLawson/TotalFreedomMod/commands/Command_updatetfm.java

46 lines
2 KiB
Java
Raw Normal View History

package me.StevenLawson.TotalFreedomMod.commands;
import me.StevenLawson.TotalFreedomMod.config.ConfigurationEntry;
import me.StevenLawson.TotalFreedomMod.config.MainConfig;
2022-03-21 21:19:39 +00:00
import me.StevenLawson.TotalFreedomMod.util.SynchronousUtil;
import me.StevenLawson.TotalFreedomMod.util.Utilities;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
2022-03-21 21:19:39 +00:00
import org.bukkit.entity.Player;
import java.io.File;
@CommandPermissions(level = AdminLevel.SUPER, source = SourceType.BOTH)
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) {
2022-03-23 23:48:41 +00:00
playerMsg(sender, "Compiling TFM, please wait...", ChatColor.RED);
Utilities.adminAction(sender.getName(), "Compiling TFM", true);
String path = MainConfig.getString(ConfigurationEntry.TFM_BUILD_SHELLSCRIPT);
2022-03-21 21:01:55 +00:00
File file = new File(path);
String directory = file.getParent();
try {
2022-03-21 21:10:39 +00:00
String command = String.format("cd %s && ./%s", directory, file.getName());
2022-03-21 20:49:52 +00:00
ProcessBuilder proc = new ProcessBuilder("/bin/bash", "-c", command);
2022-03-21 20:42:11 +00:00
Process process = proc.start();
process.waitFor();
2022-03-23 23:48:41 +00:00
playerMsg(sender, "Compiling TFM! Reloading...");
2022-03-21 21:28:45 +00:00
Utilities.adminAction(sender.getName(), "Compilation successful, reloading TFM...", false);
2022-03-21 21:19:39 +00:00
for (Player onlinePlayer : Bukkit.getOnlinePlayers()) {
2022-03-21 21:21:42 +00:00
onlinePlayer.kickPlayer(ChatColor.RED + "Reloading TFM, please rejoin.");
2022-03-21 21:19:39 +00:00
}
Bukkit.dispatchCommand(sender, "plugman reload TotalFreedomMod");
} catch (Exception e) {
2022-03-23 23:48:41 +00:00
playerMsg(sender, "Failed to update TFM! Check the logs for more details.");
Utilities.adminAction(sender.getName(), "Could not update TFM", true);
e.printStackTrace();
}
return true;
}
}