mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2025-08-02 12:14:41 +02:00
Replacing guava's class search with an explicit list (Fixes #11)
-> Fixed 1.7 Minecraft support -> Fixed Cauldron support
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
* Fixed premium logins if the server is not fully started
|
* Fixed premium logins if the server is not fully started
|
||||||
* Added other command argument to /premium and /cracked
|
* Added other command argument to /premium and /cracked
|
||||||
* Added support for LogIt
|
* Added support for LogIt
|
||||||
|
* Fixed 1.7 Minecraft support by removing guava 11+ only features -> Cauldron support
|
||||||
|
|
||||||
######1.2.1
|
######1.2.1
|
||||||
|
|
||||||
|
@@ -7,19 +7,25 @@ import com.comphenix.protocol.reflect.FuzzyReflection;
|
|||||||
import com.comphenix.protocol.utility.SafeCacheBuilder;
|
import com.comphenix.protocol.utility.SafeCacheBuilder;
|
||||||
import com.github.games647.fastlogin.bukkit.commands.CrackedCommand;
|
import com.github.games647.fastlogin.bukkit.commands.CrackedCommand;
|
||||||
import com.github.games647.fastlogin.bukkit.commands.PremiumCommand;
|
import com.github.games647.fastlogin.bukkit.commands.PremiumCommand;
|
||||||
|
import com.github.games647.fastlogin.bukkit.hooks.AuthMeHook;
|
||||||
import com.github.games647.fastlogin.bukkit.hooks.BukkitAuthPlugin;
|
import com.github.games647.fastlogin.bukkit.hooks.BukkitAuthPlugin;
|
||||||
|
import com.github.games647.fastlogin.bukkit.hooks.LogItHook;
|
||||||
|
import com.github.games647.fastlogin.bukkit.hooks.LoginSecurityHook;
|
||||||
|
import com.github.games647.fastlogin.bukkit.hooks.UltraAuthHook;
|
||||||
|
import com.github.games647.fastlogin.bukkit.hooks.xAuthHook;
|
||||||
import com.github.games647.fastlogin.bukkit.listener.BukkitJoinListener;
|
import com.github.games647.fastlogin.bukkit.listener.BukkitJoinListener;
|
||||||
import com.github.games647.fastlogin.bukkit.listener.BungeeCordListener;
|
import com.github.games647.fastlogin.bukkit.listener.BungeeCordListener;
|
||||||
import com.github.games647.fastlogin.bukkit.listener.EncryptionPacketListener;
|
import com.github.games647.fastlogin.bukkit.listener.EncryptionPacketListener;
|
||||||
import com.github.games647.fastlogin.bukkit.listener.ProtocolSupportListener;
|
import com.github.games647.fastlogin.bukkit.listener.ProtocolSupportListener;
|
||||||
import com.github.games647.fastlogin.bukkit.listener.StartPacketListener;
|
import com.github.games647.fastlogin.bukkit.listener.StartPacketListener;
|
||||||
import com.google.common.cache.CacheLoader;
|
import com.google.common.cache.CacheLoader;
|
||||||
import com.google.common.reflect.ClassPath;
|
import com.google.common.collect.Lists;
|
||||||
|
import de.st_ddt.crazylogin.CrazyLogin;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.security.KeyPair;
|
import java.security.KeyPair;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
|
import java.util.List;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import java.util.concurrent.ConcurrentMap;
|
import java.util.concurrent.ConcurrentMap;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
@@ -224,12 +230,10 @@ public class FastLoginBukkit extends JavaPlugin {
|
|||||||
private boolean registerHooks() {
|
private boolean registerHooks() {
|
||||||
BukkitAuthPlugin authPluginHook = null;
|
BukkitAuthPlugin authPluginHook = null;
|
||||||
try {
|
try {
|
||||||
String hooksPackage = this.getClass().getPackage().getName() + ".hooks";
|
List<Class<?>> supportedHooks = Lists.newArrayList(AuthMeHook.class, CrazyLogin.class
|
||||||
//Look through all classes in the hooks package and look for supporting plugins on the server
|
, LogItHook.class, LoginSecurityHook.class, UltraAuthHook.class, xAuthHook.class);
|
||||||
for (ClassPath.ClassInfo clazzInfo : ClassPath.from(getClassLoader()).getTopLevelClasses(hooksPackage)) {
|
for (Class<?> clazz : supportedHooks) {
|
||||||
//remove the hook suffix
|
String pluginName = clazz.getSimpleName().replace("Hook", "");
|
||||||
String pluginName = clazzInfo.getSimpleName().replace("Hook", "");
|
|
||||||
Class<?> clazz = clazzInfo.load();
|
|
||||||
//uses only member classes which uses AuthPlugin interface (skip interfaces)
|
//uses only member classes which uses AuthPlugin interface (skip interfaces)
|
||||||
if (BukkitAuthPlugin.class.isAssignableFrom(clazz)
|
if (BukkitAuthPlugin.class.isAssignableFrom(clazz)
|
||||||
//check only for enabled plugins. A single plugin could be disabled by plugin managers
|
//check only for enabled plugins. A single plugin could be disabled by plugin managers
|
||||||
@@ -239,7 +243,7 @@ public class FastLoginBukkit extends JavaPlugin {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (InstantiationException | IllegalAccessException | IOException ex) {
|
} catch (InstantiationException | IllegalAccessException ex) {
|
||||||
getLogger().log(Level.SEVERE, "Couldn't load the integration class", ex);
|
getLogger().log(Level.SEVERE, "Couldn't load the integration class", ex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,15 +1,12 @@
|
|||||||
package com.github.games647.fastlogin.bungee.listener;
|
package com.github.games647.fastlogin.bungee.listener;
|
||||||
|
|
||||||
import com.github.games647.fastlogin.bungee.FastLoginBungee;
|
|
||||||
import com.github.games647.fastlogin.bungee.FastLoginBungee;
|
import com.github.games647.fastlogin.bungee.FastLoginBungee;
|
||||||
import com.github.games647.fastlogin.bungee.ForceLoginTask;
|
import com.github.games647.fastlogin.bungee.ForceLoginTask;
|
||||||
import com.github.games647.fastlogin.bungee.ForceLoginTask;
|
|
||||||
import com.github.games647.fastlogin.bungee.PlayerProfile;
|
|
||||||
import com.github.games647.fastlogin.bungee.PlayerProfile;
|
import com.github.games647.fastlogin.bungee.PlayerProfile;
|
||||||
import com.github.games647.fastlogin.bungee.hooks.BungeeAuthPlugin;
|
import com.github.games647.fastlogin.bungee.hooks.BungeeAuthPlugin;
|
||||||
import com.google.common.base.Charsets;
|
import com.google.common.base.Charsets;
|
||||||
import java.lang.reflect.Field;
|
|
||||||
|
|
||||||
|
import java.lang.reflect.Field;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user