Saber-Factions/src/main/java/com/massivecraft/factions/cmd/CmdKick.java

120 lines
4.6 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Conf;
import com.massivecraft.factions.FPlayer;
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.P;
import com.massivecraft.factions.event.FPlayerLeaveEvent;
import com.massivecraft.factions.struct.Permission;
import com.massivecraft.factions.struct.Role;
import com.massivecraft.factions.zcore.util.TL;
import mkremins.fanciful.FancyMessage;
2014-04-04 20:55:21 +02:00
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
2014-04-04 20:55:21 +02:00
public class CmdKick extends FCommand {
public CmdKick() {
2014-07-01 22:10:18 +02:00
super();
this.aliases.add("kick");
2014-04-04 20:55:21 +02:00
this.optionalArgs.put("player name", "player name");
2014-04-04 20:55:21 +02:00
//this.optionalArgs.put("", "");
2014-07-01 22:10:18 +02:00
this.permission = Permission.KICK.node;
this.disableOnLock = false;
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
senderMustBePlayer = true;
senderMustBeMember = false;
senderMustBeModerator = true;
senderMustBeAdmin = false;
2014-04-04 20:55:21 +02:00
}
@Override
public void perform() {
FPlayer toKick = this.argAsBestFPlayerMatch(0);
if (toKick == null) {
FancyMessage msg = new FancyMessage("Players you can kick: ").color(ChatColor.GOLD);
for (FPlayer player : myFaction.getFPlayersWhereRole(Role.NORMAL)) {
String s = player.getName();
msg.then(s + " ").color(ChatColor.WHITE).tooltip("Click to kick " + s).command("f kick " + s);
}
if (fme.getRole() == Role.ADMIN) {
for (FPlayer player : myFaction.getFPlayersWhereRole(Role.MODERATOR)) {
String s = player.getName();
msg.then(s + " ").color(ChatColor.GRAY).tooltip("Click to kick " + s).command("f kick " + s);
}
}
sendFancyMessage(msg);
2014-07-01 22:10:18 +02:00
}
2014-04-04 20:55:21 +02:00
if (fme == toKick) {
2014-04-04 20:55:21 +02:00
msg("<b>You cannot kick yourself.");
2014-07-01 22:10:18 +02:00
msg("<i>You might want to: %s", p.cmdBase.cmdLeave.getUseageTemplate(false));
return;
2014-04-04 20:55:21 +02:00
}
Faction toKickFaction = toKick.getFaction();
// The PlayerEntityCollection only holds online players, this was a specific issue that kept happening.
2014-07-09 21:01:53 +02:00
if (toKickFaction.getTag().equalsIgnoreCase(TL.WILDERNESS.toString())) {
sender.sendMessage("Something went wrong with getting the offline player's faction.");
return;
}
2014-04-04 20:55:21 +02:00
// players with admin-level "disband" permission can bypass these requirements
if (!Permission.KICK_ANY.has(sender)) {
if (toKickFaction != myFaction) {
msg("%s<b> is not a member of %s", toKick.describeTo(fme, true), myFaction.describeTo(fme));
2014-07-01 22:10:18 +02:00
return;
2014-04-04 20:55:21 +02:00
}
if (toKick.getRole().value >= fme.getRole().value) {
2014-07-01 22:10:18 +02:00
msg("<b>Your rank is too low to kick this player.");
return;
2014-04-04 20:55:21 +02:00
}
if (!Conf.canLeaveWithNegativePower && toKick.getPower() < 0) {
2014-07-01 22:10:18 +02:00
msg("<b>You cannot kick that member until their power is positive.");
return;
2014-04-04 20:55:21 +02:00
}
}
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make sure they can pay
2014-07-01 22:10:18 +02:00
if (!canAffordCommand(Conf.econCostKick, "to kick someone from the faction")) {
return;
}
2014-04-04 20:55:21 +02:00
// trigger the leave event (cancellable) [reason:kicked]
FPlayerLeaveEvent event = new FPlayerLeaveEvent(toKick, toKick.getFaction(), FPlayerLeaveEvent.PlayerLeaveReason.KICKED);
2014-07-01 22:10:18 +02:00
Bukkit.getServer().getPluginManager().callEvent(event);
if (event.isCancelled()) {
return;
}
2014-04-04 20:55:21 +02:00
// then make 'em pay (if applicable)
2014-07-01 21:49:42 +02:00
if (!payForCommand(Conf.econCostKick, "to kick someone from the faction", "for kicking someone from the faction")) {
2014-04-04 20:55:21 +02:00
return;
2014-07-01 21:49:42 +02:00
}
2014-04-04 20:55:21 +02:00
toKickFaction.msg("%s<i> kicked %s<i> from the faction! :O", fme.describeTo(toKickFaction, true), toKick.describeTo(toKickFaction, true));
toKick.msg("%s<i> kicked you from %s<i>! :O", fme.describeTo(toKick, true), toKickFaction.describeTo(toKick));
if (toKickFaction != myFaction) {
fme.msg("<i>You kicked %s<i> from the faction %s<i>!", toKick.describeTo(fme), toKickFaction.describeTo(fme));
2014-04-04 20:55:21 +02:00
}
2014-07-01 21:49:42 +02:00
if (Conf.logFactionKick) {
P.p.log((senderIsConsole ? "A console command" : fme.getName()) + " kicked " + toKick.getName() + " from the faction: " + toKickFaction.getTag());
2014-07-01 21:49:42 +02:00
}
2014-04-04 20:55:21 +02:00
if (toKick.getRole() == Role.ADMIN) {
toKickFaction.promoteNewLeader();
2014-07-01 22:10:18 +02:00
}
toKickFaction.deinvite(toKick);
toKick.resetFactionData();
2014-04-04 20:55:21 +02:00
}
}