aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/net/elytrium/limboauth/command
diff options
context:
space:
mode:
authorPetr Ilin <hevav@hevav.dev>2023-01-23 01:31:47 +0300
committerPetr Ilin <hevav@hevav.dev>2023-01-23 01:31:47 +0300
commit0fc01edf83f47ba9e19b9ea44ab2232cab4fe4a1 (patch)
treee37732f7c53ca73eca62d88e3f783f6623e32168 /src/main/java/net/elytrium/limboauth/command
parent6e20aed94c7ce313dd280546e2dd537d35cfb002 (diff)
downloadLimboAuth-0fc01edf83f47ba9e19b9ea44ab2232cab4fe4a1.tar.gz
LimboAuth-0fc01edf83f47ba9e19b9ea44ab2232cab4fe4a1.tar.bz2
LimboAuth-0fc01edf83f47ba9e19b9ea44ab2232cab4fe4a1.zip
Removing players from the session/premium cache when changing passwords
Diffstat (limited to 'src/main/java/net/elytrium/limboauth/command')
-rw-r--r--src/main/java/net/elytrium/limboauth/command/ChangePasswordCommand.java6
-rw-r--r--src/main/java/net/elytrium/limboauth/command/ForceChangePasswordCommand.java5
2 files changed, 9 insertions, 2 deletions
diff --git a/src/main/java/net/elytrium/limboauth/command/ChangePasswordCommand.java b/src/main/java/net/elytrium/limboauth/command/ChangePasswordCommand.java
index 2fea6f5..ebe9032 100644
--- a/src/main/java/net/elytrium/limboauth/command/ChangePasswordCommand.java
+++ b/src/main/java/net/elytrium/limboauth/command/ChangePasswordCommand.java
@@ -34,6 +34,7 @@ import net.kyori.adventure.text.Component;
public class ChangePasswordCommand implements SimpleCommand {
+ private final LimboAuth plugin;
private final Dao<RegisteredPlayer, String> playerDao;
private final boolean needOldPass;
@@ -44,7 +45,8 @@ public class ChangePasswordCommand implements SimpleCommand {
private final Component usage;
private final Component notPlayer;
- public ChangePasswordCommand(Dao<RegisteredPlayer, String> playerDao) {
+ public ChangePasswordCommand(LimboAuth plugin, Dao<RegisteredPlayer, String> playerDao) {
+ this.plugin = plugin;
this.playerDao = playerDao;
Serializer serializer = LimboAuth.getSerializer();
@@ -94,6 +96,8 @@ public class ChangePasswordCommand implements SimpleCommand {
updateBuilder.updateColumnValue(RegisteredPlayer.HASH_FIELD, RegisteredPlayer.genHash(needOldPass ? args[1] : args[0]));
updateBuilder.update();
+ this.plugin.removePlayerFromCache(username);
+
source.sendMessage(this.successful);
} catch (SQLException e) {
source.sendMessage(this.errorOccurred);
diff --git a/src/main/java/net/elytrium/limboauth/command/ForceChangePasswordCommand.java b/src/main/java/net/elytrium/limboauth/command/ForceChangePasswordCommand.java
index 67d9c67..9e769e8 100644
--- a/src/main/java/net/elytrium/limboauth/command/ForceChangePasswordCommand.java
+++ b/src/main/java/net/elytrium/limboauth/command/ForceChangePasswordCommand.java
@@ -36,6 +36,7 @@ import net.kyori.adventure.text.Component;
public class ForceChangePasswordCommand implements SimpleCommand {
+ private final LimboAuth plugin;
private final ProxyServer server;
private final Dao<RegisteredPlayer, String> playerDao;
@@ -44,7 +45,8 @@ public class ForceChangePasswordCommand implements SimpleCommand {
private final String notSuccessful;
private final Component usage;
- public ForceChangePasswordCommand(ProxyServer server, Dao<RegisteredPlayer, String> playerDao) {
+ public ForceChangePasswordCommand(LimboAuth plugin, ProxyServer server, Dao<RegisteredPlayer, String> playerDao) {
+ this.plugin = plugin;
this.server = server;
this.playerDao = playerDao;
@@ -75,6 +77,7 @@ public class ForceChangePasswordCommand implements SimpleCommand {
updateBuilder.updateColumnValue(RegisteredPlayer.HASH_FIELD, RegisteredPlayer.genHash(newPassword));
updateBuilder.update();
+ this.plugin.removePlayerFromCache(nickname);
this.server.getPlayer(nickname)
.ifPresent(player -> player.sendMessage(serializer.deserialize(MessageFormat.format(this.message, newPassword))));