1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
package cc.polyfrost.oneconfigloader;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import net.minecraft.launchwrapper.Launch;
import net.minecraftforge.fml.relauncher.IFMLLoadingPlugin;
import javax.net.ssl.HttpsURLConnection;
import java.io.*;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.net.URLConnection;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.StandardCopyOption;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Arrays;
import java.util.Map;
public class OneConfigLoader implements IFMLLoadingPlugin {
private final Object transformer;
private final Class<?> clazz;
public OneConfigLoader() {
File oneConfigDir = new File(Launch.minecraftHome, "OneConfig");
boolean update = true;
String channel = "release";
try (BufferedReader reader = new BufferedReader(new InputStreamReader(Files.newInputStream(new File(oneConfigDir, "OneConfig.json").toPath()), StandardCharsets.UTF_8))) {
JsonObject config = new JsonParser().parse(reader).getAsJsonObject();
update = config.get("autoUpdate").getAsBoolean();
channel = config.get("updateChannel").getAsInt() == 0 ? "release" : "snapshot";
} catch (Exception ignored) {
}
if (!oneConfigDir.exists() && !oneConfigDir.mkdir())
throw new IllegalStateException("Could not create OneConfig dir!");
File oneConfigFile = new File(oneConfigDir, "OneConfig (1.8.9).jar");
if (!isInitialized(oneConfigFile)) {
JsonElement json = update ? getRequest("https://api.polyfrost.cc/oneconfig/1.8.9-forge") : null;
if (json != null && json.isJsonObject()) {
JsonObject jsonObject = json.getAsJsonObject();
if (jsonObject.has(channel) && jsonObject.getAsJsonObject(channel).has("url")
&& jsonObject.getAsJsonObject(channel).has("sha256")) {
String checksum = jsonObject.getAsJsonObject(channel).get("sha256").getAsString();
String downloadUrl = jsonObject.getAsJsonObject(channel).get("url").getAsString();
if (!oneConfigFile.exists() || !checksum.equals(getChecksum(oneConfigFile))) {
System.out.println("Updating OneConfig...");
File newOneConfigFile = new File(oneConfigDir, "OneConfig-NEW (1.8.9).jar");
downloadFile(downloadUrl, newOneConfigFile);
if (newOneConfigFile.exists() && checksum.equals(getChecksum(newOneConfigFile))) {
try {
Files.move(newOneConfigFile.toPath(), oneConfigFile.toPath(), StandardCopyOption.REPLACE_EXISTING);
System.out.println("Updated OneConfig");
} catch (IOException ignored) {
}
} else {
if (newOneConfigFile.exists()) newOneConfigFile.delete();
System.out.println("Failed to update OneConfig, trying to continue...");
}
}
}
}
if (!oneConfigFile.exists()) throw new IllegalStateException("OneConfig jar doesn't exist");
addToClasspath(oneConfigFile);
}
try {
clazz = Launch.classLoader.findClass("cc.polyfrost.oneconfig.internal.plugin.LoadingPlugin");
transformer = clazz.newInstance();
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException e) {
throw new RuntimeException(e);
}
}
private boolean isInitialized(File file) {
try {
URL url = file.toURI().toURL();
return Arrays.asList(((URLClassLoader) Launch.classLoader.getClass().getClassLoader()).getURLs()).contains(url);
} catch (MalformedURLException e) {
e.printStackTrace();
}
return false;
}
private void addToClasspath(File file) {
try {
URL url = file.toURI().toURL();
Launch.classLoader.addURL(url);
ClassLoader classLoader = Launch.classLoader.getClass().getClassLoader();
Method method = URLClassLoader.class.getDeclaredMethod("addURL", URL.class);
method.setAccessible(true);
method.invoke(classLoader, url);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
private void downloadFile(String url, File location) {
try {
URLConnection con = new URL(url).openConnection();
con.setUseCaches(false);
con.setRequestProperty("User-Agent", "OneConfig-Loader");
InputStream in = con.getInputStream();
Files.copy(in, location.toPath(), StandardCopyOption.REPLACE_EXISTING);
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
private static JsonElement getRequest(String site) {
try {
URL url = new URL(site);
HttpsURLConnection con = (HttpsURLConnection) url.openConnection();
con.setRequestMethod("GET");
int status = con.getResponseCode();
if (status != 200) {
System.out.println("API request failed, status code " + status);
return null;
}
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuilder content = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
}
in.close();
JsonParser parser = new JsonParser();
return parser.parse(content.toString());
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
private String getChecksum(File file) {
try (FileInputStream in = new FileInputStream(file)) {
MessageDigest digest = MessageDigest.getInstance("SHA-256");
byte[] buffer = new byte[1024];
int count;
while ((count = in.read(buffer)) != -1) {
digest.update(buffer, 0, count);
}
byte[] digested = digest.digest();
StringBuilder sb = new StringBuilder();
for (byte b : digested) {
sb.append(Integer.toString((b & 0xff) + 0x100, 16).substring(1));
}
return sb.toString();
} catch (IOException | NoSuchAlgorithmException e) {
e.printStackTrace();
}
return "";
}
@Override
public String[] getASMTransformerClass() {
try {
return transformer == null ? new String[]{} : (String[]) clazz.getDeclaredMethod("getASMTransformerClass").invoke(transformer);
} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
e.printStackTrace();
}
return new String[]{};
}
@Override
public String getModContainerClass() {
try {
return transformer == null ? null : (String) clazz.getDeclaredMethod("getModContainerClass").invoke(transformer);
} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
e.printStackTrace();
}
return null;
}
@Override
public String getSetupClass() {
try {
return transformer == null ? null : (String) clazz.getDeclaredMethod("getSetupClass").invoke(transformer);
} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
e.printStackTrace();
}
return null;
}
@Override
public void injectData(Map<String, Object> data) {
try {
if (transformer != null) {
clazz.getDeclaredMethod("injectData", Map.class).invoke(transformer, data);
}
} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
e.printStackTrace();
}
}
@Override
public String getAccessTransformerClass() {
try {
return transformer == null ? null : (String) clazz.getDeclaredMethod("getAccessTransformerClass").invoke(transformer);
} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
e.printStackTrace();
}
return null;
}
}
|