-module(examples).
% See cable.js/complete-examples.js
-export([hash_response/0, cancel_request/0, channel_time_range_request/0]).
hash_response() ->
D = <<"{\"name\":\"hashresponse\",\"type\":\"response\",\"id\":2,\"binary\":\"6b020000000095050429010320265674e8aac2dfddd78f86fe5a3dd68d976ca3f5ba23645ec7381480921d0d10705340e5528f2ef03a6797b72b1bb9f37f9009ad408247387c4bcc4d2a3371af700793dd51d4cb3c18a6df46f88bfe1665fba9b277487ddecd1e031441d69d\",\"obj\":{\"msgLen\":107,\"msgType\":2,\"reqid\":\"95050429\",\"ttl\":1,\"hashes\":[\"20265674e8aac2dfddd78f86fe5a3dd68d976ca3f5ba23645ec7381480921d0d\",\"10705340e5528f2ef03a6797b72b1bb9f37f9009ad408247387c4bcc4d2a3371\",\"af700793dd51d4cb3c18a6df46f88bfe1665fba9b277487ddecd1e031441d69d\"]}}">>,
decode_example_json(D).
cancel_request() ->
D = <<"{\"name\":\"cancel request\",\"type\":\"request\",\"id\":3,\"binary\":\"0e0300000000950504290158b041b1\",\"obj\":{\"msgLen\":14,\"msgType\":3,\"reqid\":\"95050429\",\"ttl\":1,\"cancelid\":\"58b041b1\"}}">>,
decode_example_json(D).
channel_time_range_request() ->
D = <<"{\"name\":\"channel time range request\",\"type\":\"request\",\"id\":4,\"binary\":\"15040000000095050429010764656661756c74006414\",\"obj\":{\"msgLen\":21,\"msgType\":4,\"reqid\":\"95050429\",\"ttl\":1,\"channel\":\"default\",\"timeStart\":0,\"timeEnd\":100,\"limit\":20}}">>,
decode_example_json(D).
% private
decode_example_json(D) ->
J = jsone:decode(D),
#{ <<"binary">> := Bin, <<"obj">> := Obj } = J,
[{binary, hex:hexstr_to_bin(binary_to_list(Bin))},
{obj, Obj}].