LuckPerms/README.md

205 lines
11 KiB
Markdown
Raw Normal View History

2016-07-26 04:39:56 +02:00
# LuckPerms [![Build Status](https://ci.lucko.me/job/LuckPerms/badge/icon)](https://ci.lucko.me/job/LuckPerms/)
2016-08-05 12:58:27 +02:00
A permissions implementation for Bukkit/Spigot, BungeeCord and Sponge.
2016-07-21 22:40:24 +02:00
2016-07-26 04:39:56 +02:00
## Links
2016-08-02 15:12:06 +02:00
* **Development Builds** - <https://ci.lucko.me/job/LuckPerms>
* **Javadocs** - <https://jd.lucko.me/LuckPerms>
2016-07-26 04:39:56 +02:00
2016-07-21 22:40:24 +02:00
## Features
* **Group inheritance** - users can be members of multiple groups, groups can inherit other groups
* **Temporary permissions** - users/groups can be given permissions that expire after a given time
2016-08-07 01:16:05 +02:00
* **Wildcard permissions** - users/groups can be given wildcard permissions (e.g. "minecraft.command.*"), even when plugins haven't implemented their own wildcards.
2016-07-21 22:40:24 +02:00
* **Temporary groups** - users/groups can be added to/inherit other groups temporarily
* **Multi-server support** - data is synced across all servers/platforms
2016-07-25 12:18:35 +02:00
* **Full offline-mode/mixed-mode support** - player permissions are synced properly over offline-mode or mixed online/offline-mode networks.
2016-07-21 22:40:24 +02:00
* **Per-server permissions/groups** - define user/group permissions that only apply on certain servers
2016-07-25 19:19:36 +02:00
* **Per-world permissions/groups** - define user/group permissions that only apply on certain worlds (on BungeeCord, a connected Bukkit/Spigot instance is treated as a world)
* **Tracks / paths / ladders** - users can be promoted/demoted along multiple group tracks
2016-07-21 22:40:24 +02:00
* **Vault Support** - hooks into Vault to integrate with other plugins
* **Developer API** - easily integrate LuckPerms into your own projects
* **Easy and simple setup and configuration using commands** - no editing yml files, yuck
2016-07-25 19:19:36 +02:00
* **Negated permissions and groups** - define special rules for certain users/groups
* **Full support for UUIDs, even in Offline Mode** - users can change their usernames without losing permissions. In offline mode, a single user has the same internal UUID across a network.
* **Permission data stored within MySQL in a json format** - easily integrate the LuckPerms backend into your other projects
* **Well documented** - API methods have comprehensive Java docs, it's clear what each method does.
2016-07-21 22:40:24 +02:00
* **Efficient/lightweight** - maybe? Who knows, it might be.
2016-07-25 19:19:36 +02:00
* **Open Sourced, Free...** - you shouldn't have to pay $10+ for a "powerful" permissions plugin.
2016-08-05 12:58:27 +02:00
* **BungeeCord compatible** - permissions, users and groups are synced across all LuckPerms instances
* **Sponge compatible** - permissions, users and groups are synced across all LuckPerms instances (bukkit --> sponge, for example)
2016-07-21 22:40:24 +02:00
* **Support for MySQL, SQLite & Flatfile (JSON)** - other storage methods coming soon (maybe)
## Setup
2016-08-05 12:58:27 +02:00
All configuration options are in the **config.yml/luckperms.conf** file, which is generated automagically when the plugin first starts.
2016-07-21 22:40:24 +02:00
You can define the settings for per-server permissions, the storage method and credentials within this file.
## Info
### Permission Calculation
2016-08-07 01:16:05 +02:00
#### Permissions are calculated based on a priority system as follows.
2016-07-21 22:40:24 +02:00
2016-08-07 01:16:05 +02:00
* **Non wildcard permissions will override wildcard permissions**
Example: if a user has a true permission set for "luckperms.\*", and a false permission set for "luckperms.something", the non-wildcard permission will override the wildcard, and "luckperms.something" will be set to false, despite the wildcard.
* **More specific wildcards override less specific ones**
Example: if a user has "luckperms.\*" set to true, but "luckperms.user.\*" set to false, all of the user permissions will be set to false, despite the more generic wildcard for "luckperms.*".
* **Temporary permissions will override non-temporary permissions.**
2016-07-21 22:40:24 +02:00
Example: if a user has a false permission set for "test.node", and a temporary true permission set for "test.node", the temporary permission will override the permanent one, and the user will be granted the true node.
2016-08-07 01:16:05 +02:00
* **World specific permissions will override generic permissions.**
2016-07-25 19:19:36 +02:00
Example: if a user has a global "fly.use" permission, and then has a negated "fly.use" permission in the "world_nether" world, the world specific permission will override the globally defined one, and the user will be granted the negated node (provided they're in that world, of course.).
2016-08-07 01:16:05 +02:00
* **Server specific permissions will override generic/global permissions.**
2016-07-21 22:40:24 +02:00
2016-08-07 01:16:05 +02:00
Example: if a user has a global "fly.use" permission, and then has a negated "fly.use" permission on the "factions" server, the server specific permission will override the globally defined one, and the user will be granted the negated node (provided they're on that server).
2016-07-21 22:40:24 +02:00
2016-08-07 01:16:05 +02:00
* **Inherited permissions will be overridden by an objects own permissions.**
2016-07-21 22:40:24 +02:00
2016-08-07 01:16:05 +02:00
Example: A user is a member of the default group, which grants "some.thing.perm", but the users own permissions has "some.thing.perm" set to false. The inherited permission will be overridden by the users own permissions, and the user will be granted the negative node.
2016-07-21 22:40:24 +02:00
### Temporary Permissions
Temporary permissions are checked each time a user/group is loaded, and when the sync task runs. This means if you set a temporary permission to expire after 30 seconds, it won't actually be removed until the sync task runs.
The only way around this is to decrease the sync interval.
## API
2016-08-05 12:58:27 +02:00
LuckPerms has an extensive API, allowing for easy integration with other projects. To use the Api, you need to obtain an instance of the `LuckPermsApi` interface. This can be done in a number of ways.
2016-07-21 22:40:24 +02:00
```java
2016-08-06 19:47:39 +02:00
// On all platforms (throws IllegalStateException if the API is not loaded)
2016-07-21 22:40:24 +02:00
final LuckPermsApi api = LuckPerms.getApi();
2016-08-05 12:58:27 +02:00
2016-08-06 19:47:39 +02:00
// Or with Optional
Optional<LuckPermsApi> provider = LuckPerms.getApiSafe();
if (provider.isPresent()) {
final LuckPermsApi api = provider.get();
}
2016-08-05 12:58:27 +02:00
// On Bukkit/Spigot
2016-08-06 19:47:39 +02:00
ServicesManager manager = Bukkit.getServicesManager();
if (manager.isProvidedFor(LuckPermsApi.class)) {
final LuckPermsApi api = manager.getRegistration(LuckPermsApi.class).getProvider();
}
2016-08-05 12:58:27 +02:00
// On Sponge
Optional<LuckPermsApi> provider = Sponge.getServiceManager().provide(LuckPermsApi.class);
if (provider.isPresent()) {
final LuckPermsApi api = provider.get();
}
2016-07-21 22:40:24 +02:00
```
If you want to use LuckPerms in your onEnable method, you need to add the following to your plugins `plugin.yml`.
```yml
depend: [LuckPerms]
```
All of the available methods can be seen in the various interfaces in the `luckperms-api` module.
2016-07-26 04:39:56 +02:00
You can add LuckPerms as a Maven dependency by adding the following to your projects `pom.xml`.
````xml
<repositories>
<repository>
<id>luck-repo</id>
2016-08-02 00:20:49 +02:00
<url>https://repo.lucko.me/</url>
2016-07-26 04:39:56 +02:00
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>me.lucko.luckperms</groupId>
<artifactId>luckperms-api</artifactId>
2016-08-07 01:16:05 +02:00
<version>2.1</version>
2016-07-26 04:39:56 +02:00
</dependency>
</dependencies>
````
2016-08-06 18:28:38 +02:00
## Versioning
As of version 2.0, LuckPerms roughly follows the standards set out in Semantic Versioning.
The only difference is that the patch number is not included anywhere within the pom, and is calculated each build, based upon how may commits have been made since the last tag. (A new tag is made every minor version)
2016-08-06 18:28:38 +02:00
This means that API versions do not have a patch number (as no API changes are made in patches). API versions will be x.y, and each individual build of LuckPerms will follow x.y.z.
2016-07-21 22:40:24 +02:00
2016-08-06 18:28:38 +02:00
## Commands
2016-07-21 22:40:24 +02:00
Command usage is printed to the console/chat whenever invalid arguments are provided. Simply typing /perms will list all commands a user has permission to use.
### Aliases
| Bukkit | Bungee |
|------------------|------------------|
| /luckperms | /luckpermsbungee |
| /perms | /bperms |
| /permissions | /bpermissions |
| /lp | /lpb |
| /perm | /bperm |
2016-07-22 13:27:50 +02:00
Arguments: \<required\> [optional]
2016-07-21 22:40:24 +02:00
Users with OP have access to all commands.
Additionally, you can use wildcards to grant users access to a selection of commands.
* **All commands** - luckperms.*
* **All user commands** - luckperms.user.*
* **All group commands** - luckperms.group.*
* **All track commands** - luckperms.track.*
### General
* /perms - n/a
* /perms sync - luckperms.sync
* /perms info - luckperms.info
* /perms debug - luckperms.debug
2016-07-22 13:27:50 +02:00
* /perms creategroup \<group\> - luckperms.creategroup
* /perms deletegroup \<group\> - luckperms.deletegroup
2016-07-21 22:40:24 +02:00
* /perms listgroups - luckperms.listgroups
2016-07-22 13:27:50 +02:00
* /perms createtrack \<track\> - luckperms.createtrack
* /perms deletetrack \<track\> - luckperms.deletetrack
2016-07-21 22:40:24 +02:00
* /perms listtracks - luckperms.listtracks
### User
2016-07-22 13:27:50 +02:00
* /perms user \<user\> info - luckperms.user.info
* /perms user \<user\> getuuid - luckperms.user.getuuid
* /perms user \<user\> listnodes - luckperms.user.listnodes
2016-07-25 19:19:36 +02:00
* /perms user \<user\> haspermission \<node\> [server] [world] - luckperms.user.haspermission
* /perms user \<user\> inheritspermission \<node\> [server] [world] - luckperms.user.inheritspermission
* /perms user \<user\> set \<node\> \<true/false\> [server] [world] - luckperms.user.setpermission
* /perms user \<user\> unset \<node\> [server] [world] - luckperms.user.unsetpermission
* /perms user \<user\> addgroup \<group\> [server] [world] - luckperms.user.addgroup
* /perms user \<user\> removegroup \<group\> [server] [world] - luckperms.user.removegroup
* /perms user \<user\> settemp \<node\> \<true/false\> \<duration\> [server] [world] - luckperms.user.settemppermission
* /perms user \<user\> unsettemp \<node\> [server] [world] - luckperms.user.unsettemppermission
* /perms user \<user\> addtempgroup \<group\> \<duration\> [server] [world] - luckperms.user.addtempgroup
* /perms user \<user\> removetempgroup \<group\> [server] [world] - luckperms.user.removetempgroup
2016-07-22 13:27:50 +02:00
* /perms user \<user\> setprimarygroup \<group\> - luckperms.user.setprimarygroup
* /perms user \<user\> showtracks - luckperms.user.showtracks
* /perms user \<user\> promote \<track\> - luckperms.user.promote
* /perms user \<user\> demote \<track\> - luckperms.user.demote
* /perms user \<user\> showpos \<track\> - luckperms.user.showpos
* /perms user \<user\> clear - luckperms.user.clear
2016-07-21 22:40:24 +02:00
### Group
2016-07-22 13:27:50 +02:00
* /perms group \<group\> info - luckperms.group.info
* /perms group \<group\> listnodes - luckperms.group.listnodes
2016-07-25 19:19:36 +02:00
* /perms group \<group\> haspermission \<node\> [server] [world] - luckperms.group.haspermission
* /perms group \<group\> inheritspermission \<node\> [server] [world] - luckperms.group.inheritspermission
* /perms group \<group\> set \<node\> \<true/false\> [server] [world] - luckperms.group.setpermission
* /perms group \<group\> unset \<node\> [server] [world] - luckperms.group.unsetpermission
* /perms group \<group\> setinherit \<group\> [server] [world] - luckperms.group.setinherit
* /perms group \<group\> unsetinherit \<group\> [server] [world] - luckperms.group.unsetinherit
* /perms group \<group\> settemp \<node\> \<true/false\> \<duration\> [server] [world] - settemppermission
* /perms group \<group\> unsettemp \<node\> [server] [world] - luckperms.group.unsettemppermission
* /perms group \<group\> settempinherit \<group\> \<duration\> [server] [world] - luckperms.group.settempinherit
* /perms group \<group\> unsettempinherit \<group\> [server] [world] - luckperms.group.unsettempinherit
2016-07-22 13:27:50 +02:00
* /perms group \<group\> showtracks - luckperms.group.showtracks
* /perms group \<group\> clear - luckperms.group.clear
2016-07-21 22:40:24 +02:00
### Track
2016-07-22 13:27:50 +02:00
* /perms track \<track\> info - luckperms.track.info
* /perms track \<track\> append \<group\> - luckperms.track.append
* /perms track \<track\> insert \<group\> \<position\> - luckperms.track.insert
* /perms track \<track\> remove \<group\> - luckperms.track.remove
* /perms track \<track\> clear - luckperms.track.clear
2016-07-21 22:40:24 +02:00
## License
2016-08-06 18:28:38 +02:00
See LICENSE.md.