mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2024-11-23 04:28:01 +00:00
Allow specifying ServerPlayers PLAYERS to get players and default to just count.
This commit is contained in:
parent
a372720e50
commit
807e71e566
@ -176,13 +176,17 @@ public class RedisBungeeListener implements Listener {
|
|||||||
out.writeLong(RedisBungee.getApi().getLastOnline(plugin.getUuidTranslator().getTranslatedUuid(user, true)));
|
out.writeLong(RedisBungee.getApi().getLastOnline(plugin.getUuidTranslator().getTranslatedUuid(user, true)));
|
||||||
break;
|
break;
|
||||||
case "ServerPlayers":
|
case "ServerPlayers":
|
||||||
|
String type1 = "COUNT";
|
||||||
|
try {
|
||||||
|
type1 = in.readUTF();
|
||||||
|
} catch (Exception e) {}
|
||||||
out.writeUTF("ServerPlayers");
|
out.writeUTF("ServerPlayers");
|
||||||
Multimap<String, UUID> multimap = RedisBungee.getApi().getServerToPlayers();
|
Multimap<String, UUID> multimap = RedisBungee.getApi().getServerToPlayers();
|
||||||
Multimap<String, String> human = HashMultimap.create();
|
Multimap<String, String> human = HashMultimap.create();
|
||||||
for (Map.Entry<String, UUID> entry : multimap.entries()) {
|
for (Map.Entry<String, UUID> entry : multimap.entries()) {
|
||||||
human.put(entry.getKey(), plugin.getUuidTranslator().getNameFromUuid(entry.getValue(), false));
|
human.put(entry.getKey(), plugin.getUuidTranslator().getNameFromUuid(entry.getValue(), false));
|
||||||
}
|
}
|
||||||
serializeMultimap(human, out);
|
serializeMultimap(human, type1.equals("PLAYERS"), out);
|
||||||
break;
|
break;
|
||||||
case "Proxy":
|
case "Proxy":
|
||||||
out.writeUTF("Proxy");
|
out.writeUTF("Proxy");
|
||||||
@ -198,11 +202,15 @@ public class RedisBungeeListener implements Listener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void serializeMultimap(Multimap<String, String> collection, ByteArrayDataOutput output) {
|
private void serializeMultimap(Multimap<String, String> collection, boolean includeNames, ByteArrayDataOutput output) {
|
||||||
output.writeInt(collection.size());
|
output.writeInt(collection.size());
|
||||||
for (Map.Entry<String, Collection<String>> entry : collection.asMap().entrySet()) {
|
for (Map.Entry<String, Collection<String>> entry : collection.asMap().entrySet()) {
|
||||||
output.writeUTF(entry.getKey());
|
output.writeUTF(entry.getKey());
|
||||||
|
if (includeNames) {
|
||||||
serializeCollection(entry.getValue(), output);
|
serializeCollection(entry.getValue(), output);
|
||||||
|
} else {
|
||||||
|
output.writeInt(entry.getValue().size());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user