Revert "WIP: Access method for commands"
This reverts commit 9c6cc187f2
.
This commit is contained in:
parent
9a773702eb
commit
90ae1822bc
Binary file not shown.
@ -34,12 +34,16 @@ public class CmdBan extends FCommand {
|
|||||||
@Override
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
|
|
||||||
// Simplified for clarity
|
// Adds bypass to admins and clean permission check
|
||||||
if (!this.hasAccess(PermissableAction.BAN)) {
|
if (!fme.isAdminBypassing()) {
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "manage bans");
|
Access access = myFaction.getAccess(fme, PermissableAction.BAN);
|
||||||
return;
|
if (access != Access.ALLOW && fme.getRole() != Role.ADMIN) {
|
||||||
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "ban");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Good on permission checks. Now lets just ban the player.
|
// Good on permission checks. Now lets just ban the player.
|
||||||
FPlayer target = argAsFPlayer(0);
|
FPlayer target = argAsFPlayer(0);
|
||||||
if (target == null) {
|
if (target == null) {
|
||||||
|
@ -6,7 +6,6 @@ import com.massivecraft.factions.Faction;
|
|||||||
import com.massivecraft.factions.Factions;
|
import com.massivecraft.factions.Factions;
|
||||||
import com.massivecraft.factions.struct.BanInfo;
|
import com.massivecraft.factions.struct.BanInfo;
|
||||||
import com.massivecraft.factions.struct.Permission;
|
import com.massivecraft.factions.struct.Permission;
|
||||||
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
|
||||||
import com.massivecraft.factions.zcore.util.TL;
|
import com.massivecraft.factions.zcore.util.TL;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@ -33,10 +32,6 @@ public class CmdBanlist extends FCommand {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
if (!this.hasAccess(PermissableAction.BAN)) {
|
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "manage bans");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
Faction target = myFaction;
|
Faction target = myFaction;
|
||||||
if (!args.isEmpty()) {
|
if (!args.isEmpty()) {
|
||||||
target = argAsFaction(0);
|
target = argAsFaction(0);
|
||||||
|
@ -32,9 +32,12 @@ public class CmdChest extends FCommand {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// This permission check is way too explicit but it's clean
|
// This permission check is way too explicit but it's clean
|
||||||
if (!this.hasAccess(PermissableAction.CHEST)) {
|
if (!fme.isAdminBypassing()) {
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "access chest");
|
Access access = myFaction.getAccess(fme, PermissableAction.CHEST);
|
||||||
return;
|
if (access != Access.ALLOW && fme.getRole() != Role.ADMIN) {
|
||||||
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "access chest");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
me.openInventory(fme.getFaction().getChest());
|
me.openInventory(fme.getFaction().getChest());
|
||||||
|
@ -37,9 +37,12 @@ public class CmdClaim extends FCommand {
|
|||||||
int radius = this.argAsInt(0, 1); // Default to 1
|
int radius = this.argAsInt(0, 1); // Default to 1
|
||||||
final Faction forFaction = this.argAsFaction(1, myFaction); // Default to own
|
final Faction forFaction = this.argAsFaction(1, myFaction); // Default to own
|
||||||
|
|
||||||
if (!this.hasAccess(PermissableAction.TERRITORY)) {
|
if (!fme.isAdminBypassing()) {
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "change faction territory");
|
Access access = myFaction.getAccess(fme, PermissableAction.TERRITORY);
|
||||||
return;
|
if (access != Access.ALLOW && fme.getRole() != Role.ADMIN) {
|
||||||
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "change faction territory");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,9 +34,12 @@ public class CmdDeinvite extends FCommand {
|
|||||||
@Override
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
FPlayer you = this.argAsBestFPlayerMatch(0);
|
FPlayer you = this.argAsBestFPlayerMatch(0);
|
||||||
if (!this.hasAccess(PermissableAction.INVITE)) {
|
if (!fme.isAdminBypassing()) {
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "manage invites");
|
Access access = myFaction.getAccess(fme, PermissableAction.INVITE);
|
||||||
return;
|
if (access != Access.ALLOW && fme.getRole() != Role.ADMIN) {
|
||||||
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "manage invites");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (you == null) {
|
if (you == null) {
|
||||||
FancyMessage msg = new FancyMessage(TL.COMMAND_DEINVITE_CANDEINVITE.toString()).color(ChatColor.GOLD);
|
FancyMessage msg = new FancyMessage(TL.COMMAND_DEINVITE_CANDEINVITE.toString()).color(ChatColor.GOLD);
|
||||||
|
@ -3,7 +3,6 @@ package com.massivecraft.factions.cmd;
|
|||||||
import com.massivecraft.factions.FPlayer;
|
import com.massivecraft.factions.FPlayer;
|
||||||
import com.massivecraft.factions.P;
|
import com.massivecraft.factions.P;
|
||||||
import com.massivecraft.factions.struct.Permission;
|
import com.massivecraft.factions.struct.Permission;
|
||||||
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
|
||||||
import com.massivecraft.factions.zcore.util.TL;
|
import com.massivecraft.factions.zcore.util.TL;
|
||||||
|
|
||||||
public class CmdDelFWarp extends FCommand {
|
public class CmdDelFWarp extends FCommand {
|
||||||
@ -23,10 +22,6 @@ public class CmdDelFWarp extends FCommand {
|
|||||||
@Override
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
String warp = argAsString(0);
|
String warp = argAsString(0);
|
||||||
if (!this.hasAccess(PermissableAction.WARP)){
|
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "manage warps");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (myFaction.isWarp(warp)) {
|
if (myFaction.isWarp(warp)) {
|
||||||
if (!transact(fme)) {
|
if (!transact(fme)) {
|
||||||
return;
|
return;
|
||||||
|
@ -45,6 +45,13 @@ public class CmdDisband extends FCommand {
|
|||||||
|
|
||||||
boolean isMyFaction = fme != null && faction == myFaction;
|
boolean isMyFaction = fme != null && faction == myFaction;
|
||||||
|
|
||||||
|
if (!fme.isAdminBypassing()) {
|
||||||
|
Access access = myFaction.getAccess(fme, PermissableAction.DISBAND);
|
||||||
|
if (access != Access.ALLOW && fme.getRole() != Role.ADMIN) {
|
||||||
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "disband faction");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (!faction.isNormal()) {
|
if (!faction.isNormal()) {
|
||||||
msg(TL.COMMAND_DISBAND_IMMUTABLE.toString());
|
msg(TL.COMMAND_DISBAND_IMMUTABLE.toString());
|
||||||
return;
|
return;
|
||||||
@ -53,10 +60,6 @@ public class CmdDisband extends FCommand {
|
|||||||
msg(TL.COMMAND_DISBAND_MARKEDPERMANENT.toString());
|
msg(TL.COMMAND_DISBAND_MARKEDPERMANENT.toString());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!this.hasAccess(PermissableAction.DISBAND)) {
|
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "disband faction");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// check for tnt before disbanding.
|
// check for tnt before disbanding.
|
||||||
|
@ -31,9 +31,12 @@ public class CmdFWarp extends FCommand {
|
|||||||
@Override
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
//TODO: check if in combat.
|
//TODO: check if in combat.
|
||||||
if (!this.hasAccess(PermissableAction.WARP)) {
|
if (!fme.isAdminBypassing()) {
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "use warps");
|
Access access = myFaction.getAccess(fme, PermissableAction.WARP);
|
||||||
return;
|
if (access != Access.ALLOW && fme.getRole() != Role.ADMIN) {
|
||||||
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "use warps");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -36,7 +36,6 @@ public class CmdFly extends FCommand {
|
|||||||
this.senderMustBeMember = true;
|
this.senderMustBeMember = true;
|
||||||
this.senderMustBeModerator = false;
|
this.senderMustBeModerator = false;
|
||||||
}
|
}
|
||||||
/// I'll optimize this later today or tomorrow
|
|
||||||
|
|
||||||
public static void startParticles() {
|
public static void startParticles() {
|
||||||
id = Bukkit.getScheduler().scheduleSyncRepeatingTask(P.p, new Runnable() {
|
id = Bukkit.getScheduler().scheduleSyncRepeatingTask(P.p, new Runnable() {
|
||||||
|
@ -2,7 +2,6 @@ package com.massivecraft.factions.cmd;
|
|||||||
|
|
||||||
import com.massivecraft.factions.P;
|
import com.massivecraft.factions.P;
|
||||||
import com.massivecraft.factions.struct.Permission;
|
import com.massivecraft.factions.struct.Permission;
|
||||||
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
|
||||||
import com.massivecraft.factions.zcore.util.TL;
|
import com.massivecraft.factions.zcore.util.TL;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
@ -34,10 +33,7 @@ public class CmdGetVault extends FCommand {
|
|||||||
Location vaultLocation = fme.getFaction().getVault();
|
Location vaultLocation = fme.getFaction().getVault();
|
||||||
ItemStack vault = P.p.createItem(Material.CHEST, 1, (short) 0, P.p.color(P.p.getConfig().getString("fvault.Item.Name")), P.p.colorList(P.p.getConfig().getStringList("fvault.Item.Lore")));
|
ItemStack vault = P.p.createItem(Material.CHEST, 1, (short) 0, P.p.color(P.p.getConfig().getString("fvault.Item.Name")), P.p.colorList(P.p.getConfig().getStringList("fvault.Item.Lore")));
|
||||||
|
|
||||||
if (!this.hasAccess(PermissableAction.VAULT)) {
|
|
||||||
fme.msg(TL.GENERIC_NOPERMISSION, "use vault");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
//check if vault is set
|
//check if vault is set
|
||||||
if (vaultLocation != null) {
|
if (vaultLocation != null) {
|
||||||
fme.msg(TL.COMMAND_GETVAULT_ALREADYSET);
|
fme.msg(TL.COMMAND_GETVAULT_ALREADYSET);
|
||||||
|
@ -49,9 +49,12 @@ public class CmdHome extends FCommand {
|
|||||||
fme.msg(TL.COMMAND_HOME_TELEPORTDISABLED);
|
fme.msg(TL.COMMAND_HOME_TELEPORTDISABLED);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!this.hasAccess(PermissableAction.HOME)) {
|
if (!fme.isAdminBypassing()) {
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "teleport home");
|
Access access = myFaction.getAccess(fme, PermissableAction.HOME);
|
||||||
return;
|
if (access != Access.ALLOW && fme.getRole() != Role.ADMIN) {
|
||||||
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "teleport home");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,7 +22,6 @@ public class CmdInspect extends FCommand {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
// Who can inspect?
|
|
||||||
if (fme.isInspectMode()) {
|
if (fme.isInspectMode()) {
|
||||||
fme.setInspectMode(false);
|
fme.setInspectMode(false);
|
||||||
msg(TL.COMMAND_INSPECT_DISABLED_MSG);
|
msg(TL.COMMAND_INSPECT_DISABLED_MSG);
|
||||||
|
@ -48,9 +48,12 @@ public class CmdInvite extends FCommand {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.hasAccess(PermissableAction.INVITE)) {
|
if (!fme.isAdminBypassing()) {
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "manage invites");
|
Access access = myFaction.getAccess(fme, PermissableAction.INVITE);
|
||||||
return;
|
if (access != Access.ALLOW && fme.getRole() != Role.ADMIN) {
|
||||||
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "manage invites");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (myFaction.isInvited(target)) {
|
if (myFaction.isInvited(target)) {
|
||||||
|
@ -79,7 +79,8 @@ public class CmdKick extends FCommand {
|
|||||||
// - Make sure the player is in the faction.
|
// - Make sure the player is in the faction.
|
||||||
// - Make sure the kicked player has lower rank than the kicker.
|
// - Make sure the kicked player has lower rank than the kicker.
|
||||||
if (!fme.isAdminBypassing()) {
|
if (!fme.isAdminBypassing()) {
|
||||||
if (!this.hasAccess(PermissableAction.KICK, false)) {
|
Access access = myFaction.getAccess(fme, PermissableAction.KICK);
|
||||||
|
if (access != Access.ALLOW && fme.getRole() != Role.ADMIN) {
|
||||||
fme.msg(TL.GENERIC_NOPERMISSION, "kick");
|
fme.msg(TL.GENERIC_NOPERMISSION, "kick");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package com.massivecraft.factions.cmd;
|
package com.massivecraft.factions.cmd;
|
||||||
|
|
||||||
import com.massivecraft.factions.struct.Permission;
|
import com.massivecraft.factions.struct.Permission;
|
||||||
import com.massivecraft.factions.struct.Role;
|
|
||||||
import com.massivecraft.factions.zcore.util.TL;
|
import com.massivecraft.factions.zcore.util.TL;
|
||||||
|
|
||||||
public class CmdLogins extends FCommand {
|
public class CmdLogins extends FCommand {
|
||||||
@ -19,11 +18,6 @@ public class CmdLogins extends FCommand {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
/// Perhaps add a PermissableAction later?
|
|
||||||
if (!fme.getRole().isAtLeast(Role.MODERATOR)) {
|
|
||||||
fme.msg(TL.GENERIC_NOPERMISSION, "monitor joins");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
boolean monitor = fme.isMonitoringJoins();
|
boolean monitor = fme.isMonitoringJoins();
|
||||||
fme.msg(TL.COMMAND_LOGINS_TOGGLE, String.valueOf(!monitor));
|
fme.msg(TL.COMMAND_LOGINS_TOGGLE, String.valueOf(!monitor));
|
||||||
fme.setMonitorJoins(!monitor);
|
fme.setMonitorJoins(!monitor);
|
||||||
|
@ -37,9 +37,12 @@ public class CmdSetFWarp extends FCommand {
|
|||||||
|
|
||||||
// This statement allows us to check if they've specifically denied it, or default to
|
// This statement allows us to check if they've specifically denied it, or default to
|
||||||
// the old setting of allowing moderators to set warps.
|
// the old setting of allowing moderators to set warps.
|
||||||
if (!this.hasAccess(PermissableAction.SETWARP)) {
|
if (!fme.isAdminBypassing()) {
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "set warps");
|
Access access = myFaction.getAccess(fme, PermissableAction.SETWARP);
|
||||||
return;
|
if (access != Access.ALLOW && fme.getRole() != Role.ADMIN) {
|
||||||
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "set warps");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -40,9 +40,12 @@ public class CmdSethome extends FCommand {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.hasAccess(PermissableAction.SETHOME) && !Permission.SETHOME_ANY.has(sender, true)) {
|
if (!fme.isAdminBypassing()) {
|
||||||
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "set home");
|
Access access = myFaction.getAccess(fme, PermissableAction.SETHOME);
|
||||||
return;
|
if (access != Access.ALLOW && fme.getRole() != Role.ADMIN && !Permission.SETHOME_ANY.has(sender, true)) {
|
||||||
|
fme.msg(TL.GENERIC_FPERM_NOPERMISSION, "set home");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Can the player set the faction home HERE?
|
// Can the player set the faction home HERE?
|
||||||
|
@ -4,7 +4,6 @@ import com.google.common.collect.ArrayListMultimap;
|
|||||||
import com.google.common.collect.ListMultimap;
|
import com.google.common.collect.ListMultimap;
|
||||||
import com.massivecraft.factions.FLocation;
|
import com.massivecraft.factions.FLocation;
|
||||||
import com.massivecraft.factions.struct.Permission;
|
import com.massivecraft.factions.struct.Permission;
|
||||||
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
|
||||||
import com.massivecraft.factions.zcore.util.TL;
|
import com.massivecraft.factions.zcore.util.TL;
|
||||||
|
|
||||||
public class CmdShowClaims extends FCommand {
|
public class CmdShowClaims extends FCommand {
|
||||||
@ -26,11 +25,6 @@ public class CmdShowClaims extends FCommand {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
// #suggestion
|
|
||||||
if (!this.hasAccess(PermissableAction.TERRITORY)) {
|
|
||||||
fme.msg(TL.GENERIC_NOPERMISSION, "manage territory");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
sendMessage(TL.COMMAND_SHOWCLAIMS_HEADER.toString().replace("{faction}", fme.getFaction().describeTo(fme)));
|
sendMessage(TL.COMMAND_SHOWCLAIMS_HEADER.toString().replace("{faction}", fme.getFaction().describeTo(fme)));
|
||||||
ListMultimap<String, String> chunkMap = ArrayListMultimap.create();
|
ListMultimap<String, String> chunkMap = ArrayListMultimap.create();
|
||||||
String format = TL.COMMAND_SHOWCLAIMS_CHUNKSFORMAT.toString();
|
String format = TL.COMMAND_SHOWCLAIMS_CHUNKSFORMAT.toString();
|
||||||
|
@ -4,7 +4,6 @@ import com.massivecraft.factions.Conf;
|
|||||||
import com.massivecraft.factions.FPlayer;
|
import com.massivecraft.factions.FPlayer;
|
||||||
import com.massivecraft.factions.FPlayers;
|
import com.massivecraft.factions.FPlayers;
|
||||||
import com.massivecraft.factions.struct.Permission;
|
import com.massivecraft.factions.struct.Permission;
|
||||||
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
|
||||||
import com.massivecraft.factions.zcore.util.TL;
|
import com.massivecraft.factions.zcore.util.TL;
|
||||||
import mkremins.fanciful.FancyMessage;
|
import mkremins.fanciful.FancyMessage;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
@ -22,10 +21,6 @@ public class CmdShowInvites extends FCommand {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
if (!this.hasAccess(PermissableAction.INVITE)) {
|
|
||||||
fme.msg(TL.GENERIC_NOPERMISSION, "manage invites");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
FancyMessage msg = new FancyMessage(TL.COMMAND_SHOWINVITES_PENDING.toString()).color(ChatColor.GOLD);
|
FancyMessage msg = new FancyMessage(TL.COMMAND_SHOWINVITES_PENDING.toString()).color(ChatColor.GOLD);
|
||||||
for (String id : myFaction.getInvites()) {
|
for (String id : myFaction.getInvites()) {
|
||||||
FPlayer fp = FPlayers.getInstance().getById(id);
|
FPlayer fp = FPlayers.getInstance().getById(id);
|
||||||
|
@ -5,8 +5,6 @@ import com.massivecraft.factions.integration.Econ;
|
|||||||
import com.massivecraft.factions.struct.Role;
|
import com.massivecraft.factions.struct.Role;
|
||||||
import com.massivecraft.factions.util.WarmUpUtil;
|
import com.massivecraft.factions.util.WarmUpUtil;
|
||||||
import com.massivecraft.factions.zcore.MCommand;
|
import com.massivecraft.factions.zcore.MCommand;
|
||||||
import com.massivecraft.factions.zcore.fperms.Access;
|
|
||||||
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
|
||||||
import com.massivecraft.factions.zcore.util.TL;
|
import com.massivecraft.factions.zcore.util.TL;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
@ -27,7 +25,6 @@ public abstract class FCommand extends MCommand<P> {
|
|||||||
public boolean senderMustBeModerator;
|
public boolean senderMustBeModerator;
|
||||||
public boolean senderMustBeAdmin;
|
public boolean senderMustBeAdmin;
|
||||||
public boolean senderMustBeColeader;
|
public boolean senderMustBeColeader;
|
||||||
protected PermissableAction actionPermission;
|
|
||||||
|
|
||||||
public boolean isMoneyCommand;
|
public boolean isMoneyCommand;
|
||||||
|
|
||||||
@ -46,47 +43,6 @@ public abstract class FCommand extends MCommand<P> {
|
|||||||
senderMustBeAdmin = false;
|
senderMustBeAdmin = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean hasAccess() {
|
|
||||||
if (this.permission == null || this.fme == null) return false;
|
|
||||||
if (!this.fme.isAdminBypassing()) {
|
|
||||||
Access access = myFaction.getAccess(this.fme, permission);
|
|
||||||
if (access != Access.ALLOW && this.fme.getRole() != Role.ADMIN) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
public boolean hasAccess(boolean isAdmin) {
|
|
||||||
if (this.actionPermission == null || this.fme == null) return false;
|
|
||||||
if (!this.fme.isAdminBypassing() && isAdmin) {
|
|
||||||
Access access = myFaction.getAccess(this.fme, this.actionPermission);
|
|
||||||
if (access != Access.ALLOW && this.fme.getRole() != Role.ADMIN) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
public boolean hasAccess(PermissableAction perm) {
|
|
||||||
if (this.permission == null || this.fme == null) return false;
|
|
||||||
if (!this.fme.isAdminBypassing()) {
|
|
||||||
Access access = myFaction.getAccess(this.fme, perm);
|
|
||||||
if (access != Access.ALLOW && this.fme.getRole() != Role.ADMIN) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
public boolean hasAccess(PermissableAction perm, boolean isAdmin) {
|
|
||||||
if (this.permission == null || this.fme == null) return false;
|
|
||||||
if (!this.fme.isAdminBypassing() && isAdmin) {
|
|
||||||
Access access = myFaction.getAccess(this.fme, perm);
|
|
||||||
if (access != Access.ALLOW && this.fme.getRole() != Role.ADMIN) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void execute(CommandSender sender, List<String> args, List<MCommand<?>> commandChain) {
|
public void execute(CommandSender sender, List<String> args, List<MCommand<?>> commandChain) {
|
||||||
if (sender instanceof Player) {
|
if (sender instanceof Player) {
|
||||||
|
Loading…
Reference in New Issue
Block a user