Launcher/libLauncher/src/main/java/ru/gravit/launcher/LauncherConfig.java

131 lines
5 KiB
Java
Raw Normal View History

2018-09-17 10:07:32 +03:00
package ru.gravit.launcher;
import ru.gravit.launcher.serialize.HInput;
import ru.gravit.launcher.serialize.HOutput;
import ru.gravit.launcher.serialize.stream.StreamObject;
import ru.gravit.utils.helper.SecurityHelper;
import ru.gravit.utils.helper.VerifyHelper;
2018-09-17 10:07:32 +03:00
2018-12-20 18:45:01 +03:00
import java.io.IOException;
import java.net.InetSocketAddress;
import java.security.interfaces.RSAPublicKey;
import java.security.spec.InvalidKeySpecException;
import java.util.*;
2018-09-17 10:07:32 +03:00
public final class LauncherConfig extends StreamObject {
private static final AutogenConfig config = new AutogenConfig();
2018-09-22 17:33:00 +03:00
2018-10-13 11:01:10 +03:00
2018-09-22 17:33:00 +03:00
public static AutogenConfig getAutogenConfig() {
2018-09-17 10:07:32 +03:00
return config;
}
2018-09-22 17:33:00 +03:00
2018-09-17 10:07:32 +03:00
// Instance
@LauncherAPI
2018-11-06 14:57:19 +03:00
public InetSocketAddress address;
2019-02-20 13:23:24 +03:00
public String nettyAddress;
public int nettyPort;
2018-09-17 10:07:32 +03:00
@LauncherAPI
public final String projectname;
public final int clientPort;
2018-10-08 16:57:29 +03:00
public String secretKeyClient;
@LauncherAPI
2018-09-17 10:07:32 +03:00
public final RSAPublicKey publicKey;
@LauncherAPI
public final Map<String, byte[]> runtime;
2018-09-22 17:33:00 +03:00
public final boolean isUsingWrapper;
public final boolean isDownloadJava;
public final boolean isWarningMissArchJava;
public boolean isNettyEnabled;
2019-02-06 12:00:18 +03:00
public final String guardLicenseName;
public final String guardLicenseKey;
public final String guardLicenseEncryptKey;
2018-09-17 10:07:32 +03:00
@LauncherAPI
public LauncherConfig(HInput input) throws IOException, InvalidKeySpecException {
2019-04-03 16:27:40 +03:00
address = InetSocketAddress.createUnresolved(config.address, config.port);
2018-09-17 10:07:32 +03:00
publicKey = SecurityHelper.toPublicRSAKey(input.readByteArray(SecurityHelper.CRYPTO_MAX_LENGTH));
projectname = config.projectname;
clientPort = config.clientPort;
2018-10-08 16:57:29 +03:00
secretKeyClient = config.secretKeyClient;
isDownloadJava = config.isDownloadJava;
isUsingWrapper = config.isUsingWrapper;
isWarningMissArchJava = config.isWarningMissArchJava;
2019-02-06 12:00:18 +03:00
guardLicenseEncryptKey = config.guardLicenseEncryptKey;
guardLicenseKey = config.guardLicenseKey;
guardLicenseName = config.guardLicenseName;
nettyPort = config.nettyPort;
2019-02-20 13:23:24 +03:00
nettyAddress = config.nettyAddress;
isNettyEnabled = config.isNettyEnabled;
2018-12-19 14:24:50 +03:00
LauncherEnvironment env;
2018-12-20 18:45:01 +03:00
if (config.env == 0) env = LauncherEnvironment.DEV;
else if (config.env == 1) env = LauncherEnvironment.DEBUG;
else if (config.env == 2) env = LauncherEnvironment.STD;
else if (config.env == 3) env = LauncherEnvironment.PROD;
2018-12-19 14:24:50 +03:00
else env = LauncherEnvironment.STD;
Launcher.applyLauncherEnv(env);
2018-09-17 10:07:32 +03:00
// Read signed runtime
int count = input.readLength(0);
Map<String, byte[]> localResources = new HashMap<>(count);
for (int i = 0; i < count; i++) {
String name = input.readString(255);
VerifyHelper.putIfAbsent(localResources, name,
input.readByteArray(SecurityHelper.CRYPTO_MAX_LENGTH),
String.format("Duplicate runtime resource: '%s'", name));
}
runtime = Collections.unmodifiableMap(localResources);
}
2018-09-22 17:33:00 +03:00
2018-09-17 10:07:32 +03:00
@LauncherAPI
2018-09-22 17:33:00 +03:00
public LauncherConfig(String address, int port, RSAPublicKey publicKey, Map<String, byte[]> runtime, String projectname) {
this.address = InetSocketAddress.createUnresolved(address, port);
this.publicKey = Objects.requireNonNull(publicKey, "publicKey");
this.runtime = Collections.unmodifiableMap(new HashMap<>(runtime));
this.projectname = projectname;
this.clientPort = 32148;
2019-02-06 12:00:18 +03:00
this.guardLicenseName = "FREE";
this.guardLicenseKey = "AAAA-BBBB-CCCC-DDDD";
this.guardLicenseEncryptKey = "12345";
isUsingWrapper = true;
isDownloadJava = false;
isWarningMissArchJava = true;
2019-02-20 13:23:24 +03:00
isNettyEnabled = false;
}
2018-09-22 17:33:00 +03:00
@LauncherAPI
2018-09-17 10:07:32 +03:00
public LauncherConfig(String address, int port, RSAPublicKey publicKey, Map<String, byte[]> runtime) {
this.address = InetSocketAddress.createUnresolved(address, port);
this.publicKey = Objects.requireNonNull(publicKey, "publicKey");
this.runtime = Collections.unmodifiableMap(new HashMap<>(runtime));
this.projectname = "Minecraft";
2019-02-06 12:00:18 +03:00
this.guardLicenseName = "FREE";
this.guardLicenseKey = "AAAA-BBBB-CCCC-DDDD";
this.guardLicenseEncryptKey = "12345";
this.clientPort = 32148;
isUsingWrapper = true;
isDownloadJava = false;
isWarningMissArchJava = true;
2019-02-20 13:23:24 +03:00
isNettyEnabled = false;
2018-09-17 10:07:32 +03:00
}
@Override
public void write(HOutput output) throws IOException {
output.writeByteArray(publicKey.getEncoded(), SecurityHelper.CRYPTO_MAX_LENGTH);
// Write signed runtime
Set<Map.Entry<String, byte[]>> entrySet = runtime.entrySet();
output.writeLength(entrySet.size(), 0);
for (Map.Entry<String, byte[]> entry : runtime.entrySet()) {
output.writeString(entry.getKey(), 255);
output.writeByteArray(entry.getValue(), SecurityHelper.CRYPTO_MAX_LENGTH);
}
}
2018-12-19 14:24:50 +03:00
2018-12-20 18:45:01 +03:00
public enum LauncherEnvironment {
DEV, DEBUG, STD, PROD
2018-12-19 14:24:50 +03:00
}
2018-09-17 10:07:32 +03:00
}