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