Compare commits
2 Commits
b800badcc3
...
d6a21fd5a3
Author | SHA1 | Date | |
---|---|---|---|
d6a21fd5a3 | |||
9c4a39641d |
@ -520,14 +520,12 @@ public final class MojangService {
|
|||||||
@SneakyThrows
|
@SneakyThrows
|
||||||
private void fetchMojangServerStatuses() {
|
private void fetchMojangServerStatuses() {
|
||||||
log.info("Checking Mojang server statuses...");
|
log.info("Checking Mojang server statuses...");
|
||||||
long before = System.currentTimeMillis();
|
Arrays.stream(MojangServer.values()).parallel().forEach(server -> {
|
||||||
for (MojangServer server : MojangServer.values()) {
|
|
||||||
log.info("Pinging {}...", server.getEndpoint());
|
log.info("Pinging {}...", server.getEndpoint());
|
||||||
MojangServer.Status status = server.getStatus(); // Retrieve the server status
|
MojangServer.Status status = server.getStatus(); // Retrieve the server status
|
||||||
log.info("Retrieved status of {}: {}", server.getEndpoint(), status.name());
|
log.info("Retrieved status of {}: {}", server.getEndpoint(), status.name());
|
||||||
mojangServerStatuses.put(server, status); // Cache the server status
|
mojangServerStatuses.put(server, status); // Cache the server status
|
||||||
}
|
});
|
||||||
log.info("Mojang server status check took {}ms", System.currentTimeMillis() - before);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -561,7 +559,7 @@ public final class MojangService {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
String hashed = Hashing.sha1().hashBytes(hostname.toLowerCase().getBytes(StandardCharsets.ISO_8859_1)).toString();
|
String hashed = Hashing.sha1().hashBytes(hostname.toLowerCase().getBytes(StandardCharsets.ISO_8859_1)).toString();
|
||||||
boolean blocked = bannedServerHashes.contains(hashed); // Is the hostname blocked?
|
boolean blocked = bannedServerHashes != null && (bannedServerHashes.contains(hashed)); // Is the hostname blocked?
|
||||||
if (blocked) { // Cache the blocked hostname
|
if (blocked) { // Cache the blocked hostname
|
||||||
blockedServersCache.add(hostname);
|
blockedServersCache.add(hostname);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user