16
16
import java .util .ListIterator ;
17
17
18
18
public class BTAUtils {
19
- private static final String BTA_CLIENT_URL = "https://downloads.betterthanadventure.net/bta-client/release /%s/client.jar" ;
20
- private static final String BTA_ICON_URL = "https://downloads.betterthanadventure.net/bta-client/release /%s/auto/%s.png" ;
19
+ private static final String BTA_CLIENT_URL = "https://downloads.betterthanadventure.net/bta-client/%s /%s/client.jar" ;
20
+ private static final String BTA_ICON_URL = "https://downloads.betterthanadventure.net/bta-client/%s /%s/auto/%s.png" ;
21
21
private static final List <String > BTA_TESTED_VERSIONS = new ArrayList <>();
22
22
static {
23
23
BTA_TESTED_VERSIONS .add ("v7.3" );
@@ -27,26 +27,33 @@ public class BTAUtils {
27
27
BTA_TESTED_VERSIONS .add ("v7.1" );
28
28
}
29
29
30
- private static String getIconUrl (String version ) {
31
- String versionUnderscore = version .replace ('.' ,'_' );
32
- return String .format (BTA_ICON_URL , version , versionUnderscore );
30
+ private static String getIconUrl (String version , String buildType ) {
31
+ String iconName = version .replace ('.' ,'_' );
32
+ if (buildType .equals ("nightly" )) iconName = "v" +iconName ;
33
+ return String .format (BTA_ICON_URL , buildType , version , iconName );
33
34
}
34
35
35
- private static List <BTAVersion > createVersionList (List <String > versionStrings ) {
36
+ private static List <BTAVersion > createVersionList (List <String > versionStrings , String buildType ) {
36
37
ListIterator <String > iterator = versionStrings .listIterator (versionStrings .size ());
37
38
ArrayList <BTAVersion > btaVersions = new ArrayList <>(versionStrings .size ());
38
39
while (iterator .hasPrevious ()) {
39
40
String version = iterator .previous ();
41
+ if (version == null ) continue ;
40
42
btaVersions .add (new BTAVersion (
41
43
version ,
42
- String .format (BTA_CLIENT_URL , version ),
43
- getIconUrl (version )
44
+ String .format (BTA_CLIENT_URL , buildType , version ),
45
+ getIconUrl (version , buildType )
44
46
));
45
47
}
46
48
btaVersions .trimToSize ();
47
49
return btaVersions ;
48
50
}
49
51
52
+ private static List <BTAVersion > processNightliesJson (String nightliesInfo ) throws JsonParseException {
53
+ BTAVersionsManifest manifest = Tools .GLOBAL_GSON .fromJson (nightliesInfo , BTAVersionsManifest .class );
54
+ return createVersionList (manifest .versions , "nightly" );
55
+ }
56
+
50
57
private static BTAVersionList processReleasesJson (String releasesInfo ) throws JsonParseException {
51
58
BTAVersionsManifest manifest = Tools .GLOBAL_GSON .fromJson (releasesInfo , BTAVersionsManifest .class );
52
59
List <String > stringVersions = manifest .versions ;
@@ -62,16 +69,21 @@ private static BTAVersionList processReleasesJson(String releasesInfo) throws Js
62
69
}
63
70
64
71
return new BTAVersionList (
65
- createVersionList (testedVersions ),
66
- createVersionList (untestedVersions )
72
+ createVersionList (testedVersions , "release" ),
73
+ createVersionList (untestedVersions , "release" ),
74
+ null
67
75
);
68
76
}
69
77
70
78
public static BTAVersionList downloadVersionList () throws IOException {
71
79
try {
72
- return DownloadUtils .downloadStringCached (
80
+ BTAVersionList releases = DownloadUtils .downloadStringCached (
73
81
"https://downloads.betterthanadventure.net/bta-client/release/versions.json" ,
74
82
"bta_releases" , BTAUtils ::processReleasesJson );
83
+ List <BTAVersion > nightlies = DownloadUtils .downloadStringCached (
84
+ "https://downloads.betterthanadventure.net/bta-client/nightly/versions.json" ,
85
+ "bta_nightlies" , BTAUtils ::processNightliesJson );
86
+ return new BTAVersionList (releases .testedVersions , releases .untestedVersions , nightlies );
75
87
}catch (DownloadUtils .ParseException e ) {
76
88
Log .e ("BTAUtils" , "Failed to process json" , e );
77
89
return null ;
@@ -100,10 +112,12 @@ public BTAVersion(String versionName, String downloadUrl, String iconUrl) {
100
112
public static class BTAVersionList {
101
113
public final List <BTAVersion > testedVersions ;
102
114
public final List <BTAVersion > untestedVersions ;
115
+ public final List <BTAVersion > nightlyVersions ;
103
116
104
- public BTAVersionList (List <BTAVersion > mTestedVersions , List <BTAVersion > mUntestedVersions ) {
117
+ public BTAVersionList (List <BTAVersion > mTestedVersions , List <BTAVersion > mUntestedVersions , List < BTAVersion > nightlyVersions ) {
105
118
this .testedVersions = mTestedVersions ;
106
119
this .untestedVersions = mUntestedVersions ;
120
+ this .nightlyVersions = nightlyVersions ;
107
121
}
108
122
}
109
123
}
0 commit comments