Search in sources :

Example 1 with TimoCloudMessageAPIBasicImplementation

use of cloud.timo.TimoCloud.api.implementations.TimoCloudMessageAPIBasicImplementation in project TimoCloud by TimoCloud.

the class VelocityStringHandler method handleMessage.

@Override
public void handleMessage(Message message, String originalMessage, Channel channel) {
    if (message == null) {
        TimoCloudVelocity.getInstance().severe("Error while parsing json (json is null): " + originalMessage);
        return;
    }
    String server = (String) message.get("name");
    MessageType type = message.getType();
    Object data = message.getData();
    switch(type) {
        case PROXY_HANDSHAKE_SUCCESS:
            TimoCloudVelocity.getInstance().onHandshakeSuccess();
            break;
        case API_DATA:
            ((TimoCloudUniversalAPIVelocityImplementation) TimoCloudAPI.getUniversalAPI()).setData((Map<String, Object>) data);
            break;
        case EVENT_FIRED:
            try {
                EventType eventType = EnumUtil.valueOf(EventType.class, (String) message.get("eT"));
                ((EventManager) TimoCloudAPI.getEventAPI()).callEvent(((TimoCloudUniversalAPIBasicImplementation) TimoCloudAPI.getUniversalAPI()).getObjectMapper().readValue((String) data, EventUtil.getClassByEventType(eventType)));
            } catch (Exception e) {
                System.err.println("Error while parsing event from json: ");
                TimoCloudVelocity.getInstance().severe(e);
            }
            break;
        case CORE_SEND_MESSAGE_TO_COMMAND_SENDER:
            {
                TimoCloudVelocity.getInstance().getTimoCloudCommand().sendMessage((String) message.get("sender"), (String) data);
            }
        case PROXY_EXECUTE_COMMAND:
            TimoCloudVelocity.getInstance().getServer().getCommandManager().executeImmediatelyAsync(TimoCloudVelocity.getInstance().getServer().getConsoleCommandSource(), (String) data);
            break;
        case PROXY_SEND_PLAYER:
            {
                Map<String, Object> information = (Map<String, Object>) data;
                String playerUUID = (String) information.get("playerUUID");
                String serverObject = (String) information.get("serverObject");
                Optional<Player> player = TimoCloudVelocity.getInstance().getServer().getPlayer(UUID.fromString(playerUUID));
                player.ifPresent(it -> it.createConnectionRequest(TimoCloudVelocity.getInstance().getServer().getServer(serverObject).get()).fireAndForget());
                break;
            }
        case PROXY_SEND_MESSAGE:
            Map<String, Object> information = (Map<String, Object>) data;
            String playerUUID = (String) information.get("playerUUID");
            String chatMessage = (String) information.get("chatMessage");
            Optional<Player> player = TimoCloudVelocity.getInstance().getServer().getPlayer(UUID.fromString(playerUUID));
            player.ifPresent(it -> it.sendMessage(Component.text(chatMessage)));
            break;
        case PROXY_ADD_SERVER:
            TimoCloudVelocity.getInstance().getServer().registerServer(new ServerInfo(server, new InetSocketAddress((String) message.get("address"), ((Number) message.get("port")).intValue())));
            break;
        case PROXY_REMOVE_SERVER:
            TimoCloudVelocity.getInstance().getServer().unregisterServer(TimoCloudVelocity.getInstance().getServer().getServer(server).get().getServerInfo());
            break;
        case CORD_SET_IP:
            try {
                TimoCloudVelocity.getInstance().getIpManager().setAddresses(InetAddressUtil.getSocketAddressByName((String) message.get("CHANNEL_ADDRESS")), InetAddressUtil.getSocketAddressByName((String) message.get("CLIENT_ADDRESS")));
            } catch (Exception e) {
                TimoCloudVelocity.getInstance().severe("Error while parsing IP addresses (" + message.get("CHANNEL_ADDRESS") + ", " + message.get("CLIENT_ADDRESS") + "): ");
                TimoCloudVelocity.getInstance().severe(e);
            }
            break;
        case ON_PLUGIN_MESSAGE:
            {
                AddressedPluginMessage addressedPluginMessage = PluginMessageSerializer.deserialize((Map) data);
                ((TimoCloudMessageAPIBasicImplementation) TimoCloudAPI.getMessageAPI()).onMessage(addressedPluginMessage);
                break;
            }
        case PROXY_STOP:
            {
                TimoCloudVelocity.getInstance().stop();
                break;
            }
        default:
            TimoCloudVelocity.getInstance().severe("Could not categorize json message: " + message);
    }
}
Also used : Message(cloud.timo.TimoCloud.common.protocol.Message) EnumUtil(cloud.timo.TimoCloud.common.utils.EnumUtil) InetAddressUtil(cloud.timo.TimoCloud.common.utils.network.InetAddressUtil) EventManager(cloud.timo.TimoCloud.api.implementations.managers.EventManager) EventUtil(cloud.timo.TimoCloud.api.utils.EventUtil) UUID(java.util.UUID) InetSocketAddress(java.net.InetSocketAddress) TimoCloudUniversalAPIBasicImplementation(cloud.timo.TimoCloud.api.implementations.TimoCloudUniversalAPIBasicImplementation) TimoCloudAPI(cloud.timo.TimoCloud.api.TimoCloudAPI) Channel(io.netty.channel.Channel) TimoCloudUniversalAPIVelocityImplementation(cloud.timo.TimoCloud.velocity.api.TimoCloudUniversalAPIVelocityImplementation) ServerInfo(com.velocitypowered.api.proxy.server.ServerInfo) Component(net.kyori.adventure.text.Component) TimoCloudMessageAPIBasicImplementation(cloud.timo.TimoCloud.api.implementations.TimoCloudMessageAPIBasicImplementation) Player(com.velocitypowered.api.proxy.Player) Map(java.util.Map) BasicStringHandler(cloud.timo.TimoCloud.common.sockets.BasicStringHandler) Optional(java.util.Optional) PluginMessageSerializer(cloud.timo.TimoCloud.common.utils.PluginMessageSerializer) EventType(cloud.timo.TimoCloud.api.events.EventType) AddressedPluginMessage(cloud.timo.TimoCloud.api.messages.objects.AddressedPluginMessage) MessageType(cloud.timo.TimoCloud.common.protocol.MessageType) TimoCloudVelocity(cloud.timo.TimoCloud.velocity.TimoCloudVelocity) Player(com.velocitypowered.api.proxy.Player) TimoCloudUniversalAPIVelocityImplementation(cloud.timo.TimoCloud.velocity.api.TimoCloudUniversalAPIVelocityImplementation) EventManager(cloud.timo.TimoCloud.api.implementations.managers.EventManager) Optional(java.util.Optional) EventType(cloud.timo.TimoCloud.api.events.EventType) ServerInfo(com.velocitypowered.api.proxy.server.ServerInfo) InetSocketAddress(java.net.InetSocketAddress) AddressedPluginMessage(cloud.timo.TimoCloud.api.messages.objects.AddressedPluginMessage) TimoCloudUniversalAPIBasicImplementation(cloud.timo.TimoCloud.api.implementations.TimoCloudUniversalAPIBasicImplementation) Map(java.util.Map) MessageType(cloud.timo.TimoCloud.common.protocol.MessageType)

