mongodb reactive stream driver
parent
84ade4ac37
commit
1ca0a07b3a
5
pom.xml
5
pom.xml
|
@ -90,6 +90,11 @@
|
|||
<artifactId>KraSocketClient</artifactId>
|
||||
<version>1.2-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>earth.krakatoa</groupId>
|
||||
<artifactId>KraCore</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<repositories>
|
||||
|
|
|
@ -5,6 +5,11 @@ import earth.krakatao.KraSocketClientConfig;
|
|||
import earth.krakatao.events.KraSocketClientEventInitiater;
|
||||
import earth.krakatao.events.KraSocketClientEventInterface;
|
||||
import earth.krakatao.protocol.KraSocketClientProtocol;
|
||||
import earth.krakatoa.core.config.MongoConfig;
|
||||
import earth.krakatoa.core.config.RedisConfig;
|
||||
import earth.krakatoa.core.mongo.MongoManager;
|
||||
import earth.krakatoa.core.redis.RedisManager;
|
||||
import earth.krakatoa.core.util.Formatter;
|
||||
import java.util.Arrays;
|
||||
import lombok.Getter;
|
||||
import lombok.SneakyThrows;
|
||||
|
@ -16,9 +21,6 @@ import net.krakatoa.proxy.listener.LoginListener;
|
|||
import net.krakatoa.proxy.listener.PlayerDisconnectListener;
|
||||
import net.krakatoa.proxy.listener.PostLoginListener;
|
||||
import net.krakatoa.proxy.listener.SocketClientMessageListener;
|
||||
import net.krakatoa.proxy.mongo.MongoManager;
|
||||
import net.krakatoa.proxy.redis.RedisManager;
|
||||
import net.krakatoa.proxy.util.Formatter;
|
||||
import net.md_5.bungee.api.plugin.Plugin;
|
||||
import net.md_5.bungee.api.plugin.PluginManager;
|
||||
|
||||
|
@ -62,12 +64,13 @@ public class ProxySystem extends Plugin {
|
|||
|
||||
this.kraSocketClient.getSocketClient().connect();
|
||||
|
||||
this.mongoManager = new MongoManager(this.configHandler.getMongodbHost(),
|
||||
this.configHandler.getMongodbPort(), this.configHandler.getMongodbUsername(),
|
||||
this.configHandler.getMongodbPassword());
|
||||
this.mongoManager.connect(this.configHandler.getMongodbDatabase());
|
||||
this.mongoManager = new MongoManager(
|
||||
new MongoConfig(this.configHandler.getMongodbHost(), this.configHandler.getMongodbPort(),
|
||||
this.configHandler.getMongodbUsername(), this.configHandler.getMongodbPassword(),
|
||||
this.configHandler.getMongodbDatabase()));
|
||||
|
||||
this.redisManager = new RedisManager("redis://127.0.0.1:6379");
|
||||
this.redisManager = new RedisManager(
|
||||
new RedisConfig(this.configHandler.getRedisHost(), this.configHandler.getRedisPort()));
|
||||
this.redisManager.connect();
|
||||
|
||||
loadListeners();
|
||||
|
@ -79,9 +82,8 @@ public class ProxySystem extends Plugin {
|
|||
this.kraSocketClient.getSocketClient().getConnection().close();
|
||||
this.kraSocketClient.getSocketClient().getConnection().closeConnection(1, "");
|
||||
|
||||
this.mongoManager.getMongoClient().close();
|
||||
|
||||
this.redisManager.close();
|
||||
this.mongoManager.shutdown();
|
||||
this.redisManager.shutdown();
|
||||
|
||||
instance = null;
|
||||
}
|
||||
|
|
|
@ -33,8 +33,7 @@ public class KrakatoapCommand extends Command {
|
|||
.getKraSocketClientProtocol()
|
||||
.getReceivedQueueMessages().size())));
|
||||
|
||||
String uuid = ProxySystem.getInstance().getFormatter()
|
||||
.formatUuid(player.getUniqueId().toString());
|
||||
String uuid = ProxySystem.getInstance().getFormatter().formatUuid(player.getUniqueId());
|
||||
|
||||
RMap<String, String> map = ProxySystem.getInstance().getRedisManager()
|
||||
.getRedissonClient()
|
||||
|
|
|
@ -11,6 +11,7 @@ import net.md_5.bungee.api.connection.ProxiedPlayer;
|
|||
import net.md_5.bungee.api.event.PlayerDisconnectEvent;
|
||||
import net.md_5.bungee.api.plugin.Listener;
|
||||
import net.md_5.bungee.event.EventHandler;
|
||||
import org.bson.Document;
|
||||
import org.bson.conversions.Bson;
|
||||
import org.redisson.api.RMap;
|
||||
|
||||
|
@ -29,9 +30,10 @@ public class PlayerDisconnectListener implements Listener {
|
|||
.getMap("player:" + uuid);
|
||||
|
||||
// mongo
|
||||
ProxySystem.getInstance().getMongoManager().getPlayers()
|
||||
.find(Filters.eq("uuid", uuid))
|
||||
.first((document, throwable) -> {
|
||||
Document document = (Document) ProxySystem.getInstance().getMongoManager()
|
||||
.getPlayersCollection()
|
||||
.find(Filters.eq("uuid", uuid)).first();
|
||||
|
||||
if (document != null) {
|
||||
List<Bson> updatesList = new ArrayList<>();
|
||||
|
||||
|
@ -47,7 +49,10 @@ public class PlayerDisconnectListener implements Listener {
|
|||
|
||||
System.out.println("doc: " + document.keySet());
|
||||
|
||||
ProxySystem.getInstance().getMongoManager().getPlayers()
|
||||
ProxySystem.getInstance().getMongoManager().getPlayersCollection()
|
||||
.updateOne(Filters.eq("uuid", uuid), updates);
|
||||
/*
|
||||
ProxySystem.getInstance().getMongoManager().getPlayersCollection()
|
||||
.updateOne(document, updates, options, (result, t) -> {
|
||||
System.out.println(result == null);
|
||||
|
||||
|
@ -55,11 +60,10 @@ public class PlayerDisconnectListener implements Listener {
|
|||
System.out.println("Modified document count: " + result.getModifiedCount());
|
||||
System.out.println("Upserted id: " + result.getUpsertedId());
|
||||
}
|
||||
});
|
||||
}); */
|
||||
} else {
|
||||
System.out.println("Mongo player is null on disconnect");
|
||||
}
|
||||
});
|
||||
|
||||
// redis
|
||||
if (!map.isEmpty()) {
|
||||
|
|
|
@ -37,19 +37,17 @@ public class PostLoginListener implements Listener {
|
|||
String uuid = ProxySystem.getInstance().getFormatter()
|
||||
.formatUuid(proxiedPlayer.getUniqueId().toString());
|
||||
|
||||
ProxySystem.getInstance().getMongoManager().getPlayers()
|
||||
.find(Filters.eq("uuid", uuid))
|
||||
.first((document, throwable) -> {
|
||||
Document document = (Document) ProxySystem.getInstance().getMongoManager()
|
||||
.getPlayersCollection()
|
||||
.find(Filters.eq("uuid", uuid)).first();
|
||||
|
||||
if (document == null) { // new player - create entries in databases
|
||||
System.out.println("create player in db");
|
||||
String voiceWebCode = generateVoiceWebCode(uuid);
|
||||
|
||||
document = new Document("uuid", uuid).append("voiceWebCode", voiceWebCode);
|
||||
|
||||
ProxySystem.getInstance().getMongoManager().getPlayers()
|
||||
.insertOne(document, (unused, throwable1) -> {
|
||||
System.out.println("insertOne");
|
||||
});
|
||||
ProxySystem.getInstance().getMongoManager().getPlayersCollection().insertOne(document);
|
||||
|
||||
sendVoiceWebCodeUrl(proxiedPlayer, voiceWebCode);
|
||||
|
||||
|
@ -121,9 +119,8 @@ public class PostLoginListener implements Listener {
|
|||
|
||||
UpdateOptions options = new UpdateOptions().upsert(true);
|
||||
|
||||
ProxySystem.getInstance().getMongoManager().getPlayers()
|
||||
.updateOne(finalDocument, updates, options, (updateResult, throwable1) -> {
|
||||
});
|
||||
ProxySystem.getInstance().getMongoManager().getPlayersCollection()
|
||||
.updateOne(finalDocument, updates, options);
|
||||
|
||||
System.out.println("voiceWebCode " + voiceWebCode);
|
||||
|
||||
|
@ -140,7 +137,7 @@ public class PostLoginListener implements Listener {
|
|||
KraSocketClientProtocolDest.BACKEND.getStatus(), proxiedPlayer.getUniqueId(),
|
||||
(short) 10, "", consumer));
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
MessageBufferPacker packer = MessagePack.newDefaultBufferPacker();
|
||||
|
|
Loading…
Reference in New Issue