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

92 lines
3.0 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.FPlayer;
import com.massivecraft.factions.FPlayers;
2014-04-04 20:55:21 +02:00
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.event.FPlayerJoinEvent;
import com.massivecraft.factions.struct.Permission;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.struct.Role;
import com.massivecraft.factions.zcore.util.TL;
2014-04-04 20:55:21 +02:00
import org.bukkit.Bukkit;
public class CmdAdmin extends FCommand {
2014-04-04 20:55:21 +02:00
public CmdAdmin() {
2014-07-01 22:10:18 +02:00
super();
this.aliases.add("admin");
2014-04-04 20:55:21 +02:00
this.requiredArgs.add("player name");
//this.optionalArgs.put("", "");
2014-07-01 22:10:18 +02:00
this.permission = Permission.ADMIN.node;
this.disableOnLock = true;
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
senderMustBePlayer = false;
senderMustBeMember = false;
senderMustBeModerator = false;
2014-04-04 20:55:21 +02:00
senderMustBeAdmin = false;
}
@Override
public void perform() {
2014-07-01 22:10:18 +02:00
FPlayer fyou = this.argAsBestFPlayerMatch(0);
if (fyou == null) {
return;
}
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
boolean permAny = Permission.ADMIN_ANY.has(sender, false);
Faction targetFaction = fyou.getFaction();
2014-04-04 20:55:21 +02:00
if (targetFaction != myFaction && !permAny) {
msg(TL.COMMAND_ADMIN_NOTMEMBER, fyou.describeTo(fme, true));
2014-07-01 22:10:18 +02:00
return;
2014-04-04 20:55:21 +02:00
}
if (fme != null && fme.getRole() != Role.ADMIN && !permAny) {
msg(TL.COMMAND_ADMIN_NOTADMIN);
2014-07-01 22:10:18 +02:00
return;
2014-04-04 20:55:21 +02:00
}
if (fyou == fme && !permAny) {
msg(TL.COMMAND_ADMIN_TARGETSELF);
2014-07-01 22:10:18 +02:00
return;
2014-04-04 20:55:21 +02:00
}
// only perform a FPlayerJoinEvent when newLeader isn't actually in the faction
if (fyou.getFaction() != targetFaction) {
FPlayerJoinEvent event = new FPlayerJoinEvent(FPlayers.getInstance().getByPlayer(me), targetFaction, FPlayerJoinEvent.PlayerJoinReason.LEADER);
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
}
FPlayer admin = targetFaction.getFPlayerAdmin();
// if target player is currently admin, demote and replace him
if (fyou == admin) {
targetFaction.promoteNewLeader();
msg(TL.COMMAND_ADMIN_DEMOTES, fyou.describeTo(fme, true));
fyou.msg(TL.COMMAND_ADMIN_DEMOTED, senderIsConsole ? TL.GENERIC_SERVERADMIN.toString() : fme.describeTo(fyou, true));
2014-04-04 20:55:21 +02:00
return;
}
// promote target player, and demote existing admin if one exists
2014-07-01 22:10:18 +02:00
if (admin != null) {
admin.setRole(Role.MODERATOR);
}
fyou.setRole(Role.ADMIN);
msg(TL.COMMAND_ADMIN_PROMOTES, fyou.describeTo(fme, true));
2014-04-04 20:55:21 +02:00
// Inform all players
for (FPlayer fplayer : FPlayers.getInstance().getOnlinePlayers()) {
fplayer.msg(TL.COMMAND_ADMIN_PROMOTED, senderIsConsole ? TL.GENERIC_SERVERADMIN.toString() : fme.describeTo(fplayer, true), fyou.describeTo(fplayer), targetFaction.describeTo(fplayer));
2014-04-04 20:55:21 +02:00
}
}
2015-05-13 06:17:22 +02:00
public TL getUsageTranslation() {
return TL.COMMAND_ADMIN_DESCRIPTION;
}
}