2014-04-19 20:08:49 +00:00
|
|
|
package com.imaginarycode.minecraft.redisbungee;
|
|
|
|
|
2015-06-24 03:17:50 +00:00
|
|
|
import com.google.common.annotations.VisibleForTesting;
|
2015-06-24 09:51:40 +00:00
|
|
|
import lombok.AccessLevel;
|
|
|
|
import lombok.NoArgsConstructor;
|
2015-09-27 15:49:03 +00:00
|
|
|
import net.md_5.bungee.api.connection.PendingConnection;
|
2015-10-04 03:36:37 +00:00
|
|
|
import net.md_5.bungee.api.connection.ProxiedPlayer;
|
2014-04-19 20:08:49 +00:00
|
|
|
import redis.clients.jedis.Jedis;
|
2015-06-21 22:09:46 +00:00
|
|
|
import redis.clients.jedis.Pipeline;
|
2014-04-19 20:08:49 +00:00
|
|
|
|
2015-09-27 15:49:03 +00:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
2015-10-04 03:45:34 +00:00
|
|
|
import java.util.UUID;
|
2015-09-27 15:49:03 +00:00
|
|
|
|
2015-06-24 03:17:50 +00:00
|
|
|
@VisibleForTesting
|
2015-06-24 09:51:40 +00:00
|
|
|
@NoArgsConstructor(access = AccessLevel.PRIVATE)
|
2015-06-24 03:17:50 +00:00
|
|
|
public class RedisUtil {
|
2015-10-04 03:45:34 +00:00
|
|
|
protected static void createPlayer(ProxiedPlayer player, Pipeline pipeline, boolean fireEvent) {
|
|
|
|
createPlayer(player.getPendingConnection(), pipeline, fireEvent);
|
2015-10-04 03:36:37 +00:00
|
|
|
if (player.getServer() != null)
|
|
|
|
pipeline.hset("player:" + player.getUniqueId().toString(), "server", player.getServer().getInfo().getName());
|
|
|
|
}
|
|
|
|
|
2015-10-04 03:45:34 +00:00
|
|
|
protected static void createPlayer(PendingConnection connection, Pipeline pipeline, boolean fireEvent) {
|
2015-09-27 15:49:03 +00:00
|
|
|
Map<String, String> playerData = new HashMap<>(4);
|
|
|
|
playerData.put("online", "0");
|
|
|
|
playerData.put("ip", connection.getAddress().getAddress().getHostAddress());
|
|
|
|
playerData.put("proxy", RedisBungee.getConfiguration().getServerId());
|
|
|
|
|
|
|
|
pipeline.sadd("proxy:" + RedisBungee.getApi().getServerId() + ":usersOnline", connection.getUniqueId().toString());
|
|
|
|
pipeline.hmset("player:" + connection.getUniqueId().toString(), playerData);
|
2015-10-04 03:45:34 +00:00
|
|
|
|
|
|
|
if (fireEvent) {
|
|
|
|
pipeline.publish("redisbungee-data", RedisBungee.getGson().toJson(new DataManager.DataManagerMessage<>(
|
|
|
|
connection.getUniqueId(), DataManager.DataManagerMessage.Action.JOIN,
|
|
|
|
new DataManager.LoginPayload(connection.getAddress().getAddress()))));
|
|
|
|
}
|
2015-09-27 15:49:03 +00:00
|
|
|
}
|
|
|
|
|
2014-04-19 20:08:49 +00:00
|
|
|
public static void cleanUpPlayer(String player, Jedis rsc) {
|
2014-08-09 19:32:12 +00:00
|
|
|
rsc.srem("proxy:" + RedisBungee.getApi().getServerId() + ":usersOnline", player);
|
2015-11-15 17:21:28 +00:00
|
|
|
rsc.hdel("player:" + player, "server", "ip", "proxy");
|
2015-10-04 03:36:37 +00:00
|
|
|
long timestamp = System.currentTimeMillis();
|
|
|
|
rsc.hset("player:" + player, "online", String.valueOf(timestamp));
|
2015-10-04 03:45:34 +00:00
|
|
|
rsc.publish("redisbungee-data", RedisBungee.getGson().toJson(new DataManager.DataManagerMessage<>(
|
|
|
|
UUID.fromString(player), DataManager.DataManagerMessage.Action.LEAVE,
|
|
|
|
new DataManager.LogoutPayload(timestamp))));
|
2014-06-11 11:24:09 +00:00
|
|
|
}
|
2015-06-21 21:32:28 +00:00
|
|
|
|
2015-06-21 22:09:46 +00:00
|
|
|
public static void cleanUpPlayer(String player, Pipeline rsc) {
|
|
|
|
rsc.srem("proxy:" + RedisBungee.getApi().getServerId() + ":usersOnline", player);
|
2015-11-15 17:21:28 +00:00
|
|
|
rsc.hdel("player:" + player, "server", "ip", "proxy");
|
2015-10-04 03:36:37 +00:00
|
|
|
long timestamp = System.currentTimeMillis();
|
|
|
|
rsc.hset("player:" + player, "online", String.valueOf(timestamp));
|
2015-10-04 03:45:34 +00:00
|
|
|
rsc.publish("redisbungee-data", RedisBungee.getGson().toJson(new DataManager.DataManagerMessage<>(
|
|
|
|
UUID.fromString(player), DataManager.DataManagerMessage.Action.LEAVE,
|
|
|
|
new DataManager.LogoutPayload(timestamp))));
|
2015-06-21 22:09:46 +00:00
|
|
|
}
|
|
|
|
|
2015-06-21 21:32:28 +00:00
|
|
|
public static boolean canUseLua(String redisVersion) {
|
|
|
|
// Need to use >=2.6 to use Lua optimizations.
|
|
|
|
String[] args = redisVersion.split("\\.");
|
|
|
|
|
|
|
|
if (args.length < 2) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int major = Integer.parseInt(args[0]);
|
|
|
|
int minor = Integer.parseInt(args[1]);
|
|
|
|
|
|
|
|
return major >= 3 || (major == 2 && minor >= 6);
|
|
|
|
}
|
2014-04-19 20:08:49 +00:00
|
|
|
}
|