Search in sources :

Example 11 with ServerConnection

use of com.velocitypowered.api.proxy.ServerConnection in project InteractiveChat by LOOHP.

the class InteractiveChatVelocity method onProxyInitialization.

@Subscribe
public void onProxyInitialization(ProxyInitializeEvent event) {
    plugin = this;
    try {
        JSONObject json = (JSONObject) new JSONParser().parse(new InputStreamReader(this.getClass().getClassLoader().getResourceAsStream("velocity-plugin.json"), StandardCharsets.UTF_8));
        description = new VelocityPluginDescription(json);
    } catch (IOException | ParseException e1) {
        e1.printStackTrace();
    }
    if (!getDataFolder().exists()) {
        getDataFolder().mkdir();
    }
    try {
        Config.loadConfig(CONFIG_ID, new File(getDataFolder(), "bungeeconfig.yml"), getClass().getClassLoader().getResourceAsStream("config_proxy.yml"), getClass().getClassLoader().getResourceAsStream("config_proxy.yml"), true);
    } catch (IOException e) {
        e.printStackTrace();
        return;
    }
    loadConfig();
    CommandsVelocity.createBrigadierCommand();
    proxyServer.getChannelRegistrar().register(ICChannelIdentifier.INSTANCE);
    getLogger().info(TextColor.GREEN + "[InteractiveChat] Registered Plugin Messaging Channels!");
    Metrics metrics = metricsFactory.make(this, BSTATS_PLUGIN_ID);
    Charts.setup(metrics);
    playerCooldownManager = new ProxyPlayerCooldownManager(placeholderList.values().stream().flatMap(each -> each.stream()).distinct().collect(Collectors.toList()));
    messageForwardingHandler = new ProxyMessageForwardingHandler((info, component) -> {
        Player player = proxyServer.getPlayer(info.getPlayer()).get();
        ServerConnection server = player.getCurrentServer().get();
        proxyServer.getScheduler().buildTask(plugin, () -> {
            try {
                if (player != null && server != null) {
                    PluginMessageSendingVelocity.requestMessageProcess(player, server.getServer(), component, info.getId());
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }).delay(delay + 50, TimeUnit.MILLISECONDS).schedule();
    }, (info, component) -> {
        Chat chatPacket = new Chat(component + "<QUxSRUFEWVBST0NFU1NFRA==>", info.getPosition(), null);
        Optional<Player> optplayer = getServer().getPlayer(info.getPlayer());
        if (optplayer.isPresent()) {
            ConnectedPlayer userConnection = (ConnectedPlayer) optplayer.get();
            userConnection.getConnection().getChannel().write(chatPacket);
        }
    }, uuid -> {
        return proxyServer.getPlayer(uuid).isPresent();
    }, uuid -> {
        Optional<ServerConnection> optCurrentServer = proxyServer.getPlayer(uuid).get().getCurrentServer();
        return optCurrentServer.isPresent() && hasInteractiveChat(optCurrentServer.get().getServer());
    }, () -> (long) delay + 2000);
    ThreadFactory factory = new ThreadFactoryBuilder().setNameFormat("InteractiveChatProxy Async PluginMessage Processing Thread #%d").build();
    pluginMessageHandlingExecutor = new ThreadPoolExecutor(8, Integer.MAX_VALUE, 60L, TimeUnit.SECONDS, new SynchronousQueue<>(true), factory);
    getLogger().info(TextColor.GREEN + "[InteractiveChat] InteractiveChat (Velocity) has been enabled!");
    run();
}
Also used : Arrays(java.util.Arrays) Inject(com.google.inject.Inject) ConnectedPlayer(com.velocitypowered.proxy.connection.client.ConnectedPlayer) Random(java.util.Random) ProxyShutdownEvent(com.velocitypowered.api.event.proxy.ProxyShutdownEvent) ParsePlayer(com.loohp.interactivechat.objectholders.CustomPlaceholder.ParsePlayer) ByteBuffer(java.nio.ByteBuffer) Matcher(java.util.regex.Matcher) ChannelPromise(io.netty.channel.ChannelPromise) PluginMessageEvent(com.velocitypowered.api.event.connection.PluginMessageEvent) Player(com.velocitypowered.api.proxy.Player) Map(java.util.Map) ProxyInitializeEvent(com.velocitypowered.api.event.proxy.ProxyInitializeEvent) ThreadFactory(java.util.concurrent.ThreadFactory) ServerPostConnectEvent(com.velocitypowered.api.event.player.ServerPostConnectEvent) Method(java.lang.reflect.Method) Path(java.nio.file.Path) ChatResult(com.velocitypowered.api.event.player.PlayerChatEvent.ChatResult) ChannelDuplexHandler(io.netty.channel.ChannelDuplexHandler) TextComponent(net.kyori.adventure.text.TextComponent) ForwardResult(com.velocitypowered.api.event.connection.PluginMessageEvent.ForwardResult) Filter(org.apache.logging.log4j.core.Filter) JSONParser(org.json.simple.parser.JSONParser) SynchronousQueue(java.util.concurrent.SynchronousQueue) ConcurrentHashMap(java.util.concurrent.ConcurrentHashMap) VelocityServerConnection(com.velocitypowered.proxy.connection.backend.VelocityServerConnection) ChannelPipeline(io.netty.channel.ChannelPipeline) UUID(java.util.UUID) RegisteredServer(com.velocitypowered.api.proxy.server.RegisteredServer) Collectors(java.util.stream.Collectors) StandardCharsets(java.nio.charset.StandardCharsets) List(java.util.List) JSONObject(org.json.simple.JSONObject) ClickEventAction(com.loohp.interactivechat.objectholders.CustomPlaceholder.ClickEventAction) ByteStreams(com.google.common.io.ByteStreams) Subscribe(com.velocitypowered.api.event.Subscribe) Optional(java.util.Optional) ChannelMessageSource(com.velocitypowered.api.proxy.messages.ChannelMessageSource) Pattern(java.util.regex.Pattern) CustomPlaceholderClickEvent(com.loohp.interactivechat.objectholders.CustomPlaceholder.CustomPlaceholderClickEvent) HoverEvent(net.kyori.adventure.text.event.HoverEvent) ThreadFactoryBuilder(com.google.common.util.concurrent.ThreadFactoryBuilder) ProxyPlayerCooldownManager(com.loohp.interactivechat.proxy.objectholders.ProxyPlayerCooldownManager) DisconnectEvent(com.velocitypowered.api.event.connection.DisconnectEvent) ServerConnection(com.velocitypowered.api.proxy.ServerConnection) Metrics(com.loohp.interactivechat.proxy.velocity.metrics.Metrics) ThreadPoolExecutor(java.util.concurrent.ThreadPoolExecutor) CustomPlaceholder(com.loohp.interactivechat.objectholders.CustomPlaceholder) Connections(com.velocitypowered.proxy.network.Connections) Registry(com.loohp.interactivechat.registry.Registry) Charts(com.loohp.interactivechat.proxy.velocity.metrics.Charts) Config(com.loohp.interactivechat.config.Config) DataTypeIO(com.loohp.interactivechat.utils.DataTypeIO) HashMap(java.util.HashMap) CompletableFuture(java.util.concurrent.CompletableFuture) BuiltInPlaceholder(com.loohp.interactivechat.objectholders.BuiltInPlaceholder) CustomPlaceholderReplaceText(com.loohp.interactivechat.objectholders.CustomPlaceholder.CustomPlaceholderReplaceText) ArrayList(java.util.ArrayList) ChannelHandlerContext(io.netty.channel.ChannelHandlerContext) Chat(com.velocitypowered.proxy.protocol.packet.Chat) PlayerChatEvent(com.velocitypowered.api.event.player.PlayerChatEvent) ParseException(org.json.simple.parser.ParseException) PostOrder(com.velocitypowered.api.event.PostOrder) Component(net.kyori.adventure.text.Component) ProxyServer(com.velocitypowered.api.proxy.ProxyServer) ByteArrayDataInput(com.google.common.io.ByteArrayDataInput) ICPlaceholder(com.loohp.interactivechat.objectholders.ICPlaceholder) PostLoginEvent(com.velocitypowered.api.event.connection.PostLoginEvent) Logger(org.slf4j.Logger) Iterator(java.util.Iterator) BackendInteractiveChatData(com.loohp.interactivechat.proxy.objectholders.BackendInteractiveChatData) IOException(java.io.IOException) Field(java.lang.reflect.Field) InputStreamReader(java.io.InputStreamReader) File(java.io.File) DataDirectory(com.velocitypowered.api.plugin.annotation.DataDirectory) TimeUnit(java.util.concurrent.TimeUnit) AtomicLong(java.util.concurrent.atomic.AtomicLong) CustomPlaceholderHoverEvent(com.loohp.interactivechat.objectholders.CustomPlaceholder.CustomPlaceholderHoverEvent) LogFilter(com.loohp.interactivechat.objectholders.LogFilter) CommandSource(com.velocitypowered.api.command.CommandSource) LogManager(org.apache.logging.log4j.LogManager) Collections(java.util.Collections) ProxyMessageForwardingHandler(com.loohp.interactivechat.proxy.objectholders.ProxyMessageForwardingHandler) NativeAdventureConverter(com.loohp.interactivechat.utils.NativeAdventureConverter) ThreadFactory(java.util.concurrent.ThreadFactory) ConnectedPlayer(com.velocitypowered.proxy.connection.client.ConnectedPlayer) ParsePlayer(com.loohp.interactivechat.objectholders.CustomPlaceholder.ParsePlayer) Player(com.velocitypowered.api.proxy.Player) InputStreamReader(java.io.InputStreamReader) Optional(java.util.Optional) ProxyPlayerCooldownManager(com.loohp.interactivechat.proxy.objectholders.ProxyPlayerCooldownManager) VelocityServerConnection(com.velocitypowered.proxy.connection.backend.VelocityServerConnection) ServerConnection(com.velocitypowered.api.proxy.ServerConnection) IOException(java.io.IOException) ConnectedPlayer(com.velocitypowered.proxy.connection.client.ConnectedPlayer) Metrics(com.loohp.interactivechat.proxy.velocity.metrics.Metrics) JSONObject(org.json.simple.JSONObject) ProxyMessageForwardingHandler(com.loohp.interactivechat.proxy.objectholders.ProxyMessageForwardingHandler) SynchronousQueue(java.util.concurrent.SynchronousQueue) Chat(com.velocitypowered.proxy.protocol.packet.Chat) ThreadFactoryBuilder(com.google.common.util.concurrent.ThreadFactoryBuilder) JSONParser(org.json.simple.parser.JSONParser) ParseException(org.json.simple.parser.ParseException) ThreadPoolExecutor(java.util.concurrent.ThreadPoolExecutor) File(java.io.File) Subscribe(com.velocitypowered.api.event.Subscribe)

Example 12 with ServerConnection

use of com.velocitypowered.api.proxy.ServerConnection in project ResourcepacksPlugins by Phoenix616.

the class ServerSwitchListener method onServerSwitch.

@Subscribe
public void onServerSwitch(ServerPostConnectEvent event) {
    if (plugin.isEnabled()) {
        final UUID playerId = event.getPlayer().getUniqueId();
        plugin.unsetBackend(playerId);
        ResourcePack pack = plugin.getUserManager().getUserPack(playerId);
        plugin.sendPackInfo(event.getPlayer(), pack);
        long sendDelay = -1;
        Optional<ServerConnection> server = event.getPlayer().getCurrentServer();
        if (server.isPresent()) {
            sendDelay = plugin.getPackManager().getAssignment(server.get().getServerInfo().getName()).getSendDelay();
        }
        if (sendDelay < 0) {
            sendDelay = plugin.getPackManager().getGlobalAssignment().getSendDelay();
        }
        if (sendDelay > 0) {
            plugin.getProxy().getScheduler().buildTask(plugin, () -> calculatePack(playerId)).delay(sendDelay * 50, TimeUnit.MILLISECONDS).schedule();
        } else {
            calculatePack(playerId);
        }
    }
}
Also used : ResourcePack(de.themoep.resourcepacksplugin.core.ResourcePack) ServerConnection(com.velocitypowered.api.proxy.ServerConnection) UUID(java.util.UUID) Subscribe(com.velocitypowered.api.event.Subscribe)

Example 13 with ServerConnection

use of com.velocitypowered.api.proxy.ServerConnection in project LuckPerms by lucko.

the class VelocityPlayerCalculator method calculate.

@Override
public void calculate(@NonNull Player subject, @NonNull ContextConsumer consumer) {
    ServerConnection server = subject.getCurrentServer().orElse(null);
    if (server == null) {
        return;
    }
    this.plugin.getConfiguration().get(ConfigKeys.WORLD_REWRITES).rewriteAndSubmit(server.getServerInfo().getName(), consumer);
}
Also used : ServerConnection(com.velocitypowered.api.proxy.ServerConnection)

Example 14 with ServerConnection

use of com.velocitypowered.api.proxy.ServerConnection in project Parties by AlessioDP.

the class VelocityCommandSetHome method getLocationAndSave.

@Override
protected void getLocationAndSave(PartyPlayerImpl sender, PartyImpl party, String name) {
    Player player = ((VelocityPartiesBootstrap) plugin.getBootstrap()).getServer().getPlayer(sender.getPlayerUUID()).orElse(null);
    if (player != null) {
        ServerConnection serverConnection = player.getCurrentServer().orElse(null);
        if (serverConnection != null) {
            String serverName = serverConnection.getServerInfo().getName();
            ((VelocityPartiesMessageDispatcher) plugin.getMessenger().getMessageDispatcher()).sendAddHome(party, sender, name, serverName);
        }
    }
}
Also used : Player(com.velocitypowered.api.proxy.Player) ServerConnection(com.velocitypowered.api.proxy.ServerConnection) VelocityPartiesMessageDispatcher(com.alessiodp.parties.velocity.messaging.VelocityPartiesMessageDispatcher) VelocityPartiesBootstrap(com.alessiodp.parties.velocity.bootstrap.VelocityPartiesBootstrap)

Example 15 with ServerConnection

use of com.velocitypowered.api.proxy.ServerConnection in project FastLogin by games647.

the class PluginMessageListener method onPluginMessage.

@Subscribe
public void onPluginMessage(PluginMessageEvent pluginMessageEvent) {
    String channel = pluginMessageEvent.getIdentifier().getId();
    if (!pluginMessageEvent.getResult().isAllowed() || !channel.startsWith(plugin.getName().toLowerCase())) {
        return;
    }
    // the client shouldn't be able to read the messages in order to know something about server internal states
    // moreover the client shouldn't be able fake a running premium check by sending the result message
    pluginMessageEvent.setResult(PluginMessageEvent.ForwardResult.handled());
    if (!(pluginMessageEvent.getSource() instanceof ServerConnection)) {
        // check if the message is sent from the server
        return;
    }
    // so that we can safely process this in the background
    byte[] data = Arrays.copyOf(pluginMessageEvent.getData(), pluginMessageEvent.getData().length);
    Player forPlayer = (Player) pluginMessageEvent.getTarget();
    plugin.getScheduler().runAsync(() -> readMessage(forPlayer, channel, data));
}
Also used : Player(com.velocitypowered.api.proxy.Player) ServerConnection(com.velocitypowered.api.proxy.ServerConnection) Subscribe(com.velocitypowered.api.event.Subscribe)

Aggregations

ServerConnection (com.velocitypowered.api.proxy.ServerConnection)21 Subscribe (com.velocitypowered.api.event.Subscribe)12 Player (com.velocitypowered.api.proxy.Player)12 RegisteredServer (com.velocitypowered.api.proxy.server.RegisteredServer)8 ByteArrayDataInput (com.google.common.io.ByteArrayDataInput)6 UUID (java.util.UUID)6 Component (net.kyori.adventure.text.Component)5 File (java.io.File)4 InputStreamReader (java.io.InputStreamReader)4 TimeUnit (java.util.concurrent.TimeUnit)4 Inject (com.google.inject.Inject)3 CommandSource (com.velocitypowered.api.command.CommandSource)3 PostOrder (com.velocitypowered.api.event.PostOrder)3 DisconnectEvent (com.velocitypowered.api.event.connection.DisconnectEvent)3 ServerPostConnectEvent (com.velocitypowered.api.event.player.ServerPostConnectEvent)3 ProxyServer (com.velocitypowered.api.proxy.ProxyServer)3 IOException (java.io.IOException)3 TextComponent (net.kyori.adventure.text.TextComponent)3 HoverEvent (net.kyori.adventure.text.event.HoverEvent)3 ByteArrayDataOutput (com.google.common.io.ByteArrayDataOutput)2