-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,531 changed files
with
23,213 additions
and
7,548 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,355 @@ | ||
/* | ||
* Mohist - MohistMC | ||
* Copyright (C) 2018-2024. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.mohistmc; | ||
|
||
import com.mohistmc.api.ServerAPI; | ||
import java.io.ByteArrayOutputStream; | ||
import java.io.DataOutputStream; | ||
import java.io.File; | ||
import java.io.IOException; | ||
import java.net.URL; | ||
import java.nio.charset.StandardCharsets; | ||
import java.util.ArrayList; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.UUID; | ||
import java.util.concurrent.Callable; | ||
import java.util.concurrent.ScheduledExecutorService; | ||
import java.util.concurrent.ScheduledThreadPoolExecutor; | ||
import java.util.concurrent.TimeUnit; | ||
import java.util.regex.Matcher; | ||
import java.util.regex.Pattern; | ||
import java.util.zip.GZIPOutputStream; | ||
import javax.net.ssl.HttpsURLConnection; | ||
import net.minecraft.server.MinecraftServer; | ||
import net.minecraft.util.thread.NamedThreadFactory; | ||
import org.bukkit.Bukkit; | ||
import org.bukkit.configuration.file.YamlConfiguration; | ||
import org.bukkit.plugin.Plugin; | ||
import org.json.simple.JSONArray; | ||
import org.json.simple.JSONObject; | ||
import org.spigotmc.SpigotConfig; | ||
|
||
/** | ||
* bStats collects some data for plugin authors. | ||
* <p> | ||
* Check out <a href="https://bStats.org/">...</a> to learn more about bStats! | ||
*/ | ||
public class Metrics { | ||
|
||
public static final ScheduledExecutorService METRICS = new ScheduledThreadPoolExecutor(1, new NamedThreadFactory("Metrics")); | ||
private final String name; | ||
private final String serverUUID; | ||
private final List<CustomChart> charts = new ArrayList<>(); | ||
|
||
public Metrics(String name, String serverUUID) { | ||
this.name = name; | ||
this.serverUUID = serverUUID; | ||
|
||
startSubmitting(); | ||
} | ||
|
||
private static void sendData(JSONObject data) throws Exception { | ||
if (data == null) { | ||
throw new IllegalArgumentException("Data cannot be null!"); | ||
} | ||
|
||
HttpsURLConnection connection = (HttpsURLConnection) new URL("https://bStats.org/submitData/server-implementation").openConnection(); | ||
byte[] compressedData = compress(data.toString()); | ||
|
||
connection.setRequestMethod("POST"); | ||
connection.addRequestProperty("Accept", "application/json"); | ||
connection.addRequestProperty("Connection", "close"); | ||
connection.addRequestProperty("Content-Encoding", "gzip"); // We gzip our request | ||
connection.addRequestProperty("Content-Length", String.valueOf(compressedData.length)); | ||
connection.setRequestProperty("Content-Type", "application/json"); // We send our data in JSON format | ||
connection.setRequestProperty("User-Agent", "MC-Server/" + 1); | ||
|
||
// Send data | ||
connection.setDoOutput(true); | ||
DataOutputStream outputStream = new DataOutputStream(connection.getOutputStream()); | ||
outputStream.write(compressedData); | ||
outputStream.flush(); | ||
outputStream.close(); | ||
|
||
connection.getInputStream().close(); // We don't care about the response - Just send our data :) | ||
} | ||
|
||
private static byte[] compress(final String str) throws IOException { | ||
if (str == null) { | ||
return null; | ||
} | ||
|
||
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); | ||
GZIPOutputStream gzip = new GZIPOutputStream(outputStream); | ||
gzip.write(str.getBytes(StandardCharsets.UTF_8)); | ||
gzip.close(); | ||
return outputStream.toByteArray(); | ||
} | ||
|
||
public void addCustomChart(CustomChart chart) { | ||
if (chart == null) { | ||
throw new IllegalArgumentException("Chart cannot be null!"); | ||
} | ||
charts.add(chart); | ||
} | ||
|
||
private void startSubmitting() { | ||
METRICS.scheduleAtFixedRate(() -> { | ||
if (MinecraftServer.getServer().hasStopped()) { | ||
return; | ||
} | ||
submitData(); | ||
}, 1000 * 60 * 5, 1000 * 60 * 30, TimeUnit.MILLISECONDS); | ||
} | ||
|
||
public JSONObject getPluginData() { | ||
JSONObject data = new JSONObject(); | ||
|
||
data.put("pluginName", name); // Append the name of the server software | ||
JSONArray customCharts = new JSONArray(); | ||
for (CustomChart customChart : charts) { | ||
JSONObject chart = customChart.getRequestJsonObject(); | ||
if (chart == null) { | ||
continue; | ||
} | ||
customCharts.add(chart); | ||
} | ||
data.put("customCharts", customCharts); | ||
return data; | ||
} | ||
|
||
private JSONObject getServerData() { | ||
JSONObject data = new JSONObject(); | ||
data.put("serverUUID", serverUUID); | ||
data.put("osName", System.getProperty("os.name")); | ||
data.put("osArch", System.getProperty("os.arch")); | ||
data.put("osVersion", System.getProperty("os.version")); | ||
data.put("coreCount", Runtime.getRuntime().availableProcessors()); | ||
return data; | ||
} | ||
|
||
private void submitData() { | ||
final JSONObject data = getServerData(); | ||
JSONArray pluginData = new JSONArray(); | ||
pluginData.add(getPluginData()); | ||
data.put("plugins", pluginData); | ||
|
||
try { | ||
sendData(data); | ||
} catch (Exception ignored) { | ||
} | ||
} | ||
|
||
public static abstract class CustomChart { | ||
final String chartId; | ||
|
||
CustomChart(String chartId) { | ||
if (chartId == null || chartId.isEmpty()) { | ||
throw new IllegalArgumentException("ChartId cannot be null or empty!"); | ||
} | ||
this.chartId = chartId; | ||
} | ||
|
||
private JSONObject getRequestJsonObject() { | ||
JSONObject chart = new JSONObject(); | ||
chart.put("chartId", chartId); | ||
try { | ||
JSONObject data = getChartData(); | ||
if (data == null) { | ||
return null; | ||
} | ||
chart.put("data", data); | ||
} catch (Throwable t) { | ||
return null; | ||
} | ||
return chart; | ||
} | ||
|
||
protected abstract JSONObject getChartData() throws Exception; | ||
|
||
} | ||
|
||
public static class SimplePie extends CustomChart { | ||
|
||
private final Callable<String> callable; | ||
|
||
public SimplePie(String chartId, Callable<String> callable) { | ||
super(chartId); | ||
this.callable = callable; | ||
} | ||
|
||
@Override | ||
protected JSONObject getChartData() throws Exception { | ||
JSONObject data = new JSONObject(); | ||
String value = callable.call(); | ||
if (value == null || value.isEmpty()) { | ||
return null; | ||
} | ||
data.put("value", value); | ||
return data; | ||
} | ||
} | ||
|
||
public static class DrilldownPie extends CustomChart { | ||
|
||
private final Callable<Map<String, Map<String, Integer>>> callable; | ||
|
||
public DrilldownPie(String chartId, Callable<Map<String, Map<String, Integer>>> callable) { | ||
super(chartId); | ||
this.callable = callable; | ||
} | ||
|
||
@Override | ||
public JSONObject getChartData() throws Exception { | ||
JSONObject data = new JSONObject(); | ||
JSONObject values = new JSONObject(); | ||
Map<String, Map<String, Integer>> map = callable.call(); | ||
if (map == null || map.isEmpty()) { | ||
return null; | ||
} | ||
boolean reallyAllSkipped = true; | ||
for (Map.Entry<String, Map<String, Integer>> entryValues : map.entrySet()) { | ||
JSONObject value = new JSONObject(); | ||
boolean allSkipped = true; | ||
for (Map.Entry<String, Integer> valueEntry : map.get(entryValues.getKey()).entrySet()) { | ||
value.put(valueEntry.getKey(), valueEntry.getValue()); | ||
allSkipped = false; | ||
} | ||
if (!allSkipped) { | ||
reallyAllSkipped = false; | ||
values.put(entryValues.getKey(), value); | ||
} | ||
} | ||
if (reallyAllSkipped) { | ||
return null; | ||
} | ||
data.put("values", values); | ||
return data; | ||
} | ||
} | ||
|
||
public static class SingleLineChart extends CustomChart { | ||
|
||
private final Callable<Integer> callable; | ||
|
||
public SingleLineChart(String chartId, Callable<Integer> callable) { | ||
super(chartId); | ||
this.callable = callable; | ||
} | ||
|
||
@Override | ||
protected JSONObject getChartData() throws Exception { | ||
JSONObject data = new JSONObject(); | ||
int value = callable.call(); | ||
if (value == 0) { | ||
return null; | ||
} | ||
data.put("value", value); | ||
return data; | ||
} | ||
|
||
} | ||
|
||
public static class MohistMetrics { | ||
public static void startMetrics() { | ||
File configFile = new File(new File((File) MinecraftServer.options.valueOf("plugins"), "bStats"), "config.yml"); | ||
YamlConfiguration config = YamlConfiguration.loadConfiguration(configFile); | ||
|
||
if (!config.isSet("serverUuid")) { | ||
config.addDefault("enabled", true); | ||
config.addDefault("serverUuid", UUID.randomUUID().toString()); | ||
config.addDefault("logFailedRequests", false); | ||
|
||
config.options().header( | ||
""" | ||
bStats collects some data for plugin authors like how many servers are using their plugins. | ||
To honor their work, you should not disable it. | ||
This has nearly no effect on the server performance! | ||
Check out https://bStats.org/ to learn more :)""" | ||
).copyDefaults(true); | ||
try { | ||
config.save(configFile); | ||
} catch (IOException ignored) { | ||
} | ||
} | ||
|
||
String serverUUID = config.getString("serverUuid"); | ||
|
||
if (config.getBoolean("enabled", true)) { | ||
Metrics metrics = new Metrics("Mohist", serverUUID); | ||
|
||
metrics.addCustomChart(new SingleLineChart("players", () -> Bukkit.getOnlinePlayers().size())); | ||
metrics.addCustomChart(new SimplePie("online_mode", () -> Bukkit.getOnlineMode() ? "online" : "offline")); | ||
metrics.addCustomChart(new SimplePie("mohist_version", () -> MohistMC.version)); | ||
metrics.addCustomChart(new SimplePie("bungeecord", () -> String.valueOf(SpigotConfig.bungee))); | ||
|
||
metrics.addCustomChart(new DrilldownPie("java_version", () -> { | ||
Map<String, Map<String, Integer>> map = new HashMap<>(); | ||
String javaVersion = System.getProperty("java.version"); | ||
Map<String, Integer> entry = new HashMap<>(); | ||
entry.put(javaVersion, 1); | ||
|
||
String majorVersion = javaVersion.split("\\.")[0]; | ||
String release; | ||
|
||
int indexOf = javaVersion.lastIndexOf('.'); | ||
|
||
if (majorVersion.equals("1")) { | ||
release = "Java " + javaVersion.substring(0, indexOf); | ||
} else { | ||
Matcher versionMatcher = Pattern.compile("\\d+").matcher(majorVersion); | ||
if (versionMatcher.find()) { | ||
majorVersion = versionMatcher.group(0); | ||
} | ||
release = "Java " + majorVersion; | ||
} | ||
map.put(release, entry); | ||
|
||
return map; | ||
})); | ||
|
||
metrics.addCustomChart(new DrilldownPie("mod_plugin", () -> { | ||
Map<String, Map<String, Integer>> map = new HashMap<>(); | ||
|
||
Map<String, Integer> modslist = new HashMap<>(); | ||
String[] mods = ServerAPI.modlists_All.toString().replace("[", "").replace("]", "").split(", "); | ||
for (String x : mods) { | ||
if (x.equals("minecraft") || x.equals("forge") || x.equals("mohist")) { | ||
continue; | ||
} | ||
modslist.put(x, 1); | ||
} | ||
|
||
Map<String, Integer> pluginlist = new HashMap<>(); | ||
for (Plugin plugin : Bukkit.getPluginManager().getPlugins()) { | ||
if (plugin.isEnabled() && !plugin.getName().equals("mohist")) { | ||
pluginlist.put(plugin.getDescription().getName(), 1); | ||
} | ||
} | ||
map.put("mods", modslist); | ||
map.put("plugins", pluginlist); | ||
|
||
return map; | ||
})); | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.