mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2025-01-04 15:07:49 +01:00
Fix codestyle issues
This commit is contained in:
parent
2d2eb740e3
commit
6505538240
@ -4,6 +4,7 @@ import com.google.common.io.ByteArrayDataInput;
|
|||||||
import com.google.common.io.ByteArrayDataOutput;
|
import com.google.common.io.ByteArrayDataOutput;
|
||||||
import com.google.common.io.ByteStreams;
|
import com.google.common.io.ByteStreams;
|
||||||
import fr.xephi.authme.AuthMe;
|
import fr.xephi.authme.AuthMe;
|
||||||
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
import fr.xephi.authme.datasource.CacheDataSource;
|
import fr.xephi.authme.datasource.CacheDataSource;
|
||||||
import fr.xephi.authme.datasource.DataSource;
|
import fr.xephi.authme.datasource.DataSource;
|
||||||
import fr.xephi.authme.initialization.SettingsDependent;
|
import fr.xephi.authme.initialization.SettingsDependent;
|
||||||
@ -80,18 +81,6 @@ public class BungeeService implements SettingsDependent, PluginMessageListener {
|
|||||||
sendBungeecordMessage("Connect", player.getName(), destinationServerOnLogin), 20L);
|
sendBungeecordMessage("Connect", player.getName(), destinationServerOnLogin), 20L);
|
||||||
}
|
}
|
||||||
|
|
||||||
public class AuthMeBungeeMessageType {
|
|
||||||
public static final String LOGIN = "login";
|
|
||||||
public static final String LOGOUT = "logout";
|
|
||||||
public static final String REGISTER = "register";
|
|
||||||
public static final String UNREGISTER = "unregister";
|
|
||||||
public static final String REFRESH_PASSWORD = "refresh.password";
|
|
||||||
public static final String REFRESH_SESSION = "refresh.session";
|
|
||||||
public static final String REFRESH_QUITLOC = "refresh.quitloc";
|
|
||||||
public static final String REFRESH_EMAIL = "refresh.email";
|
|
||||||
public static final String REFRESH = "refresh";
|
|
||||||
}
|
|
||||||
|
|
||||||
private void sendAuthMeBungeecordMessage(String type, String... data) {
|
private void sendAuthMeBungeecordMessage(String type, String... data) {
|
||||||
if(!isEnabled) {
|
if(!isEnabled) {
|
||||||
return;
|
return;
|
||||||
@ -143,7 +132,7 @@ public class BungeeService implements SettingsDependent, PluginMessageListener {
|
|||||||
|
|
||||||
ByteArrayDataInput in = ByteStreams.newDataInput(data);
|
ByteArrayDataInput in = ByteStreams.newDataInput(data);
|
||||||
String subchannel = in.readUTF();
|
String subchannel = in.readUTF();
|
||||||
if(!subchannel.equals("AuthMe")) {
|
if(!"Authme".equals(subchannel)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -158,6 +147,8 @@ public class BungeeService implements SettingsDependent, PluginMessageListener {
|
|||||||
case AuthMeBungeeMessageType.REFRESH:
|
case AuthMeBungeeMessageType.REFRESH:
|
||||||
handleRefresh(in.readUTF());
|
handleRefresh(in.readUTF());
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
ConsoleLogger.debug("Received unsupported bungeecord message type! (" + type + ")");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -182,4 +173,19 @@ public class BungeeService implements SettingsDependent, PluginMessageListener {
|
|||||||
cacheDataSource.getCachedAuths().invalidate(name);
|
cacheDataSource.getCachedAuths().invalidate(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class AuthMeBungeeMessageType {
|
||||||
|
public static final String LOGIN = "login";
|
||||||
|
public static final String LOGOUT = "logout";
|
||||||
|
public static final String REGISTER = "register";
|
||||||
|
public static final String UNREGISTER = "unregister";
|
||||||
|
public static final String REFRESH_PASSWORD = "refresh.password";
|
||||||
|
public static final String REFRESH_SESSION = "refresh.session";
|
||||||
|
public static final String REFRESH_QUITLOC = "refresh.quitloc";
|
||||||
|
public static final String REFRESH_EMAIL = "refresh.email";
|
||||||
|
public static final String REFRESH = "refresh";
|
||||||
|
|
||||||
|
private AuthMeBungeeMessageType() {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user