2018-09-17 10:07:32 +03:00
|
|
|
package ru.gravit.launchserver.socket;
|
|
|
|
|
2019-01-04 18:45:11 +03:00
|
|
|
import ru.gravit.launcher.ClientPermissions;
|
2019-01-07 08:01:15 +03:00
|
|
|
import ru.gravit.launcher.profiles.ClientProfile;
|
2019-03-22 09:14:29 +03:00
|
|
|
import ru.gravit.launchserver.LaunchServer;
|
|
|
|
import ru.gravit.launchserver.auth.AuthProviderPair;
|
2019-02-17 10:24:20 +03:00
|
|
|
import ru.gravit.utils.helper.LogHelper;
|
2018-09-27 00:18:26 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
public class Client {
|
|
|
|
public long session;
|
2019-05-03 19:07:37 +03:00
|
|
|
public boolean proxy;
|
2019-03-22 09:14:29 +03:00
|
|
|
public String auth_id;
|
2018-09-17 10:07:32 +03:00
|
|
|
public long timestamp;
|
2018-09-27 00:18:26 +03:00
|
|
|
public Type type;
|
|
|
|
public ClientProfile profile;
|
|
|
|
public boolean isAuth;
|
2018-10-25 15:36:57 +03:00
|
|
|
public boolean checkSign;
|
2019-04-12 00:58:45 +03:00
|
|
|
public boolean isSecure;
|
2018-10-01 13:08:16 +03:00
|
|
|
public ClientPermissions permissions;
|
2018-10-07 10:17:37 +03:00
|
|
|
public String username;
|
2019-04-13 17:29:12 +03:00
|
|
|
public String verifyToken;
|
2019-05-04 12:13:10 +03:00
|
|
|
public transient LogHelper.OutputEnity logOutput;
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2019-03-22 09:14:29 +03:00
|
|
|
public transient AuthProviderPair auth;
|
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
public Client(long session) {
|
|
|
|
this.session = session;
|
|
|
|
timestamp = System.currentTimeMillis();
|
2018-09-27 00:18:26 +03:00
|
|
|
type = Type.USER;
|
|
|
|
isAuth = false;
|
2018-10-01 13:08:16 +03:00
|
|
|
permissions = ClientPermissions.DEFAULT;
|
2018-10-07 10:17:37 +03:00
|
|
|
username = "";
|
2018-10-25 15:36:57 +03:00
|
|
|
checkSign = false;
|
2018-09-17 10:07:32 +03:00
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
2019-03-22 09:14:29 +03:00
|
|
|
//Данные авторизации
|
2018-09-17 10:07:32 +03:00
|
|
|
public void up() {
|
|
|
|
timestamp = System.currentTimeMillis();
|
|
|
|
}
|
2019-04-03 16:27:40 +03:00
|
|
|
|
|
|
|
public void updateAuth() {
|
|
|
|
if (!isAuth) return;
|
|
|
|
if (auth_id.isEmpty()) auth = LaunchServer.server.config.getAuthProviderPair();
|
2019-03-22 09:14:29 +03:00
|
|
|
else auth = LaunchServer.server.config.getAuthProviderPair(auth_id);
|
|
|
|
}
|
2018-11-08 15:30:16 +03:00
|
|
|
|
|
|
|
public enum Type {
|
2018-09-27 00:18:26 +03:00
|
|
|
SERVER,
|
|
|
|
USER
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
}
|