mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 01:05:38 +00:00
This commit is contained in:
parent
e699ad1663
commit
af1dd2e9ff
@ -1,3 +1,3 @@
|
||||
#Build Number for ANT. Do not edit!
|
||||
#Thu Jan 15 15:34:13 CET 2015
|
||||
build.number=967
|
||||
#Sun Feb 15 19:11:50 CET 2015
|
||||
build.number=975
|
||||
|
@ -113,18 +113,19 @@ blocked_commands:
|
||||
- 's:b:/tellraw:_'
|
||||
- 's:b:/forestgen:_'
|
||||
- 's:b:/setidletimeout:_'
|
||||
- 's:b:/mail sendall:_'
|
||||
- 's:b:/eco reset:_'
|
||||
|
||||
# Superadmin commands - Auto-eject
|
||||
- 's:a:/stop'
|
||||
- 's:a:/reload'
|
||||
- 's:a:/save-all'
|
||||
- 's:a:/save-on'
|
||||
- 's:a:/save-off'
|
||||
- 's:a:/clearhistory'
|
||||
- 's:a:/mat'
|
||||
- 's:a:/stop:_'
|
||||
- 's:a:/reload:_'
|
||||
- 's:a:/save-all:_'
|
||||
- 's:a:/save-on:_'
|
||||
- 's:a:/save-off:_'
|
||||
- 's:a:/clearhistory:_'
|
||||
|
||||
# Spigot commands
|
||||
- 's:a:/restart'
|
||||
- 's:a:/restart:_'
|
||||
- 's:b:/setblock:_'
|
||||
|
||||
# Automatically wipe dropped objects
|
||||
|
@ -64,7 +64,7 @@ public class Command_tfm extends TFM_Command
|
||||
TotalFreedomMod.buildDate,
|
||||
TotalFreedomMod.buildCreator), ChatColor.GOLD);
|
||||
playerMsg("Running on " + TFM_ConfigEntry.SERVER_NAME.getString() + ".", ChatColor.GOLD);
|
||||
playerMsg("Created by Madgeek1450 and DarthSalamon.", ChatColor.GOLD);
|
||||
playerMsg("Created by Madgeek1450 and Prozza.", ChatColor.GOLD);
|
||||
playerMsg("Visit " + ChatColor.AQUA + "http://totalfreedom.me/" + ChatColor.GREEN + " for more information.", ChatColor.GREEN);
|
||||
|
||||
return true;
|
||||
|
@ -3,10 +3,9 @@ package me.StevenLawson.TotalFreedomMod;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
import me.StevenLawson.TotalFreedomMod.Commands.TFM_CommandLoader;
|
||||
import me.StevenLawson.TotalFreedomMod.Config.TFM_ConfigEntry;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.command.Command;
|
||||
import org.bukkit.command.CommandMap;
|
||||
@ -15,12 +14,10 @@ import org.bukkit.entity.Player;
|
||||
|
||||
public class TFM_CommandBlocker
|
||||
{
|
||||
public static final Pattern COMMAND_PATTERN;
|
||||
private static final Map<String, CommandBlockerEntry> BLOCKED_COMMANDS;
|
||||
|
||||
static
|
||||
{
|
||||
COMMAND_PATTERN = Pattern.compile("^/?(\\S+)");
|
||||
BLOCKED_COMMANDS = new HashMap<String, CommandBlockerEntry>();
|
||||
}
|
||||
|
||||
@ -29,7 +26,7 @@ public class TFM_CommandBlocker
|
||||
throw new AssertionError();
|
||||
}
|
||||
|
||||
public static final void load()
|
||||
public static void load()
|
||||
{
|
||||
BLOCKED_COMMANDS.clear();
|
||||
|
||||
@ -47,68 +44,54 @@ public class TFM_CommandBlocker
|
||||
final String[] parts = rawEntry.split(":");
|
||||
if (parts.length < 3 || parts.length > 4)
|
||||
{
|
||||
TFM_Log.warning("Invalid command blocker entry: " + rawEntry);
|
||||
continue;
|
||||
}
|
||||
|
||||
final CommandBlockerRank rank = CommandBlockerRank.fromToken(parts[0]);
|
||||
if (rank == null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
final CommandBlockerAction action = CommandBlockerAction.fromToken(parts[1]);
|
||||
if (action == null)
|
||||
String commandName = parts[2].toLowerCase().substring(1);
|
||||
final String message = (parts.length > 3 ? parts[3] : null);
|
||||
|
||||
if (rank == null || action == null || commandName == null || commandName.isEmpty())
|
||||
{
|
||||
TFM_Log.warning("Invalid command blocker entry: " + rawEntry);
|
||||
continue;
|
||||
}
|
||||
|
||||
String command = parts[2];
|
||||
if (command == null || command.isEmpty())
|
||||
final String[] commandParts = commandName.split(" ");
|
||||
String subCommand = null;
|
||||
if (commandParts.length > 1)
|
||||
{
|
||||
continue;
|
||||
commandName = commandParts[0];
|
||||
subCommand = StringUtils.join(commandParts, " ", 1, commandParts.length).trim().toLowerCase();
|
||||
}
|
||||
final Matcher matcher = COMMAND_PATTERN.matcher(command);
|
||||
if (matcher.find())
|
||||
{
|
||||
command = matcher.group(1);
|
||||
|
||||
final Command command = commandMap.getCommand(commandName);
|
||||
|
||||
// Obtain command from alias
|
||||
if (command == null)
|
||||
{
|
||||
continue;
|
||||
TFM_Log.info("Blocking unknown command: /" + commandName);
|
||||
}
|
||||
else
|
||||
{
|
||||
command = command.toLowerCase().trim();
|
||||
commandName = command.getName().toLowerCase();
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
if (BLOCKED_COMMANDS.containsKey(commandName))
|
||||
{
|
||||
TFM_Log.warning("Not blocking: /" + commandName + " - Duplicate entry exists!");
|
||||
continue;
|
||||
}
|
||||
|
||||
String message = null;
|
||||
if (parts.length == 4)
|
||||
{
|
||||
message = parts[3];
|
||||
}
|
||||
|
||||
final CommandBlockerEntry blockedCommandEntry = new CommandBlockerEntry(rank, action, command, message);
|
||||
|
||||
final Command bukkitCommand = commandMap.getCommand(command);
|
||||
if (bukkitCommand == null)
|
||||
{
|
||||
//TFM_Log.info("Blocking unknown command: " + blockedCommandEntry.getCommand());
|
||||
BLOCKED_COMMANDS.put(blockedCommandEntry.getCommand(), blockedCommandEntry);
|
||||
}
|
||||
else
|
||||
{
|
||||
blockedCommandEntry.setCommand(bukkitCommand.getName().toLowerCase());
|
||||
|
||||
//TFM_Log.info("Blocking command: " + blockedCommandEntry.getCommand());
|
||||
final CommandBlockerEntry blockedCommandEntry = new CommandBlockerEntry(rank, action, commandName, subCommand, message);
|
||||
BLOCKED_COMMANDS.put(blockedCommandEntry.getCommand(), blockedCommandEntry);
|
||||
|
||||
for (String alias : bukkitCommand.getAliases())
|
||||
if (command != null)
|
||||
{
|
||||
for (String alias : command.getAliases())
|
||||
{
|
||||
//TFM_Log.info("Blocking alias: " + alias.toLowerCase() + " of " + blockedCommandEntry.getCommand());
|
||||
BLOCKED_COMMANDS.put(alias.toLowerCase(), blockedCommandEntry);
|
||||
}
|
||||
}
|
||||
@ -129,49 +112,50 @@ public class TFM_CommandBlocker
|
||||
return false;
|
||||
}
|
||||
|
||||
final Matcher matcher = COMMAND_PATTERN.matcher(command);
|
||||
if (matcher.find())
|
||||
{
|
||||
command = matcher.group(1);
|
||||
if (command == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
command = command.toLowerCase().trim();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (command.contains(":"))
|
||||
{
|
||||
TFM_Util.playerMsg(sender, "Plugin-specific commands are disabled.");
|
||||
return true;
|
||||
}
|
||||
|
||||
final String[] commandParts = command.split(" ");
|
||||
String subCommand = null;
|
||||
if (commandParts.length > 1)
|
||||
{
|
||||
command = commandParts[0].substring(1);
|
||||
subCommand = StringUtils.join(commandParts, " ", 1, commandParts.length).toLowerCase();
|
||||
}
|
||||
|
||||
final CommandBlockerEntry entry = BLOCKED_COMMANDS.get(command);
|
||||
|
||||
if (entry != null)
|
||||
if (entry == null)
|
||||
{
|
||||
if (!entry.getRank().hasPermission(sender))
|
||||
return false;
|
||||
}
|
||||
|
||||
if (entry.getSubCommand() != null)
|
||||
{
|
||||
if (subCommand == null || !subCommand.startsWith(entry.getSubCommand()))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (entry.getRank().hasPermission(sender))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (doAction)
|
||||
{
|
||||
entry.doActions(sender);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
private static enum CommandBlockerRank
|
||||
public static enum CommandBlockerRank
|
||||
{
|
||||
ANYONE("a", 0),
|
||||
OP("o", 1),
|
||||
@ -179,6 +163,7 @@ public class TFM_CommandBlocker
|
||||
TELNET("t", 3),
|
||||
SENIOR("c", 4),
|
||||
NOBODY("n", 5);
|
||||
//
|
||||
private final String token;
|
||||
private final int level;
|
||||
|
||||
@ -195,10 +180,10 @@ public class TFM_CommandBlocker
|
||||
|
||||
public boolean hasPermission(CommandSender sender)
|
||||
{
|
||||
return getSenderRank(sender).level >= this.level;
|
||||
return fromSender(sender).level >= this.level;
|
||||
}
|
||||
|
||||
public static CommandBlockerRank getSenderRank(CommandSender sender)
|
||||
public static CommandBlockerRank fromSender(CommandSender sender)
|
||||
{
|
||||
if (!TFM_AdminList.isSuperAdmin(sender))
|
||||
{
|
||||
@ -209,8 +194,7 @@ public class TFM_CommandBlocker
|
||||
|
||||
return ANYONE;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
if (TFM_AdminList.isSeniorAdmin(sender))
|
||||
{
|
||||
return SENIOR;
|
||||
@ -223,7 +207,6 @@ public class TFM_CommandBlocker
|
||||
|
||||
return SUPER;
|
||||
}
|
||||
}
|
||||
|
||||
public static CommandBlockerRank fromToken(String token)
|
||||
{
|
||||
@ -238,7 +221,7 @@ public class TFM_CommandBlocker
|
||||
}
|
||||
}
|
||||
|
||||
private static enum CommandBlockerAction
|
||||
public static enum CommandBlockerAction
|
||||
{
|
||||
BLOCK("b"),
|
||||
BLOCK_AND_EJECT("a"),
|
||||
@ -268,19 +251,26 @@ public class TFM_CommandBlocker
|
||||
}
|
||||
}
|
||||
|
||||
private static class CommandBlockerEntry
|
||||
public static class CommandBlockerEntry
|
||||
{
|
||||
private final CommandBlockerRank rank;
|
||||
private final CommandBlockerAction action;
|
||||
private String command;
|
||||
private final String command;
|
||||
private final String subCommand;
|
||||
private final String message;
|
||||
|
||||
private CommandBlockerEntry(CommandBlockerRank rank, CommandBlockerAction action, String command, String message)
|
||||
{
|
||||
this(rank, action, command, null, message);
|
||||
}
|
||||
|
||||
private CommandBlockerEntry(CommandBlockerRank rank, CommandBlockerAction action, String command, String subCommand, String message)
|
||||
{
|
||||
this.rank = rank;
|
||||
this.action = action;
|
||||
this.command = command;
|
||||
this.message = message;
|
||||
this.subCommand = (subCommand == null ? null : subCommand.toLowerCase().trim());
|
||||
this.message = (message == null || message.equals("_") ? "That command is blocked." : message);
|
||||
}
|
||||
|
||||
public CommandBlockerAction getAction()
|
||||
@ -293,6 +283,11 @@ public class TFM_CommandBlocker
|
||||
return this.command;
|
||||
}
|
||||
|
||||
public String getSubCommand()
|
||||
{
|
||||
return this.subCommand;
|
||||
}
|
||||
|
||||
public String getMessage()
|
||||
{
|
||||
return this.message;
|
||||
@ -303,37 +298,22 @@ public class TFM_CommandBlocker
|
||||
return this.rank;
|
||||
}
|
||||
|
||||
public void setCommand(String command)
|
||||
{
|
||||
this.command = command;
|
||||
}
|
||||
|
||||
private void doActions(CommandSender sender)
|
||||
{
|
||||
if (this.action == CommandBlockerAction.BLOCK_AND_EJECT && sender instanceof Player)
|
||||
if (action == CommandBlockerAction.BLOCK_AND_EJECT && sender instanceof Player)
|
||||
{
|
||||
TFM_Util.autoEject((Player) sender, "You used a prohibited command: " + this.command);
|
||||
TFM_Util.autoEject((Player) sender, "You used a prohibited command: " + command);
|
||||
TFM_Util.bcastMsg(sender.getName() + " was automatically kicked for using harmful commands.", ChatColor.RED);
|
||||
}
|
||||
else
|
||||
{
|
||||
String response;
|
||||
|
||||
if (this.action == CommandBlockerAction.BLOCK_UNKNOWN)
|
||||
{
|
||||
response = "Unknown command. Type \"help\" for help.";
|
||||
}
|
||||
else if (this.message == null || "_".equals(this.message))
|
||||
{
|
||||
response = ChatColor.GRAY + "That command is blocked.";
|
||||
}
|
||||
else
|
||||
{
|
||||
response = ChatColor.GRAY + TFM_Util.colorize(this.message);
|
||||
return;
|
||||
}
|
||||
|
||||
sender.sendMessage(response);
|
||||
if (action == CommandBlockerAction.BLOCK_UNKNOWN)
|
||||
{
|
||||
TFM_Util.playerMsg(sender, "Unknown command. Type \"help\" for help.", ChatColor.RESET);
|
||||
return;
|
||||
}
|
||||
|
||||
TFM_Util.playerMsg(sender, TFM_Util.colorize(message));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -33,7 +33,7 @@ public class TFM_Log
|
||||
// Level.WARNING:
|
||||
public static void warning(String message)
|
||||
{
|
||||
info(message, false);
|
||||
warning(message, false);
|
||||
}
|
||||
|
||||
public static void warning(String message, Boolean raw)
|
||||
@ -49,7 +49,7 @@ public class TFM_Log
|
||||
// Level.SEVERE:
|
||||
public static void severe(String message)
|
||||
{
|
||||
info(message, false);
|
||||
severe(message, false);
|
||||
}
|
||||
|
||||
public static void severe(String message, Boolean raw)
|
||||
|
@ -67,7 +67,7 @@ public class TFM_Util
|
||||
private static final Map<String, Integer> ejectTracker = new HashMap<String, Integer>();
|
||||
public static final Map<String, EntityType> mobtypes = new HashMap<String, EntityType>();
|
||||
// See https://github.com/TotalFreedom/License - None of the listed names may be removed.
|
||||
public static final List<String> DEVELOPERS = Arrays.asList("Madgeek1450", "DarthSalamon", "AcidicCyanide", "wild1145", "WickedGamingUK");
|
||||
public static final List<String> DEVELOPERS = Arrays.asList("Madgeek1450", "Prozza", "DarthSalmon", "AcidicCyanide", "Wild1145", "WickedGamingUK");
|
||||
private static final Random RANDOM = new Random();
|
||||
public static String DATE_STORAGE_FORMAT = "EEE, d MMM yyyy HH:mm:ss Z";
|
||||
public static final Map<String, ChatColor> CHAT_COLOR_NAMES = new HashMap<String, ChatColor>();
|
||||
|
Loading…
Reference in New Issue
Block a user