All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bspfsystems.basicmojangapi.SimpleAccount Maven / Gradle / Ivy

Go to download

A simple Java library for translating between a player's username and their UUID.

There is a newer version: 2.0.1
Show newest version
/*
 * This file is part of the BasicMojangAPI Java library.
 *
 * Copyright 2021 BSPF Systems, LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.bspfsystems.basicmojangapi;

import java.util.UUID;
import org.bspfsystems.simplejson.JSONObject;
import org.jetbrains.annotations.NotNull;

/**
 * Represents a simple implementation of an {@link Account}.
 */
final class SimpleAccount implements Account {
    
    private final UUID uniqueId;
    private final String name;
    private final boolean legacy;
    private final boolean demo;
    
    /**
     * Constructs a new {@link Account} from the given {@link JSONObject} data
     * that was returned from the Mojang API.
     * 
     * @param data The {@link JSONObject} that contains the account information
     *             from the Mojang API.
     * @throws IllegalArgumentException If the given {@link JSONObject} is
     *                                  missing the minimum amount of data (the
     *                                  username and {@link UUID}).
     */
    SimpleAccount(@NotNull final JSONObject data) throws IllegalArgumentException {
        
        final String uniqueId = data.getString("id", null);
        if (uniqueId == null) {
            throw new IllegalArgumentException("Missing UUID from API JSON data.");
        } else if (uniqueId.length() != 32) {
            throw new IllegalArgumentException("UUID data is not 32 characters long: " + uniqueId);
        }
        this.uniqueId = BasicMojangAPI.translateUniqueId(uniqueId);
        
        final String name = data.getString("name", null);
        if (name == null) {
            throw new IllegalArgumentException("Missing name from API JSON data for UUID: " + this.uniqueId.toString());
        } else if (name.length() < 1 || name.length() > 16) {
            throw new IllegalArgumentException("Name data is not a valid length(" + name.length() + " - " + name + ") for UUID " + this.uniqueId.toString());
        }
        this.name = name;
        
        this.legacy = data.getBoolean("legacy", false);
        this.demo = data.getBoolean("demo", false);
    }
    
    /**
     * {@inheritDoc}
     */
    @Override
    @NotNull
    public UUID getUniqueId() {
        return this.uniqueId;
    }
    
    /**
     * {@inheritDoc}
     */
    @Override
    @NotNull
    public String getName() {
        return this.name;
    }
    
    /**
     * {@inheritDoc}
     */
    @Override
    public boolean isLegacy() {
        return this.legacy;
    }
    
    /**
     * {@inheritDoc}
     */
    @Override
    public boolean isDemo() {
        return this.demo;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy