Skip to content

Commit fdaed94

Browse files
committed
Improve websocket subprotocol request to backend server
1 parent 141dbf0 commit fdaed94

File tree

2 files changed

+29
-7
lines changed

2 files changed

+29
-7
lines changed

jupyter_server_proxy/handlers.py

+23-7
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ def __init__(self, *args, **kwargs):
116116
"rewrite_response",
117117
tuple(),
118118
)
119-
self.subprotocols = None
120119
super().__init__(*args, **kwargs)
121120

122121
# Support/use jupyter_server config arguments allow_origin and allow_origin_pat
@@ -493,7 +492,7 @@ async def start_websocket_connection():
493492
request=request,
494493
on_message_callback=message_cb,
495494
on_ping_callback=ping_cb,
496-
subprotocols=self.subprotocols,
495+
subprotocols=[self.selected_subprotocol],
497496
resolver=resolver,
498497
)
499498
self._record_activity()
@@ -531,12 +530,29 @@ def check_xsrf_cookie(self):
531530
"""
532531

533532
def select_subprotocol(self, subprotocols):
534-
"""Select a single Sec-WebSocket-Protocol during handshake."""
535-
self.subprotocols = subprotocols
536-
if isinstance(subprotocols, list) and subprotocols:
537-
self.log.debug(f"Client sent subprotocols: {subprotocols}")
533+
"""
534+
Select a single Sec-WebSocket-Protocol during handshake.
535+
536+
Note that this subprotocol selection should really be delegated to the
537+
server we proxy to, but we don't! For this to happen, we would need to
538+
delay accepting the handshake with the client until we have successfully
539+
handshaked with the server.
540+
541+
Overrides `tornado.websocket.WebSocketHandler.select_subprotocol` that
542+
includes an informative docstring:
543+
https://github.com/tornadoweb/tornado/blob/v6.4.0/tornado/websocket.py#L337-L360.
544+
"""
545+
if subprotocols:
546+
# Tornado 5.0 doesn't pass an empty list, but a list with a an empty
547+
# string element.
548+
if subprotocols[0] == "":
549+
return None
550+
self.log.debug(
551+
f"Client sent subprotocols: {subprotocols}, selecting the first"
552+
)
553+
# TODO: warn if we select one out of multiple!
538554
return subprotocols[0]
539-
return super().select_subprotocol(subprotocols)
555+
return None
540556

541557

542558
class LocalProxyHandler(ProxyHandler):

tests/resources/websocket.py

+6
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,22 @@ def get(self):
5454

5555

5656
class EchoWebSocket(tornado.websocket.WebSocketHandler):
57+
"""Echoes back received messages."""
58+
5759
def on_message(self, message):
5860
self.write_message(message)
5961

6062

6163
class HeadersWebSocket(tornado.websocket.WebSocketHandler):
64+
"""Echoes back incoming request headers."""
65+
6266
def on_message(self, message):
6367
self.write_message(json.dumps(dict(self.request.headers)))
6468

6569

6670
class SubprotocolWebSocket(tornado.websocket.WebSocketHandler):
71+
"""Echoes back incoming requested subprotocols."""
72+
6773
def __init__(self, *args, **kwargs):
6874
self._subprotocols = None
6975
super().__init__(*args, **kwargs)

0 commit comments

Comments
 (0)