mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00
32 lines
833 B
Erlang
32 lines
833 B
Erlang
![]() |
%% This module takes commands from the x-commands header
|
||
|
%% and returns them in the websocket_handle/2 callback.
|
||
|
|
||
|
-module(ws_handle_commands_h).
|
||
|
-behavior(cowboy_websocket).
|
||
|
|
||
|
-export([init/2]).
|
||
|
-export([websocket_init/1]).
|
||
|
-export([websocket_handle/2]).
|
||
|
-export([websocket_info/2]).
|
||
|
|
||
|
init(Req=#{pid := Pid}, RunOrHibernate) ->
|
||
|
Commands0 = cowboy_req:header(<<"x-commands">>, Req),
|
||
|
Commands = binary_to_term(base64:decode(Commands0)),
|
||
|
case Commands of
|
||
|
bad -> ct_helper_error_h:ignore(Pid, cowboy_websocket, handler_call, 6);
|
||
|
_ -> ok
|
||
|
end,
|
||
|
{cowboy_websocket, Req, {Commands, RunOrHibernate}}.
|
||
|
|
||
|
websocket_init(State) ->
|
||
|
{[], State}.
|
||
|
|
||
|
websocket_handle(_, State={Commands, run}) ->
|
||
|
{Commands, State};
|
||
|
websocket_handle(_, State={Commands, hibernate}) ->
|
||
|
{Commands, State, hibernate}.
|
||
|
|
||
|
websocket_info(_, State) ->
|
||
|
{[], State}.
|
||
|
|