F perm viewall

This command allows someone to see all the perms held by a rank/rel/player/faction
This commit is contained in:
Magnus Ulf 2018-12-30 10:48:23 +01:00
parent 1dd2356c0f
commit 96989ee653
5 changed files with 109 additions and 1 deletions

View File

@ -64,6 +64,7 @@ permissions:
factions.perm.set: {description: set perms, default: false} factions.perm.set: {description: set perms, default: false}
factions.perm.show: {description: show who has perm, default: false} factions.perm.show: {description: show who has perm, default: false}
factions.perm.view: {description: view perms given to, default: false} factions.perm.view: {description: view perms given to, default: false}
factions.perm.viewall: {description: view all perms held by, default: false}
factions.player: {description: show player information} factions.player: {description: show player information}
factions.powerboost: {description: manage powerboost, default: false} factions.powerboost: {description: manage powerboost, default: false}
factions.powerboost.faction: {description: show faction powerboost, default: false} factions.powerboost.faction: {description: show faction powerboost, default: false}
@ -163,6 +164,7 @@ permissions:
factions.perm.set: true factions.perm.set: true
factions.perm.show: true factions.perm.show: true
factions.perm.view: true factions.perm.view: true
factions.perm.viewall: true
factions.player: true factions.player: true
factions.powerboost: true factions.powerboost: true
factions.powerboost.faction: true factions.powerboost.faction: true
@ -285,6 +287,7 @@ permissions:
factions.perm.set: true factions.perm.set: true
factions.perm.show: true factions.perm.show: true
factions.perm.view: true factions.perm.view: true
factions.perm.viewall: true
factions.player: true factions.player: true
factions.promote: true factions.promote: true
factions.powerboost: true factions.powerboost: true

View File

@ -59,6 +59,7 @@ public enum Perm implements Identified
PERM_SET, PERM_SET,
PERM_SHOW, PERM_SHOW,
PERM_VIEW, PERM_VIEW,
PERM_VIEWALL,
PLAYER, PLAYER,
POWERBOOST, POWERBOOST,
POWERBOOST_PLAYER, POWERBOOST_PLAYER,

View File

@ -9,6 +9,7 @@ public class CmdFactionsPerm extends FactionsCommand
CmdFactionsPermList cmdFactionsPermList = new CmdFactionsPermList(); CmdFactionsPermList cmdFactionsPermList = new CmdFactionsPermList();
CmdFactionsPermShow cmdFactionsPermShow = new CmdFactionsPermShow(); CmdFactionsPermShow cmdFactionsPermShow = new CmdFactionsPermShow();
CmdFactionsPermView cmdFactionsPermView = new CmdFactionsPermView(); CmdFactionsPermView cmdFactionsPermView = new CmdFactionsPermView();
CmdFactionsPermViewall cmdFactionsPermViewall = new CmdFactionsPermViewall();
CmdFactionsPermSet cmdFactionsPermSet = new CmdFactionsPermSet(); CmdFactionsPermSet cmdFactionsPermSet = new CmdFactionsPermSet();
} }

View File

@ -20,7 +20,7 @@ public class CmdFactionsPermSet extends FactionsCommand
{ {
// Parameters // Parameters
this.addParameter(TypeMPerm.get(), "perm"); this.addParameter(TypeMPerm.get(), "perm");
this.addParameter(TypeMPermable.get(), "relation"); this.addParameter(TypeMPermable.get(), "rank/rel/player/faction");
this.addParameter(TypeBooleanYes.get(), "yes/no"); this.addParameter(TypeBooleanYes.get(), "yes/no");
this.addParameter(TypeFaction.get(), "faction", "you"); this.addParameter(TypeFaction.get(), "faction", "you");
} }

View File

@ -0,0 +1,103 @@
package com.massivecraft.factions.cmd;
import com.massivecraft.factions.cmd.type.TypeFaction;
import com.massivecraft.factions.cmd.type.TypeMPermable;
import com.massivecraft.factions.entity.Faction;
import com.massivecraft.factions.entity.MPerm;
import com.massivecraft.factions.entity.MPerm.MPermable;
import com.massivecraft.factions.entity.MPlayer;
import com.massivecraft.factions.entity.Rank;
import com.massivecraft.massivecore.MassiveException;
import com.massivecraft.massivecore.collections.MassiveList;
import com.massivecraft.massivecore.util.Txt;
import java.util.stream.Collectors;
public class CmdFactionsPermViewall extends FactionsCommand
{
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
public CmdFactionsPermViewall()
{
// Parameters
this.addParameter(TypeMPermable.get(), "rank/rel/player/faction");
this.addParameter(TypeFaction.get(), "faction", "you");
}
// -------------------------------------------- //
// OVERRIDE
// -------------------------------------------- //
@Override
public void perform() throws MassiveException
{
// Arg: Faction
Faction faction = this.readArgAt(1, msenderFaction);
var permableType = TypeMPermable.get(faction);
MPerm.MPermable permable = permableType.read(this.argAt(0), sender);
// Self check
if (permable == faction)
{
throw new MassiveException().addMsg("<b>A faction can't have perms for itself.");
}
// Create list of all applicable permables
var permables = new MassiveList<MPermable>();
permables.add(permable);
if (permable instanceof MPlayer)
{
MPlayer mplayer = (MPlayer) permable;
permables.add(mplayer.getFaction());
permables.add(mplayer.getRank());
permables.add(faction.getRelationTo(mplayer));
}
if (permable instanceof Faction)
{
Faction faction1 = (Faction) permable;
permables.add(faction.getRelationTo(faction1));
}
if (permable instanceof Rank && !faction.hasRank((Rank) permable))
{
Rank rank = (Rank) permable;
Faction faction1 = rank.getFaction();
permables.add(faction1);
permables.add(faction.getRelationTo(faction1));
}
// Find the perms they have
var perms = new MassiveList<MPerm>();
perm:
for (var mperm : MPerm.getAll())
{
String mpermId = mperm.getId();
permable:
for (var mpa : permables)
{
if (!faction.isPermitted(mpa.getId(), mperm.getId())) continue permable;
perms.add(mperm);
continue perm;
}
}
if (perms.isEmpty())
{
msg("<i>In <reset>%s <reset>%s <i>has <b>no permissions<i>.", faction.describeTo(msender), permable.getDisplayName(sender));
}
else
{
var permNames = perms.stream().map(perm -> Txt.parse("<h>") + perm.getName()).collect(Collectors.toList());
String names = Txt.implodeCommaAnd(permNames, Txt.parse("<i>"));
// Create messages
var permissionSingularPlural = permNames.size() == 1 ? "permission" : "permissions";
msg("<i>In <reset>%s <reset>%s <i>has the %s: <reset>%s<i> either specifically granted to them or through rank, relation or faction membership.", faction.describeTo(msender), permable.getDisplayName(sender), permissionSingularPlural, names);
}
}
}