1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| -module(ws_h).
-export([init/2]). -export([websocket_init/1]). -export([websocket_handle/2]). -export([websocket_info/2]). -export([terminate/3]).
init(Req, Opts) -> #{pid := Pid} = Req, conn_ets:insert("chat_room", Pid), {cowboy_websocket, Req, Opts}.
websocket_init(State) -> {[{text, <<"Immediately Hello!">>}], State}.
websocket_handle({text, Msg}, State) -> lists:foreach( fun({_, CurrPid}) -> CurrPid ! { chat, <<"Boardcast message: ", Msg/binary>> } end, conn_ets:lookup("chat_room") ), {[], State};
websocket_handle(_Data, State) -> {[], State}.
websocket_info({chat, Msg}, State)-> io:format("chat ~w~n", [Msg]), {[{text,Msg}], State};
websocket_info({timeout, _Ref, Msg}, State) -> erlang:start_timer(1000, self(), <<"How' you doin'?">>), {[{text, Msg}], State};
websocket_info(_Info, State) -> {[], State}. terminate(Reason, _PartialReq, _State) -> io:format("Terminate reason: ~w ~w ~n", [Reason, self()]), conn_ets:remove_by_pid(self()), ok.
|