mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-20 06:15:01 +00:00
9dd0298f56
* Three fixes * Fixes /tempban throwing a NullPointerException when trying to get a player who isn't on the server but was in the past * Fixes /tempban banning players for 24 hours regardless of the duration defined * Fixes /list -t throwing a NullPointerException when performed from a non-player source (such as Telnet) * Removes hubworld entriely * Configurable blacklists for tag, muted commands, and wildcard Changes: * Moves globally blocked commands to the `global` subsection of the original `blocked_commands` section. You *will* need to update your configurations * /wildcard's command blacklist is now configurable under the `wildcard` section in `blocked_commands`. * The commands muted players can't use are now configurable under the `muted` section in `blocked_commands`. * Removes some commented-out globally blocked command entries. Co-authored-by: Ryan <Wild1145@users.noreply.github.com>
76 lines
2.3 KiB
Java
76 lines
2.3 KiB
Java
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
import me.totalfreedom.totalfreedommod.config.ConfigEntry;
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
import org.apache.commons.lang.StringUtils;
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Player;
|
|
|
|
@CommandPermissions(level = Rank.ADMIN, source = SourceType.BOTH, blockHostConsole = true)
|
|
@CommandParameters(description = "Run any command on all users, username placeholder = ?.", usage = "/<command> [fluff] ? [fluff] ?")
|
|
public class Command_wildcard extends FreedomCommand
|
|
{
|
|
|
|
@Override
|
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
{
|
|
if (args.length == 0)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
Command runCmd = server.getPluginCommand(args[0]);
|
|
FreedomCommand fCmd = plugin.cl.getByName(args[0]);
|
|
boolean alias = plugin.cl.isAlias(args[0]);
|
|
if (runCmd == null && fCmd == null && !alias)
|
|
{
|
|
msg("Unknown command: " + args[0], ChatColor.RED);
|
|
return true;
|
|
}
|
|
|
|
List<String> aliases = new ArrayList<>();
|
|
|
|
if (runCmd != null)
|
|
{
|
|
aliases = runCmd.getAliases();
|
|
}
|
|
|
|
if (fCmd != null)
|
|
{
|
|
aliases = Arrays.asList(fCmd.getAliases().split(","));
|
|
}
|
|
|
|
for (String blockedCommand : ConfigEntry.WILDCARD_BLOCKED_COMMANDS.getStringList())
|
|
{
|
|
if (blockedCommand.equals(args[0].toLowerCase()) || aliases.contains(blockedCommand))
|
|
{
|
|
msg("Did you really think that was going to work?", ChatColor.RED);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
String baseCommand = StringUtils.join(args, " ");
|
|
|
|
if (plugin.cb.isCommandBlocked(baseCommand, sender))
|
|
{
|
|
// CommandBlocker handles messages and broadcasts
|
|
return true;
|
|
}
|
|
|
|
for (Player player : server.getOnlinePlayers())
|
|
{
|
|
String runCommand = baseCommand.replaceAll("\\x3f", player.getName());
|
|
msg("Running Command: " + runCommand);
|
|
server.dispatchCommand(sender, runCommand);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|