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
|
package me.shedaniel.rei.update;
import com.google.common.collect.Lists;
import com.google.gson.*;
import com.google.gson.annotations.SerializedName;
import me.shedaniel.rei.RoughlyEnoughItemsCore;
import net.fabricmc.api.ClientModInitializer;
import net.fabricmc.loader.FabricLoader;
import net.fabricmc.loader.ModContainer;
import net.minecraft.SharedConstants;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.resource.language.I18n;
import net.minecraft.text.StringTextComponent;
import net.minecraft.world.World;
import org.apache.commons.io.IOUtils;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringBufferInputStream;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.stream.Collectors;
public class UpdateChecker implements ClientModInitializer {
private static final Gson GSON = new GsonBuilder().setPrettyPrinting().disableHtmlEscaping().create();
private static Version currentVersion = null, latestForGame = null;
private static JsonVersionElement element;
private static World lastWorld = null;
private static String VERSION_STRING = "https://raw.githubusercontent.com/shedaniel/RoughlyEnoughItems/1.14/version.json";
public static boolean isOutdated() {
return latestForGame.compareTo(currentVersion) == 1 && currentVersion != null;
}
public static UpdatePriority getUpdatePriority(List<Version> versions) {
UpdatePriority p = UpdatePriority.NONE;
List<UpdatePriority> priorities = Arrays.asList(UpdatePriority.values());
for(UpdatePriority priority : versions.stream().map(UpdateChecker::getUpdatePriority).collect(Collectors.toList()))
if (priority.compareTo(p) > 0)
p = priority;
return p;
}
public static UpdatePriority getUpdatePriority(Version version) {
JsonArray array = element.getChangelogs().getFabric();
for(JsonElement element : array) {
JsonObject jsonObject = element.getAsJsonObject();
if (jsonObject.has("version") && jsonObject.get("version").getAsString().equals(version.toString()))
return UpdatePriority.fromString(jsonObject.get("level").getAsString());
}
return UpdatePriority.NONE;
}
public static boolean checkUpdates() {
return RoughlyEnoughItemsCore.getConfigHelper().checkUpdates();
}
public static List<String> getChangelog(Version currentVersion) {
List<String> changelogs = Lists.newLinkedList();
JsonArray array = element.getChangelogs().getFabric();
array.forEach(jsonElement -> {
JsonObject jsonObject = jsonElement.getAsJsonObject();
Version jsonVersion = new Version(jsonObject.get("version").getAsString());
if (jsonVersion.compareTo(currentVersion) > 0 && jsonVersion.compareTo(latestForGame) <= 0)
changelogs.add(I18n.translate("text.rei.update_changelog_line", jsonObject.get("text").getAsString()));
});
return changelogs;
}
public static Version getCurrentVersion() {
return currentVersion;
}
public static Version getLatestForGame() {
return latestForGame;
}
public static void onTick(MinecraftClient client) {
if (client.world != lastWorld) {
lastWorld = client.world;
if (lastWorld != null) {
if (checkUpdates() && isOutdated()) {
String currentVersionString = getCurrentVersion() == null ? "null" : getCurrentVersion().toString();
List<Version> versions = getVersionsHigherThan(currentVersion);
String t[] = I18n.translate("text.rei.update_outdated", currentVersionString, getLatestForGame(), getUpdatePriority(versions).name().toUpperCase()).split("\n");
for(String s : t)
client.player.addChatMessage(new StringTextComponent(s), false);
getChangelog(currentVersion).forEach(s -> client.player.addChatMessage(new StringTextComponent(s), false));
}
}
}
}
private static List<Version> getVersionsHigherThan(Version currentVersion) {
List<Version> versions = Lists.newLinkedList();
JsonArray array = element.getChangelogs().getFabric();
array.forEach(jsonElement -> {
Version jsonVersion = new Version(jsonElement.getAsJsonObject().get("version").getAsString());
if (jsonVersion.compareTo(currentVersion) > 0)
versions.add(jsonVersion);
});
return versions;
}
@Override
public void onInitializeClient() {
if (!checkUpdates())
return;
FabricLoader.INSTANCE.getMods().stream().map(ModContainer::getInfo).forEach(modInfo -> {
if (modInfo.getId().equals("roughlyenoughitems"))
try {
currentVersion = new Version(modInfo.getVersionString());
} catch (Exception e) {
}
});
InputStream downloadedStream = downloadVersionString();
String downloadedString = null;
try {
downloadedString = IOUtils.toString(downloadedStream, StandardCharsets.UTF_8);
element = GSON.fromJson(downloadedString, JsonVersionElement.class);
} catch (IOException e) {
e.printStackTrace();
}
if (downloadedString != null && !downloadedString.equalsIgnoreCase("{}"))
latestForGame = new Version(parseLatest(element, SharedConstants.getGameVersion().getName()));
else
latestForGame = new Version("0.0.0");
}
private InputStream downloadVersionString() {
try {
URL versionUrl = new URL(VERSION_STRING);
return versionUrl.openStream();
} catch (IOException e) {
return new StringBufferInputStream("{}");
}
}
private String parseLatest(JsonVersionElement element, String gameVersion) {
List<LatestVersionObject> objects = new LinkedList<>(element.getLatestVersions());
for(int i = objects.size() - 1; i >= 0; i--)
if (objects.get(i).getGameVersion().equals(gameVersion))
return objects.get(i).getModVersion();
return objects.get(objects.size() - 1).getModVersion();
}
private class JsonVersionElement {
@SerializedName("latest")
private List<LatestVersionObject> latestVersions;
private ChangelogObject changelogs;
public JsonVersionElement() {
this.latestVersions = Lists.newArrayList();
changelogs = new ChangelogObject();
}
public List<LatestVersionObject> getLatestVersions() {
return latestVersions;
}
public ChangelogObject getChangelogs() {
return changelogs;
}
}
private class LatestVersionObject {
@SerializedName("game")
private String gameVersion = "";
@SerializedName("mod")
private String modVersion = "";
public String getGameVersion() {
return gameVersion;
}
public String getModVersion() {
return modVersion;
}
@Override
public String toString() {
return String.format("LatestVersion[%s] = %s", getGameVersion(), getModVersion());
}
}
private class ChangelogObject {
private JsonArray fabric = new JsonArray();
private JsonArray rift = new JsonArray();
public JsonArray getFabric() {
return fabric;
}
public JsonArray getRift() {
return rift;
}
}
}
|