Example 2 with TimoCloudMessageAPIBasicImplementation

use of cloud.timo.TimoCloud.api.implementations.TimoCloudMessageAPIBasicImplementation in project TimoCloud by TimoCloud.

the class PluginMessageManager method onMessage.

public void onMessage(AddressedPluginMessage message) {
    Communicatable communicatable = null;
    switch(message.getRecipient().getType()) {
        case // Message is addressed to us, call the event
        CORE:
            ((TimoCloudMessageAPIBasicImplementation) TimoCloudAPI.getMessageAPI()).onMessage(message);
            return;
        case SERVER:
            communicatable = TimoCloudCore.getInstance().getInstanceManager().getServerByIdentifier(message.getRecipient().getName());
            break;
        case PROXY:
            communicatable = TimoCloudCore.getInstance().getInstanceManager().getProxyByIdentifier(message.getRecipient().getName());
            break;
        case CORD:
            communicatable = TimoCloudCore.getInstance().getInstanceManager().getCord(message.getRecipient().getName());
            break;
    }
    if (communicatable == null) {
        TimoCloudCore.getInstance().severe("Unknown plugin message recipient: " + message.getRecipient());
        return;
    }
    communicatable.sendMessage(Message.create().setType(MessageType.ON_PLUGIN_MESSAGE).setData(message));
}
Also used : TimoCloudMessageAPIBasicImplementation(cloud.timo.TimoCloud.api.implementations.TimoCloudMessageAPIBasicImplementation) Communicatable(cloud.timo.TimoCloud.core.sockets.Communicatable)

Aggregations

TimoCloudMessageAPIBasicImplementation (cloud.timo.TimoCloud.api.implementations.TimoCloudMessageAPIBasicImplementation)2 TimoCloudAPI (cloud.timo.TimoCloud.api.TimoCloudAPI)1 EventType (cloud.timo.TimoCloud.api.events.EventType)1 TimoCloudUniversalAPIBasicImplementation (cloud.timo.TimoCloud.api.implementations.TimoCloudUniversalAPIBasicImplementation)1 EventManager (cloud.timo.TimoCloud.api.implementations.managers.EventManager)1 AddressedPluginMessage (cloud.timo.TimoCloud.api.messages.objects.AddressedPluginMessage)1 EventUtil (cloud.timo.TimoCloud.api.utils.EventUtil)1 Message (cloud.timo.TimoCloud.common.protocol.Message)1 MessageType (cloud.timo.TimoCloud.common.protocol.MessageType)1 BasicStringHandler (cloud.timo.TimoCloud.common.sockets.BasicStringHandler)1 EnumUtil (cloud.timo.TimoCloud.common.utils.EnumUtil)1 PluginMessageSerializer (cloud.timo.TimoCloud.common.utils.PluginMessageSerializer)1 InetAddressUtil (cloud.timo.TimoCloud.common.utils.network.InetAddressUtil)1 Communicatable (cloud.timo.TimoCloud.core.sockets.Communicatable)1 TimoCloudVelocity (cloud.timo.TimoCloud.velocity.TimoCloudVelocity)1 TimoCloudUniversalAPIVelocityImplementation (cloud.timo.TimoCloud.velocity.api.TimoCloudUniversalAPIVelocityImplementation)1 Player (com.velocitypowered.api.proxy.Player)1 ServerInfo (com.velocitypowered.api.proxy.server.ServerInfo)1 Channel (io.netty.channel.Channel)1 InetSocketAddress (java.net.InetSocketAddress)1