2011-03-19 22:39:51 +00:00
|
|
|
package com.earth2me.essentials.commands;
|
|
|
|
|
2011-10-09 14:44:35 +00:00
|
|
|
import com.earth2me.essentials.User;
|
2011-05-09 21:12:49 +00:00
|
|
|
import com.earth2me.essentials.Util;
|
2011-03-19 22:39:51 +00:00
|
|
|
import org.bukkit.Server;
|
|
|
|
import org.bukkit.command.CommandSender;
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
final User u = ess.getUser(args[0]);
|
2011-03-19 22:39:51 +00:00
|
|
|
|
2011-10-09 14:44:35 +00:00
|
|
|
if (u == null)
|
|
|
|
{
|
|
|
|
ess.getServer().banIP(args[0]);
|
|
|
|
sender.sendMessage(Util.i18n("banIpAddress"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-11-15 23:01:15 +00:00
|
|
|
final String ipAddress = u.getLastLoginAddress();
|
2011-11-15 23:54:26 +00:00
|
|
|
if (ipAddress.length() == 0)
|
|
|
|
{
|
2011-11-15 23:01:15 +00:00
|
|
|
throw new Exception(Util.i18n("playerNotFound"));
|
|
|
|
}
|
|
|
|
ess.getServer().banIP(u.getLastLoginAddress());
|
2011-10-09 14:44:35 +00:00
|
|
|
sender.sendMessage(Util.i18n("banIpAddress"));
|
|
|
|
}
|
|
|
|
}
|
2011-03-19 22:39:51 +00:00
|
|
|
}
|