Skip to content

Commit 58bca18

Browse files
committed
tweaks to http in utils
1 parent b473234 commit 58bca18

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/main/java/com/nexia/installer/util/Utils.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ public class Utils {
2222

2323
public static final DateFormat ISO_8601 = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
2424

25+
public static String userAgent = "Mozilla/5.0 (compatible; combat-test-installer; +https://github.com/nexia-cts/combat-test-installer)";
26+
2527
public static void extractZip(Path file, Path path) throws IOException {
2628
ZipInputStream zipIn = new ZipInputStream(Files.newInputStream(Paths.get(file.toString())));
2729
ZipEntry entry = zipIn.getNextEntry();
@@ -56,7 +58,7 @@ public static void writeToFile(Path path, String string) throws IOException {
5658
Files.write(path, string.getBytes(StandardCharsets.UTF_8));
5759
}
5860

59-
public static void downloadFile(URL url, Path path) throws IOException {
61+
public static void downloadFile(URL url, Path path) {
6062
try (InputStream in = openUrl(url)) {
6163
Files.createDirectories(path.getParent());
6264
Files.copy(in, path, StandardCopyOption.REPLACE_EXISTING);
@@ -67,7 +69,8 @@ public static void downloadFile(URL url, Path path) throws IOException {
6769
t.addSuppressed(t2);
6870
}
6971

70-
throw t;
72+
InstallerUtils.showError(t.getMessage());
73+
t.printStackTrace();
7174
}
7275
}
7376

@@ -76,6 +79,7 @@ public static void downloadFile(URL url, Path path) throws IOException {
7679
private static InputStream openUrl(URL url) throws IOException {
7780
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
7881

82+
conn.setRequestProperty("User-Agent", userAgent);
7983
conn.setConnectTimeout(HTTP_TIMEOUT_MS);
8084
conn.setReadTimeout(HTTP_TIMEOUT_MS);
8185
conn.connect();

0 commit comments

Comments
 (0)