package fr.xephi.authme.settings.properties; import ch.jalu.configme.Comment; import ch.jalu.configme.SettingsHolder; import ch.jalu.configme.properties.Property; import java.util.List; import static ch.jalu.configme.properties.PropertyInitializer.newListProperty; import static ch.jalu.configme.properties.PropertyInitializer.newProperty; public final class HooksSettings implements SettingsHolder { @Comment("Do we need to hook with multiverse for spawn checking?") public static final Property MULTIVERSE = newProperty("Hooks.multiverse", true); @Comment("Do we need to hook with PlaceholderAPI for AuthMe placeholders?") public static final Property PLACEHOLDER_API = newProperty("Hooks.placeholderapi", true); @Comment("Do we need to hook with BungeeCord?") public static final Property BUNGEECORD = newProperty("Hooks.bungeecord", false); @Comment("Do we need to hook with Velocity?") public static final Property VELOCITY = newProperty("Hooks.velocity", false); @Comment({"How many ticks should we wait before sending login info to proxy?", "Change this to higher if your player has high ping.", "See: https://www.spigotmc.org/wiki/bukkit-bungee-plugin-messaging-channel/"}) public static final Property PROXY_SEND_DELAY = newProperty("Hooks.proxySendDelay", 10L); @Comment({"Hook into floodgate.", "This must be true if you want to use other bedrock features." }) public static final Property HOOK_FLOODGATE_PLAYER = newProperty("Hooks.floodgate", false); @Comment("Allow bedrock players join without check isValidName?") public static final Property IGNORE_BEDROCK_NAME_CHECK = newProperty("Hooks.ignoreBedrockNameCheck", true); @Comment("Send player to this BungeeCord server after register/login") public static final Property BUNGEECORD_SERVER = newProperty("Hooks.sendPlayerTo", ""); @Comment("Do we need to disable Essentials SocialSpy on join?") public static final Property DISABLE_SOCIAL_SPY = newProperty("Hooks.disableSocialSpy", false); @Comment("Do we need to force /motd Essentials command on join?") public static final Property USE_ESSENTIALS_MOTD = newProperty("Hooks.useEssentialsMotd", false); @Comment({ "-1 means disabled. If you want that only activated players", "can log into your server, you can set here the group number", "of unactivated users, needed for some forum/CMS support"}) public static final Property NON_ACTIVATED_USERS_GROUP = newProperty("ExternalBoardOptions.nonActivedUserGroup", -1); @Comment("Other MySQL columns where we need to put the username (case-sensitive)") public static final Property> MYSQL_OTHER_USERNAME_COLS = newListProperty("ExternalBoardOptions.mySQLOtherUsernameColumns"); @Comment("How much log2 rounds needed in BCrypt (do not change if you do not know what it does)") public static final Property BCRYPT_LOG2_ROUND = newProperty("ExternalBoardOptions.bCryptLog2Round", 12); @Comment("phpBB table prefix defined during the phpBB installation process") public static final Property PHPBB_TABLE_PREFIX = newProperty("ExternalBoardOptions.phpbbTablePrefix", "phpbb_"); @Comment("phpBB activated group ID; 2 is the default registered group defined by phpBB") public static final Property PHPBB_ACTIVATED_GROUP_ID = newProperty("ExternalBoardOptions.phpbbActivatedGroupId", 2); @Comment("IP Board table prefix defined during the IP Board installation process") public static final Property IPB_TABLE_PREFIX = newProperty("ExternalBoardOptions.IPBTablePrefix", "ipb_"); @Comment("IP Board default group ID; 3 is the default registered group defined by IP Board") public static final Property IPB_ACTIVATED_GROUP_ID = newProperty("ExternalBoardOptions.IPBActivatedGroupId", 3); @Comment("Xenforo table prefix defined during the Xenforo installation process") public static final Property XF_TABLE_PREFIX = newProperty("ExternalBoardOptions.XFTablePrefix", "xf_"); @Comment("XenForo default group ID; 2 is the default registered group defined by Xenforo") public static final Property XF_ACTIVATED_GROUP_ID = newProperty("ExternalBoardOptions.XFActivatedGroupId", 2); @Comment("Wordpress prefix defined during WordPress installation") public static final Property WORDPRESS_TABLE_PREFIX = newProperty("ExternalBoardOptions.wordpressTablePrefix", "wp_"); private HooksSettings() { } }