/* * This file is part of NucleusFramework for Bukkit, licensed under the MIT License (MIT). * * Copyright (c) JCThePants (www.jcwhatever.com) * * 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 com.jcwhatever.nucleus.providers.jail; import com.jcwhatever.nucleus.Nucleus; import com.jcwhatever.nucleus.utils.TimeScale; import org.bukkit.entity.Player; import org.bukkit.plugin.Plugin; import java.util.Collection; import java.util.Date; import java.util.UUID; import javax.annotation.Nullable; /** * Static convenience methods for accessing the Jail provider. */ public final class Jails { private Jails() {} /** * Imprison a player in the jail. * * @param player The player to imprison. * @param duration The duration to imprison the player for. * @param timeScale The time scale of the specified duration. * * @return Null if failed to imprison player. */ @Nullable public static IJailSession imprison(Player player, int duration, TimeScale timeScale) { return provider().getServerJail().imprison(player, duration, timeScale); } /** * Imprison a player in the jail. * * @param player The player to imprison. * @param expires The date and time the session will expire. (prisoner release date) * * @return Null if failed to imprison player. */ @Nullable public static IJailSession imprison(Player player, Date expires) { return provider().getServerJail().imprison(player, expires); } /** * Determine if a player is imprisoned in any registered jails. * * @param playerId The ID of the player to check. */ public static boolean isPrisoner(UUID playerId) { return provider().isPrisoner(playerId); } /** * Release a player from their current imprisonment session. * * @param playerId The ID of the player to release. * * @return True if released, false if release failed or player is not imprisoned. */ public static boolean release(UUID playerId) { return provider().release(playerId); } /** * Get the servers default jail. */ public static IJail getServerJail() { return provider().getServerJail(); } /** * Create a new jail. * * @param plugin The jails owning plugin. * @param name The jails name. * * @return The jail or null if failed. */ @Nullable public static IJail createJail(Plugin plugin, String name) { return provider().createJail(plugin, name); } /** * Get a jail created by a plugin. * * @param plugin The plugin that created the jail. * @param name The name of the jail. * * @return The jail or null if not found. */ @Nullable public static IJail getJail(Plugin plugin, String name) { return provider().getJail(plugin, name); } /** * Get all jails. */ public static Collection<IJail> getJails() { return provider().getJails(); } /** * Get the jail session for a specified player. * * @param playerId The ID of the player. * * @return The jail session or null if the player is not imprisoned. */ @Nullable public static IJailSession getSession(UUID playerId) { return provider().getSession(playerId); } /** * Get all current jail sessions. */ public static Collection<IJailSession> getSessions() { return provider().getSessions(); } private static IJailProvider provider() { return Nucleus.getProviders().getJails(); } }