package net.minecraft.command.server;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import net.minecraft.command.CommandBase;
import net.minecraft.command.ICommandSender;
import net.minecraft.command.PlayerNotFoundException;
import net.minecraft.command.WrongUsageException;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.server.MinecraftServer;
import net.minecraft.server.management.IPBanEntry;
import net.minecraft.util.IChatComponent;
public class CommandBanIp extends CommandBase
{
public static final Pattern field_147211_a = Pattern.compile("^([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])$");
private static final String __OBFID = "CL_00000139";
public String getCommandName()
{
return "ban-ip";
}
/**
* Return the required permission level for this command.
*/
public int getRequiredPermissionLevel()
{
return 3;
}
/**
* Returns true if the given command sender is allowed to use this command.
*/
public boolean canCommandSenderUseCommand(ICommandSender sender)
{
return MinecraftServer.getServer().getConfigurationManager().getBannedIPs().isLanServer() && super.canCommandSenderUseCommand(sender);
}
public String getCommandUsage(ICommandSender sender)
{
return "commands.banip.usage";
}
public void processCommand(ICommandSender sender, String[] args)
{
if (args.length >= 1 && args[0].length() > 1)
{
Matcher matcher = field_147211_a.matcher(args[0]);
IChatComponent ichatcomponent = null;
if (args.length >= 2)
{
ichatcomponent = getChatComponentFromNthArg(sender, args, 1);
}
if (matcher.matches())
{
this.func_147210_a(sender, args[0], ichatcomponent == null ? null : ichatcomponent.getUnformattedText());
}
else
{
EntityPlayerMP entityplayermp = MinecraftServer.getServer().getConfigurationManager().getPlayerByUsername(args[0]);
if (entityplayermp == null)
{
throw new PlayerNotFoundException("commands.banip.invalid", new Object[0]);
}
this.func_147210_a(sender, entityplayermp.getPlayerIP(), ichatcomponent == null ? null : ichatcomponent.getUnformattedText());
}
}
else
{
throw new WrongUsageException("commands.banip.usage", new Object[0]);
}
}
/**
* Adds the strings available in this command to the given list of tab completion options.
*/
public List addTabCompletionOptions(ICommandSender sender, String[] args)
{
return args.length == 1 ? getListOfStringsMatchingLastWord(args, MinecraftServer.getServer().getAllUsernames()) : null;
}
protected void func_147210_a(ICommandSender p_147210_1_, String p_147210_2_, String p_147210_3_)
{
IPBanEntry ipbanentry = new IPBanEntry(p_147210_2_, (Date)null, p_147210_1_.getCommandSenderName(), (Date)null, p_147210_3_);
MinecraftServer.getServer().getConfigurationManager().getBannedIPs().addEntry(ipbanentry);
List list = MinecraftServer.getServer().getConfigurationManager().getPlayersMatchingAddress(p_147210_2_);
String[] astring = new String[list.size()];
int i = 0;
EntityPlayerMP entityplayermp;
for (Iterator iterator = list.iterator(); iterator.hasNext(); astring[i++] = entityplayermp.getCommandSenderName())
{
entityplayermp = (EntityPlayerMP)iterator.next();
entityplayermp.playerNetServerHandler.kickPlayerFromServer("You have been IP banned.");
}
if (list.isEmpty())
{
notifyOperators(p_147210_1_, this, "commands.banip.success", new Object[] {p_147210_2_});
}
else
{
notifyOperators(p_147210_1_, this, "commands.banip.success.players", new Object[] {p_147210_2_, joinNiceString(astring)});
}
}
}