2011-03-19 22:39:51 +00:00
|
|
|
package com.earth2me.essentials.commands;
|
|
|
|
|
2013-02-27 13:57:14 +00:00
|
|
|
import com.earth2me.essentials.Console;
|
2011-11-21 01:55:26 +00:00
|
|
|
import static com.earth2me.essentials.I18n._;
|
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;
|
2011-03-19 22:39:51 +00:00
|
|
|
import org.bukkit.Server;
|
|
|
|
import org.bukkit.command.CommandSender;
|
2013-02-27 13:57:14 +00:00
|
|
|
import org.bukkit.entity.Player;
|
2011-10-09 14:44:35 +00:00
|
|
|
|
2011-03-19 22:39:51 +00:00
|
|
|
|
|
|
|
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 CommandSender sender, final String commandLabel, final String[] args) throws Exception
|
|
|
|
{
|
|
|
|
if (args.length < 1)
|
|
|
|
{
|
|
|
|
throw new NotEnoughArgumentsException();
|
|
|
|
}
|
|
|
|
|
2013-03-02 17:08:22 +00:00
|
|
|
final String senderName = sender instanceof Player ? ((Player)sender).getDisplayName() : Console.NAME;
|
2011-03-19 22:39:51 +00:00
|
|
|
|
2013-06-09 20:35:51 +00:00
|
|
|
String ipAddress;
|
|
|
|
if (FormatUtil.validIP(args[0]))
|
2011-10-09 14:44:35 +00:00
|
|
|
{
|
2013-03-02 17:08:22 +00:00
|
|
|
ipAddress = args[0];
|
2011-10-09 14:44:35 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-06-09 20:35:51 +00:00
|
|
|
try
|
2011-11-15 23:54:26 +00:00
|
|
|
{
|
2013-06-09 20:35:51 +00:00
|
|
|
User player = getPlayer(server, args, 0, true, true);
|
|
|
|
ipAddress = player.getLastLoginAddress();
|
2011-11-15 23:01:15 +00:00
|
|
|
}
|
2013-06-09 20:35:51 +00:00
|
|
|
catch (PlayerNotFoundException ex)
|
|
|
|
{
|
|
|
|
ipAddress = args[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ipAddress.isEmpty())
|
|
|
|
{
|
|
|
|
throw new PlayerNotFoundException();
|
2013-03-02 17:08:22 +00:00
|
|
|
}
|
2013-03-12 22:26:24 +00:00
|
|
|
|
2013-03-02 17:08:22 +00:00
|
|
|
ess.getServer().banIP(ipAddress);
|
2013-03-09 21:41:30 +00:00
|
|
|
server.getLogger().log(Level.INFO, _("playerBanIpAddress", senderName, ipAddress));
|
2013-06-09 20:35:51 +00:00
|
|
|
|
2013-06-16 00:07:16 +00:00
|
|
|
ess.broadcastMessage("essentials.ban.notify", _("playerBanIpAddress", senderName, ipAddress));
|
2011-10-09 14:44:35 +00:00
|
|
|
}
|
2011-03-19 22:39:51 +00:00
|
|
|
}
|