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

502 lines
19 KiB
Java
Raw Normal View History

2013-09-29 20:16:47 +00:00
/**
* 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;
2014-01-09 21:15:15 +00:00
import com.google.common.base.Joiner;
2013-12-27 20:40:58 +00:00
import com.google.common.collect.HashMultimap;
import com.google.common.collect.ImmutableMultimap;
import com.google.common.collect.ImmutableSet;
2013-12-27 20:40:58 +00:00
import com.google.common.collect.Multimap;
2014-01-09 21:15:15 +00:00
import com.google.common.io.ByteArrayDataOutput;
import com.google.common.io.ByteStreams;
import lombok.NonNull;
2013-09-29 20:16:47 +00:00
import net.md_5.bungee.api.ServerPing;
import net.md_5.bungee.api.config.ServerInfo;
import net.md_5.bungee.api.connection.ProxiedPlayer;
2014-01-09 21:15:15 +00:00
import net.md_5.bungee.api.connection.Server;
2013-12-03 20:39:36 +00:00
import net.md_5.bungee.api.event.*;
2013-09-29 20:16:47 +00:00
import net.md_5.bungee.api.plugin.Listener;
import net.md_5.bungee.api.plugin.Plugin;
import net.md_5.bungee.config.Configuration;
import net.md_5.bungee.config.ConfigurationProvider;
import net.md_5.bungee.config.YamlConfiguration;
2013-09-29 20:16:47 +00:00
import net.md_5.bungee.event.EventHandler;
2013-12-03 21:01:27 +00:00
import redis.clients.jedis.*;
import redis.clients.jedis.exceptions.JedisConnectionException;
import redis.clients.jedis.exceptions.JedisException;
2013-09-29 20:16:47 +00:00
import java.io.*;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.*;
2013-09-29 20:16:47 +00:00
import java.util.concurrent.TimeUnit;
import java.util.logging.Level;
2013-09-29 20:16:47 +00:00
import static com.google.common.base.Preconditions.*;
/**
* The RedisBungee plugin.
* <p/>
* The only function of interest is {@link #getApi()}, which exposes some functions in this class.
*/
public final class RedisBungee extends Plugin implements Listener {
private static final ServerPing.PlayerInfo[] EMPTY_PLAYERINFO = new ServerPing.PlayerInfo[]{};
private static Configuration configuration;
private JedisPool pool;
private static RedisBungeeAPI api;
2013-11-15 22:55:57 +00:00
private PubSubListener psl = null;
2013-10-13 19:44:20 +00:00
/**
* Fetch the {@link RedisBungeeAPI} object created on plugin start.
2013-10-13 19:44:20 +00:00
*
* @return the {@link RedisBungeeAPI} object
2013-10-13 19:44:20 +00:00
*/
public static RedisBungeeAPI getApi() {
return api;
}
static Configuration getConfiguration() {
2013-11-15 22:55:57 +00:00
return configuration;
}
final Multimap<String, String> serversToPlayers() {
2013-12-27 20:40:58 +00:00
Multimap<String, String> serverToPlayers = HashMultimap.create();
for (String p : getPlayers()) {
ServerInfo si = getServerFor(p);
2013-12-27 20:40:58 +00:00
if (si != null)
serverToPlayers.put(si.getName(), p);
}
return ImmutableMultimap.copyOf(serverToPlayers);
2013-12-27 20:40:58 +00:00
}
final int getCount() {
2014-01-09 21:15:15 +00:00
int c = getProxy().getOnlineCount();
if (pool != null) {
Jedis rsc = pool.getResource();
try {
for (String i : configuration.getStringList("linked-servers")) {
if (i.equals(configuration.getString("server-id"))) continue;
if (rsc.exists("server:" + i + ":playerCount"))
c += Integer.valueOf(rsc.get("server:" + i + ":playerCount"));
}
} finally {
pool.returnResource(rsc);
}
}
return c;
}
final Set<String> getPlayers() {
Set<String> players = new HashSet<>();
2014-01-09 21:15:15 +00:00
for (ProxiedPlayer pp : getProxy().getPlayers()) {
2013-09-29 20:16:47 +00:00
players.add(pp.getName());
}
if (pool != null) {
Jedis rsc = pool.getResource();
try {
for (String i : configuration.getStringList("linked-servers")) {
if (i.equals(configuration.getString("server-id"))) continue;
players.addAll(rsc.smembers("server:" + i + ":usersOnline"));
2013-09-29 20:16:47 +00:00
}
} finally {
pool.returnResource(rsc);
}
}
return ImmutableSet.copyOf(players);
}
final Set<String> getPlayersOnServer(@NonNull String server) {
2014-01-09 21:15:15 +00:00
checkArgument(getProxy().getServerInfo(server) != null, "server doesn't exist");
return ImmutableSet.copyOf(serversToPlayers().get(server));
2013-12-27 20:40:58 +00:00
}
final ServerInfo getServerFor(@NonNull String name) {
2013-09-29 20:16:47 +00:00
ServerInfo server = null;
2014-01-09 21:15:15 +00:00
if (getProxy().getPlayer(name) != null) return getProxy().getPlayer(name).getServer().getInfo();
2013-09-29 20:16:47 +00:00
if (pool != null) {
Jedis tmpRsc = pool.getResource();
try {
if (tmpRsc.hexists("player:" + name, "server"))
2014-01-09 21:15:15 +00:00
server = getProxy().getServerInfo(tmpRsc.hget("player:" + name, "server"));
2013-09-29 20:16:47 +00:00
} finally {
pool.returnResource(tmpRsc);
}
}
return server;
}
final long getLastOnline(@NonNull String name) {
2013-11-14 01:25:09 +00:00
long time = -1L;
2014-01-09 21:15:15 +00:00
if (getProxy().getPlayer(name) != null) return 0;
2013-09-29 20:16:47 +00:00
if (pool != null) {
Jedis tmpRsc = pool.getResource();
try {
if (tmpRsc.hexists("player:" + name, "online"))
time = Long.valueOf(tmpRsc.hget("player:" + name, "online"));
} finally {
pool.returnResource(tmpRsc);
}
}
return time;
}
final InetAddress getIpAddress(@NonNull String name) {
2014-01-09 21:15:15 +00:00
if (getProxy().getPlayer(name) != null)
return getProxy().getPlayer(name).getAddress().getAddress();
InetAddress ia = null;
if (pool != null) {
Jedis tmpRsc = pool.getResource();
try {
if (tmpRsc.hexists("player:" + name, "ip"))
ia = InetAddress.getByName(tmpRsc.hget("player:" + name, "ip"));
} catch (UnknownHostException ignored) {
// Best to just return null
} finally {
pool.returnResource(tmpRsc);
}
}
return ia;
}
final void sendProxyCommand(@NonNull String proxyId, @NonNull String command) {
checkArgument(configuration.getStringList("linked-servers").contains(proxyId) || proxyId.equals("allservers"), "proxyId is invalid");
2014-01-02 00:05:55 +00:00
Jedis jedis = pool.getResource();
try {
jedis.publish("redisbungee-" + proxyId, command);
} finally {
pool.returnResource(jedis);
}
}
2013-09-29 20:16:47 +00:00
@Override
public void onEnable() {
try {
loadConfig();
} catch (IOException e) {
throw new RuntimeException("Unable to load/save config", e);
} catch (JedisConnectionException e) {
throw new RuntimeException("Unable to connect to your Redis server!", e);
2013-09-29 20:16:47 +00:00
}
if (pool != null) {
Jedis tmpRsc = pool.getResource();
try {
tmpRsc.set("server:" + configuration.getString("server-id") + ":playerCount", "0"); // reset
if (tmpRsc.scard("server:" + configuration.getString("server-id") + ":usersOnline") > 0) {
for (String member : tmpRsc.smembers("server:" + configuration.getString("server-id") + ":usersOnline"))
cleanUpPlayer(member, tmpRsc);
2013-12-03 21:01:27 +00:00
}
2013-09-29 20:16:47 +00:00
} finally {
pool.returnResource(tmpRsc);
}
2013-10-31 23:07:37 +00:00
getProxy().getScheduler().schedule(this, new Runnable() {
@Override
public void run() {
Jedis rsc = pool.getResource();
try {
2013-12-27 20:40:58 +00:00
rsc.set("server:" + configuration.getString("server-id") + ":playerCount", String.valueOf(getProxy().getOnlineCount()));
2013-10-31 23:07:37 +00:00
} finally {
pool.returnResource(rsc);
}
}
}, 1, 3, TimeUnit.SECONDS);
2013-11-15 22:55:57 +00:00
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.GlistCommand());
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.FindCommand());
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.LastSeenCommand());
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.IpCommand());
2014-01-17 00:49:57 +00:00
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.SendToAll());
getProxy().getPluginManager().registerCommand(this, new RedisBungeeCommands.ServerId());
2013-09-29 20:16:47 +00:00
getProxy().getPluginManager().registerListener(this, this);
api = new RedisBungeeAPI(this);
psl = new PubSubListener();
2014-01-20 15:16:30 +00:00
new Thread(psl, "RedisBungee PubSub Listener").start();
2013-09-29 20:16:47 +00:00
}
}
@Override
public void onDisable() {
2013-10-18 21:14:58 +00:00
if (pool != null) {
// Poison the PubSub listener
psl.poison();
getProxy().getScheduler().cancel(this);
2013-10-18 21:14:58 +00:00
Jedis tmpRsc = pool.getResource();
try {
tmpRsc.set("server:" + configuration.getString("server-id") + ":playerCount", "0"); // reset
if (tmpRsc.scard("server:" + configuration.getString("server-id") + ":usersOnline") > 0) {
for (String member : tmpRsc.smembers("server:" + configuration.getString("server-id") + ":usersOnline"))
cleanUpPlayer(member, tmpRsc);
2013-12-03 21:01:27 +00:00
}
2013-10-18 21:14:58 +00:00
} finally {
pool.returnResource(tmpRsc);
}
pool.destroy();
2013-10-18 21:14:58 +00:00
}
2013-09-29 20:16:47 +00:00
}
private void loadConfig() throws IOException, JedisConnectionException {
2013-09-29 20:16:47 +00:00
if (!getDataFolder().exists()) {
getDataFolder().mkdir();
}
File file = new File(getDataFolder(), "config.yml");
if (!file.exists()) {
file.createNewFile();
try (InputStream in = getResourceAsStream("example_config.yml");
OutputStream out = new FileOutputStream(file)) {
ByteStreams.copy(in, out);
2013-09-29 20:16:47 +00:00
}
}
configuration = ConfigurationProvider.getProvider(YamlConfiguration.class).load(file);
String redisServer = configuration.getString("redis-server", "localhost");
int redisPort = configuration.getInt("redis-port", 6379);
String redisPassword = configuration.getString("redis-password");
2013-09-29 20:16:47 +00:00
if (redisPassword != null && (redisPassword.equals("") || redisPassword.equals("none"))) {
redisPassword = null;
}
2013-09-29 20:16:47 +00:00
// Configuration sanity checks.
if (configuration.get("server-id") == null || configuration.getString("server-id").equals("")) {
throw new RuntimeException("server-id is not specified in the configuration or is empty");
}
2013-11-15 22:55:57 +00:00
if (configuration.getStringList("linked-servers").isEmpty()) {
throw new RuntimeException("linked-servers is not specified in the configuration or is empty");
2013-12-03 21:01:27 +00:00
}
2013-09-29 20:16:47 +00:00
if (redisServer != null) {
if (!redisServer.equals("")) {
2013-12-03 21:01:27 +00:00
pool = new JedisPool(new JedisPoolConfig(), redisServer, redisPort, Protocol.DEFAULT_TIMEOUT, redisPassword);
// Test the connection
Jedis rsc = null;
try {
rsc = pool.getResource();
rsc.exists(String.valueOf(System.currentTimeMillis()));
getLogger().log(Level.INFO, "Successfully connected to Redis.");
} catch (JedisConnectionException e) {
if (rsc != null)
pool.returnBrokenResource(rsc);
pool.destroy();
pool = null;
rsc = null;
throw e;
} finally {
if (rsc != null && pool != null) {
pool.returnResource(rsc);
}
}
2013-09-29 20:16:47 +00:00
}
} else {
throw new RuntimeException("No redis server specified!");
2013-09-29 20:16:47 +00:00
}
}
2013-12-15 17:07:42 +00:00
@EventHandler
public void onPreLogin(PreLoginEvent event) {
if (pool != null) {
Jedis rsc = pool.getResource();
try {
for (String server : configuration.getStringList("linked-servers")) {
2013-12-15 17:07:42 +00:00
if (rsc.sismember("server:" + server + ":usersOnline", event.getConnection().getName())) {
event.setCancelled(true);
event.setCancelReason("You are already logged on to this server.");
}
}
} finally {
pool.returnResource(rsc);
}
}
}
2013-12-03 20:39:36 +00:00
@EventHandler
public void onPlayerConnect(final PostLoginEvent event) {
if (pool != null) {
Jedis rsc = pool.getResource();
try {
rsc.sadd("server:" + configuration.getString("server-id", "") + ":usersOnline", event.getPlayer().getName());
rsc.hset("player:" + event.getPlayer().getName(), "online", "0");
rsc.hset("player:" + event.getPlayer().getName(), "ip", event.getPlayer().getAddress().getAddress().getHostAddress());
} finally {
pool.returnResource(rsc);
}
2013-11-16 03:09:04 +00:00
}
// I used to have a task that eagerly waited for the user to be connected.
// Well, upon further inspection of BungeeCord's source code, this turned
// out to not be needed at all, since ServerConnectedEvent is called anyway.
2013-09-29 20:16:47 +00:00
}
@EventHandler
public void onPlayerDisconnect(final PlayerDisconnectEvent event) {
2013-11-16 03:09:04 +00:00
if (pool != null) {
Jedis rsc = pool.getResource();
try {
rsc.hset("player:" + event.getPlayer().getName(), "online", String.valueOf(System.currentTimeMillis()));
cleanUpPlayer(event.getPlayer().getName(), rsc);
2013-11-16 03:09:04 +00:00
} finally {
pool.returnResource(rsc);
2013-09-29 20:16:47 +00:00
}
2013-11-16 03:09:04 +00:00
}
2013-09-29 20:16:47 +00:00
}
@EventHandler
public void onServerChange(final ServerConnectedEvent event) {
2013-11-16 03:09:04 +00:00
if (pool != null) {
Jedis rsc = pool.getResource();
try {
rsc.hset("player:" + event.getPlayer().getName(), "server", event.getServer().getInfo().getName());
} finally {
pool.returnResource(rsc);
2013-09-29 20:16:47 +00:00
}
2013-11-16 03:09:04 +00:00
}
2013-09-29 20:16:47 +00:00
}
@EventHandler
public void onPing(ProxyPingEvent event) {
ServerPing old = event.getResponse();
ServerPing reply = new ServerPing();
if (configuration.getBoolean("player-list-in-ping", false)) {
Set<String> players = getPlayers();
ServerPing.PlayerInfo[] info = new ServerPing.PlayerInfo[players.size()];
int idx = 0;
for (String player : players) {
info[idx] = new ServerPing.PlayerInfo(player, "");
idx++;
}
reply.setPlayers(new ServerPing.Players(old.getPlayers().getMax(), players.size(), info));
} else {
reply.setPlayers(new ServerPing.Players(old.getPlayers().getMax(), getCount(), EMPTY_PLAYERINFO));
}
reply.setDescription(old.getDescription());
reply.setFavicon(old.getFavicon());
reply.setVersion(old.getVersion());
event.setResponse(reply);
2013-09-29 20:16:47 +00:00
}
2014-01-09 21:15:15 +00:00
@EventHandler
public void onPluginMessage(PluginMessageEvent event) {
if (event.getTag().equals("RedisBungee") && event.getSender() instanceof Server) {
DataInput in = ByteStreams.newDataInput(event.getData());
try {
String subchannel = in.readUTF();
ByteArrayDataOutput out = ByteStreams.newDataOutput();
String type;
switch (subchannel) {
case "PlayerList":
out.writeUTF("Players");
Set<String> source = Collections.emptySet();
type = in.readUTF();
if (type.equals("ALL")) {
out.writeUTF("ALL");
source = getPlayers();
} else {
try {
source = getPlayersOnServer(type);
} catch (IllegalArgumentException ignored) {
}
}
out.writeUTF(Joiner.on(',').join(source));
break;
case "PlayerCount":
out.writeUTF("PlayerCount");
type = in.readUTF();
if (type.equals("ALL")) {
out.writeUTF("ALL");
out.writeInt(getCount());
} else {
out.writeUTF(type);
try {
out.writeInt(getPlayersOnServer(type).size());
} catch (IllegalArgumentException e) {
out.writeInt(0);
}
}
out.writeInt(getCount());
break;
case "LastOnline":
String user = in.readUTF();
out.writeUTF("LastOnline");
out.writeUTF(user);
out.writeLong(getLastOnline(user));
break;
default:
break;
}
((Server) event.getSender()).sendData("RedisBungee", out.toByteArray());
} catch (IOException e) {
throw new RuntimeException("Unable to process plugin message from " + event.getSender().getAddress(), e);
}
}
}
private void cleanUpPlayer(String player, Jedis rsc) {
rsc.srem("server:" + configuration.getString("server-id") + ":usersOnline", player);
rsc.hdel("player:" + player, "server");
rsc.hdel("player:" + player, "ip");
}
2014-01-20 15:16:30 +00:00
private class PubSubListener implements Runnable {
private Jedis rsc;
private JedisPubSubHandler jpsh;
2014-01-20 15:16:30 +00:00
private PubSubListener() {}
@Override
public void run() {
try {
rsc = pool.getResource();
jpsh = new JedisPubSubHandler();
rsc.subscribe(jpsh, "redisbungee-" + configuration.getString("server-id"), "redisbungee-allservers");
} catch (JedisException | ClassCastException ignored) {
}
}
public void poison() {
jpsh.unsubscribe();
pool.returnResource(rsc);
}
}
private class JedisPubSubHandler extends JedisPubSub {
@Override
public void onMessage(String s, String s2) {
String cmd;
if (s2.startsWith("/")) {
cmd = s2.substring(1);
} else {
cmd = s2;
}
2013-11-15 22:09:03 +00:00
getLogger().info("Invoking command from PubSub: /" + s2);
2013-12-24 04:42:56 +00:00
getProxy().getPluginManager().dispatchCommand(RedisBungeeCommandSender.instance, cmd);
}
@Override
public void onPMessage(String s, String s2, String s3) {
}
@Override
public void onSubscribe(String s, int i) {
}
@Override
public void onUnsubscribe(String s, int i) {
}
@Override
public void onPUnsubscribe(String s, int i) {
}
@Override
public void onPSubscribe(String s, int i) {
}
}
2013-09-29 20:16:47 +00:00
}