@@ -22,6 +22,8 @@ public class Utils {
22
22
23
23
public static final DateFormat ISO_8601 = new SimpleDateFormat ("yyyy-MM-dd'T'HH:mm:ssZ" );
24
24
25
+ public static String userAgent = "Mozilla/5.0 (compatible; combat-test-installer; +https://github.com/nexia-cts/combat-test-installer)" ;
26
+
25
27
public static void extractZip (Path file , Path path ) throws IOException {
26
28
ZipInputStream zipIn = new ZipInputStream (Files .newInputStream (Paths .get (file .toString ())));
27
29
ZipEntry entry = zipIn .getNextEntry ();
@@ -56,7 +58,7 @@ public static void writeToFile(Path path, String string) throws IOException {
56
58
Files .write (path , string .getBytes (StandardCharsets .UTF_8 ));
57
59
}
58
60
59
- public static void downloadFile (URL url , Path path ) throws IOException {
61
+ public static void downloadFile (URL url , Path path ) {
60
62
try (InputStream in = openUrl (url )) {
61
63
Files .createDirectories (path .getParent ());
62
64
Files .copy (in , path , StandardCopyOption .REPLACE_EXISTING );
@@ -67,7 +69,8 @@ public static void downloadFile(URL url, Path path) throws IOException {
67
69
t .addSuppressed (t2 );
68
70
}
69
71
70
- throw t ;
72
+ InstallerUtils .showError (t .getMessage ());
73
+ t .printStackTrace ();
71
74
}
72
75
}
73
76
@@ -76,6 +79,7 @@ public static void downloadFile(URL url, Path path) throws IOException {
76
79
private static InputStream openUrl (URL url ) throws IOException {
77
80
HttpURLConnection conn = (HttpURLConnection ) url .openConnection ();
78
81
82
+ conn .setRequestProperty ("User-Agent" , userAgent );
79
83
conn .setConnectTimeout (HTTP_TIMEOUT_MS );
80
84
conn .setReadTimeout (HTTP_TIMEOUT_MS );
81
85
conn .connect ();
0 commit comments