org.lanternpowered.server.profile.LanternProfileProperty.java Source code

Java tutorial

Introduction

Here is the source code for org.lanternpowered.server.profile.LanternProfileProperty.java

Source

/*
 * This file is part of LanternServer, licensed under the MIT License (MIT).
 *
 * Copyright (c) LanternPowered <https://www.lanternpowered.org>
 * Copyright (c) SpongePowered <https://www.spongepowered.org>
 * Copyright (c) contributors
 *
 * 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 org.lanternpowered.server.profile;

import static com.google.common.base.Preconditions.checkNotNull;

import com.google.common.base.MoreObjects;
import com.google.common.collect.LinkedHashMultimap;
import com.google.common.collect.Multimap;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import ninja.leaping.configurate.objectmapping.Setting;
import ninja.leaping.configurate.objectmapping.serialize.ConfigSerializable;
import org.spongepowered.api.profile.property.ProfileProperty;

import java.util.Objects;
import java.util.Optional;

import javax.annotation.Nullable;

@ConfigSerializable
public final class LanternProfileProperty implements ProfileProperty {

    @Setting(value = "name")
    private String name;

    @Setting(value = "value")
    private String value;

    @Nullable
    @Setting(value = "signature")
    private String signature;

    private LanternProfileProperty() {
    }

    public LanternProfileProperty(String name, String value, @Nullable String signature) {
        this.value = checkNotNull(value, "value");
        this.name = checkNotNull(name, "name");
        this.signature = signature;
    }

    @Override
    public String getName() {
        return this.name;
    }

    @Override
    public String getValue() {
        return this.value;
    }

    @Override
    public Optional<String> getSignature() {
        return Optional.ofNullable(this.signature);
    }

    public LanternProfileProperty withoutSignature() {
        return this.signature == null ? this : new LanternProfileProperty(this.name, this.value, null);
    }

    @Override
    public boolean equals(@Nullable Object other) {
        if (this == other) {
            return true;
        }
        if (other == null || other.getClass() != this.getClass()) {
            return false;
        }
        final LanternProfileProperty o = (LanternProfileProperty) other;
        return this.name.equals(o.name) && this.value.equals(o.value)
                && Objects.equals(this.signature, o.signature);
    }

    @Override
    public int hashCode() {
        return Objects.hash(this.name, this.value, this.signature);
    }

    @Override
    public String toString() {
        return MoreObjects.toStringHelper(this).add("name", this.name).add("value", this.value)
                .add("signature", this.signature).omitNullValues().toString();
    }

    /**
     * Creates {@link LanternProfileProperty} from the specified {@link JsonObject}.
     *
     * @param jsonObject The json object
     * @return The profile property
     */
    public static LanternProfileProperty createFromJson(JsonObject jsonObject) {
        final String name = jsonObject.get("name").getAsString();
        final String value = jsonObject.get("value").getAsString();
        final String signature = jsonObject.has("signature") ? jsonObject.get("signature").getAsString() : null;
        return new LanternProfileProperty(name, value, signature);
    }

    /**
     * Creates a multimap with {@link LanternProfileProperty}s from the specified {@link JsonArray}.
     *
     * @param jsonArray The json array
     * @return The multimap
     */
    public static Multimap<String, ProfileProperty> createPropertiesMapFromJson(JsonArray jsonArray) {
        final Multimap<String, ProfileProperty> properties = LinkedHashMultimap.create();
        for (int i = 0; i < jsonArray.size(); i++) {
            final ProfileProperty profileProperty = createFromJson(jsonArray.get(i).getAsJsonObject());
            properties.put(profileProperty.getName(), profileProperty);
        }
        return properties;
    }
}