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

46 lines
1.1 KiB
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;
public class ExecuteCommand extends RCONMessage<ExecuteCommand.JSONExecuteCommand>
{
/**
* Executes a command as an user. Still requires the user to have the proper permissions set.
*/
public ExecuteCommand()
{
super(JSONExecuteCommand.class);
}
@Override
public void handle(Gson gson, JSONExecuteCommand json)
{
try
{
Habbo habbo = Emulator.getGameServer().getGameClientManager().getHabbo(json.user_id);
if (habbo == null)
{
status = HABBO_NOT_FOUND;
return;
}
CommandHandler.handleCommand(habbo.getClient(), json.command);
}
catch (Exception e)
{
status = STATUS_ERROR;
Emulator.getLogging().logErrorLine(e);
}
}
public class JSONExecuteCommand
{
public int user_id;
public String command;
}
}