kong.websocket.client

Client WebSocket PDK functions.

Warning: The WebSocket PDK is under active development and is considered unstable at this time. Backwards-incompatible changes may be made to these functions.

kong.websocket.client.get_frame()

Retrieve the current frame.

This returns the payload, type, and status code (for close frames) of the in-flight frame/message.

This function is useful in contexts like the pre-function or post-function plugins where execution is sandboxed and the caller has no access to these variables in the plugin handler scope.

Phases

  • ws_client_frame

Returns

  • string: The frame payload.

  • string: The frame type (one of “text”, “binary”, “ping”, “pong”, or “close”)

  • number: The frame status code (only returned for close frames)

Usage

  1. local data, typ, status = kong.websocket.client.get_frame()

kong.websocket.client.set_frame_data(data)

Set the current frame’s payload.

This allows the caller to overwrite the contents of the in-flight WebSocket frame before it is forwarded upstream.

Plugin handlers that execute after this has been called will see the updated version of the frame.

Phases

  • ws_client_frame

Parameters

  • data (string): The desired frame payload

Usage

  1. kong.websocket.client.set_frame_data("updated!")

kong.websocket.client.set_status(status)

Set the status code for a close frame.

This allows the caller to overwrite the status code of close frame before it is forwarded upstream.

See the WebSocket RFC for a list of valid status codes.

Plugin handlers that execute after this has been called will see the updated version of the status code.

Calling this function when the in-flight frame is not a close frame will result in an exception.

Parameters

  • status (number): The desired status code

Usage

  1. -- overwrite the payload and status before forwarding
  2. local data, typ, status = kong.websocket.client.get_frame()
  3. if typ == "close" then
  4. kong.websocket.client.set_frame_data("goodbye!")
  5. kong.websocket.client.set_status(1000)
  6. end

kong.websocket.client.drop_frame()

Drop the current frame.

This causes the in-flight frame to be dropped, meaning it will not be forwarded upstream.

Plugin handlers that are set to execute after this one will be skipped.

Close frames cannot be dropped. Calling this function for a close frame will result in an exception.

Usage

  1. kong.websocket.client.drop_frame()

kong.websocket.client.close([status[, message[, upstream_status[, upstream_payload]]]])

Close the WebSocket connection.

Calling this function immediately sends a close frame to the client and the upstream before terminating the connection.

The in-flight frame will not be forwarded upstream, and plugin handlers that are set to execute after the current one will not be executed.

Parameters

  • status (number, optional): Status code of the client close frame
  • message (string, optional): Payload of the client close frame
  • upstream_status (number, optional): Status code of the upstream close frame
  • upstream_payload (string, optional): Payload of the upstream close frame

Usage

  1. kong.websocket.client.close(1009, "Invalid message",
  2. 1001, "Client is going away")

kong.set_max_payload_size

Set the maximum allowed payload size for client frames, in bytes.

This limit is applied to all data frame types:

  • text
  • binary
  • continuation

The limit is also assessed during aggregation of frames. For example, if the limit is 1024, and a client sends 3 continuation frames of size 500 each, the third frame will exceed the limit.

If a client sends a message that exceeds the limit, a close frame with status code 1009 is sent to the client, and the connection is closed.

This limit does not apply to control frames (close/ping/pong).

  • size (integer): The limit (0 resets to the default limit)

Usage

  1. -- set a max payload size of 1KB
  2. kong.websocket.client.set_max_payload_size(1024)
  3. -- Restore the default limit
  4. kong.websocket.client.set_max_payload_size(0)