mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-04-04 10:53:14 +00:00
213 lines
6.8 KiB
Java
213 lines
6.8 KiB
Java
package me.totalfreedom.totalfreedommod.blocking.command;
|
|
|
|
import com.google.common.collect.Lists;
|
|
import com.google.common.collect.Maps;
|
|
import java.lang.reflect.Field;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.regex.Matcher;
|
|
import java.util.regex.Pattern;
|
|
import me.totalfreedom.totalfreedommod.FreedomService;
|
|
import me.totalfreedom.totalfreedommod.config.ConfigEntry;
|
|
import me.totalfreedom.totalfreedommod.util.FLog;
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
|
import org.apache.commons.lang.StringUtils;
|
|
import org.bukkit.Bukkit;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandMap;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.command.SimpleCommandMap;
|
|
import org.bukkit.event.EventHandler;
|
|
import org.bukkit.event.EventPriority;
|
|
import org.bukkit.event.player.PlayerCommandPreprocessEvent;
|
|
import org.bukkit.plugin.SimplePluginManager;
|
|
|
|
public class CommandBlocker extends FreedomService
|
|
{
|
|
private final Pattern whitespacePattern = Pattern.compile("^/?( +)(.*)?");
|
|
private final Pattern flagPattern = Pattern.compile("(:([0-9]){5,})");
|
|
//
|
|
private final Map<String, CommandBlockerEntry> entryList = Maps.newHashMap();
|
|
private final List<String> unknownCommands = Lists.newArrayList();
|
|
|
|
@Override
|
|
public void onStart()
|
|
{
|
|
load();
|
|
}
|
|
|
|
@Override
|
|
public void onStop()
|
|
{
|
|
entryList.clear();
|
|
}
|
|
|
|
public void load()
|
|
{
|
|
entryList.clear();
|
|
unknownCommands.clear();
|
|
|
|
final CommandMap commandMap = Bukkit.getCommandMap();
|
|
|
|
@SuppressWarnings("unchecked")
|
|
List<String> blockedCommands = (List<String>)ConfigEntry.BLOCKED_COMMANDS.getList();
|
|
for (String rawEntry : blockedCommands)
|
|
{
|
|
final String[] parts = rawEntry.split(":");
|
|
if (parts.length < 3 || parts.length > 4)
|
|
{
|
|
FLog.warning("Invalid command blocker entry: " + rawEntry);
|
|
continue;
|
|
}
|
|
|
|
final CommandBlockerRank rank = CommandBlockerRank.fromToken(parts[0]);
|
|
final CommandBlockerAction action = CommandBlockerAction.fromToken(parts[1]);
|
|
String commandName = parts[2].toLowerCase().substring(1);
|
|
final String message = (parts.length > 3 ? parts[3] : null);
|
|
|
|
if (rank == null || action == null || commandName.isEmpty())
|
|
{
|
|
FLog.warning("Invalid command blocker entry: " + rawEntry);
|
|
continue;
|
|
}
|
|
|
|
final String[] commandParts = commandName.split(" ");
|
|
String subCommand = null;
|
|
if (commandParts.length > 1)
|
|
{
|
|
commandName = commandParts[0];
|
|
subCommand = StringUtils.join(commandParts, " ", 1, commandParts.length).trim().toLowerCase();
|
|
}
|
|
|
|
assert commandMap != null;
|
|
final Command command = commandMap.getCommand(commandName);
|
|
|
|
// Obtain command from alias
|
|
if (command == null)
|
|
{
|
|
unknownCommands.add(commandName);
|
|
}
|
|
else
|
|
{
|
|
commandName = command.getName().toLowerCase();
|
|
}
|
|
|
|
if (entryList.containsKey(commandName))
|
|
{
|
|
FLog.warning("Not blocking: /" + commandName + " - Duplicate entry exists!");
|
|
continue;
|
|
}
|
|
|
|
|
|
final CommandBlockerEntry blockedCommandEntry = new CommandBlockerEntry(rank, action, commandName, subCommand, message);
|
|
entryList.put(commandName, blockedCommandEntry);
|
|
if (command != null)
|
|
{
|
|
for (String alias : command.getAliases())
|
|
{
|
|
entryList.put(alias.toLowerCase(), blockedCommandEntry);
|
|
}
|
|
}
|
|
}
|
|
|
|
FLog.info("Loaded " + blockedCommands.size() + " blocked commands (" + (blockedCommands.size() - unknownCommands.size()) + " known).");
|
|
}
|
|
|
|
@EventHandler(priority = EventPriority.HIGHEST)
|
|
public void onPlayerCommandPreprocess(PlayerCommandPreprocessEvent event)
|
|
{
|
|
// Blocked commands
|
|
if (isCommandBlocked(event.getMessage(), event.getPlayer(), true))
|
|
{
|
|
// CommandBlocker handles messages and broadcasts
|
|
event.setCancelled(true);
|
|
}
|
|
}
|
|
|
|
public boolean isCommandBlocked(String command, CommandSender sender)
|
|
{
|
|
return isCommandBlocked(command, sender, false);
|
|
}
|
|
|
|
public boolean isCommandBlocked(String command, CommandSender sender, boolean doAction)
|
|
{
|
|
if (command == null || command.isEmpty())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// Format
|
|
command = command.toLowerCase().trim();
|
|
|
|
// Whitespaces
|
|
Matcher whitespaceMatcher = whitespacePattern.matcher(command);
|
|
if (whitespaceMatcher.matches() && whitespaceMatcher.groupCount() == 2)
|
|
{
|
|
command = whitespaceMatcher.group(2);
|
|
}
|
|
|
|
command = command.startsWith("/") ? command.substring(1) : command;
|
|
|
|
// Check for plugin specific commands
|
|
final String[] commandParts = command.split(" ");
|
|
if (commandParts[0].contains(":"))
|
|
{
|
|
if (doAction)
|
|
{
|
|
FUtil.playerMsg(sender, "Plugin specific commands are disabled.");
|
|
}
|
|
return true;
|
|
}
|
|
|
|
for (String part : commandParts)
|
|
{
|
|
if (command.startsWith("/") && !plugin.al.isAdmin(sender) && (part.contains("#copy") || part.contains("#clipboard")))
|
|
{
|
|
FUtil.playerMsg(sender, "WorldEdit copy variables are disabled.");
|
|
return true;
|
|
}
|
|
Matcher matcher = flagPattern.matcher(part);
|
|
if (!matcher.matches())
|
|
{
|
|
continue;
|
|
}
|
|
if (doAction)
|
|
{
|
|
FUtil.playerMsg(sender, "That command contains an illegal number: " + matcher.group(1));
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// Obtain sub command, if it exists
|
|
String subCommand = null;
|
|
if (commandParts.length > 1)
|
|
{
|
|
subCommand = StringUtils.join(commandParts, " ", 1, commandParts.length).toLowerCase();
|
|
}
|
|
|
|
// Obtain entry
|
|
final CommandBlockerEntry entry = entryList.get(commandParts[0]);
|
|
if (entry == null)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// Validate sub command
|
|
if (entry.getSubCommand() != null && (subCommand == null || !subCommand.startsWith(entry.getSubCommand())))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (entry.getRank().hasPermission(sender))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (doAction)
|
|
{
|
|
entry.doActions(sender);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
} |