mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-18 05:16:12 +00:00
5c0f77c7c5
Lombok implementation removal. I have also gone through and replaced things with inline methods and variables, lambdas, and simplified loops down, removed unnecessary guard clauses, and overall cleaned up every single class. This took a long time, please do remember to follow proper naming conventions, don't include unnecessary guard clauses, follow exception rules and comment rules, and please PLEASE remember to use the DIAMOND OPERATOR rather than just inferring RAW TYPES!!! Thank you!!
66 lines
2.2 KiB
Java
66 lines
2.2 KiB
Java
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import me.totalfreedom.totalfreedommod.banning.Ban;
|
|
import me.totalfreedom.totalfreedommod.player.PlayerData;
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
|
import org.apache.commons.lang.StringUtils;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Player;
|
|
|
|
@CommandPermissions(level = Rank.ADMIN, source = SourceType.BOTH)
|
|
@CommandParameters(description = "Unbans the specified player.", usage = "/<command> <username> [-r]")
|
|
public class Command_unban extends FreedomCommand
|
|
{
|
|
|
|
@Override
|
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
{
|
|
if (args.length > 0)
|
|
{
|
|
String username;
|
|
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.getName();
|
|
final List<String> ips = new ArrayList<>(entry.getIps());
|
|
|
|
FUtil.adminAction(sender.getName(), "Unbanning " + username, true);
|
|
msg(username + " has been unbanned along with the following IPs: " + StringUtils.join(ips, ", "));
|
|
plugin.bm.removeBan(plugin.bm.getByUsername(username));
|
|
|
|
if (args.length >= 2)
|
|
{
|
|
if (args[1].equalsIgnoreCase("-r"))
|
|
{
|
|
plugin.cpb.restore(username);
|
|
msg("Restored edits for: " + username);
|
|
}
|
|
}
|
|
|
|
for (String ip : ips)
|
|
{
|
|
Ban ban = plugin.bm.getByIp(ip);
|
|
if (ban != null)
|
|
{
|
|
plugin.bm.removeBan(ban);
|
|
}
|
|
ban = plugin.bm.getByIp(FUtil.getFuzzyIp(ip));
|
|
if (ban != null)
|
|
{
|
|
plugin.bm.removeBan(ban);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
} |