TF-EssentialsX/Essentials/src/com/earth2me/essentials/commands/Commandbanip.java

71 lines
1.7 KiB
Java
Raw Normal View History

package com.earth2me.essentials.commands;
import com.earth2me.essentials.CommandSource;
2013-02-27 13:57:14 +00:00
import com.earth2me.essentials.Console;
import static com.earth2me.essentials.I18n.tl;
2011-10-09 14:44:35 +00:00
import com.earth2me.essentials.User;
2013-06-09 20:35:51 +00:00
import com.earth2me.essentials.utils.FormatUtil;
2013-02-27 13:57:14 +00:00
import java.util.logging.Level;
2014-07-12 16:03:11 +00:00
import org.bukkit.BanList;
import org.bukkit.Bukkit;
import org.bukkit.Server;
2011-10-09 14:44:35 +00:00
2014-07-12 16:03:11 +00:00
//TODO: Add kick to online players matching ip ban.
public class Commandbanip extends EssentialsCommand
{
2011-10-09 14:44:35 +00:00
public Commandbanip()
{
super("banip");
}
@Override
public void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception
2011-10-09 14:44:35 +00:00
{
if (args.length < 1)
{
throw new NotEnoughArgumentsException();
}
final String senderName = sender.isPlayer() ? sender.getPlayer().getDisplayName() : Console.NAME;
2013-06-09 20:35:51 +00:00
String ipAddress;
if (FormatUtil.validIP(args[0]))
2011-10-09 14:44:35 +00:00
{
ipAddress = args[0];
2011-10-09 14:44:35 +00:00
}
else
{
2013-06-09 20:35:51 +00:00
try
{
2013-06-09 20:35:51 +00:00
User player = getPlayer(server, args, 0, true, true);
ipAddress = player.getLastLoginAddress();
}
2013-06-09 20:35:51 +00:00
catch (PlayerNotFoundException ex)
{
ipAddress = args[0];
}
}
if (ipAddress.isEmpty())
{
throw new PlayerNotFoundException();
}
2014-07-12 16:03:11 +00:00
String banReason;
if (args.length > 1)
{
banReason = FormatUtil.replaceFormat(getFinalArg(args, 1).replace("\\n", "\n").replace("|", "\n"));
}
else
{
banReason = tl("defaultBanReason");
}
ess.getServer().getBanList(BanList.Type.IP).addBan(ipAddress, banReason, null, senderName);
2014-07-12 16:03:11 +00:00
server.getLogger().log(Level.INFO, tl("playerBanIpAddress", senderName, ipAddress, banReason));
2013-06-09 20:35:51 +00:00
2014-07-12 16:03:11 +00:00
ess.broadcastMessage("essentials.ban.notify", tl("playerBanIpAddress", senderName, ipAddress, banReason));
2011-10-09 14:44:35 +00:00
}
}