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

57 lines
1.4 KiB
Java
Raw Normal View History

package com.earth2me.essentials.commands;
2013-02-27 13:57:14 +00:00
import com.earth2me.essentials.Console;
import static com.earth2me.essentials.I18n._;
2011-10-09 14:44:35 +00:00
import com.earth2me.essentials.User;
2013-02-27 13:57:14 +00:00
import java.util.logging.Level;
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
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 String senderName = sender instanceof Player ? ((Player)sender).getDisplayName() : Console.NAME;
final String ipAddress;
final User player = ess.getUser(args[0]);
2011-11-18 12:06:59 +00:00
if (player == null)
2011-10-09 14:44:35 +00:00
{
ipAddress = args[0];
2011-10-09 14:44:35 +00:00
}
else
{
ipAddress = player.getLastLoginAddress();
if (ipAddress.length() == 0)
{
throw new Exception(_("playerNotFound"));
}
}
ess.getServer().banIP(ipAddress);
server.getLogger().log(Level.INFO, _("playerbanIpAddress", senderName, ipAddress));
for (Player onlinePlayer : server.getOnlinePlayers())
{
final User onlineUser = ess.getUser(onlinePlayer);
if (onlinePlayer == sender || onlineUser.isAuthorized("essentials.ban.notify"))
2013-02-27 13:57:14 +00:00
{
sender.sendMessage(_("playerBanIpAddress", senderName, ipAddress));
2013-02-27 13:57:14 +00:00
}
2011-10-09 14:44:35 +00:00
}
}
}