2011-03-07 22:59:22 +01:00
|
|
|
%% Copyright (c) 2011, Loïc Hoguin <essen@dev-extend.eu>
|
2011-05-09 14:31:06 +02:00
|
|
|
%% Copyright (c) 2011, Anthony Ramine <nox@dev-extend.eu>
|
2011-03-07 22:59:22 +01:00
|
|
|
%%
|
|
|
|
%% Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
%% purpose with or without fee is hereby granted, provided that the above
|
|
|
|
%% copyright notice and this permission notice appear in all copies.
|
|
|
|
%%
|
|
|
|
%% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
%% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
%% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
%% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
%% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
%% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
%% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc HTTP protocol handler.
|
|
|
|
%%
|
|
|
|
%% The available options are:
|
|
|
|
%% <dl>
|
|
|
|
%% <dt>dispatch</dt><dd>The dispatch list for this protocol.</dd>
|
|
|
|
%% <dt>max_empty_lines</dt><dd>Max number of empty lines before a request.
|
|
|
|
%% Defaults to 5.</dd>
|
2011-10-04 11:27:04 +02:00
|
|
|
%% <dt>timeout</dt><dd>Time in milliseconds before an idle
|
2011-07-06 17:42:20 +02:00
|
|
|
%% connection is closed. Defaults to 5000 milliseconds.</dd>
|
|
|
|
%% </dl>
|
|
|
|
%%
|
|
|
|
%% Note that there is no need to monitor these processes when using Cowboy as
|
|
|
|
%% an application as it already supervises them under the listener supervisor.
|
|
|
|
%%
|
|
|
|
%% @see cowboy_dispatcher
|
|
|
|
%% @see cowboy_http_handler
|
2011-03-07 22:59:22 +01:00
|
|
|
-module(cowboy_http_protocol).
|
2011-09-29 13:38:17 +02:00
|
|
|
-behaviour(cowboy_protocol).
|
2011-07-06 17:42:20 +02:00
|
|
|
|
2011-08-10 20:28:30 +02:00
|
|
|
-export([start_link/4]). %% API.
|
|
|
|
-export([init/4, parse_request/1]). %% FSM.
|
2011-03-07 22:59:22 +01:00
|
|
|
|
|
|
|
-include("include/http.hrl").
|
2011-08-23 16:20:53 +02:00
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
2011-03-07 22:59:22 +01:00
|
|
|
|
|
|
|
-record(state, {
|
2011-08-10 20:28:30 +02:00
|
|
|
listener :: pid(),
|
2011-04-18 00:06:26 +02:00
|
|
|
socket :: inet:socket(),
|
2011-03-07 22:59:22 +01:00
|
|
|
transport :: module(),
|
2011-04-18 13:24:27 +02:00
|
|
|
dispatch :: cowboy_dispatcher:dispatch_rules(),
|
2011-05-25 23:02:40 +02:00
|
|
|
handler :: {module(), any()},
|
2011-04-09 15:28:41 +02:00
|
|
|
req_empty_lines = 0 :: integer(),
|
|
|
|
max_empty_lines :: integer(),
|
2011-03-07 22:59:22 +01:00
|
|
|
timeout :: timeout(),
|
2011-05-05 14:03:39 +02:00
|
|
|
buffer = <<>> :: binary()
|
2011-03-07 22:59:22 +01:00
|
|
|
}).
|
|
|
|
|
|
|
|
%% API.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Start an HTTP protocol process.
|
2011-08-10 20:28:30 +02:00
|
|
|
-spec start_link(pid(), inet:socket(), module(), any()) -> {ok, pid()}.
|
|
|
|
start_link(ListenerPid, Socket, Transport, Opts) ->
|
|
|
|
Pid = spawn_link(?MODULE, init, [ListenerPid, Socket, Transport, Opts]),
|
2011-03-07 22:59:22 +01:00
|
|
|
{ok, Pid}.
|
|
|
|
|
|
|
|
%% FSM.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @private
|
2011-08-10 20:28:30 +02:00
|
|
|
-spec init(pid(), inet:socket(), module(), any()) -> ok.
|
|
|
|
init(ListenerPid, Socket, Transport, Opts) ->
|
2011-03-07 22:59:22 +01:00
|
|
|
Dispatch = proplists:get_value(dispatch, Opts, []),
|
2011-04-09 15:28:41 +02:00
|
|
|
MaxEmptyLines = proplists:get_value(max_empty_lines, Opts, 5),
|
2011-03-07 22:59:22 +01:00
|
|
|
Timeout = proplists:get_value(timeout, Opts, 5000),
|
2011-08-10 20:28:30 +02:00
|
|
|
receive shoot -> ok end,
|
|
|
|
wait_request(#state{listener=ListenerPid, socket=Socket, transport=Transport,
|
2011-04-09 15:28:41 +02:00
|
|
|
dispatch=Dispatch, max_empty_lines=MaxEmptyLines, timeout=Timeout}).
|
2011-03-07 22:59:22 +01:00
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @private
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec parse_request(#state{}) -> ok.
|
2011-05-05 14:03:39 +02:00
|
|
|
%% @todo Use decode_packet options to limit length?
|
|
|
|
parse_request(State=#state{buffer=Buffer}) ->
|
|
|
|
case erlang:decode_packet(http_bin, Buffer, []) of
|
|
|
|
{ok, Request, Rest} -> request(Request, State#state{buffer=Rest});
|
|
|
|
{more, _Length} -> wait_request(State);
|
2011-10-04 12:37:19 +02:00
|
|
|
{error, _Reason} -> error_terminate(400, State)
|
2011-05-05 14:03:39 +02:00
|
|
|
end.
|
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec wait_request(#state{}) -> ok.
|
2011-05-05 14:03:39 +02:00
|
|
|
wait_request(State=#state{socket=Socket, transport=Transport,
|
|
|
|
timeout=T, buffer=Buffer}) ->
|
2011-03-07 22:59:22 +01:00
|
|
|
case Transport:recv(Socket, 0, T) of
|
2011-05-05 14:03:39 +02:00
|
|
|
{ok, Data} -> parse_request(State#state{
|
|
|
|
buffer= << Buffer/binary, Data/binary >>});
|
2011-10-04 10:54:30 +02:00
|
|
|
{error, _Reason} -> terminate(State)
|
2011-03-07 22:59:22 +01:00
|
|
|
end.
|
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec request({http_request, http_method(), http_uri(),
|
|
|
|
http_version()}, #state{}) -> ok.
|
2011-03-07 22:59:22 +01:00
|
|
|
%% @todo We probably want to handle some things differently between versions.
|
|
|
|
request({http_request, _Method, _URI, Version}, State)
|
|
|
|
when Version =/= {1, 0}, Version =/= {1, 1} ->
|
|
|
|
error_terminate(505, State);
|
|
|
|
%% @todo We need to cleanup the URI properly.
|
|
|
|
request({http_request, Method, {abs_path, AbsPath}, Version},
|
|
|
|
State=#state{socket=Socket, transport=Transport}) ->
|
2011-03-20 00:01:29 +01:00
|
|
|
{Path, RawPath, Qs} = cowboy_dispatcher:split_path(AbsPath),
|
2011-03-20 00:09:15 +01:00
|
|
|
ConnAtom = version_to_connection(Version),
|
2011-05-05 14:03:39 +02:00
|
|
|
parse_header(#http_req{socket=Socket, transport=Transport,
|
2011-03-20 00:09:15 +01:00
|
|
|
connection=ConnAtom, method=Method, version=Version,
|
2011-10-04 13:09:57 +02:00
|
|
|
path=Path, raw_path=RawPath, raw_qs=Qs}, State);
|
2011-03-19 18:53:59 +01:00
|
|
|
request({http_request, Method, '*', Version},
|
|
|
|
State=#state{socket=Socket, transport=Transport}) ->
|
2011-03-20 00:09:15 +01:00
|
|
|
ConnAtom = version_to_connection(Version),
|
2011-05-05 14:03:39 +02:00
|
|
|
parse_header(#http_req{socket=Socket, transport=Transport,
|
2011-03-20 00:09:15 +01:00
|
|
|
connection=ConnAtom, method=Method, version=Version,
|
2011-10-04 13:09:57 +02:00
|
|
|
path='*', raw_path= <<"*">>, raw_qs= <<>>}, State);
|
2011-03-19 14:46:45 +01:00
|
|
|
request({http_request, _Method, _URI, _Version}, State) ->
|
|
|
|
error_terminate(501, State);
|
2011-05-05 14:03:39 +02:00
|
|
|
request({http_error, <<"\r\n">>},
|
2011-04-09 15:28:41 +02:00
|
|
|
State=#state{req_empty_lines=N, max_empty_lines=N}) ->
|
|
|
|
error_terminate(400, State);
|
2011-05-05 14:03:39 +02:00
|
|
|
request({http_error, <<"\r\n">>}, State=#state{req_empty_lines=N}) ->
|
|
|
|
parse_request(State#state{req_empty_lines=N + 1});
|
2011-03-19 14:40:39 +01:00
|
|
|
request({http_error, _Any}, State) ->
|
|
|
|
error_terminate(400, State).
|
2011-03-07 22:59:22 +01:00
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec parse_header(#http_req{}, #state{}) -> ok.
|
2011-05-05 14:03:39 +02:00
|
|
|
parse_header(Req, State=#state{buffer=Buffer}) ->
|
|
|
|
case erlang:decode_packet(httph_bin, Buffer, []) of
|
|
|
|
{ok, Header, Rest} -> header(Header, Req, State#state{buffer=Rest});
|
|
|
|
{more, _Length} -> wait_header(Req, State);
|
2011-10-04 12:37:19 +02:00
|
|
|
{error, _Reason} -> error_terminate(400, State)
|
2011-05-05 14:03:39 +02:00
|
|
|
end.
|
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec wait_header(#http_req{}, #state{}) -> ok.
|
2011-03-07 22:59:22 +01:00
|
|
|
wait_header(Req, State=#state{socket=Socket,
|
2011-05-05 14:03:39 +02:00
|
|
|
transport=Transport, timeout=T, buffer=Buffer}) ->
|
2011-03-07 22:59:22 +01:00
|
|
|
case Transport:recv(Socket, 0, T) of
|
2011-05-05 14:03:39 +02:00
|
|
|
{ok, Data} -> parse_header(Req, State#state{
|
|
|
|
buffer= << Buffer/binary, Data/binary >>});
|
2011-03-07 22:59:22 +01:00
|
|
|
{error, timeout} -> error_terminate(408, State);
|
|
|
|
{error, closed} -> terminate(State)
|
|
|
|
end.
|
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec header({http_header, integer(), http_header(), any(), binary()}
|
|
|
|
| http_eoh, #http_req{}, #state{}) -> ok.
|
2011-05-04 12:05:57 +02:00
|
|
|
header({http_header, _I, 'Host', _R, RawHost}, Req=#http_req{
|
|
|
|
transport=Transport, host=undefined}, State) ->
|
2011-10-04 18:34:14 +02:00
|
|
|
RawHost2 = cowboy_bstr:to_lower(RawHost),
|
2011-05-04 12:05:57 +02:00
|
|
|
case catch cowboy_dispatcher:split_host(RawHost2) of
|
|
|
|
{Host, RawHost3, undefined} ->
|
|
|
|
Port = default_port(Transport:name()),
|
2011-09-14 01:41:03 +02:00
|
|
|
dispatch(fun parse_header/2, Req#http_req{
|
|
|
|
host=Host, raw_host=RawHost3, port=Port,
|
2011-05-04 12:05:57 +02:00
|
|
|
headers=[{'Host', RawHost3}|Req#http_req.headers]}, State);
|
|
|
|
{Host, RawHost3, Port} ->
|
2011-09-14 01:41:03 +02:00
|
|
|
dispatch(fun parse_header/2, Req#http_req{
|
|
|
|
host=Host, raw_host=RawHost3, port=Port,
|
2011-05-04 12:05:57 +02:00
|
|
|
headers=[{'Host', RawHost3}|Req#http_req.headers]}, State);
|
|
|
|
{'EXIT', _Reason} ->
|
|
|
|
error_terminate(400, State)
|
2011-03-17 22:02:47 +01:00
|
|
|
end;
|
2011-03-19 16:49:06 +01:00
|
|
|
%% Ignore Host headers if we already have it.
|
|
|
|
header({http_header, _I, 'Host', _R, _V}, Req, State) ->
|
2011-05-05 14:03:39 +02:00
|
|
|
parse_header(Req, State);
|
2011-10-05 03:17:13 +02:00
|
|
|
header({http_header, _I, 'Connection', _R, Connection},
|
|
|
|
Req=#http_req{headers=Headers}, State) ->
|
|
|
|
Req2 = Req#http_req{headers=[{'Connection', Connection}|Headers]},
|
|
|
|
{tokens, ConnTokens, Req3}
|
|
|
|
= cowboy_http_req:parse_header('Connection', Req2),
|
|
|
|
ConnAtom = cowboy_http:connection_to_atom(ConnTokens),
|
|
|
|
parse_header(Req3#http_req{connection=ConnAtom}, State);
|
2011-03-07 22:59:22 +01:00
|
|
|
header({http_header, _I, Field, _R, Value}, Req, State) ->
|
2011-08-23 16:20:53 +02:00
|
|
|
Field2 = format_header(Field),
|
|
|
|
parse_header(Req#http_req{headers=[{Field2, Value}|Req#http_req.headers]},
|
2011-03-07 22:59:22 +01:00
|
|
|
State);
|
2011-09-14 01:41:03 +02:00
|
|
|
%% The Host header is required in HTTP/1.1.
|
|
|
|
header(http_eoh, #http_req{version={1, 1}, host=undefined}, State) ->
|
2011-03-07 22:59:22 +01:00
|
|
|
error_terminate(400, State);
|
2011-09-14 01:41:03 +02:00
|
|
|
%% It is however optional in HTTP/1.0.
|
|
|
|
header(http_eoh, Req=#http_req{version={1, 0}, transport=Transport,
|
|
|
|
host=undefined}, State=#state{buffer=Buffer}) ->
|
|
|
|
Port = default_port(Transport:name()),
|
|
|
|
dispatch(fun handler_init/2, Req#http_req{host=[], raw_host= <<>>,
|
|
|
|
port=Port, buffer=Buffer}, State#state{buffer= <<>>});
|
2011-05-05 14:03:39 +02:00
|
|
|
header(http_eoh, Req, State=#state{buffer=Buffer}) ->
|
|
|
|
handler_init(Req#http_req{buffer=Buffer}, State#state{buffer= <<>>});
|
|
|
|
header({http_error, _Bin}, _Req, State) ->
|
2011-04-07 00:54:32 +02:00
|
|
|
error_terminate(500, State).
|
2011-03-07 22:59:22 +01:00
|
|
|
|
2011-09-14 01:41:03 +02:00
|
|
|
-spec dispatch(fun((#http_req{}, #state{}) -> ok),
|
|
|
|
#http_req{}, #state{}) -> ok.
|
|
|
|
dispatch(Next, Req=#http_req{host=Host, path=Path},
|
2011-05-04 12:05:57 +02:00
|
|
|
State=#state{dispatch=Dispatch}) ->
|
|
|
|
%% @todo We probably want to filter the Host and Path here to allow
|
|
|
|
%% things like url rewriting.
|
|
|
|
case cowboy_dispatcher:match(Host, Path, Dispatch) of
|
2011-05-09 14:31:06 +02:00
|
|
|
{ok, Handler, Opts, Binds, HostInfo, PathInfo} ->
|
2011-09-14 01:41:03 +02:00
|
|
|
Next(Req#http_req{host_info=HostInfo, path_info=PathInfo,
|
|
|
|
bindings=Binds}, State#state{handler={Handler, Opts}});
|
2011-05-04 12:05:57 +02:00
|
|
|
{error, notfound, host} ->
|
|
|
|
error_terminate(400, State);
|
|
|
|
{error, notfound, path} ->
|
|
|
|
error_terminate(404, State)
|
|
|
|
end.
|
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec handler_init(#http_req{}, #state{}) -> ok.
|
2011-08-10 20:28:30 +02:00
|
|
|
handler_init(Req, State=#state{listener=ListenerPid,
|
2011-03-22 19:50:02 +01:00
|
|
|
transport=Transport, handler={Handler, Opts}}) ->
|
2011-05-20 01:28:55 +02:00
|
|
|
try Handler:init({Transport:name(), http}, Req, Opts) of
|
2011-04-12 16:21:57 +02:00
|
|
|
{ok, Req2, HandlerState} ->
|
|
|
|
handler_loop(HandlerState, Req2, State);
|
2011-03-22 23:03:43 +01:00
|
|
|
%% @todo {upgrade, transport, Module}
|
|
|
|
{upgrade, protocol, Module} ->
|
2011-08-10 20:28:30 +02:00
|
|
|
Module:upgrade(ListenerPid, Handler, Opts, Req)
|
2011-05-20 01:28:55 +02:00
|
|
|
catch Class:Reason ->
|
|
|
|
error_terminate(500, State),
|
|
|
|
error_logger:error_msg(
|
2011-09-28 18:01:35 +02:00
|
|
|
"** Handler ~p terminating in init/3~n"
|
|
|
|
" for the reason ~p:~p~n"
|
|
|
|
"** Options were ~p~n"
|
|
|
|
"** Request was ~p~n** Stacktrace: ~p~n~n",
|
2011-05-20 01:28:55 +02:00
|
|
|
[Handler, Class, Reason, Opts, Req, erlang:get_stacktrace()])
|
2011-03-18 00:15:46 +01:00
|
|
|
end.
|
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec handler_loop(any(), #http_req{}, #state{}) -> ok.
|
2011-05-20 01:28:55 +02:00
|
|
|
handler_loop(HandlerState, Req, State=#state{handler={Handler, Opts}}) ->
|
|
|
|
try Handler:handle(Req#http_req{resp_state=waiting}, HandlerState) of
|
2011-03-18 22:38:26 +01:00
|
|
|
{ok, Req2, HandlerState2} ->
|
2011-07-07 17:23:53 +02:00
|
|
|
next_request(HandlerState2, Req2, State)
|
2011-05-20 01:28:55 +02:00
|
|
|
catch Class:Reason ->
|
|
|
|
error_logger:error_msg(
|
2011-09-28 18:01:35 +02:00
|
|
|
"** Handler ~p terminating in handle/2~n"
|
|
|
|
" for the reason ~p:~p~n"
|
2011-05-20 01:28:55 +02:00
|
|
|
"** Options were ~p~n** Handler state was ~p~n"
|
|
|
|
"** Request was ~p~n** Stacktrace: ~p~n~n",
|
|
|
|
[Handler, Class, Reason, Opts,
|
2011-07-07 17:23:53 +02:00
|
|
|
HandlerState, Req, erlang:get_stacktrace()]),
|
|
|
|
handler_terminate(HandlerState, Req, State),
|
|
|
|
terminate(State)
|
2011-03-18 13:47:37 +01:00
|
|
|
end.
|
|
|
|
|
2011-07-07 17:23:53 +02:00
|
|
|
-spec handler_terminate(any(), #http_req{}, #state{}) -> ok | error.
|
|
|
|
handler_terminate(HandlerState, Req, #state{handler={Handler, Opts}}) ->
|
|
|
|
try
|
2011-07-06 20:00:08 +02:00
|
|
|
Handler:terminate(Req#http_req{resp_state=locked}, HandlerState)
|
2011-05-20 01:28:55 +02:00
|
|
|
catch Class:Reason ->
|
|
|
|
error_logger:error_msg(
|
2011-09-28 18:01:35 +02:00
|
|
|
"** Handler ~p terminating in terminate/2~n"
|
|
|
|
" for the reason ~p:~p~n"
|
2011-05-20 01:28:55 +02:00
|
|
|
"** Options were ~p~n** Handler state was ~p~n"
|
|
|
|
"** Request was ~p~n** Stacktrace: ~p~n~n",
|
|
|
|
[Handler, Class, Reason, Opts,
|
2011-07-06 20:00:08 +02:00
|
|
|
HandlerState, Req, erlang:get_stacktrace()]),
|
|
|
|
error
|
2011-07-07 17:23:53 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
-spec next_request(any(), #http_req{}, #state{}) -> ok.
|
2011-10-04 13:09:57 +02:00
|
|
|
next_request(HandlerState, Req=#http_req{connection=Conn, buffer=Buffer},
|
|
|
|
State) ->
|
2011-07-07 17:23:53 +02:00
|
|
|
HandlerRes = handler_terminate(HandlerState, Req, State),
|
2011-07-06 20:00:08 +02:00
|
|
|
BodyRes = ensure_body_processed(Req),
|
2011-10-04 12:37:19 +02:00
|
|
|
RespRes = ensure_response(Req),
|
2011-10-04 13:09:57 +02:00
|
|
|
case {HandlerRes, BodyRes, RespRes, Conn} of
|
2011-07-06 20:00:08 +02:00
|
|
|
{ok, ok, ok, keepalive} ->
|
2011-09-13 23:41:34 +02:00
|
|
|
?MODULE:parse_request(State#state{
|
|
|
|
buffer=Buffer, req_empty_lines=0});
|
2011-07-06 20:00:08 +02:00
|
|
|
_Closed ->
|
|
|
|
terminate(State)
|
2011-03-17 22:02:47 +01:00
|
|
|
end.
|
2011-03-07 22:59:22 +01:00
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec ensure_body_processed(#http_req{}) -> ok | close.
|
2011-03-21 17:26:00 +01:00
|
|
|
ensure_body_processed(#http_req{body_state=done}) ->
|
|
|
|
ok;
|
|
|
|
ensure_body_processed(Req=#http_req{body_state=waiting}) ->
|
2011-03-21 21:28:24 +01:00
|
|
|
case cowboy_http_req:body(Req) of
|
|
|
|
{error, badarg} -> ok; %% No body.
|
2011-03-21 17:26:00 +01:00
|
|
|
{error, _Reason} -> close;
|
|
|
|
_Any -> ok
|
|
|
|
end.
|
|
|
|
|
2011-10-04 12:37:19 +02:00
|
|
|
-spec ensure_response(#http_req{}) -> ok.
|
2011-03-21 17:51:21 +01:00
|
|
|
%% The handler has already fully replied to the client.
|
2011-10-04 12:37:19 +02:00
|
|
|
ensure_response(#http_req{resp_state=done}) ->
|
2011-03-21 17:51:21 +01:00
|
|
|
ok;
|
2011-03-20 19:38:45 +01:00
|
|
|
%% No response has been sent but everything apparently went fine.
|
|
|
|
%% Reply with 204 No Content to indicate this.
|
2011-10-04 12:37:19 +02:00
|
|
|
ensure_response(Req=#http_req{resp_state=waiting}) ->
|
|
|
|
_ = cowboy_http_req:reply(204, [], [], Req),
|
|
|
|
ok;
|
2011-05-08 17:26:21 +02:00
|
|
|
%% Close the chunked reply.
|
2011-10-05 17:55:25 +02:00
|
|
|
ensure_response(#http_req{method='HEAD', resp_state=chunks}) ->
|
|
|
|
close;
|
2011-05-08 17:26:21 +02:00
|
|
|
ensure_response(#http_req{socket=Socket, transport=Transport,
|
2011-10-04 12:37:19 +02:00
|
|
|
resp_state=chunks}) ->
|
2011-05-08 17:26:21 +02:00
|
|
|
Transport:send(Socket, <<"0\r\n\r\n">>),
|
|
|
|
close.
|
2011-03-07 22:59:22 +01:00
|
|
|
|
2011-10-04 12:37:19 +02:00
|
|
|
-spec error_terminate(http_status(), #state{}) -> ok.
|
|
|
|
error_terminate(Code, State=#state{socket=Socket, transport=Transport}) ->
|
2011-03-22 12:27:34 +01:00
|
|
|
_ = cowboy_http_req:reply(Code, [], [], #http_req{
|
2011-03-20 19:29:32 +01:00
|
|
|
socket=Socket, transport=Transport,
|
2011-10-04 12:37:19 +02:00
|
|
|
connection=close, resp_state=waiting}),
|
2011-03-20 19:38:45 +01:00
|
|
|
terminate(State).
|
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec terminate(#state{}) -> ok.
|
2011-03-07 22:59:22 +01:00
|
|
|
terminate(#state{socket=Socket, transport=Transport}) ->
|
|
|
|
Transport:close(Socket),
|
|
|
|
ok.
|
|
|
|
|
|
|
|
%% Internal.
|
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec version_to_connection(http_version()) -> keepalive | close.
|
2011-03-20 00:09:15 +01:00
|
|
|
version_to_connection({1, 1}) -> keepalive;
|
|
|
|
version_to_connection(_Any) -> close.
|
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec default_port(atom()) -> 80 | 443.
|
2011-05-04 12:05:57 +02:00
|
|
|
default_port(ssl) -> 443;
|
|
|
|
default_port(_) -> 80.
|
|
|
|
|
2011-08-23 16:20:53 +02:00
|
|
|
%% @todo While 32 should be enough for everybody, we should probably make
|
|
|
|
%% this configurable or something.
|
|
|
|
-spec format_header(atom()) -> atom(); (binary()) -> binary().
|
|
|
|
format_header(Field) when is_atom(Field) ->
|
|
|
|
Field;
|
|
|
|
format_header(Field) when byte_size(Field) =< 20; byte_size(Field) > 32 ->
|
|
|
|
Field;
|
|
|
|
format_header(Field) ->
|
|
|
|
format_header(Field, true, <<>>).
|
|
|
|
|
|
|
|
-spec format_header(binary(), boolean(), binary()) -> binary().
|
|
|
|
format_header(<<>>, _Any, Acc) ->
|
|
|
|
Acc;
|
|
|
|
%% Replicate a bug in OTP for compatibility reasons when there's a - right
|
|
|
|
%% after another. Proper use should always be 'true' instead of 'not Bool'.
|
|
|
|
format_header(<< $-, Rest/bits >>, Bool, Acc) ->
|
|
|
|
format_header(Rest, not Bool, << Acc/binary, $- >>);
|
|
|
|
format_header(<< C, Rest/bits >>, true, Acc) ->
|
2011-10-04 18:34:14 +02:00
|
|
|
format_header(Rest, false, << Acc/binary, (cowboy_bstr:char_to_upper(C)) >>);
|
2011-08-23 16:20:53 +02:00
|
|
|
format_header(<< C, Rest/bits >>, false, Acc) ->
|
2011-10-04 18:34:14 +02:00
|
|
|
format_header(Rest, false, << Acc/binary, (cowboy_bstr:char_to_lower(C)) >>).
|
2011-08-23 16:20:53 +02:00
|
|
|
|
|
|
|
%% Tests.
|
|
|
|
|
|
|
|
-ifdef(TEST).
|
|
|
|
|
|
|
|
format_header_test_() ->
|
|
|
|
%% {Header, Result}
|
|
|
|
Tests = [
|
|
|
|
{<<"Sec-Websocket-Version">>, <<"Sec-Websocket-Version">>},
|
|
|
|
{<<"Sec-WebSocket-Version">>, <<"Sec-Websocket-Version">>},
|
|
|
|
{<<"sec-websocket-version">>, <<"Sec-Websocket-Version">>},
|
|
|
|
{<<"SEC-WEBSOCKET-VERSION">>, <<"Sec-Websocket-Version">>},
|
|
|
|
%% These last tests ensures we're formatting headers exactly like OTP.
|
|
|
|
%% Even though it's dumb, it's better for compatibility reasons.
|
|
|
|
{<<"Sec-WebSocket--Version">>, <<"Sec-Websocket--version">>},
|
|
|
|
{<<"Sec-WebSocket---Version">>, <<"Sec-Websocket---Version">>}
|
|
|
|
],
|
|
|
|
[{H, fun() -> R = format_header(H) end} || {H, R} <- Tests].
|
|
|
|
|
|
|
|
-endif.
|