Arcturus-Community/src/main/java/com/eu/habbo/messages/rcon/ExecuteCommand.java

39 lines
991 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.messages.rcon;
import com.eu.habbo.Emulator;
import com.eu.habbo.habbohotel.commands.CommandHandler;
import com.eu.habbo.habbohotel.users.Habbo;
import com.google.gson.Gson;
2019-05-26 20:14:53 +02:00
public class ExecuteCommand extends RCONMessage<ExecuteCommand.JSONExecuteCommand> {
2018-07-08 23:32:00 +02:00
2019-05-26 20:14:53 +02:00
public ExecuteCommand() {
2018-07-06 15:30:00 +02:00
super(JSONExecuteCommand.class);
}
@Override
2019-05-26 20:14:53 +02:00
public void handle(Gson gson, JSONExecuteCommand json) {
try {
2018-07-06 15:30:00 +02:00
Habbo habbo = Emulator.getGameServer().getGameClientManager().getHabbo(json.user_id);
2019-05-26 20:14:53 +02:00
if (habbo == null) {
2019-03-18 02:22:00 +01:00
this.status = HABBO_NOT_FOUND;
2018-07-06 15:30:00 +02:00
return;
}
CommandHandler.handleCommand(habbo.getClient(), json.command);
2019-05-26 20:14:53 +02:00
} catch (Exception e) {
2019-03-18 02:22:00 +01:00
this.status = STATUS_ERROR;
2018-07-06 15:30:00 +02:00
Emulator.getLogging().logErrorLine(e);
}
}
2019-05-26 20:14:53 +02:00
static class JSONExecuteCommand {
2018-10-07 00:28:00 +02:00
2018-07-06 15:30:00 +02:00
public int user_id;
2018-10-07 00:28:00 +02:00
2018-07-06 15:30:00 +02:00
public String command;
}
}