Files
Nebula/src/main/java/emu/nebula/server/routes/RemoteHandler.java

94 lines
3.3 KiB
Java

package emu.nebula.server.routes;
import emu.nebula.Nebula;
import emu.nebula.game.player.Player;
import emu.nebula.util.JsonUtils;
import io.javalin.http.ContentType;
import io.javalin.http.Context;
import io.javalin.http.Handler;
import org.jetbrains.annotations.NotNull;
public class RemoteHandler implements Handler {
static class RemoteCommandRequest {
public String token;
public String command;
}
// Cache: Token -> UID
private static final java.util.Map<String, Integer> tokenCache = new java.util.concurrent.ConcurrentHashMap<>();
@Override
public void handle(@NotNull Context ctx) throws Exception {
if (!Nebula.getConfig().getRemoteCommand().useRemoteServices) {
ctx.status(403);
ctx.result("{\"Code\":403,\"Msg\":\"RemoteServer not enable\"}");
return;
}
// Parse body
RemoteCommandRequest req = JsonUtils.decode(ctx.body(), RemoteCommandRequest.class);
if (req == null || req.token == null || req.command == null) {
ctx.status(400);
ctx.result("{\"Code\":400,\"Msg\":\"Invalid request\"}");
return;
}
String token = req.token;
String command = req.command;
String adminKey = Nebula.getConfig().getRemoteCommand().getServerAdminKey();
// Check admin key
if (token.equals(adminKey)) {
Nebula.getCommandManager().invoke(null, command);
Nebula.getLogger().warn("\u001B[38;2;252;186;3mRemote Server (Using Admin Key) sent command: /" + command + "\u001B[0m");
ctx.status(200);
ctx.contentType(ContentType.APPLICATION_JSON);
ctx.result("{\"Code\":200,\"Data\":{},\"Msg\":\"Command executed\"}");
return;
}
// Check player
Player player = null;
// 1. Try cache
Integer cachedUid = tokenCache.get(token);
if (cachedUid != null) {
player = Nebula.getGameContext().getPlayerModule().getPlayer(cachedUid);
// Verify token matches (in case player changed token or cache is stale)
if (player != null && !token.equals(player.getRemoteToken())) {
player = null;
tokenCache.remove(token);
}
}
// 2. Fallback to DB if not in cache or cache invalid
if (player == null) {
player = Nebula.getGameDatabase().getObjectByField(Player.class, "remoteToken", token);
if (player != null) {
tokenCache.put(token, player.getUid());
}
}
if (player != null) {
// Append target UID to command to ensure it targets the player
// CommandArgs parses @UID to set the target
String finalCommand = command + " @" + player.getUid();
Nebula.getLogger().info("Remote Player Request [" + player.getUid() + "]: " + finalCommand);
// Execute as console (null sender) but targeting the player
Nebula.getCommandManager().invoke(null, finalCommand);
ctx.status(200);
ctx.contentType(ContentType.APPLICATION_JSON);
ctx.result("{\"Code\":200,\"Data\":{},\"Msg\":\"Command executed\"}");
return;
}
// Invalid token
ctx.status(403);
ctx.result("{\"Code\":403,\"Msg\":\"Invalid token\"}");
}
}