Skip to content

Commit

Permalink
Update jetty and drop javax.websocket-api
Browse files Browse the repository at this point in the history
  • Loading branch information
UnfamiliarLegacy committed Feb 13, 2023
1 parent b960001 commit 16749e9
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 61 deletions.
5 changes: 1 addition & 4 deletions G-Earth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<properties>
<javafx.version>1.8</javafx.version>
<jettyVersion>9.4.48.v20220622</jettyVersion>
<jettyVersion>9.4.50.v20221201</jettyVersion>
<logback.version>1.3.5</logback.version>
</properties>

Expand Down Expand Up @@ -238,14 +238,11 @@
<artifactId>maven-artifact</artifactId>
<version>3.6.3</version>
</dependency>


<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.1</version>
</dependency>

<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package gearth.protocol.connection.proxy.nitro.websocket;

import javax.websocket.Session;
import org.eclipse.jetty.websocket.api.Session;

public interface NitroSession {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public void onOpen(Session session) throws Exception {

activeSession = (JsrSession) session;
activeSession.setMaxBinaryMessageBufferSize(NitroConstants.WEBSOCKET_BUFFER_SIZE);
activeSession.setMaxTextMessageBufferSize(NitroConstants.WEBSOCKET_BUFFER_SIZE);

// Set proper headers to spoof being a real client.
final Map<String, List<String>> headers = new HashMap<>(activeSession.getUpgradeRequest().getHeaders());
Expand Down Expand Up @@ -94,7 +95,7 @@ public void onError(Session session, Throwable throwable) {
}

@Override
public Session getSession() {
public org.eclipse.jetty.websocket.api.Session getSession() {
return activeSession;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,21 @@
import gearth.protocol.connection.proxy.nitro.NitroConstants;
import gearth.protocol.packethandler.PacketHandler;
import gearth.protocol.packethandler.nitro.NitroPacketHandler;
import org.eclipse.jetty.websocket.api.extensions.ExtensionConfig;
import org.eclipse.jetty.websocket.jsr356.JsrExtension;
import org.eclipse.jetty.websocket.api.Session;
import org.eclipse.jetty.websocket.api.WebSocketListener;
import org.eclipse.jetty.websocket.client.ClientUpgradeRequest;
import org.eclipse.jetty.websocket.client.WebSocketClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.websocket.*;
import java.io.IOException;
import java.net.URI;
import java.util.*;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Map;

public class NitroWebsocketServer extends Endpoint implements NitroSession {
public class NitroWebsocketServer implements WebSocketListener, NitroSession {

private static final Logger logger = LoggerFactory.getLogger(NitroWebsocketServer.class);

Expand All @@ -39,66 +43,34 @@ public NitroWebsocketServer(HConnection connection, NitroWebsocketClient client)

public void connect(String websocketUrl, Map<String, List<String>> clientHeaders) throws IOException {
try {
logger.info("Connecting to origin websocket at {}", websocketUrl);
logger.info("Building origin websocket connection ({})", websocketUrl);

ClientEndpointConfig.Builder builder = ClientEndpointConfig.Builder.create();
final WebSocketClient client = new WebSocketClient();

builder.extensions(Collections.singletonList(new JsrExtension(new ExtensionConfig("permessage-deflate;client_max_window_bits"))));
client.setMaxBinaryMessageBufferSize(NitroConstants.WEBSOCKET_BUFFER_SIZE);
client.setMaxTextMessageBufferSize(NitroConstants.WEBSOCKET_BUFFER_SIZE);

builder.configurator(new ClientEndpointConfig.Configurator() {
@Override
public void beforeRequest(Map<String, List<String>> headers) {
clientHeaders.forEach((key, value) -> {
if (SKIP_HEADERS.contains(key)) {
return;
}
final ClientUpgradeRequest request = new ClientUpgradeRequest();

headers.remove(key);
headers.put(key, value);
});
clientHeaders.forEach((key, value) -> {
if (SKIP_HEADERS.contains(key)) {
return;
}

request.setHeader(key, value);
});

ClientEndpointConfig config = builder.build();
logger.info("Connecting to origin websocket at {}", websocketUrl);

ContainerProvider.getWebSocketContainer().connectToServer(this, config, URI.create(websocketUrl));
client.start();
client.connect(this, URI.create(websocketUrl), request);

logger.info("Connected to origin websocket");
} catch (DeploymentException e) {
throw new IOException("Failed to deploy websocket client", e);
} catch (Exception e) {
throw new IOException("Failed to start websocket client to origin " + websocketUrl, e);
}
}

@Override
public void onOpen(Session session, EndpointConfig config) {
this.activeSession = session;
this.activeSession.setMaxBinaryMessageBufferSize(NitroConstants.WEBSOCKET_BUFFER_SIZE);
this.activeSession.addMessageHandler(new MessageHandler.Whole<byte[]>() {
@Override
public void onMessage(byte[] message) {
try {
packetHandler.act(message);
} catch (IOException e) {
e.printStackTrace();
}
}
});
}

@Override
public void onClose(Session session, CloseReason closeReason) {
// Hotel closed connection.
client.shutdownProxy();
}

@Override
public void onError(Session session, Throwable throwable) {
throwable.printStackTrace();

// Shutdown.
client.shutdownProxy();
}

@Override
public Session getSession() {
return activeSession;
Expand All @@ -118,10 +90,43 @@ public void shutdown() {

try {
activeSession.close();
} catch (IOException e) {
} catch (Exception e) {
e.printStackTrace();
} finally {
activeSession = null;
}
}

@Override
public void onWebSocketBinary(byte[] bytes, int i, int i1) {
try {
packetHandler.act(bytes);
} catch (IOException e) {
logger.error("Failed to handle packet", e);
}
}

@Override
public void onWebSocketText(String s) {
logger.warn("Received text message from hotel");
}

@Override
public void onWebSocketClose(int i, String s) {
// Hotel closed connection.
client.shutdownProxy();
}

@Override
public void onWebSocketConnect(org.eclipse.jetty.websocket.api.Session session) {
activeSession = session;
}

@Override
public void onWebSocketError(Throwable throwable) {
throwable.printStackTrace();

// Shutdown.
client.shutdownProxy();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@
import gearth.protocol.packethandler.PacketHandler;
import gearth.protocol.packethandler.PayloadBuffer;
import gearth.services.extension_handler.ExtensionHandler;
import org.eclipse.jetty.websocket.api.Session;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.websocket.Session;
import java.io.IOException;
import java.nio.ByteBuffer;

public class NitroPacketHandler extends PacketHandler {

private static final Logger logger = LoggerFactory.getLogger(NitroPacketHandler.class);

private final HMessage.Direction direction;
private final NitroSession session;
private final PayloadBuffer payloadBuffer;
Expand All @@ -39,7 +43,13 @@ public boolean sendToStream(byte[] buffer) {
buffer = buffer.clone();
}

localSession.getAsyncRemote().sendBinary(ByteBuffer.wrap(buffer));
try {
localSession.getRemote().sendBytes(ByteBuffer.wrap(buffer));
} catch (IOException e) {
logger.error("Error sending packet to nitro client", e);
return false;
}

return true;
}

Expand Down

0 comments on commit 16749e9

Please sign in to comment.