2018-10-25 13:49:17 +03:00
|
|
|
package ru.gravit.utils.helper;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
2018-11-01 16:03:14 +03:00
|
|
|
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")
|
2018-11-01 16:03:14 +03:00
|
|
|
public static boolean unpack(URL resource, Path target) throws IOException {
|
|
|
|
byte[] orig = IOHelper.read(resource);
|
2018-10-25 13:49:17 +03:00
|
|
|
if(IOHelper.exists(target))
|
|
|
|
{
|
|
|
|
if(matches(target,orig)) return false;
|
|
|
|
}
|
|
|
|
if (!IOHelper.exists(target))
|
|
|
|
target.toFile().createNewFile();
|
|
|
|
IOHelper.transfer(orig,target,false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|