2016-03-02 19:28:01 +00:00
|
|
|
package me.totalfreedom.totalfreedommod.command;
|
2015-10-19 17:43:46 +00:00
|
|
|
|
2018-07-31 07:01:29 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
2015-11-15 23:32:04 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.banning.Ban;
|
2018-03-03 04:29:08 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.player.PlayerData;
|
|
|
|
import me.totalfreedom.totalfreedommod.punishments.Punishment;
|
|
|
|
import me.totalfreedom.totalfreedommod.punishments.PunishmentType;
|
2018-07-28 07:11:48 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
2014-11-29 19:16:00 +00:00
|
|
|
import org.apache.commons.lang3.ArrayUtils;
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
2011-10-19 00:37:00 +00:00
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.GameMode;
|
|
|
|
import org.bukkit.Location;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
2016-03-06 15:56:15 +00:00
|
|
|
@CommandPermissions(level = Rank.SUPER_ADMIN, source = SourceType.BOTH, blockHostConsole = true)
|
2019-01-04 21:39:38 +00:00
|
|
|
@CommandParameters(description = "Bans a player", usage = "/<command> <username> [reason] [-nrb]", aliases = "ban")
|
2015-10-19 17:43:46 +00:00
|
|
|
public class Command_gtfo extends FreedomCommand
|
2011-10-19 00:37:00 +00:00
|
|
|
{
|
2015-11-22 18:26:47 +00:00
|
|
|
|
2011-10-19 00:37:00 +00:00
|
|
|
@Override
|
2015-11-22 18:26:47 +00:00
|
|
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
2011-10-19 00:37:00 +00:00
|
|
|
{
|
2013-07-29 18:44:18 +00:00
|
|
|
if (args.length == 0)
|
2011-10-19 00:37:00 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-03-03 04:29:08 +00:00
|
|
|
final String username;
|
|
|
|
final List<String> ips = new ArrayList<>();
|
2014-05-04 21:03:34 +00:00
|
|
|
|
2018-03-03 04:29:08 +00:00
|
|
|
final Player player = getPlayer(args[0]);
|
2014-04-26 11:55:24 +00:00
|
|
|
if (player == null)
|
2011-10-19 00:37:00 +00:00
|
|
|
{
|
2018-03-03 04:29:08 +00:00
|
|
|
final PlayerData entry = plugin.pl.getData(args[0]);
|
|
|
|
|
|
|
|
if (entry == null)
|
|
|
|
{
|
|
|
|
msg("Can't find that user. If target is not logged in, make sure that you spelled the name exactly.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
username = entry.getUsername();
|
|
|
|
ips.addAll(entry.getIps());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
final PlayerData entry = plugin.pl.getData(player);
|
|
|
|
username = player.getName();
|
|
|
|
ips.addAll(entry.getIps());
|
|
|
|
|
|
|
|
// Deop
|
|
|
|
player.setOp(false);
|
|
|
|
|
2018-07-26 21:08:48 +00:00
|
|
|
// Gamemode survival
|
2018-03-03 04:29:08 +00:00
|
|
|
player.setGameMode(GameMode.SURVIVAL);
|
|
|
|
|
|
|
|
// Clear inventory
|
|
|
|
player.getInventory().clear();
|
|
|
|
|
|
|
|
// Strike with lightning
|
|
|
|
final Location targetPos = player.getLocation();
|
|
|
|
for (int x = -1; x <= 1; x++)
|
|
|
|
{
|
|
|
|
for (int z = -1; z <= 1; z++)
|
|
|
|
{
|
|
|
|
final Location strike_pos = new Location(targetPos.getWorld(), targetPos.getBlockX() + x, targetPos.getBlockY(), targetPos.getBlockZ() + z);
|
|
|
|
targetPos.getWorld().strikeLightning(strike_pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Kill player
|
|
|
|
player.setHealth(0.0);
|
2012-11-24 01:22:52 +00:00
|
|
|
}
|
2012-09-16 17:41:41 +00:00
|
|
|
|
2014-04-14 19:11:41 +00:00
|
|
|
String reason = null;
|
2019-01-04 21:39:38 +00:00
|
|
|
Boolean cancelRollback = false;
|
2013-07-29 18:44:18 +00:00
|
|
|
if (args.length >= 2)
|
|
|
|
{
|
2019-01-04 21:39:38 +00:00
|
|
|
if (args[args.length - 1].equalsIgnoreCase("-nrb"))
|
2018-01-04 17:27:58 +00:00
|
|
|
{
|
2019-01-04 21:39:38 +00:00
|
|
|
cancelRollback = true;
|
2018-01-04 17:27:58 +00:00
|
|
|
if (args.length >= 3)
|
|
|
|
{
|
|
|
|
reason = StringUtils.join(ArrayUtils.subarray(args, 1, args.length - 1), " ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reason = StringUtils.join(ArrayUtils.subarray(args, 1, args.length), " ");
|
|
|
|
}
|
2013-07-29 18:44:18 +00:00
|
|
|
}
|
|
|
|
|
2018-07-26 21:08:48 +00:00
|
|
|
// Checks if CoreProtect is loaded and installed, and skips the rollback and uses CoreProtect directly
|
2019-01-04 21:39:38 +00:00
|
|
|
if (!cancelRollback)
|
2014-04-15 13:43:07 +00:00
|
|
|
{
|
2018-03-03 04:29:08 +00:00
|
|
|
if (!plugin.cpb.isEnabled())
|
2017-10-13 18:35:11 +00:00
|
|
|
{
|
2018-01-04 17:27:58 +00:00
|
|
|
// Undo WorldEdits
|
|
|
|
try
|
|
|
|
{
|
2018-07-30 07:23:01 +00:00
|
|
|
plugin.web.undo(player, 15);
|
2018-01-04 17:27:58 +00:00
|
|
|
}
|
2018-03-03 04:29:08 +00:00
|
|
|
catch (NoClassDefFoundError | NullPointerException ex)
|
2018-01-04 17:27:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rollback
|
2018-03-03 04:29:08 +00:00
|
|
|
plugin.rb.rollback(username);
|
2017-10-13 18:35:11 +00:00
|
|
|
}
|
2018-01-04 17:27:58 +00:00
|
|
|
else
|
2017-10-13 18:35:11 +00:00
|
|
|
{
|
2018-03-03 04:29:08 +00:00
|
|
|
plugin.cpb.rollback(username);
|
2017-10-13 18:35:11 +00:00
|
|
|
}
|
2014-04-15 13:43:07 +00:00
|
|
|
}
|
2013-07-02 18:31:22 +00:00
|
|
|
|
2018-03-03 04:29:08 +00:00
|
|
|
if (player != null)
|
2012-11-24 01:22:52 +00:00
|
|
|
{
|
2018-03-03 04:29:08 +00:00
|
|
|
FUtil.bcastMsg(player.getName() + " has been a VERY naughty, naughty boy.", ChatColor.RED);
|
2011-10-19 00:37:00 +00:00
|
|
|
}
|
2012-11-24 01:22:52 +00:00
|
|
|
|
2018-03-03 04:29:08 +00:00
|
|
|
// Ban player
|
|
|
|
Ban ban = Ban.forPlayerName(username, sender, null, reason);
|
|
|
|
for (String ip : ips)
|
|
|
|
{
|
|
|
|
ban.addIp(ip);
|
|
|
|
}
|
|
|
|
plugin.bm.addBan(ban);
|
2014-08-02 15:14:37 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
// Broadcast
|
2014-08-25 12:07:47 +00:00
|
|
|
final StringBuilder bcast = new StringBuilder()
|
|
|
|
.append(ChatColor.RED)
|
2018-01-02 02:46:35 +00:00
|
|
|
.append(sender.getName())
|
2018-03-03 04:29:08 +00:00
|
|
|
.append(" - ")
|
|
|
|
.append("Banning: ")
|
|
|
|
.append(username)
|
|
|
|
.append(", IPs: ")
|
|
|
|
.append(StringUtils.join(ips, ", "));
|
2014-08-02 15:14:37 +00:00
|
|
|
if (reason != null)
|
|
|
|
{
|
2018-03-03 04:29:08 +00:00
|
|
|
bcast.append(" - Reason: ").append(ChatColor.YELLOW).append(reason);
|
2014-08-02 15:14:37 +00:00
|
|
|
}
|
2015-10-19 17:43:46 +00:00
|
|
|
FUtil.bcastMsg(bcast.toString());
|
2014-08-25 12:07:47 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
// Kick player
|
2018-03-03 04:29:08 +00:00
|
|
|
if (player != null)
|
|
|
|
{
|
|
|
|
player.kickPlayer(ban.bakeKickMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Log ban
|
|
|
|
plugin.pul.logPunishment(new Punishment(username, ips.get(0), sender.getName(), PunishmentType.BAN, reason));
|
2011-10-19 00:37:00 +00:00
|
|
|
|
2012-11-24 01:22:52 +00:00
|
|
|
return true;
|
2011-10-19 00:37:00 +00:00
|
|
|
}
|
2018-03-03 04:29:08 +00:00
|
|
|
}
|