2019-08-20 14:43:48 +02:00
|
|
|
package sonia.scm.plugin;
|
|
|
|
|
|
2019-08-21 07:44:50 +02:00
|
|
|
import com.google.common.hash.HashCode;
|
2019-08-20 14:43:48 +02:00
|
|
|
import com.google.common.hash.Hashing;
|
2019-08-21 07:44:50 +02:00
|
|
|
import com.google.common.hash.HashingInputStream;
|
2019-08-20 14:43:48 +02:00
|
|
|
import sonia.scm.SCMContextProvider;
|
|
|
|
|
import sonia.scm.net.ahc.AdvancedHttpClient;
|
|
|
|
|
|
|
|
|
|
import javax.inject.Inject;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.io.InputStream;
|
2019-08-21 07:44:50 +02:00
|
|
|
import java.nio.file.Files;
|
|
|
|
|
import java.nio.file.Path;
|
|
|
|
|
import java.nio.file.Paths;
|
2019-08-20 14:43:48 +02:00
|
|
|
import java.util.Optional;
|
|
|
|
|
|
2019-08-21 07:44:50 +02:00
|
|
|
@SuppressWarnings("UnstableApiUsage") // guava hash is marked as unstable
|
2019-08-20 14:43:48 +02:00
|
|
|
class PluginInstaller {
|
|
|
|
|
|
|
|
|
|
private final SCMContextProvider context;
|
|
|
|
|
private final AdvancedHttpClient client;
|
|
|
|
|
|
|
|
|
|
@Inject
|
|
|
|
|
public PluginInstaller(SCMContextProvider context, AdvancedHttpClient client) {
|
|
|
|
|
this.context = context;
|
|
|
|
|
this.client = client;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-20 16:38:29 +02:00
|
|
|
public PendingPluginInstallation install(AvailablePlugin plugin) {
|
2019-08-21 07:56:52 +02:00
|
|
|
Path file = null;
|
2019-08-21 07:44:50 +02:00
|
|
|
try (HashingInputStream input = new HashingInputStream(Hashing.sha256(), download(plugin))) {
|
2019-08-21 07:56:52 +02:00
|
|
|
file = createFile(plugin);
|
2019-08-21 07:44:50 +02:00
|
|
|
Files.copy(input, file);
|
2019-08-20 14:43:48 +02:00
|
|
|
|
2019-08-21 07:56:52 +02:00
|
|
|
verifyChecksum(plugin, input.hash(), file);
|
2019-08-20 16:38:29 +02:00
|
|
|
return new PendingPluginInstallation(plugin, file);
|
2019-08-20 14:43:48 +02:00
|
|
|
} catch (IOException ex) {
|
2019-08-21 07:56:52 +02:00
|
|
|
cleanup(file);
|
2019-08-21 07:44:50 +02:00
|
|
|
throw new PluginDownloadException("failed to download plugin", ex);
|
2019-08-20 14:43:48 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-21 07:56:52 +02:00
|
|
|
private void cleanup(Path file) {
|
|
|
|
|
try {
|
|
|
|
|
if (file != null) {
|
|
|
|
|
Files.deleteIfExists(file);
|
|
|
|
|
}
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
throw new PluginInstallException("failed to cleanup, after broken installation");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void verifyChecksum(AvailablePlugin plugin, HashCode hash, Path file) {
|
2019-08-20 14:43:48 +02:00
|
|
|
Optional<String> checksum = plugin.getDescriptor().getChecksum();
|
|
|
|
|
if (checksum.isPresent()) {
|
2019-08-21 07:44:50 +02:00
|
|
|
String calculatedChecksum = hash.toString();
|
2019-08-20 14:43:48 +02:00
|
|
|
if (!checksum.get().equalsIgnoreCase(calculatedChecksum)) {
|
2019-08-21 07:56:52 +02:00
|
|
|
cleanup(file);
|
2019-08-20 14:43:48 +02:00
|
|
|
throw new PluginChecksumMismatchException(
|
|
|
|
|
String.format("downloaded plugin checksum %s does not match expected %s", calculatedChecksum, checksum.get())
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private InputStream download(AvailablePlugin plugin) throws IOException {
|
|
|
|
|
return client.get(plugin.getDescriptor().getUrl()).request().contentAsStream();
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-21 07:44:50 +02:00
|
|
|
private Path createFile(AvailablePlugin plugin) throws IOException {
|
|
|
|
|
Path directory = context.resolve(Paths.get("plugins"));
|
|
|
|
|
Files.createDirectories(directory);
|
|
|
|
|
return directory.resolve(plugin.getDescriptor().getInformation().getName() + ".smp");
|
2019-08-20 14:43:48 +02:00
|
|
|
}
|
|
|
|
|
}
|