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

dev.espi.protectionstones.utils.UUIDCache Maven / Gradle / Ivy

/*
 * 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 .
 */

package dev.espi.protectionstones.utils;

import com.sk89q.worldguard.WorldGuard;
import com.sk89q.worldguard.util.profile.Profile;

import java.util.HashMap;
import java.util.Map;
import java.util.UUID;

public class UUIDCache {
    private static Map uuidToName = new HashMap<>();
    private static Map nameToUUID = new HashMap<>();

    // toLowerCase for case insensitive search

    public static UUID getUUIDFromName(String name) {
        if (name == null) return null;
        return nameToUUID.get(name.toLowerCase());
    }

    public static String getNameFromUUID(UUID uuid) {
        if (uuid == null) return null;
        return uuidToName.get(uuid);
    }

    public static boolean containsName(String name) {
        if (name == null) return false;
        return nameToUUID.containsKey(name.toLowerCase());
    }

    public static boolean containsUUID(UUID uuid) {
        if (uuid == null) return false;
        return uuidToName.containsKey(uuid);
    }

    public static void storeUUIDNamePair(UUID uuid, String name) {
        if (uuid == null || name == null) return;
        uuidToName.put(uuid, name);
        nameToUUID.put(name.toLowerCase(), uuid);
    }

    public static void removeUUID(UUID uuid) {
        if (uuid == null) return;
        uuidToName.remove(uuid);
    }

    public static void removeName(String name) {
        if (name == null) return;
        nameToUUID.remove(name.toLowerCase());
    }

    public static void storeWGProfile(UUID uuid, String name) {
        WorldGuard.getInstance().getProfileCache().put(new Profile(uuid, name));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy