Launcher/libLauncher/src/main/java/ru/gravit/utils/helper/UnpackHelper.java

30 lines
946 B
Java
Raw Normal View History

2018-10-25 13:49:17 +03:00
package ru.gravit.utils.helper;
import java.io.IOException;
import java.net.URL;
2018-10-25 13:49:17 +03:00
import java.nio.file.Path;
import java.util.Arrays;
public class UnpackHelper {
@SuppressWarnings("ResultOfMethodCallIgnored")
public static boolean unpack(URL resource, Path target) throws IOException {
byte[] orig = IOHelper.read(resource);
2018-11-08 15:30:16 +03:00
if (IOHelper.exists(target)) {
if (matches(target, orig)) return false;
2018-10-25 13:49:17 +03:00
}
if (!IOHelper.exists(target))
target.toFile().createNewFile();
2018-11-08 15:30:16 +03:00
IOHelper.transfer(orig, target, false);
2018-10-25 13:49:17 +03:00
return true;
}
2018-11-08 15:30:16 +03:00
2018-10-25 13:49:17 +03:00
private static boolean matches(Path target, byte[] in) {
try {
return Arrays.equals(SecurityHelper.digest(SecurityHelper.DigestAlgorithm.SHA256, in),
SecurityHelper.digest(SecurityHelper.DigestAlgorithm.SHA256, target));
} catch (IOException e) {
return false;
}
}
}