RedisBungee/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeAPI.java

153 lines
4.7 KiB
Java
Raw Normal View History

/**
* Copyright © 2013 tuxed <write@imaginarycode.com>
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.
*/
package com.imaginarycode.minecraft.redisbungee;
import com.google.common.collect.Multimap;
2013-12-27 20:40:58 +00:00
import lombok.NonNull;
import net.md_5.bungee.api.config.ServerInfo;
import java.net.InetAddress;
2014-01-28 22:33:53 +00:00
import java.util.List;
import java.util.Set;
/**
* This class exposes some internal RedisBungee functions. You obtain an instance of this object by invoking {@link RedisBungee#getApi()}.
*
* @author tuxed
* @since 0.2.3
*/
public class RedisBungeeAPI {
private final RedisBungee plugin;
RedisBungeeAPI(RedisBungee plugin) {
this.plugin = plugin;
}
/**
* Get a combined count of all players on this network.
*
* @return a count of all players found
*/
public final int getPlayerCount() {
return plugin.getCount();
}
/**
* Get the last time a player was on. If the player is currently online, this will return 0. If the player has not been recorded,
* this will return -1. Otherwise it will return a value in milliseconds.
*
* @param player a player name
* @return the last time a player was on, if online returns a 0
*/
public final long getLastOnline(@NonNull String player) {
return plugin.getLastOnline(player);
}
/**
* Get the server where the specified player is playing. This function also deals with the case of local players
* as well, and will return local information on them.
*
* @param player a player name
* @return a {@link net.md_5.bungee.api.config.ServerInfo} for the server the player is on.
*/
public final ServerInfo getServerFor(@NonNull String player) {
return plugin.getServerFor(player);
}
/**
* Get a combined list of players on this network.
* <p>
* <strong>Note that this function returns an immutable {@link java.util.Set}.</strong>
*
* @return a Set with all players found
*/
public final Set<String> getPlayersOnline() {
return plugin.getPlayers();
}
2013-11-15 22:55:57 +00:00
/**
* Get a full list of players on all servers.
* @return a immutable Multimap with all players found on this server
2014-01-28 22:33:53 +00:00
* @since 0.2.5
*/
public final Multimap<String, String> getServerToPlayers() {
return plugin.serversToPlayers();
}
2013-12-27 20:40:58 +00:00
/**
* Get a list of players on the server with the given name.
* @param server a server name
* @return a Set with all players found on this server
*/
public final Set<String> getPlayersOnServer(@NonNull String server) {
return plugin.getPlayersOnServer(server);
}
2013-11-15 22:55:57 +00:00
/**
* Convenience method: Checks if the specified player is online.
*
* @param player a player name
2014-01-28 22:33:53 +00:00
* @return if the player is online
2013-11-15 22:55:57 +00:00
*/
public final boolean isPlayerOnline(@NonNull String player) {
2013-11-15 22:55:57 +00:00
return getLastOnline(player) == 0;
}
/**
* Get the {@link java.net.InetAddress} associated with this player.
*
* @param player the player to fetch the IP for
* @return an {@link java.net.InetAddress} if the player is online, null otherwise
2014-01-28 22:33:53 +00:00
* @since 0.2.4
*/
public final InetAddress getPlayerIp(@NonNull String player) {
return plugin.getIpAddress(player);
}
2014-01-02 00:05:55 +00:00
/**
* Sends a proxy command to all proxies.
* @param command the command to send and execute
2014-02-12 06:26:56 +00:00
* @see #sendProxyCommand(String, String)
2014-01-28 22:33:53 +00:00
* @since 0.2.5
2014-01-02 00:05:55 +00:00
*/
public final void sendProxyCommand(@NonNull String command) {
2014-01-02 00:05:55 +00:00
plugin.sendProxyCommand("allservers", command);
}
/**
2014-01-28 22:33:53 +00:00
* Sends a proxy command to the proxy with the given ID. "allservers" means all proxies.
2014-01-02 00:05:55 +00:00
* @param proxyId a proxy ID
* @param command the command to send and execute
2014-02-12 06:26:56 +00:00
* @see #getServerId()
* @see #getAllServers()
2014-01-28 22:33:53 +00:00
* @since 0.2.5
2014-01-02 00:05:55 +00:00
*/
public final void sendProxyCommand(@NonNull String proxyId, @NonNull String command) {
2014-01-02 00:05:55 +00:00
plugin.sendProxyCommand(proxyId, command);
}
/**
* Get the current BungeeCord server ID for this server.
* @return the current server ID
2014-01-28 22:33:53 +00:00
* @since 0.2.5
2014-02-12 06:26:56 +00:00
* @see #getAllServers()
*/
public final String getServerId() {
return RedisBungee.getConfiguration().getString("server-id");
}
2014-01-28 22:33:53 +00:00
/**
* Get all the linked proxies in this network.
* @return the list of all proxies
* @since 0.2.5
2014-02-12 06:26:56 +00:00
* @see #getServerId()
2014-01-28 22:33:53 +00:00
*/
public final List<String> getAllServers() {
return RedisBungee.getServerIds();
}
}