mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
78 lines
2 KiB
Java
78 lines
2 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import com.earth2me.essentials.CommandSource;
|
|
import com.earth2me.essentials.Console;
|
|
import static com.earth2me.essentials.I18n.tl;
|
|
import com.earth2me.essentials.OfflinePlayer;
|
|
import com.earth2me.essentials.User;
|
|
import com.earth2me.essentials.utils.FormatUtil;
|
|
import java.util.logging.Level;
|
|
import org.bukkit.Server;
|
|
|
|
|
|
public class Commandban extends EssentialsCommand
|
|
{
|
|
public Commandban()
|
|
{
|
|
super("ban");
|
|
}
|
|
|
|
@Override
|
|
public void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
boolean nomatch = false;
|
|
if (args.length < 1)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
User user;
|
|
try
|
|
{
|
|
user = getPlayer(server, args, 0, true, true);
|
|
}
|
|
catch (PlayerNotFoundException e)
|
|
{
|
|
nomatch = true;
|
|
user = ess.getUser(new OfflinePlayer(args[0], ess.getServer()));
|
|
}
|
|
if (!user.getBase().isOnline())
|
|
{
|
|
if (sender.isPlayer() && !ess.getUser(sender.getPlayer()).isAuthorized("essentials.ban.offline"))
|
|
{
|
|
throw new Exception(tl("banExemptOffline"));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (user.isAuthorized("essentials.ban.exempt") && sender.isPlayer())
|
|
{
|
|
throw new Exception(tl("banExempt"));
|
|
}
|
|
}
|
|
|
|
final String senderName = sender.isPlayer() ? sender.getPlayer().getDisplayName() : Console.NAME;
|
|
String banReason;
|
|
if (args.length > 1)
|
|
{
|
|
banReason = FormatUtil.replaceFormat(getFinalArg(args, 1).replace("\\n", "\n").replace("|", "\n"));
|
|
}
|
|
else
|
|
{
|
|
banReason = tl("defaultBanReason");
|
|
}
|
|
|
|
user.setBanReason(tl("banFormat", banReason, senderName));
|
|
user.getBase().setBanned(true);
|
|
user.setBanTimeout(0);
|
|
user.getBase().kickPlayer(tl("banFormat", banReason, senderName));
|
|
|
|
server.getLogger().log(Level.INFO, tl("playerBanned", senderName, user.getName(), banReason));
|
|
|
|
if (nomatch)
|
|
{
|
|
sender.sendMessage(tl("userUnknown", user.getName()));
|
|
}
|
|
|
|
ess.broadcastMessage("essentials.ban.notify", tl("playerBanned", senderName, user.getName(), banReason));
|
|
}
|
|
}
|