RESTfulMC/Java-SDK/src/main/java/cc/restfulmc/sdk/Testy.java

88 lines
3.8 KiB
Java
Raw Permalink Normal View History

2024-04-23 00:29:09 -07:00
/*
* MIT License
*
* Copyright (c) 2024 Braydon (Rainnny).
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package cc.restfulmc.sdk;
import cc.restfulmc.sdk.client.ClientConfig;
import cc.restfulmc.sdk.client.RESTfulMCClient;
2024-04-24 13:05:39 -07:00
import cc.restfulmc.sdk.command.impl.SyncClientCommands;
import cc.restfulmc.sdk.exception.RESTfulMCAPIException;
import cc.restfulmc.sdk.response.MojangServerStatus;
2024-04-23 00:29:09 -07:00
import cc.restfulmc.sdk.response.Player;
2024-04-24 13:05:39 -07:00
import cc.restfulmc.sdk.response.server.BedrockMinecraftServer;
import cc.restfulmc.sdk.response.server.JavaMinecraftServer;
import cc.restfulmc.sdk.response.server.MinecraftServer;
2024-04-26 16:30:04 -07:00
import cc.restfulmc.sdk.response.server.dns.DNSRecord;
2024-04-23 00:29:09 -07:00
import lombok.SneakyThrows;
/**
* @author Braydon
*/
public final class Testy {
@SneakyThrows
public static void main(String[] args) {
RESTfulMCClient client = new RESTfulMCClient(ClientConfig.defaultConfig()); // Create the client
2024-04-24 13:05:39 -07:00
SyncClientCommands sync = client.sync(); // Get synchronous commands
// Get a player
try {
Player player = sync.getPlayer("rAINnny");
System.out.printf("%s's UUID is %s%n", player.getUsername(), player.getUniqueId());
} catch (RESTfulMCAPIException ex) {
if (ex.getCode() == 400 || ex.getCode() == 404) {
System.out.println("Player not found!");
}
}
// Get a Java Minecraft server
try {
JavaMinecraftServer server = sync.getMinecraftServer(MinecraftServer.Platform.JAVA, "hypixel.net");
MinecraftServer.Players players = server.getPlayers();
System.out.printf("%s has %s/%s players online%n", server.getHostname(), players.getOnline(), players.getMax());
2024-04-26 16:30:04 -07:00
for (DNSRecord record : server.getRecords()) {
System.out.println("record = " + record);
}
2024-04-24 13:05:39 -07:00
} catch (RESTfulMCAPIException ex) {
if (ex.getCode() == 400 || ex.getCode() == 404) {
System.out.println("Server not found!");
}
}
// Get a Bedrock Minecraft server
try {
BedrockMinecraftServer server = sync.getMinecraftServer(MinecraftServer.Platform.BEDROCK, "wildprison.bedrock.minehut.gg");
MinecraftServer.Players players = server.getPlayers();
System.out.printf("%s has %s/%s players online%n", server.getHostname(), players.getOnline(), players.getMax());
} catch (RESTfulMCAPIException ex) {
if (ex.getCode() == 400 || ex.getCode() == 404) {
System.out.println("Server not found!");
}
}
System.out.println("mojang blocked? = " + sync.isMojangBlocked("arkhamnetwork.org"));
MojangServerStatus status = sync.getMojangStatus();
System.out.println("status = " + status.getServers()[0]);
2024-04-23 00:29:09 -07:00
}
}