From 5a544fd251706f0b41e2b91e67bd94d29233f0d0 Mon Sep 17 00:00:00 2001 From: KHobbits Date: Wed, 8 Jun 2011 17:41:48 +0100 Subject: Adding group permission alias --- .../essentials/permissions/Commandmangaddp.java | 29 ++++++++++++++++++++++ .../essentials/permissions/Commandmangcheckp.java | 29 ++++++++++++++++++++++ .../essentials/permissions/Commandmangdelp.java | 29 ++++++++++++++++++++++ .../essentials/permissions/Commandmanglistp.java | 28 +++++++++++++++++++++ .../essentials/permissions/Commandmanucheckp.java | 29 ++++++++++++++++++++++ .../essentials/permissions/Commandmanulistp.java | 2 +- 6 files changed, 145 insertions(+), 1 deletion(-) create mode 100644 EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangaddp.java create mode 100644 EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangcheckp.java create mode 100644 EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdelp.java create mode 100644 EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanglistp.java create mode 100644 EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanucheckp.java (limited to 'EssentialsPermissionsCommands') diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangaddp.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangaddp.java new file mode 100644 index 000000000..214e81f39 --- /dev/null +++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangaddp.java @@ -0,0 +1,29 @@ +package com.earth2me.essentials.permissions; + +import com.earth2me.essentials.commands.EssentialsCommand; +import com.earth2me.essentials.commands.NotEnoughArgumentsException; +import org.bukkit.Server; +import org.bukkit.command.CommandSender; + + +public class Commandmangaddp extends EssentialsCommand +{ + public Commandmangaddp() + { + super("mangaddp"); + } + + @Override + protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception + { + if (args.length < 2) + { + throw new NotEnoughArgumentsException(); + } + final String target = args[0]; + final String perm = args[1]; + ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" perms add "+perm+""); + } + + +} diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangcheckp.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangcheckp.java new file mode 100644 index 000000000..fb11eac72 --- /dev/null +++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangcheckp.java @@ -0,0 +1,29 @@ +package com.earth2me.essentials.permissions; + +import com.earth2me.essentials.commands.EssentialsCommand; +import com.earth2me.essentials.commands.NotEnoughArgumentsException; +import org.bukkit.Server; +import org.bukkit.command.CommandSender; + + +public class Commandmangcheckp extends EssentialsCommand +{ + public Commandmangcheckp() + { + super("mangcheckp"); + } + + @Override + protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception + { + if (args.length < 2) + { + throw new NotEnoughArgumentsException(); + } + final String target = args[0]; + final String perm = args[1]; + ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" has "+perm+""); + } + + +} diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdelp.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdelp.java new file mode 100644 index 000000000..6887221b4 --- /dev/null +++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdelp.java @@ -0,0 +1,29 @@ +package com.earth2me.essentials.permissions; + +import com.earth2me.essentials.commands.EssentialsCommand; +import com.earth2me.essentials.commands.NotEnoughArgumentsException; +import org.bukkit.Server; +import org.bukkit.command.CommandSender; + + +public class Commandmangdelp extends EssentialsCommand +{ + public Commandmangdelp() + { + super("mangdelp"); + } + + @Override + protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception + { + if (args.length < 2) + { + throw new NotEnoughArgumentsException(); + } + final String target = args[0]; + final String perm = args[1]; + ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" perms remove "+perm+""); + } + + +} diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanglistp.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanglistp.java new file mode 100644 index 000000000..190466cd7 --- /dev/null +++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanglistp.java @@ -0,0 +1,28 @@ +package com.earth2me.essentials.permissions; + +import com.earth2me.essentials.commands.EssentialsCommand; +import com.earth2me.essentials.commands.NotEnoughArgumentsException; +import org.bukkit.Server; +import org.bukkit.command.CommandSender; + + +public class Commandmanglistp extends EssentialsCommand +{ + public Commandmanglistp() + { + super("manglistp"); + } + + @Override + protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception + { + if (args.length < 1) + { + throw new NotEnoughArgumentsException(); + } + final String target = args[0]; + ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" perms list"); + } + + +} diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanucheckp.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanucheckp.java new file mode 100644 index 000000000..2a4bc6548 --- /dev/null +++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanucheckp.java @@ -0,0 +1,29 @@ +package com.earth2me.essentials.permissions; + +import com.earth2me.essentials.commands.EssentialsCommand; +import com.earth2me.essentials.commands.NotEnoughArgumentsException; +import org.bukkit.Server; +import org.bukkit.command.CommandSender; + + +public class Commandmanucheckp extends EssentialsCommand +{ + public Commandmanucheckp() + { + super("manucheckp"); + } + + @Override + protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception + { + if (args.length < 2) + { + throw new NotEnoughArgumentsException(); + } + final String player = args[0]; + final String perm = args[1]; + ess.getServer().dispatchCommand(sender, "/permissions "+player+" has "+perm+""); + } + + +} diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanulistp.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanulistp.java index 511a98b66..37f11b985 100644 --- a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanulistp.java +++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanulistp.java @@ -10,7 +10,7 @@ public class Commandmanulistp extends EssentialsCommand { public Commandmanulistp() { - super("manuaddp"); + super("manulistp"); } @Override -- cgit v1.2.3