Create permission to bypass bungeecord server teleportation (#1626)

This commit is contained in:
Alan Gomes 2018-09-02 08:01:04 -03:00 committed by Gabriele C
parent 4be174f083
commit d39562d624
4 changed files with 18 additions and 2 deletions

View File

@ -32,6 +32,7 @@ The following are the permission nodes that are currently supported by the lates
- **authme.admin.updatemessages** Permission to use the update messages command. - **authme.admin.updatemessages** Permission to use the update messages command.
- **authme.allowchatbeforelogin** Permission to send chat messages before being logged in. - **authme.allowchatbeforelogin** Permission to send chat messages before being logged in.
- **authme.allowmultipleaccounts** Permission to be able to register multiple accounts. - **authme.allowmultipleaccounts** Permission to be able to register multiple accounts.
- **authme.bypassbungeesend** Permission node to bypass BungeeCord server teleportation.
- **authme.bypassantibot** Permission node to bypass AntiBot protection. - **authme.bypassantibot** Permission node to bypass AntiBot protection.
- **authme.bypasscountrycheck** Permission to bypass the GeoIp country code check. - **authme.bypasscountrycheck** Permission to bypass the GeoIp country code check.
- **authme.bypassforcesurvival** Permission for users to bypass force-survival mode. - **authme.bypassforcesurvival** Permission for users to bypass force-survival mode.

View File

@ -11,6 +11,11 @@ public enum PlayerStatePermission implements PermissionNode {
*/ */
BYPASS_ANTIBOT("authme.bypassantibot", DefaultPermission.OP_ONLY), BYPASS_ANTIBOT("authme.bypassantibot", DefaultPermission.OP_ONLY),
/**
* Permission node to bypass BungeeCord server teleportation.
*/
BYPASS_BUNGEE_SEND("authme.bypassbungeesend", DefaultPermission.OP_ONLY),
/** /**
* Permission for users to bypass force-survival mode. * Permission for users to bypass force-survival mode.
*/ */

View File

@ -6,6 +6,8 @@ import fr.xephi.authme.data.limbo.LimboService;
import fr.xephi.authme.datasource.DataSource; import fr.xephi.authme.datasource.DataSource;
import fr.xephi.authme.events.LoginEvent; import fr.xephi.authme.events.LoginEvent;
import fr.xephi.authme.events.RestoreInventoryEvent; import fr.xephi.authme.events.RestoreInventoryEvent;
import fr.xephi.authme.permission.PermissionsManager;
import fr.xephi.authme.permission.PlayerStatePermission;
import fr.xephi.authme.process.SynchronousProcess; import fr.xephi.authme.process.SynchronousProcess;
import fr.xephi.authme.service.BukkitService; import fr.xephi.authme.service.BukkitService;
import fr.xephi.authme.service.CommonService; import fr.xephi.authme.service.CommonService;
@ -52,6 +54,9 @@ public class ProcessSyncPlayerLogin implements SynchronousProcess {
@Inject @Inject
private JoinMessageService joinMessageService; private JoinMessageService joinMessageService;
@Inject
private PermissionsManager permissionsManager;
ProcessSyncPlayerLogin() { ProcessSyncPlayerLogin() {
} }
@ -106,7 +111,9 @@ public class ProcessSyncPlayerLogin implements SynchronousProcess {
} }
commandManager.runCommandsOnLogin(player, authsWithSameIp); commandManager.runCommandsOnLogin(player, authsWithSameIp);
// Send Bungee stuff. The service will check if it is enabled or not. if (!permissionsManager.hasPermission(player, PlayerStatePermission.BYPASS_BUNGEE_SEND)) {
bungeeSender.connectPlayerOnLogin(player); // Send Bungee stuff. The service will check if it is enabled or not.
bungeeSender.connectPlayerOnLogin(player);
}
} }
} }

View File

@ -168,6 +168,9 @@ permissions:
authme.allowmultipleaccounts: authme.allowmultipleaccounts:
description: Permission to be able to register multiple accounts. description: Permission to be able to register multiple accounts.
default: op default: op
authme.bypassbungeesend:
description: Permission node to bypass BungeeCord server teleportation.
default: op
authme.bypassantibot: authme.bypassantibot:
description: Permission node to bypass AntiBot protection. description: Permission node to bypass AntiBot protection.
default: op default: op