mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-16 12:09:12 +03:00
59 lines
1.5 KiB
Java
59 lines
1.5 KiB
Java
package ru.gravit.launchserver.binary;
|
|
|
|
import java.io.IOException;
|
|
import java.nio.file.Path;
|
|
|
|
import ru.gravit.launcher.serialize.signed.DigestBytesHolder;
|
|
import ru.gravit.utils.helper.IOHelper;
|
|
import ru.gravit.launchserver.LaunchServer;
|
|
import ru.gravit.utils.helper.SecurityHelper;
|
|
|
|
public abstract class LauncherBinary {
|
|
|
|
protected final LaunchServer server;
|
|
|
|
protected final Path binaryFile;
|
|
protected final Path syncBinaryFile;
|
|
private volatile DigestBytesHolder binary;
|
|
private volatile byte[] sign;
|
|
|
|
|
|
protected LauncherBinary(LaunchServer server, Path binaryFile) {
|
|
this.server = server;
|
|
this.binaryFile = binaryFile;
|
|
syncBinaryFile = binaryFile;
|
|
}
|
|
|
|
|
|
protected LauncherBinary(LaunchServer server, Path binaryFile, Path syncBinaryFile) {
|
|
this.server = server;
|
|
this.binaryFile = binaryFile;
|
|
this.syncBinaryFile = syncBinaryFile;
|
|
}
|
|
|
|
|
|
public abstract void build() throws IOException;
|
|
|
|
|
|
public final boolean exists() {
|
|
return IOHelper.isFile(syncBinaryFile);
|
|
}
|
|
|
|
|
|
public final DigestBytesHolder getBytes() {
|
|
return binary;
|
|
}
|
|
|
|
public final byte[] getSign() {
|
|
return sign;
|
|
}
|
|
|
|
|
|
public final boolean sync() throws IOException {
|
|
boolean exists = exists();
|
|
binary = exists ? new DigestBytesHolder(IOHelper.read(syncBinaryFile), SecurityHelper.DigestAlgorithm.SHA512) : null;
|
|
sign = exists ? SecurityHelper.sign(IOHelper.read(syncBinaryFile), server.privateKey) : null;
|
|
|
|
return exists;
|
|
}
|
|
}
|