package cc.fascinated.model.mojang; import cc.fascinated.Main; import cc.fascinated.model.player.Cape; import cc.fascinated.model.player.Skin; import cc.fascinated.util.Tuple; import cc.fascinated.util.UUIDUtils; import com.google.gson.JsonObject; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import java.util.ArrayList; import java.util.Base64; import java.util.List; @Getter @NoArgsConstructor public class MojangProfile { /** * The UUID of the player. */ private String id; /** * The name of the player. */ private String name; /** * The properties of the player. */ private final List properties = new ArrayList<>(); /** * Get the skin and cape of the player. * * @return the skin and cape of the player */ public Tuple getSkinAndCape() { ProfileProperty textureProperty = getProfileProperty("textures"); if (textureProperty == null) { return null; } JsonObject json = Main.GSON.fromJson(textureProperty.getDecodedValue(), JsonObject.class); // Decode the texture property JsonObject texturesJson = json.getAsJsonObject("textures"); // Parse the decoded JSON and get the textures object return new Tuple<>(Skin.fromJson(texturesJson.getAsJsonObject("SKIN")).populatePartUrls(this.getFormattedUuid()), Cape.fromJson(texturesJson.getAsJsonObject("CAPE"))); } /** * Gets the formatted UUID of the player. * * @return the formatted UUID */ public String getFormattedUuid() { return id.length() == 32 ? UUIDUtils.addUuidDashes(id) : id; } /** * Get a profile property for the player * * @return the profile property */ public ProfileProperty getProfileProperty(String name) { for (ProfileProperty property : properties) { if (property.getName().equals(name)) { return property; } } return null; } @Getter @AllArgsConstructor public static class ProfileProperty { /** * The name of the property. */ private String name; /** * The base64 value of the property. */ private String value; /** * The signature of the property. */ private String signature; /** * Decodes the value for this property. * * @return the decoded value */ public String getDecodedValue() { return new String(Base64.getDecoder().decode(this.value)); } /** * Check if the property is signed. * * @return true if the property is signed, false otherwise */ public boolean isSigned() { return signature != null; } } }