93 lines
3.3 KiB
Java
93 lines
3.3 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.FPlayer;
|
|
import com.massivecraft.factions.FactionsPlugin;
|
|
import com.massivecraft.factions.cmd.audit.FLogType;
|
|
import com.massivecraft.factions.event.FPlayerLeaveEvent;
|
|
import com.massivecraft.factions.struct.BanInfo;
|
|
import com.massivecraft.factions.struct.Permission;
|
|
import com.massivecraft.factions.util.CC;
|
|
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
|
import com.massivecraft.factions.zcore.util.TL;
|
|
import org.bukkit.Bukkit;
|
|
|
|
import java.util.logging.Level;
|
|
|
|
public class CmdBan extends FCommand {
|
|
|
|
/**
|
|
* @author FactionsUUID Team
|
|
*/
|
|
|
|
public CmdBan() {
|
|
super();
|
|
this.aliases.addAll(Aliases.ban_ban);
|
|
|
|
this.requiredArgs.add("target");
|
|
|
|
this.requirements = new CommandRequirements.Builder(Permission.BAN)
|
|
.playerOnly()
|
|
.withAction(PermissableAction.BAN)
|
|
.build();
|
|
}
|
|
|
|
@Override
|
|
public void perform(CommandContext context) {
|
|
|
|
// Good on permission checks. Now lets just ban the player.
|
|
FPlayer target = context.argAsFPlayer(0);
|
|
if (target == null) {
|
|
return; // the above method sends a message if fails to find someone.
|
|
}
|
|
|
|
if (context.fPlayer == target) {
|
|
// You may not ban yourself
|
|
context.msg(TL.COMMAND_BAN_SELF);
|
|
return;
|
|
} else if (target.getFaction() == context.faction && target.getRole().value >= context.fPlayer.getRole().value) {
|
|
// You may not ban someone that has same or higher faction rank
|
|
context.msg(TL.COMMAND_BAN_INSUFFICIENTRANK, target.getName());
|
|
return;
|
|
}
|
|
|
|
for (BanInfo banInfo : context.faction.getBannedPlayers()) {
|
|
if (banInfo.getBanned().equals(target.getId())) {
|
|
context.msg(TL.COMMAND_BAN_ALREADYBANNED);
|
|
return;
|
|
}
|
|
}
|
|
|
|
|
|
// Ban the user.
|
|
context.faction.ban(target, context.fPlayer);
|
|
context.faction.deinvite(target); // can't hurt
|
|
|
|
// If in same Faction, lets make sure to kick them and throw an event.
|
|
if (target.getFaction() == context.faction) {
|
|
|
|
FPlayerLeaveEvent event = new FPlayerLeaveEvent(target, context.faction, FPlayerLeaveEvent.PlayerLeaveReason.BANNED);
|
|
Bukkit.getServer().getPluginManager().callEvent(event);
|
|
|
|
if (event.isCancelled()) {
|
|
// if someone cancels a ban, we'll get people complaining here. So lets log it.
|
|
FactionsPlugin.getInstance().log(Level.WARNING, "Attempted to ban {0} but someone cancelled the kick event. This isn't good.", target.getName());
|
|
return;
|
|
}
|
|
|
|
// Didn't get cancelled so remove them and reset their invite.
|
|
context.faction.removeFPlayer(target);
|
|
target.resetFactionData();
|
|
}
|
|
|
|
// Lets inform the people!
|
|
target.msg(TL.COMMAND_BAN_TARGET, context.faction.getTag(target.getFaction()));
|
|
FactionsPlugin.instance.logFactionEvent(context.faction, FLogType.BANS, context.fPlayer.getName(), CC.Green + "banned", target.getName());
|
|
context.faction.msg(TL.COMMAND_BAN_BANNED, context.fPlayer.getName(), target.getName());
|
|
}
|
|
|
|
@Override
|
|
public TL getUsageTranslation() {
|
|
return TL.COMMAND_BAN_DESCRIPTION;
|
|
}
|
|
}
|