2012-05-23 14:53:48 +02:00
|
|
|
%% Copyright (c) 2011-2012, Loïc Hoguin <essen@ninenines.eu>
|
2011-03-29 13:49:48 +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 request manipulation API.
|
|
|
|
%%
|
2012-09-16 03:51:07 +02:00
|
|
|
%% The functions in this module try to follow this pattern for their
|
|
|
|
%% return types:
|
|
|
|
%% <dl>
|
|
|
|
%% <dt>access:</dt>
|
|
|
|
%% <dd><em>{Value, Req}</em></dd>
|
|
|
|
%% <dt>action:</dt>
|
|
|
|
%% <dd><em>{Result, Req} | {Result, Value, Req} | {error, atom()}</em></dd>
|
|
|
|
%% <dt>modification:</dt>
|
|
|
|
%% <dd><em>Req</em></dd>
|
|
|
|
%% <dt>question (<em>has_*</em> or <em>is_*</em>):</dt>
|
|
|
|
%% <dd><em>boolean()</em></dd>
|
|
|
|
%% </dl>
|
|
|
|
%%
|
|
|
|
%% Exceptions include <em>chunk/2</em> which always returns <em>'ok'</em>,
|
|
|
|
%% <em>to_list/1</em> which returns a list of key/values,
|
|
|
|
%% and <em>transport/1</em> which returns <em>{ok, Transport, Socket}</em>.
|
|
|
|
%%
|
|
|
|
%% Also note that all body reading functions perform actions, as Cowboy
|
|
|
|
%% doesn't read the request body until they are called.
|
|
|
|
%%
|
|
|
|
%% Whenever <em>Req</em> is returned, it should always be kept in place of
|
|
|
|
%% the one given as argument in your function call, because it keeps
|
|
|
|
%% track of the request and response state. Doing so allows Cowboy to do
|
|
|
|
%% some lazy evaluation and cache results when possible.
|
2012-08-27 13:28:57 +02:00
|
|
|
-module(cowboy_req).
|
2011-03-18 22:38:26 +01:00
|
|
|
|
2012-08-27 12:16:07 +02:00
|
|
|
%% Request API.
|
2012-09-16 15:51:15 +02:00
|
|
|
-export([new/9]).
|
2012-08-27 12:16:07 +02:00
|
|
|
-export([method/1]).
|
|
|
|
-export([version/1]).
|
|
|
|
-export([peer/1]).
|
|
|
|
-export([peer_addr/1]).
|
|
|
|
-export([host/1]).
|
|
|
|
-export([host_info/1]).
|
|
|
|
-export([port/1]).
|
|
|
|
-export([path/1]).
|
|
|
|
-export([path_info/1]).
|
|
|
|
-export([qs_val/2]).
|
|
|
|
-export([qs_val/3]).
|
|
|
|
-export([qs_vals/1]).
|
|
|
|
-export([raw_qs/1]).
|
2012-09-16 01:13:44 +02:00
|
|
|
-export([host_url/1]).
|
2012-09-15 22:03:00 +02:00
|
|
|
-export([url/1]).
|
2012-08-27 12:16:07 +02:00
|
|
|
-export([binding/2]).
|
|
|
|
-export([binding/3]).
|
|
|
|
-export([bindings/1]).
|
|
|
|
-export([header/2]).
|
|
|
|
-export([header/3]).
|
|
|
|
-export([headers/1]).
|
|
|
|
-export([parse_header/2]).
|
|
|
|
-export([parse_header/3]).
|
|
|
|
-export([cookie/2]).
|
|
|
|
-export([cookie/3]).
|
|
|
|
-export([cookies/1]).
|
|
|
|
-export([meta/2]).
|
|
|
|
-export([meta/3]).
|
2012-09-15 22:51:37 +02:00
|
|
|
-export([set_meta/3]).
|
2012-08-27 12:16:07 +02:00
|
|
|
|
|
|
|
%% Request body API.
|
|
|
|
-export([has_body/1]).
|
|
|
|
-export([body_length/1]).
|
|
|
|
-export([init_stream/4]).
|
|
|
|
-export([stream_body/1]).
|
|
|
|
-export([skip_body/1]).
|
|
|
|
-export([body/1]).
|
|
|
|
-export([body/2]).
|
|
|
|
-export([body_qs/1]).
|
|
|
|
-export([multipart_data/1]).
|
|
|
|
-export([multipart_skip/1]).
|
|
|
|
|
|
|
|
%% Response API.
|
|
|
|
-export([set_resp_cookie/4]).
|
|
|
|
-export([set_resp_header/3]).
|
|
|
|
-export([set_resp_body/2]).
|
|
|
|
-export([set_resp_body_fun/3]).
|
|
|
|
-export([has_resp_header/2]).
|
|
|
|
-export([has_resp_body/1]).
|
2012-09-16 01:55:40 +02:00
|
|
|
-export([delete_resp_header/2]).
|
2012-08-27 12:16:07 +02:00
|
|
|
-export([reply/2]).
|
|
|
|
-export([reply/3]).
|
|
|
|
-export([reply/4]).
|
|
|
|
-export([chunked_reply/2]).
|
|
|
|
-export([chunked_reply/3]).
|
|
|
|
-export([chunk/2]).
|
|
|
|
-export([upgrade_reply/3]).
|
2012-09-15 22:19:39 +02:00
|
|
|
-export([ensure_response/2]).
|
2012-08-27 12:16:07 +02:00
|
|
|
|
2012-09-16 16:04:16 +02:00
|
|
|
%% Private setter/getter API.
|
|
|
|
-export([set_host/4]).
|
2012-09-16 23:54:29 +02:00
|
|
|
-export([set_connection/2]).
|
2012-09-17 00:21:33 +02:00
|
|
|
-export([add_header/3]).
|
2012-09-17 00:30:54 +02:00
|
|
|
-export([set_buffer/2]).
|
2012-09-17 00:39:29 +02:00
|
|
|
-export([set_bindings/4]).
|
2012-09-17 00:48:11 +02:00
|
|
|
-export([get_resp_state/1]).
|
2012-09-16 16:04:16 +02:00
|
|
|
|
2012-08-27 12:16:07 +02:00
|
|
|
%% Misc API.
|
|
|
|
-export([compact/1]).
|
2012-09-16 13:57:27 +02:00
|
|
|
-export([lock/1]).
|
2012-09-15 20:33:57 +02:00
|
|
|
-export([to_list/1]).
|
2012-08-27 12:16:07 +02:00
|
|
|
-export([transport/1]).
|
2011-06-01 12:49:03 +02:00
|
|
|
|
2012-02-27 08:07:03 +01:00
|
|
|
-include("http.hrl").
|
2012-09-15 22:03:00 +02:00
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
2011-03-07 22:59:22 +01:00
|
|
|
|
2012-08-27 14:27:41 +02:00
|
|
|
-type req() :: #http_req{}.
|
|
|
|
-export_type([req/0]).
|
|
|
|
|
2011-03-18 22:38:26 +01:00
|
|
|
%% Request API.
|
2011-03-07 22:59:22 +01:00
|
|
|
|
2012-09-16 15:51:15 +02:00
|
|
|
%% @doc Create a new HTTP Req object.
|
|
|
|
%%
|
|
|
|
%% This function takes care of setting the owner's pid to self().
|
|
|
|
%% @private
|
|
|
|
-spec new(inet:socket(), module(), keepalive | close,
|
|
|
|
cowboy_http:method(), cowboy_http:version(), binary(), binary(),
|
|
|
|
undefined | fun(), undefined | {fun(), atom()})
|
|
|
|
-> req().
|
|
|
|
new(Socket, Transport, Connection, Method, Version, Path, Qs,
|
|
|
|
OnResponse, URLDecode) ->
|
|
|
|
#http_req{socket=Socket, transport=Transport, connection=Connection,
|
|
|
|
pid=self(), method=Method, version=Version, path=Path, raw_qs=Qs,
|
|
|
|
onresponse=OnResponse, urldecode=URLDecode}.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the HTTP method of the request.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec method(Req) -> {cowboy_http:method(), Req} when Req::req().
|
2011-03-07 22:59:22 +01:00
|
|
|
method(Req) ->
|
|
|
|
{Req#http_req.method, Req}.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the HTTP version used for the request.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec version(Req) -> {cowboy_http:version(), Req} when Req::req().
|
2011-03-07 22:59:22 +01:00
|
|
|
version(Req) ->
|
|
|
|
{Req#http_req.version, Req}.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the peer address and port number of the remote host.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec peer(Req)
|
|
|
|
-> {{inet:ip_address(), inet:port_number()}, Req} when Req::req().
|
2011-03-20 16:09:05 +01:00
|
|
|
peer(Req=#http_req{socket=Socket, transport=Transport, peer=undefined}) ->
|
|
|
|
{ok, Peer} = Transport:peername(Socket),
|
|
|
|
{Peer, Req#http_req{peer=Peer}};
|
2011-03-07 22:59:22 +01:00
|
|
|
peer(Req) ->
|
|
|
|
{Req#http_req.peer, Req}.
|
|
|
|
|
2011-12-08 18:57:19 +01:00
|
|
|
%% @doc Returns the peer address calculated from headers.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec peer_addr(Req) -> {inet:ip_address(), Req} when Req::req().
|
2011-12-08 17:58:16 +03:00
|
|
|
peer_addr(Req = #http_req{}) ->
|
2011-12-08 18:57:19 +01:00
|
|
|
{RealIp, Req1} = header(<<"X-Real-Ip">>, Req),
|
|
|
|
{ForwardedForRaw, Req2} = header(<<"X-Forwarded-For">>, Req1),
|
|
|
|
{{PeerIp, _PeerPort}, Req3} = peer(Req2),
|
|
|
|
ForwardedFor = case ForwardedForRaw of
|
|
|
|
undefined ->
|
|
|
|
undefined;
|
|
|
|
ForwardedForRaw ->
|
|
|
|
case re:run(ForwardedForRaw, "^(?<first_ip>[^\\,]+)",
|
|
|
|
[{capture, [first_ip], binary}]) of
|
|
|
|
{match, [FirstIp]} -> FirstIp;
|
|
|
|
_Any -> undefined
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
{ok, PeerAddr} = if
|
2012-01-04 15:13:14 -08:00
|
|
|
is_binary(RealIp) -> inet_parse:address(binary_to_list(RealIp));
|
|
|
|
is_binary(ForwardedFor) -> inet_parse:address(binary_to_list(ForwardedFor));
|
2011-12-08 18:57:19 +01:00
|
|
|
true -> {ok, PeerIp}
|
|
|
|
end,
|
|
|
|
{PeerAddr, Req3}.
|
2011-12-08 17:58:16 +03:00
|
|
|
|
2012-08-30 23:11:24 +02:00
|
|
|
%% @doc Return the host binary string.
|
|
|
|
-spec host(Req) -> {binary(), Req} when Req::req().
|
2011-03-07 22:59:22 +01:00
|
|
|
host(Req) ->
|
|
|
|
{Req#http_req.host, Req}.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the extra host information obtained from partially matching
|
|
|
|
%% the hostname using <em>'...'</em>.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec host_info(Req)
|
|
|
|
-> {cowboy_dispatcher:tokens() | undefined, Req} when Req::req().
|
2011-05-09 14:31:06 +02:00
|
|
|
host_info(Req) ->
|
|
|
|
{Req#http_req.host_info, Req}.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the port used for this request.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec port(Req) -> {inet:port_number(), Req} when Req::req().
|
2011-05-04 12:05:57 +02:00
|
|
|
port(Req) ->
|
|
|
|
{Req#http_req.port, Req}.
|
|
|
|
|
2012-09-10 12:25:07 +02:00
|
|
|
%% @doc Return the path binary string.
|
|
|
|
-spec path(Req) -> {binary(), Req} when Req::req().
|
2011-03-07 22:59:22 +01:00
|
|
|
path(Req) ->
|
|
|
|
{Req#http_req.path, Req}.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the extra path information obtained from partially matching
|
|
|
|
%% the patch using <em>'...'</em>.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec path_info(Req)
|
|
|
|
-> {cowboy_dispatcher:tokens() | undefined, Req} when Req::req().
|
2011-05-09 14:31:06 +02:00
|
|
|
path_info(Req) ->
|
|
|
|
{Req#http_req.path_info, Req}.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @equiv qs_val(Name, Req, undefined)
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec qs_val(binary(), Req)
|
|
|
|
-> {binary() | true | undefined, Req} when Req::req().
|
2011-07-18 14:21:45 +02:00
|
|
|
qs_val(Name, Req) when is_binary(Name) ->
|
2011-03-29 13:57:21 +02:00
|
|
|
qs_val(Name, Req, undefined).
|
2011-03-07 22:59:22 +01:00
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the query string value for the given key, or a default if
|
|
|
|
%% missing.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec qs_val(binary(), Req, Default)
|
|
|
|
-> {binary() | true | Default, Req} when Req::req(), Default::any().
|
2011-12-05 01:08:38 +01:00
|
|
|
qs_val(Name, Req=#http_req{raw_qs=RawQs, qs_vals=undefined,
|
|
|
|
urldecode={URLDecFun, URLDecArg}}, Default) when is_binary(Name) ->
|
2012-02-23 20:56:11 +01:00
|
|
|
QsVals = cowboy_http:x_www_form_urlencoded(
|
|
|
|
RawQs, fun(Bin) -> URLDecFun(Bin, URLDecArg) end),
|
2011-03-29 13:57:21 +02:00
|
|
|
qs_val(Name, Req#http_req{qs_vals=QsVals}, Default);
|
|
|
|
qs_val(Name, Req, Default) ->
|
2011-03-29 13:49:48 +02:00
|
|
|
case lists:keyfind(Name, 1, Req#http_req.qs_vals) of
|
|
|
|
{Name, Value} -> {Value, Req};
|
|
|
|
false -> {Default, Req}
|
|
|
|
end.
|
2011-03-07 22:59:22 +01:00
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the full list of query string values.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec qs_vals(Req) -> {list({binary(), binary() | true}), Req} when Req::req().
|
2011-12-05 01:08:38 +01:00
|
|
|
qs_vals(Req=#http_req{raw_qs=RawQs, qs_vals=undefined,
|
|
|
|
urldecode={URLDecFun, URLDecArg}}) ->
|
2012-02-23 20:56:11 +01:00
|
|
|
QsVals = cowboy_http:x_www_form_urlencoded(
|
|
|
|
RawQs, fun(Bin) -> URLDecFun(Bin, URLDecArg) end),
|
2011-03-07 22:59:22 +01:00
|
|
|
qs_vals(Req#http_req{qs_vals=QsVals});
|
|
|
|
qs_vals(Req=#http_req{qs_vals=QsVals}) ->
|
|
|
|
{QsVals, Req}.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the raw query string directly taken from the request.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec raw_qs(Req) -> {binary(), Req} when Req::req().
|
2011-03-07 22:59:22 +01:00
|
|
|
raw_qs(Req) ->
|
|
|
|
{Req#http_req.raw_qs, Req}.
|
|
|
|
|
2012-09-16 01:13:44 +02:00
|
|
|
%% @doc Return the request URL as a binary without the path and query string.
|
2012-09-15 22:03:00 +02:00
|
|
|
%%
|
2012-09-16 01:13:44 +02:00
|
|
|
%% The URL includes the scheme, host and port only.
|
|
|
|
%% @see cowboy_req:url/1
|
|
|
|
-spec host_url(Req) -> {binary(), Req} when Req::req().
|
|
|
|
host_url(Req=#http_req{transport=Transport, host=Host, port=Port}) ->
|
2012-09-15 22:03:00 +02:00
|
|
|
TransportName = Transport:name(),
|
|
|
|
Secure = case TransportName of
|
|
|
|
ssl -> <<"s">>;
|
|
|
|
_ -> <<>>
|
|
|
|
end,
|
|
|
|
PortBin = case {TransportName, Port} of
|
|
|
|
{ssl, 443} -> <<>>;
|
|
|
|
{tcp, 80} -> <<>>;
|
|
|
|
_ -> << ":", (list_to_binary(integer_to_list(Port)))/binary >>
|
|
|
|
end,
|
2012-09-16 01:13:44 +02:00
|
|
|
{<< "http", Secure/binary, "://", Host/binary, PortBin/binary >>, Req}.
|
|
|
|
|
|
|
|
%% @doc Return the full request URL as a binary.
|
|
|
|
%%
|
|
|
|
%% The URL includes the scheme, host, port, path and query string.
|
|
|
|
-spec url(Req) -> {binary(), Req} when Req::req().
|
|
|
|
url(Req=#http_req{path=Path, raw_qs=QS}) ->
|
|
|
|
{HostURL, Req2} = host_url(Req),
|
2012-09-15 22:03:00 +02:00
|
|
|
QS2 = case QS of
|
|
|
|
<<>> -> <<>>;
|
|
|
|
_ -> << "?", QS/binary >>
|
|
|
|
end,
|
2012-09-16 01:13:44 +02:00
|
|
|
{<< HostURL/binary, Path/binary, QS2/binary >>, Req2}.
|
2012-09-15 22:03:00 +02:00
|
|
|
|
2011-06-30 01:11:11 +02:00
|
|
|
%% @equiv binding(Name, Req, undefined)
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec binding(atom(), Req) -> {binary() | undefined, Req} when Req::req().
|
2011-07-18 14:21:45 +02:00
|
|
|
binding(Name, Req) when is_atom(Name) ->
|
2011-03-29 13:57:21 +02:00
|
|
|
binding(Name, Req, undefined).
|
2011-03-29 13:49:48 +02:00
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the binding value for the given key obtained when matching
|
|
|
|
%% the host and path against the dispatch list, or a default if missing.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec binding(atom(), Req, Default)
|
|
|
|
-> {binary() | Default, Req} when Req::req(), Default::any().
|
2011-07-18 14:21:45 +02:00
|
|
|
binding(Name, Req, Default) when is_atom(Name) ->
|
2011-03-27 13:11:57 +02:00
|
|
|
case lists:keyfind(Name, 1, Req#http_req.bindings) of
|
|
|
|
{Name, Value} -> {Value, Req};
|
2011-03-29 13:49:48 +02:00
|
|
|
false -> {Default, Req}
|
2011-03-27 13:11:57 +02:00
|
|
|
end.
|
2011-03-07 22:59:22 +01:00
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the full list of binding values.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec bindings(Req) -> {list({atom(), binary()}), Req} when Req::req().
|
2011-03-07 22:59:22 +01:00
|
|
|
bindings(Req) ->
|
|
|
|
{Req#http_req.bindings, Req}.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @equiv header(Name, Req, undefined)
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec header(atom() | binary(), Req)
|
|
|
|
-> {binary() | undefined, Req} when Req::req().
|
2011-07-18 14:21:45 +02:00
|
|
|
header(Name, Req) when is_atom(Name) orelse is_binary(Name) ->
|
2011-03-29 13:57:21 +02:00
|
|
|
header(Name, Req, undefined).
|
2011-03-29 13:49:48 +02:00
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the header value for the given key, or a default if missing.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec header(atom() | binary(), Req, Default)
|
|
|
|
-> {binary() | Default, Req} when Req::req(), Default::any().
|
2011-07-18 14:21:45 +02:00
|
|
|
header(Name, Req, Default) when is_atom(Name) orelse is_binary(Name) ->
|
2011-03-21 17:26:00 +01:00
|
|
|
case lists:keyfind(Name, 1, Req#http_req.headers) of
|
|
|
|
{Name, Value} -> {Value, Req};
|
2011-03-29 13:49:48 +02:00
|
|
|
false -> {Default, Req}
|
2011-03-21 17:26:00 +01:00
|
|
|
end.
|
2011-03-07 22:59:22 +01:00
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the full list of headers.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec headers(Req) -> {cowboy_http:headers(), Req} when Req::req().
|
2011-03-07 22:59:22 +01:00
|
|
|
headers(Req) ->
|
|
|
|
{Req#http_req.headers, Req}.
|
|
|
|
|
2011-10-05 03:17:13 +02:00
|
|
|
%% @doc Semantically parse headers.
|
|
|
|
%%
|
|
|
|
%% When the value isn't found, a proper default value for the type
|
|
|
|
%% returned is used as a return value.
|
|
|
|
%% @see parse_header/3
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec parse_header(cowboy_http:header(), Req)
|
2012-09-16 03:51:07 +02:00
|
|
|
-> {ok, any(), Req} | {undefined, binary(), Req}
|
2012-08-27 14:27:41 +02:00
|
|
|
| {error, badarg} when Req::req().
|
2011-10-26 04:07:08 +02:00
|
|
|
parse_header(Name, Req=#http_req{p_headers=PHeaders}) ->
|
|
|
|
case lists:keyfind(Name, 1, PHeaders) of
|
|
|
|
false -> parse_header(Name, Req, parse_header_default(Name));
|
2012-09-16 03:51:07 +02:00
|
|
|
{Name, Value} -> {ok, Value, Req}
|
2011-10-26 04:07:08 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
%% @doc Default values for semantic header parsing.
|
2012-01-23 09:36:59 +01:00
|
|
|
-spec parse_header_default(cowboy_http:header()) -> any().
|
2011-10-26 04:07:08 +02:00
|
|
|
parse_header_default('Connection') -> [];
|
2012-03-29 01:14:44 +02:00
|
|
|
parse_header_default('Transfer-Encoding') -> [<<"identity">>];
|
2011-10-26 04:07:08 +02:00
|
|
|
parse_header_default(_Name) -> undefined.
|
2011-10-05 03:17:13 +02:00
|
|
|
|
|
|
|
%% @doc Semantically parse headers.
|
|
|
|
%%
|
2011-10-26 04:07:08 +02:00
|
|
|
%% When the header is unknown, the value is returned directly without parsing.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec parse_header(cowboy_http:header(), Req, any())
|
2012-09-16 03:51:07 +02:00
|
|
|
-> {ok, any(), Req} | {undefined, binary(), Req}
|
2012-08-27 14:27:41 +02:00
|
|
|
| {error, badarg} when Req::req().
|
2011-10-26 04:07:08 +02:00
|
|
|
parse_header(Name, Req, Default) when Name =:= 'Accept' ->
|
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
|
|
|
cowboy_http:list(Value, fun cowboy_http:media_range/2)
|
|
|
|
end);
|
2011-10-26 20:54:21 +02:00
|
|
|
parse_header(Name, Req, Default) when Name =:= 'Accept-Charset' ->
|
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
2011-11-04 10:38:04 +01:00
|
|
|
cowboy_http:nonempty_list(Value, fun cowboy_http:conneg/2)
|
2011-10-26 20:54:21 +02:00
|
|
|
end);
|
2011-10-26 19:23:06 +02:00
|
|
|
parse_header(Name, Req, Default) when Name =:= 'Accept-Encoding' ->
|
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
2011-11-04 10:38:04 +01:00
|
|
|
cowboy_http:list(Value, fun cowboy_http:conneg/2)
|
2011-10-26 19:23:06 +02:00
|
|
|
end);
|
2011-11-07 00:53:19 +01:00
|
|
|
parse_header(Name, Req, Default) when Name =:= 'Accept-Language' ->
|
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
|
|
|
cowboy_http:nonempty_list(Value, fun cowboy_http:language_range/2)
|
|
|
|
end);
|
2011-10-26 04:07:08 +02:00
|
|
|
parse_header(Name, Req, Default) when Name =:= 'Connection' ->
|
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
|
|
|
cowboy_http:nonempty_list(Value, fun cowboy_http:token_ci/2)
|
|
|
|
end);
|
2011-11-04 11:42:36 +01:00
|
|
|
parse_header(Name, Req, Default) when Name =:= 'Content-Length' ->
|
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
|
|
|
cowboy_http:digits(Value)
|
|
|
|
end);
|
2011-11-04 15:55:55 +01:00
|
|
|
parse_header(Name, Req, Default) when Name =:= 'Content-Type' ->
|
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
|
|
|
cowboy_http:content_type(Value)
|
|
|
|
end);
|
2012-07-21 19:43:23 +02:00
|
|
|
parse_header(Name, Req, Default) when Name =:= <<"Expect">> ->
|
2012-02-20 08:25:05 +01:00
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
|
|
|
cowboy_http:nonempty_list(Value, fun cowboy_http:expectation/2)
|
|
|
|
end);
|
2011-11-09 21:41:33 +01:00
|
|
|
parse_header(Name, Req, Default)
|
|
|
|
when Name =:= 'If-Match'; Name =:= 'If-None-Match' ->
|
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
|
|
|
cowboy_http:entity_tag_match(Value)
|
|
|
|
end);
|
2011-11-05 01:49:03 +01:00
|
|
|
parse_header(Name, Req, Default)
|
|
|
|
when Name =:= 'If-Modified-Since'; Name =:= 'If-Unmodified-Since' ->
|
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
|
|
|
cowboy_http:http_date(Value)
|
|
|
|
end);
|
2012-03-29 01:14:44 +02:00
|
|
|
%% @todo Extension parameters.
|
|
|
|
parse_header(Name, Req, Default) when Name =:= 'Transfer-Encoding' ->
|
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
|
|
|
cowboy_http:nonempty_list(Value, fun cowboy_http:token_ci/2)
|
|
|
|
end);
|
2011-12-22 22:09:08 +01:00
|
|
|
parse_header(Name, Req, Default) when Name =:= 'Upgrade' ->
|
|
|
|
parse_header(Name, Req, Default,
|
|
|
|
fun (Value) ->
|
|
|
|
cowboy_http:nonempty_list(Value, fun cowboy_http:token_ci/2)
|
|
|
|
end);
|
2011-10-26 04:07:08 +02:00
|
|
|
parse_header(Name, Req, Default) ->
|
|
|
|
{Value, Req2} = header(Name, Req, Default),
|
|
|
|
{undefined, Value, Req2}.
|
|
|
|
|
|
|
|
parse_header(Name, Req=#http_req{p_headers=PHeaders}, Default, Fun) ->
|
2011-10-05 03:17:13 +02:00
|
|
|
case header(Name, Req) of
|
2011-10-26 04:07:08 +02:00
|
|
|
{undefined, Req2} ->
|
2012-09-16 03:51:07 +02:00
|
|
|
{ok, Default, Req2#http_req{p_headers=[{Name, Default}|PHeaders]}};
|
2011-10-05 03:17:13 +02:00
|
|
|
{Value, Req2} ->
|
2011-10-26 04:07:08 +02:00
|
|
|
case Fun(Value) of
|
2011-10-05 03:17:13 +02:00
|
|
|
{error, badarg} ->
|
|
|
|
{error, badarg};
|
|
|
|
P ->
|
2012-09-16 03:51:07 +02:00
|
|
|
{ok, P, Req2#http_req{p_headers=[{Name, P}|PHeaders]}}
|
2011-10-05 03:17:13 +02:00
|
|
|
end
|
2011-10-26 04:07:08 +02:00
|
|
|
end.
|
2011-10-05 03:17:13 +02:00
|
|
|
|
2011-07-08 13:41:30 -05:00
|
|
|
%% @equiv cookie(Name, Req, undefined)
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec cookie(binary(), Req)
|
|
|
|
-> {binary() | true | undefined, Req} when Req::req().
|
2011-07-18 15:50:29 -05:00
|
|
|
cookie(Name, Req) when is_binary(Name) ->
|
2011-07-08 13:41:30 -05:00
|
|
|
cookie(Name, Req, undefined).
|
|
|
|
|
|
|
|
%% @doc Return the cookie value for the given key, or a default if
|
|
|
|
%% missing.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec cookie(binary(), Req, Default)
|
|
|
|
-> {binary() | true | Default, Req} when Req::req(), Default::any().
|
2011-07-18 15:50:29 -05:00
|
|
|
cookie(Name, Req=#http_req{cookies=undefined}, Default) when is_binary(Name) ->
|
2011-07-08 13:41:30 -05:00
|
|
|
case header('Cookie', Req) of
|
|
|
|
{undefined, Req2} ->
|
|
|
|
{Default, Req2#http_req{cookies=[]}};
|
|
|
|
{RawCookie, Req2} ->
|
|
|
|
Cookies = cowboy_cookies:parse_cookie(RawCookie),
|
|
|
|
cookie(Name, Req2#http_req{cookies=Cookies}, Default)
|
|
|
|
end;
|
|
|
|
cookie(Name, Req, Default) ->
|
|
|
|
case lists:keyfind(Name, 1, Req#http_req.cookies) of
|
|
|
|
{Name, Value} -> {Value, Req};
|
|
|
|
false -> {Default, Req}
|
|
|
|
end.
|
|
|
|
|
|
|
|
%% @doc Return the full list of cookie values.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec cookies(Req) -> {list({binary(), binary() | true}), Req} when Req::req().
|
2011-07-08 13:41:30 -05:00
|
|
|
cookies(Req=#http_req{cookies=undefined}) ->
|
|
|
|
case header('Cookie', Req) of
|
|
|
|
{undefined, Req2} ->
|
|
|
|
{[], Req2#http_req{cookies=[]}};
|
|
|
|
{RawCookie, Req2} ->
|
|
|
|
Cookies = cowboy_cookies:parse_cookie(RawCookie),
|
|
|
|
cookies(Req2#http_req{cookies=Cookies})
|
|
|
|
end;
|
|
|
|
cookies(Req=#http_req{cookies=Cookies}) ->
|
|
|
|
{Cookies, Req}.
|
|
|
|
|
2011-12-19 09:44:24 +01:00
|
|
|
%% @equiv meta(Name, Req, undefined)
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec meta(atom(), Req) -> {any() | undefined, Req} when Req::req().
|
2011-12-19 09:44:24 +01:00
|
|
|
meta(Name, Req) ->
|
|
|
|
meta(Name, Req, undefined).
|
|
|
|
|
|
|
|
%% @doc Return metadata information about the request.
|
|
|
|
%%
|
|
|
|
%% Metadata information varies from one protocol to another. Websockets
|
|
|
|
%% would define the protocol version here, while REST would use it to
|
|
|
|
%% indicate which media type, language and charset were retained.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec meta(atom(), Req, any()) -> {any(), Req} when Req::req().
|
2011-12-19 09:44:24 +01:00
|
|
|
meta(Name, Req, Default) ->
|
|
|
|
case lists:keyfind(Name, 1, Req#http_req.meta) of
|
|
|
|
{Name, Value} -> {Value, Req};
|
|
|
|
false -> {Default, Req}
|
|
|
|
end.
|
|
|
|
|
2012-09-15 22:51:37 +02:00
|
|
|
%% @doc Set metadata information.
|
|
|
|
%%
|
|
|
|
%% You can use this function to attach information about the request.
|
|
|
|
%%
|
|
|
|
%% If the value already exists it will be overwritten.
|
|
|
|
-spec set_meta(atom(), any(), Req) -> Req when Req::req().
|
|
|
|
set_meta(Name, Value, Req=#http_req{meta=Meta}) ->
|
|
|
|
Req#http_req{meta=[{Name, Value}|lists:keydelete(Name, 1, Meta)]}.
|
|
|
|
|
2011-03-21 17:26:00 +01:00
|
|
|
%% Request Body API.
|
|
|
|
|
2012-03-29 01:14:44 +02:00
|
|
|
%% @doc Return whether the request message has a body.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec has_body(Req) -> {boolean(), Req} when Req::req().
|
2012-03-29 01:14:44 +02:00
|
|
|
has_body(Req) ->
|
|
|
|
Has = lists:keymember('Content-Length', 1, Req#http_req.headers) orelse
|
|
|
|
lists:keymember('Transfer-Encoding', 1, Req#http_req.headers),
|
|
|
|
{Has, Req}.
|
|
|
|
|
|
|
|
%% @doc Return the request message body length, if known.
|
|
|
|
%%
|
|
|
|
%% The length may not be known if Transfer-Encoding is not identity,
|
|
|
|
%% and the body hasn't been read at the time of the call.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec body_length(Req) -> {undefined | non_neg_integer(), Req} when Req::req().
|
2012-03-29 01:14:44 +02:00
|
|
|
body_length(Req) ->
|
|
|
|
case lists:keymember('Transfer-Encoding', 1, Req#http_req.headers) of
|
2012-09-16 03:51:07 +02:00
|
|
|
true ->
|
|
|
|
{undefined, Req};
|
|
|
|
false ->
|
|
|
|
{ok, Length, Req2} = parse_header('Content-Length', Req, 0),
|
|
|
|
{Length, Req2}
|
2012-03-29 01:14:44 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
%% @doc Initialize body streaming and set custom decoding functions.
|
|
|
|
%%
|
|
|
|
%% Calling this function is optional. It should only be used if you
|
|
|
|
%% need to override the default behavior of Cowboy. Otherwise you
|
|
|
|
%% should call stream_body/1 directly.
|
|
|
|
%%
|
|
|
|
%% Two decodings happen. First a decoding function is applied to the
|
|
|
|
%% transferred data, and then another is applied to the actual content.
|
|
|
|
%%
|
|
|
|
%% Transfer encoding is generally used for chunked bodies. The decoding
|
|
|
|
%% function uses a state to keep track of how much it has read, which is
|
|
|
|
%% also initialized through this function.
|
|
|
|
%%
|
|
|
|
%% Content encoding is generally used for compression.
|
|
|
|
%%
|
|
|
|
%% Standard encodings can be found in cowboy_http.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec init_stream(fun(), any(), fun(), Req) -> {ok, Req} when Req::req().
|
2012-03-29 01:14:44 +02:00
|
|
|
init_stream(TransferDecode, TransferState, ContentDecode, Req) ->
|
|
|
|
{ok, Req#http_req{body_state=
|
|
|
|
{stream, TransferDecode, TransferState, ContentDecode}}}.
|
|
|
|
|
|
|
|
%% @doc Stream the request's body.
|
|
|
|
%%
|
|
|
|
%% This is the most low level function to read the request body.
|
|
|
|
%%
|
|
|
|
%% In most cases, if they weren't defined before using stream_body/4,
|
|
|
|
%% this function will guess which transfer and content encodings were
|
|
|
|
%% used for building the request body, and configure the decoding
|
|
|
|
%% functions that will be used when streaming.
|
|
|
|
%%
|
|
|
|
%% It then starts streaming the body, returning {ok, Data, Req}
|
|
|
|
%% for each streamed part, and {done, Req} when it's finished streaming.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec stream_body(Req) -> {ok, binary(), Req}
|
|
|
|
| {done, Req} | {error, atom()} when Req::req().
|
2012-07-21 19:43:23 +02:00
|
|
|
stream_body(Req=#http_req{body_state=waiting,
|
|
|
|
version=Version, transport=Transport, socket=Socket}) ->
|
|
|
|
case parse_header(<<"Expect">>, Req) of
|
2012-09-16 03:51:07 +02:00
|
|
|
{ok, [<<"100-continue">>], Req1} ->
|
2012-07-21 19:43:23 +02:00
|
|
|
HTTPVer = cowboy_http:version_to_binary(Version),
|
|
|
|
Transport:send(Socket,
|
|
|
|
<< HTTPVer/binary, " ", (status(100))/binary, "\r\n\r\n" >>);
|
2012-09-16 03:51:07 +02:00
|
|
|
{ok, undefined, Req1} ->
|
2012-07-21 19:43:23 +02:00
|
|
|
ok
|
|
|
|
end,
|
|
|
|
case parse_header('Transfer-Encoding', Req1) of
|
2012-09-16 03:51:07 +02:00
|
|
|
{ok, [<<"chunked">>], Req2} ->
|
2012-03-29 01:14:44 +02:00
|
|
|
stream_body(Req2#http_req{body_state=
|
|
|
|
{stream, fun cowboy_http:te_chunked/2, {0, 0},
|
|
|
|
fun cowboy_http:ce_identity/1}});
|
2012-09-16 03:51:07 +02:00
|
|
|
{ok, [<<"identity">>], Req2} ->
|
2012-03-29 01:14:44 +02:00
|
|
|
{Length, Req3} = body_length(Req2),
|
|
|
|
case Length of
|
|
|
|
0 ->
|
|
|
|
{done, Req3#http_req{body_state=done}};
|
|
|
|
Length ->
|
|
|
|
stream_body(Req3#http_req{body_state=
|
|
|
|
{stream, fun cowboy_http:te_identity/2, {0, Length},
|
|
|
|
fun cowboy_http:ce_identity/1}})
|
|
|
|
end
|
|
|
|
end;
|
|
|
|
stream_body(Req=#http_req{buffer=Buffer, body_state={stream, _, _, _}})
|
|
|
|
when Buffer =/= <<>> ->
|
|
|
|
transfer_decode(Buffer, Req#http_req{buffer= <<>>});
|
|
|
|
stream_body(Req=#http_req{body_state={stream, _, _, _}}) ->
|
|
|
|
stream_body_recv(Req);
|
|
|
|
stream_body(Req=#http_req{body_state=done}) ->
|
2012-09-15 00:59:49 +02:00
|
|
|
{done, Req}.
|
2012-03-29 01:14:44 +02:00
|
|
|
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec stream_body_recv(Req)
|
|
|
|
-> {ok, binary(), Req} | {error, atom()} when Req::req().
|
2012-04-29 01:20:24 +02:00
|
|
|
stream_body_recv(Req=#http_req{
|
|
|
|
transport=Transport, socket=Socket, buffer=Buffer}) ->
|
2012-03-29 01:14:44 +02:00
|
|
|
%% @todo Allow configuring the timeout.
|
|
|
|
case Transport:recv(Socket, 0, 5000) of
|
2012-04-29 01:20:24 +02:00
|
|
|
{ok, Data} -> transfer_decode(<< Buffer/binary, Data/binary >>, Req);
|
2012-03-29 01:14:44 +02:00
|
|
|
{error, Reason} -> {error, Reason}
|
|
|
|
end.
|
|
|
|
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec transfer_decode(binary(), Req)
|
|
|
|
-> {ok, binary(), Req} | {error, atom()} when Req::req().
|
2012-03-29 01:14:44 +02:00
|
|
|
transfer_decode(Data, Req=#http_req{
|
|
|
|
body_state={stream, TransferDecode, TransferState, ContentDecode}}) ->
|
|
|
|
case TransferDecode(Data, TransferState) of
|
|
|
|
{ok, Data2, TransferState2} ->
|
|
|
|
content_decode(ContentDecode, Data2, Req#http_req{body_state=
|
|
|
|
{stream, TransferDecode, TransferState2, ContentDecode}});
|
|
|
|
{ok, Data2, Rest, TransferState2} ->
|
|
|
|
content_decode(ContentDecode, Data2, Req#http_req{
|
|
|
|
buffer=Rest, body_state=
|
|
|
|
{stream, TransferDecode, TransferState2, ContentDecode}});
|
|
|
|
%% @todo {header(s) for chunked
|
|
|
|
more ->
|
2012-04-29 01:20:24 +02:00
|
|
|
stream_body_recv(Req#http_req{buffer=Data});
|
2012-03-29 01:14:44 +02:00
|
|
|
{done, Length, Rest} ->
|
|
|
|
Req2 = transfer_decode_done(Length, Rest, Req),
|
|
|
|
{done, Req2};
|
|
|
|
{done, Data2, Length, Rest} ->
|
|
|
|
Req2 = transfer_decode_done(Length, Rest, Req),
|
|
|
|
content_decode(ContentDecode, Data2, Req2);
|
|
|
|
{error, Reason} ->
|
|
|
|
{error, Reason}
|
|
|
|
end.
|
|
|
|
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec transfer_decode_done(non_neg_integer(), binary(), Req)
|
|
|
|
-> Req when Req::req().
|
2012-03-29 01:14:44 +02:00
|
|
|
transfer_decode_done(Length, Rest, Req=#http_req{
|
|
|
|
headers=Headers, p_headers=PHeaders}) ->
|
|
|
|
Headers2 = lists:keystore('Content-Length', 1, Headers,
|
|
|
|
{'Content-Length', list_to_binary(integer_to_list(Length))}),
|
|
|
|
%% At this point we just assume TEs were all decoded.
|
|
|
|
Headers3 = lists:keydelete('Transfer-Encoding', 1, Headers2),
|
|
|
|
PHeaders2 = lists:keystore('Content-Length', 1, PHeaders,
|
|
|
|
{'Content-Length', Length}),
|
|
|
|
PHeaders3 = lists:keydelete('Transfer-Encoding', 1, PHeaders2),
|
|
|
|
Req#http_req{buffer=Rest, body_state=done,
|
|
|
|
headers=Headers3, p_headers=PHeaders3}.
|
|
|
|
|
|
|
|
%% @todo Probably needs a Rest.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec content_decode(fun(), binary(), Req)
|
|
|
|
-> {ok, binary(), Req} | {error, atom()} when Req::req().
|
2012-03-29 01:14:44 +02:00
|
|
|
content_decode(ContentDecode, Data, Req) ->
|
|
|
|
case ContentDecode(Data) of
|
|
|
|
{ok, Data2} -> {ok, Data2, Req};
|
|
|
|
{error, Reason} -> {error, Reason}
|
|
|
|
end.
|
|
|
|
|
|
|
|
%% @doc Return the full body sent with the request.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec body(Req) -> {ok, binary(), Req} | {error, atom()} when Req::req().
|
2011-03-21 21:28:24 +01:00
|
|
|
body(Req) ->
|
2012-03-29 01:14:44 +02:00
|
|
|
read_body(infinity, Req, <<>>).
|
2011-03-21 21:28:24 +01:00
|
|
|
|
2012-03-29 01:14:44 +02:00
|
|
|
%% @doc Return the full body sent with the request as long as the body
|
|
|
|
%% length doesn't go over MaxLength.
|
2011-07-06 17:42:20 +02:00
|
|
|
%%
|
2012-03-29 01:14:44 +02:00
|
|
|
%% This is most useful to quickly be able to get the full body while
|
|
|
|
%% avoiding filling your memory with huge request bodies when you're
|
|
|
|
%% not expecting it.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec body(non_neg_integer() | infinity, Req)
|
|
|
|
-> {ok, binary(), Req} | {error, atom()} when Req::req().
|
2012-03-29 01:14:44 +02:00
|
|
|
body(MaxLength, Req) ->
|
|
|
|
read_body(MaxLength, Req, <<>>).
|
|
|
|
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec read_body(non_neg_integer() | infinity, Req, binary())
|
|
|
|
-> {ok, binary(), Req} | {error, atom()} when Req::req().
|
2012-03-29 01:14:44 +02:00
|
|
|
read_body(MaxLength, Req, Acc) when MaxLength > byte_size(Acc) ->
|
|
|
|
case stream_body(Req) of
|
|
|
|
{ok, Data, Req2} ->
|
|
|
|
read_body(MaxLength, Req2, << Acc/binary, Data/binary >>);
|
|
|
|
{done, Req2} ->
|
|
|
|
{ok, Acc, Req2};
|
|
|
|
{error, Reason} ->
|
|
|
|
{error, Reason}
|
|
|
|
end.
|
|
|
|
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec skip_body(Req) -> {ok, Req} | {error, atom()} when Req::req().
|
2012-03-29 01:14:44 +02:00
|
|
|
skip_body(Req) ->
|
|
|
|
case stream_body(Req) of
|
|
|
|
{ok, _, Req2} -> skip_body(Req2);
|
|
|
|
{done, Req2} -> {ok, Req2};
|
2011-03-21 17:26:00 +01:00
|
|
|
{error, Reason} -> {error, Reason}
|
|
|
|
end.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Return the full body sent with the reqest, parsed as an
|
|
|
|
%% application/x-www-form-urlencoded string. Essentially a POST query string.
|
2012-03-29 01:14:44 +02:00
|
|
|
%% @todo We need an option to limit the size of the body for QS too.
|
2012-09-16 03:51:07 +02:00
|
|
|
-spec body_qs(Req)
|
|
|
|
-> {ok, [{binary(), binary() | true}], Req} | {error, atom()}
|
|
|
|
when Req::req().
|
2011-12-05 01:08:38 +01:00
|
|
|
body_qs(Req=#http_req{urldecode={URLDecFun, URLDecArg}}) ->
|
2012-09-16 03:51:07 +02:00
|
|
|
case body(Req) of
|
|
|
|
{ok, Body, Req2} ->
|
|
|
|
{ok, cowboy_http:x_www_form_urlencoded(
|
|
|
|
Body, fun(Bin) -> URLDecFun(Bin, URLDecArg) end), Req2};
|
|
|
|
{error, Reason} ->
|
|
|
|
{error, Reason}
|
|
|
|
end.
|
2011-03-22 13:20:21 +01:00
|
|
|
|
2011-11-08 00:51:49 +01:00
|
|
|
%% Multipart Request API.
|
|
|
|
|
|
|
|
%% @doc Return data from the multipart parser.
|
|
|
|
%%
|
|
|
|
%% Use this function for multipart streaming. For each part in the request,
|
|
|
|
%% this function returns <em>{headers, Headers}</em> followed by a sequence of
|
2012-05-04 09:33:55 -07:00
|
|
|
%% <em>{body, Data}</em> tuples and finally <em>end_of_part</em>. When there
|
2011-11-08 00:51:49 +01:00
|
|
|
%% is no part to parse anymore, <em>eof</em> is returned.
|
|
|
|
%%
|
|
|
|
%% If the request Content-Type is not a multipart one, <em>{error, badarg}</em>
|
|
|
|
%% is returned.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec multipart_data(Req)
|
2012-09-16 03:51:07 +02:00
|
|
|
-> {headers, cowboy_http:headers(), Req} | {body, binary(), Req}
|
|
|
|
| {end_of_part | eof, Req} when Req::req().
|
2011-11-08 00:51:49 +01:00
|
|
|
multipart_data(Req=#http_req{body_state=waiting}) ->
|
2012-09-16 03:51:07 +02:00
|
|
|
{ok, {<<"multipart">>, _SubType, Params}, Req2} =
|
2011-11-08 00:51:49 +01:00
|
|
|
parse_header('Content-Type', Req),
|
|
|
|
{_, Boundary} = lists:keyfind(<<"boundary">>, 1, Params),
|
2012-09-16 03:51:07 +02:00
|
|
|
{ok, Length, Req3} = parse_header('Content-Length', Req2),
|
2012-05-21 14:43:45 +02:00
|
|
|
multipart_data(Req3, Length, {more, cowboy_multipart:parser(Boundary)});
|
2012-09-15 00:59:49 +02:00
|
|
|
multipart_data(Req=#http_req{multipart={Length, Cont}}) ->
|
2011-11-08 00:51:49 +01:00
|
|
|
multipart_data(Req, Length, Cont());
|
|
|
|
multipart_data(Req=#http_req{body_state=done}) ->
|
|
|
|
{eof, Req}.
|
|
|
|
|
2012-08-27 14:27:41 +02:00
|
|
|
%% @todo Typespecs.
|
2011-11-08 00:51:49 +01:00
|
|
|
multipart_data(Req, Length, {headers, Headers, Cont}) ->
|
2012-09-16 03:51:07 +02:00
|
|
|
{headers, Headers, Req#http_req{multipart={Length, Cont}}};
|
2011-11-08 00:51:49 +01:00
|
|
|
multipart_data(Req, Length, {body, Data, Cont}) ->
|
2012-09-16 03:51:07 +02:00
|
|
|
{body, Data, Req#http_req{multipart={Length, Cont}}};
|
2011-11-08 00:51:49 +01:00
|
|
|
multipart_data(Req, Length, {end_of_part, Cont}) ->
|
2012-09-15 00:59:49 +02:00
|
|
|
{end_of_part, Req#http_req{multipart={Length, Cont}}};
|
2011-11-08 00:51:49 +01:00
|
|
|
multipart_data(Req, 0, eof) ->
|
2012-09-15 00:59:49 +02:00
|
|
|
{eof, Req#http_req{body_state=done, multipart=undefined}};
|
2011-11-08 00:51:49 +01:00
|
|
|
multipart_data(Req=#http_req{socket=Socket, transport=Transport},
|
|
|
|
Length, eof) ->
|
2012-05-21 14:43:45 +02:00
|
|
|
%% We just want to skip so no need to stream data here.
|
2011-11-08 00:51:49 +01:00
|
|
|
{ok, _Data} = Transport:recv(Socket, Length, 5000),
|
2012-09-15 00:59:49 +02:00
|
|
|
{eof, Req#http_req{body_state=done, multipart=undefined}};
|
2012-05-21 14:43:45 +02:00
|
|
|
multipart_data(Req, Length, {more, Parser}) when Length > 0 ->
|
|
|
|
case stream_body(Req) of
|
|
|
|
{ok, << Data:Length/binary, Buffer/binary >>, Req2} ->
|
|
|
|
multipart_data(Req2#http_req{buffer=Buffer}, 0, Parser(Data));
|
|
|
|
{ok, Data, Req2} ->
|
|
|
|
multipart_data(Req2, Length - byte_size(Data), Parser(Data))
|
2011-11-08 00:51:49 +01:00
|
|
|
end.
|
|
|
|
|
|
|
|
%% @doc Skip a part returned by the multipart parser.
|
|
|
|
%%
|
|
|
|
%% This function repeatedly calls <em>multipart_data/1</em> until
|
|
|
|
%% <em>end_of_part</em> or <em>eof</em> is parsed.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec multipart_skip(Req) -> {ok, Req} when Req::req().
|
2011-11-08 00:51:49 +01:00
|
|
|
multipart_skip(Req) ->
|
|
|
|
case multipart_data(Req) of
|
|
|
|
{end_of_part, Req2} -> {ok, Req2};
|
|
|
|
{eof, Req2} -> {ok, Req2};
|
2012-09-16 03:51:07 +02:00
|
|
|
{_, _, Req2} -> multipart_skip(Req2)
|
2011-11-08 00:51:49 +01:00
|
|
|
end.
|
|
|
|
|
2011-03-18 22:38:26 +01:00
|
|
|
%% Response API.
|
|
|
|
|
2011-12-07 11:54:57 +01:00
|
|
|
%% @doc Add a cookie header to the response.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec set_resp_cookie(binary(), binary(),
|
2012-09-16 03:51:07 +02:00
|
|
|
[cowboy_cookies:cookie_option()], Req) -> Req when Req::req().
|
2011-12-07 11:54:57 +01:00
|
|
|
set_resp_cookie(Name, Value, Options, Req) ->
|
|
|
|
{HeaderName, HeaderValue} = cowboy_cookies:cookie(Name, Value, Options),
|
|
|
|
set_resp_header(HeaderName, HeaderValue, Req).
|
|
|
|
|
2011-11-28 09:09:41 +01:00
|
|
|
%% @doc Add a header to the response.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec set_resp_header(cowboy_http:header(), iodata(), Req)
|
2012-09-16 03:51:07 +02:00
|
|
|
-> Req when Req::req().
|
2011-11-28 09:09:41 +01:00
|
|
|
set_resp_header(Name, Value, Req=#http_req{resp_headers=RespHeaders}) ->
|
|
|
|
NameBin = header_to_binary(Name),
|
2012-09-16 03:51:07 +02:00
|
|
|
Req#http_req{resp_headers=[{NameBin, Value}|RespHeaders]}.
|
2011-11-28 09:09:41 +01:00
|
|
|
|
|
|
|
%% @doc Add a body to the response.
|
|
|
|
%%
|
|
|
|
%% The body set here is ignored if the response is later sent using
|
2011-12-28 18:00:27 +01:00
|
|
|
%% anything other than reply/2 or reply/3. The response body is expected
|
|
|
|
%% to be a binary or an iolist.
|
2012-09-16 03:51:07 +02:00
|
|
|
-spec set_resp_body(iodata(), Req) -> Req when Req::req().
|
2011-11-28 09:09:41 +01:00
|
|
|
set_resp_body(Body, Req) ->
|
2012-09-16 03:51:07 +02:00
|
|
|
Req#http_req{resp_body=Body}.
|
2011-11-28 09:09:41 +01:00
|
|
|
|
2011-12-28 18:00:27 +01:00
|
|
|
%% @doc Add a body function to the response.
|
|
|
|
%%
|
|
|
|
%% The response body may also be set to a content-length - stream-function pair.
|
|
|
|
%% If the response body is of this type normal response headers will be sent.
|
|
|
|
%% After the response headers has been sent the body function is applied.
|
|
|
|
%% The body function is expected to write the response body directly to the
|
|
|
|
%% socket using the transport module.
|
|
|
|
%%
|
|
|
|
%% If the body function crashes while writing the response body or writes fewer
|
|
|
|
%% bytes than declared the behaviour is undefined. The body set here is ignored
|
|
|
|
%% if the response is later sent using anything other than `reply/2' or
|
|
|
|
%% `reply/3'.
|
|
|
|
%%
|
2012-08-27 13:28:57 +02:00
|
|
|
%% @see cowboy_req:transport/1.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec set_resp_body_fun(non_neg_integer(),
|
2012-09-16 03:51:07 +02:00
|
|
|
fun(() -> {sent, non_neg_integer()}), Req) -> Req when Req::req().
|
2011-12-28 18:00:27 +01:00
|
|
|
set_resp_body_fun(StreamLen, StreamFun, Req) ->
|
2012-09-16 03:51:07 +02:00
|
|
|
Req#http_req{resp_body={StreamLen, StreamFun}}.
|
2011-12-28 18:00:27 +01:00
|
|
|
|
2011-11-28 09:09:41 +01:00
|
|
|
%% @doc Return whether the given header has been set for the response.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec has_resp_header(cowboy_http:header(), req()) -> boolean().
|
2011-11-28 09:09:41 +01:00
|
|
|
has_resp_header(Name, #http_req{resp_headers=RespHeaders}) ->
|
|
|
|
NameBin = header_to_binary(Name),
|
|
|
|
lists:keymember(NameBin, 1, RespHeaders).
|
|
|
|
|
|
|
|
%% @doc Return whether a body has been set for the response.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec has_resp_body(req()) -> boolean().
|
2011-12-28 18:00:27 +01:00
|
|
|
has_resp_body(#http_req{resp_body={Length, _}}) ->
|
|
|
|
Length > 0;
|
2011-11-28 09:09:41 +01:00
|
|
|
has_resp_body(#http_req{resp_body=RespBody}) ->
|
2011-12-16 16:19:08 +01:00
|
|
|
iolist_size(RespBody) > 0.
|
2011-11-28 09:09:41 +01:00
|
|
|
|
2012-09-16 01:55:40 +02:00
|
|
|
%% Remove a header previously set for the response.
|
|
|
|
-spec delete_resp_header(cowboy_http:header(), Req)
|
|
|
|
-> Req when Req::req().
|
|
|
|
delete_resp_header(Name, Req=#http_req{resp_headers=RespHeaders}) ->
|
|
|
|
RespHeaders2 = lists:keydelete(Name, 1, RespHeaders),
|
|
|
|
Req#http_req{resp_headers=RespHeaders2}.
|
|
|
|
|
2011-10-13 16:16:53 +02:00
|
|
|
%% @equiv reply(Status, [], [], Req)
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec reply(cowboy_http:status(), Req) -> {ok, Req} when Req::req().
|
2011-11-28 09:09:41 +01:00
|
|
|
reply(Status, Req=#http_req{resp_body=Body}) ->
|
|
|
|
reply(Status, [], Body, Req).
|
2011-10-13 16:16:53 +02:00
|
|
|
|
|
|
|
%% @equiv reply(Status, Headers, [], Req)
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec reply(cowboy_http:status(), cowboy_http:headers(), Req)
|
|
|
|
-> {ok, Req} when Req::req().
|
2011-11-28 09:09:41 +01:00
|
|
|
reply(Status, Headers, Req=#http_req{resp_body=Body}) ->
|
|
|
|
reply(Status, Headers, Body, Req).
|
2011-10-13 16:16:53 +02:00
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Send a reply to the client.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec reply(cowboy_http:status(), cowboy_http:headers(), iodata(), Req)
|
|
|
|
-> {ok, Req} when Req::req().
|
2012-04-30 22:49:36 +02:00
|
|
|
reply(Status, Headers, Body, Req=#http_req{socket=Socket, transport=Transport,
|
2012-05-01 01:59:36 +02:00
|
|
|
version=Version, connection=Connection,
|
2011-11-28 09:09:41 +01:00
|
|
|
method=Method, resp_state=waiting, resp_headers=RespHeaders}) ->
|
2011-10-06 12:40:04 +02:00
|
|
|
RespConn = response_connection(Headers, Connection),
|
2011-12-28 18:00:27 +01:00
|
|
|
ContentLen = case Body of {CL, _} -> CL; _ -> iolist_size(Body) end,
|
2012-04-30 22:49:36 +02:00
|
|
|
HTTP11Headers = case Version of
|
|
|
|
{1, 1} -> [{<<"Connection">>, atom_to_connection(Connection)}];
|
|
|
|
_ -> []
|
|
|
|
end,
|
2012-05-01 01:59:36 +02:00
|
|
|
{ReplyType, Req2} = response(Status, Headers, RespHeaders, [
|
2011-12-28 18:00:27 +01:00
|
|
|
{<<"Content-Length">>, integer_to_list(ContentLen)},
|
2011-05-14 18:46:50 +02:00
|
|
|
{<<"Date">>, cowboy_clock:rfc1123()},
|
|
|
|
{<<"Server">>, <<"Cowboy">>}
|
2012-04-30 22:49:36 +02:00
|
|
|
|HTTP11Headers], Req),
|
2012-05-01 01:59:36 +02:00
|
|
|
if Method =:= 'HEAD' -> ok;
|
|
|
|
ReplyType =:= hook -> ok; %% Hook replied for us, stop there.
|
|
|
|
true ->
|
|
|
|
case Body of
|
|
|
|
{_, StreamFun} -> StreamFun();
|
|
|
|
_ -> Transport:send(Socket, Body)
|
|
|
|
end
|
2011-09-06 12:11:44 +02:00
|
|
|
end,
|
2012-05-01 01:59:36 +02:00
|
|
|
{ok, Req2#http_req{connection=RespConn, resp_state=done,
|
2011-11-28 09:09:41 +01:00
|
|
|
resp_headers=[], resp_body= <<>>}}.
|
2011-03-18 22:38:26 +01:00
|
|
|
|
2011-10-13 16:16:53 +02:00
|
|
|
%% @equiv chunked_reply(Status, [], Req)
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec chunked_reply(cowboy_http:status(), Req) -> {ok, Req} when Req::req().
|
2011-10-13 16:16:53 +02:00
|
|
|
chunked_reply(Status, Req) ->
|
|
|
|
chunked_reply(Status, [], Req).
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Initiate the sending of a chunked reply to the client.
|
2012-08-27 13:28:57 +02:00
|
|
|
%% @see cowboy_req:chunk/2
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec chunked_reply(cowboy_http:status(), cowboy_http:headers(), Req)
|
|
|
|
-> {ok, Req} when Req::req().
|
2012-04-30 22:49:36 +02:00
|
|
|
chunked_reply(Status, Headers, Req=#http_req{
|
|
|
|
version=Version, connection=Connection,
|
2012-05-01 01:59:36 +02:00
|
|
|
resp_state=waiting, resp_headers=RespHeaders}) ->
|
2011-10-06 12:40:04 +02:00
|
|
|
RespConn = response_connection(Headers, Connection),
|
2012-04-30 22:49:36 +02:00
|
|
|
HTTP11Headers = case Version of
|
2012-03-13 03:00:05 +01:00
|
|
|
{1, 1} -> [
|
2012-04-30 22:49:36 +02:00
|
|
|
{<<"Connection">>, atom_to_connection(Connection)},
|
|
|
|
{<<"Transfer-Encoding">>, <<"chunked">>}];
|
|
|
|
_ -> []
|
2012-03-13 03:00:05 +01:00
|
|
|
end,
|
2012-05-01 01:59:36 +02:00
|
|
|
{_, Req2} = response(Status, Headers, RespHeaders, [
|
2012-04-30 22:49:36 +02:00
|
|
|
{<<"Date">>, cowboy_clock:rfc1123()},
|
|
|
|
{<<"Server">>, <<"Cowboy">>}
|
|
|
|
|HTTP11Headers], Req),
|
2012-05-01 01:59:36 +02:00
|
|
|
{ok, Req2#http_req{connection=RespConn, resp_state=chunks,
|
2011-11-28 09:09:41 +01:00
|
|
|
resp_headers=[], resp_body= <<>>}}.
|
2011-05-08 17:26:21 +02:00
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Send a chunk of data.
|
|
|
|
%%
|
|
|
|
%% A chunked reply must have been initiated before calling this function.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec chunk(iodata(), req()) -> ok | {error, atom()}.
|
2011-09-06 12:11:44 +02:00
|
|
|
chunk(_Data, #http_req{socket=_Socket, transport=_Transport, method='HEAD'}) ->
|
|
|
|
ok;
|
2012-03-13 03:00:05 +01:00
|
|
|
chunk(Data, #http_req{socket=Socket, transport=Transport, version={1, 0}}) ->
|
|
|
|
Transport:send(Socket, Data);
|
2011-05-08 17:26:21 +02:00
|
|
|
chunk(Data, #http_req{socket=Socket, transport=Transport, resp_state=chunks}) ->
|
|
|
|
Transport:send(Socket, [integer_to_list(iolist_size(Data), 16),
|
|
|
|
<<"\r\n">>, Data, <<"\r\n">>]).
|
|
|
|
|
2011-10-20 14:11:17 +02:00
|
|
|
%% @doc Send an upgrade reply.
|
2012-01-02 09:41:30 +01:00
|
|
|
%% @private
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec upgrade_reply(cowboy_http:status(), cowboy_http:headers(), Req)
|
|
|
|
-> {ok, Req} when Req::req().
|
2012-04-30 22:49:36 +02:00
|
|
|
upgrade_reply(Status, Headers, Req=#http_req{
|
2012-05-01 01:59:36 +02:00
|
|
|
resp_state=waiting, resp_headers=RespHeaders}) ->
|
|
|
|
{_, Req2} = response(Status, Headers, RespHeaders, [
|
2011-10-20 14:11:17 +02:00
|
|
|
{<<"Connection">>, <<"Upgrade">>}
|
2012-04-30 22:49:36 +02:00
|
|
|
], Req),
|
2012-05-01 01:59:36 +02:00
|
|
|
{ok, Req2#http_req{resp_state=done, resp_headers=[], resp_body= <<>>}}.
|
2011-10-20 14:11:17 +02:00
|
|
|
|
2012-09-15 22:19:39 +02:00
|
|
|
%% @doc Ensure the response has been sent fully.
|
|
|
|
%% @private
|
|
|
|
-spec ensure_response(req(), cowboy_http:status()) -> ok.
|
|
|
|
%% The response has already been fully sent to the client.
|
|
|
|
ensure_response(#http_req{resp_state=done}, _) ->
|
|
|
|
ok;
|
|
|
|
%% No response has been sent but everything apparently went fine.
|
|
|
|
%% Reply with the status code found in the second argument.
|
|
|
|
ensure_response(Req=#http_req{resp_state=waiting}, Status) ->
|
|
|
|
_ = reply(Status, [], [], Req),
|
|
|
|
ok;
|
|
|
|
%% Terminate the chunked body for HTTP/1.1 only.
|
|
|
|
ensure_response(#http_req{method='HEAD', resp_state=chunks}, _) ->
|
|
|
|
ok;
|
|
|
|
ensure_response(#http_req{version={1, 0}, resp_state=chunks}, _) ->
|
|
|
|
ok;
|
|
|
|
ensure_response(#http_req{socket=Socket, transport=Transport,
|
|
|
|
resp_state=chunks}, _) ->
|
|
|
|
Transport:send(Socket, <<"0\r\n\r\n">>),
|
|
|
|
ok.
|
|
|
|
|
2012-09-16 16:04:16 +02:00
|
|
|
%% Private setter/getter API.
|
|
|
|
|
|
|
|
%% @private
|
|
|
|
-spec set_host(binary(), inet:port_number(), binary(), Req)
|
|
|
|
-> Req when Req::req().
|
|
|
|
set_host(Host, Port, RawHost, Req=#http_req{headers=Headers}) ->
|
|
|
|
Req#http_req{host=Host, port=Port, headers=[{'Host', RawHost}|Headers]}.
|
|
|
|
|
2012-09-16 23:54:29 +02:00
|
|
|
%% @private
|
|
|
|
-spec set_connection(binary(), Req) -> Req when Req::req().
|
|
|
|
set_connection(RawConnection, Req=#http_req{headers=Headers}) ->
|
|
|
|
Req2 = Req#http_req{headers=[{'Connection', RawConnection}|Headers]},
|
|
|
|
{ok, ConnTokens, Req3} = parse_header('Connection', Req2),
|
|
|
|
ConnAtom = cowboy_http:connection_to_atom(ConnTokens),
|
|
|
|
Req3#http_req{connection=ConnAtom}.
|
|
|
|
|
2012-09-17 00:21:33 +02:00
|
|
|
%% @private
|
|
|
|
-spec add_header(cowboy_http:header(), binary(), Req)
|
|
|
|
-> Req when Req::req().
|
|
|
|
add_header(Name, Value, Req=#http_req{headers=Headers}) ->
|
|
|
|
Req#http_req{headers=[{Name, Value}|Headers]}.
|
|
|
|
|
2012-09-17 00:30:54 +02:00
|
|
|
%% @private
|
|
|
|
-spec set_buffer(binary(), Req) -> Req when Req::req().
|
|
|
|
set_buffer(Buffer, Req) ->
|
|
|
|
Req#http_req{buffer=Buffer}.
|
|
|
|
|
2012-09-17 00:39:29 +02:00
|
|
|
%% @private
|
|
|
|
-spec set_bindings(cowboy_dispatcher:tokens(), cowboy_dispatcher:tokens(),
|
|
|
|
cowboy_dispatcher:bindings(), Req) -> Req when Req::req().
|
|
|
|
set_bindings(HostInfo, PathInfo, Bindings, Req) ->
|
|
|
|
Req#http_req{host_info=HostInfo, path_info=PathInfo,
|
|
|
|
bindings=Bindings}.
|
|
|
|
|
2012-09-17 00:48:11 +02:00
|
|
|
%% @private
|
|
|
|
-spec get_resp_state(req()) -> locked | waiting | chunks | done.
|
|
|
|
get_resp_state(#http_req{resp_state=RespState}) ->
|
|
|
|
RespState.
|
|
|
|
|
2011-06-01 12:49:03 +02:00
|
|
|
%% Misc API.
|
|
|
|
|
2011-07-06 17:42:20 +02:00
|
|
|
%% @doc Compact the request data by removing all non-system information.
|
|
|
|
%%
|
2012-09-10 12:25:07 +02:00
|
|
|
%% This essentially removes the host and path info, query string, bindings,
|
|
|
|
%% headers and cookies.
|
|
|
|
%%
|
2011-07-06 17:42:20 +02:00
|
|
|
%% Use it when you really need to save up memory, for example when having
|
|
|
|
%% many concurrent long-running connections.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec compact(Req) -> Req when Req::req().
|
2011-06-01 12:49:03 +02:00
|
|
|
compact(Req) ->
|
2012-09-10 12:25:07 +02:00
|
|
|
Req#http_req{host_info=undefined,
|
2011-10-06 01:07:49 +02:00
|
|
|
path_info=undefined, qs_vals=undefined,
|
2011-12-19 08:56:48 +01:00
|
|
|
bindings=undefined, headers=[],
|
|
|
|
p_headers=[], cookies=[]}.
|
2011-06-01 12:49:03 +02:00
|
|
|
|
2012-09-16 13:57:27 +02:00
|
|
|
%% @doc Prevent any further responses.
|
|
|
|
%% @private
|
|
|
|
-spec lock(Req) -> Req when Req::req().
|
|
|
|
lock(Req) ->
|
|
|
|
Req#http_req{resp_state=locked}.
|
|
|
|
|
2012-09-15 20:33:57 +02:00
|
|
|
%% @doc Convert the Req object to a list of key/values.
|
|
|
|
-spec to_list(req()) -> [{atom(), any()}].
|
|
|
|
to_list(Req) ->
|
|
|
|
lists:zip(record_info(fields, http_req), tl(tuple_to_list(Req))).
|
|
|
|
|
2011-12-27 23:48:23 +01:00
|
|
|
%% @doc Return the transport module and socket associated with a request.
|
|
|
|
%%
|
|
|
|
%% This exposes the same socket interface used internally by the HTTP protocol
|
|
|
|
%% implementation to developers that needs low level access to the socket.
|
|
|
|
%%
|
|
|
|
%% It is preferred to use this in conjuction with the stream function support
|
2012-01-03 23:26:01 +01:00
|
|
|
%% in `set_resp_body_fun/3' if this is used to write a response body directly
|
|
|
|
%% to the socket. This ensures that the response headers are set correctly.
|
2012-08-27 14:27:41 +02:00
|
|
|
-spec transport(req()) -> {ok, module(), inet:socket()}.
|
2011-12-27 23:48:23 +01:00
|
|
|
transport(#http_req{transport=Transport, socket=Socket}) ->
|
|
|
|
{ok, Transport, Socket}.
|
|
|
|
|
2011-03-07 22:59:22 +01:00
|
|
|
%% Internal.
|
|
|
|
|
2012-04-30 22:49:36 +02:00
|
|
|
-spec response(cowboy_http:status(), cowboy_http:headers(),
|
2012-08-27 14:27:41 +02:00
|
|
|
cowboy_http:headers(), cowboy_http:headers(), Req)
|
|
|
|
-> {normal | hook, Req} when Req::req().
|
2012-05-01 01:59:36 +02:00
|
|
|
response(Status, Headers, RespHeaders, DefaultHeaders, Req=#http_req{
|
|
|
|
socket=Socket, transport=Transport, version=Version,
|
|
|
|
pid=ReqPid, onresponse=OnResponse}) ->
|
2012-04-30 22:49:36 +02:00
|
|
|
FullHeaders = response_merge_headers(Headers, RespHeaders, DefaultHeaders),
|
2012-05-01 01:59:36 +02:00
|
|
|
Req2 = case OnResponse of
|
|
|
|
undefined -> Req;
|
|
|
|
OnResponse -> OnResponse(Status, FullHeaders,
|
|
|
|
%% Don't call 'onresponse' from the hook itself.
|
|
|
|
Req#http_req{resp_headers=[], resp_body= <<>>,
|
|
|
|
onresponse=undefined})
|
|
|
|
end,
|
|
|
|
ReplyType = case Req2#http_req.resp_state of
|
|
|
|
waiting ->
|
|
|
|
HTTPVer = cowboy_http:version_to_binary(Version),
|
|
|
|
StatusLine = << HTTPVer/binary, " ",
|
|
|
|
(status(Status))/binary, "\r\n" >>,
|
|
|
|
HeaderLines = [[Key, <<": ">>, Value, <<"\r\n">>]
|
|
|
|
|| {Key, Value} <- FullHeaders],
|
|
|
|
Transport:send(Socket, [StatusLine, HeaderLines, <<"\r\n">>]),
|
|
|
|
ReqPid ! {?MODULE, resp_sent},
|
|
|
|
normal;
|
|
|
|
_ ->
|
|
|
|
hook
|
|
|
|
end,
|
|
|
|
{ReplyType, Req2}.
|
2012-04-30 22:49:36 +02:00
|
|
|
|
2012-01-23 09:36:59 +01:00
|
|
|
-spec response_connection(cowboy_http:headers(), keepalive | close)
|
2011-10-06 12:40:04 +02:00
|
|
|
-> keepalive | close.
|
|
|
|
response_connection([], Connection) ->
|
|
|
|
Connection;
|
|
|
|
response_connection([{Name, Value}|Tail], Connection) ->
|
|
|
|
case Name of
|
|
|
|
'Connection' -> response_connection_parse(Value);
|
2011-10-07 16:14:39 +02:00
|
|
|
Name when is_atom(Name) -> response_connection(Tail, Connection);
|
2011-10-06 12:40:04 +02:00
|
|
|
Name ->
|
|
|
|
Name2 = cowboy_bstr:to_lower(Name),
|
|
|
|
case Name2 of
|
|
|
|
<<"connection">> -> response_connection_parse(Value);
|
|
|
|
_Any -> response_connection(Tail, Connection)
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
|
|
|
-spec response_connection_parse(binary()) -> keepalive | close.
|
|
|
|
response_connection_parse(ReplyConn) ->
|
2011-10-17 09:15:01 +02:00
|
|
|
Tokens = cowboy_http:nonempty_list(ReplyConn, fun cowboy_http:token/2),
|
2011-10-06 12:40:04 +02:00
|
|
|
cowboy_http:connection_to_atom(Tokens).
|
|
|
|
|
2012-04-30 22:49:36 +02:00
|
|
|
-spec response_merge_headers(cowboy_http:headers(), cowboy_http:headers(),
|
|
|
|
cowboy_http:headers()) -> cowboy_http:headers().
|
|
|
|
response_merge_headers(Headers, RespHeaders, DefaultHeaders) ->
|
2011-05-08 14:40:58 +02:00
|
|
|
Headers2 = [{header_to_binary(Key), Value} || {Key, Value} <- Headers],
|
2012-04-30 22:49:36 +02:00
|
|
|
merge_headers(
|
2011-11-28 09:09:41 +01:00
|
|
|
merge_headers(Headers2, RespHeaders),
|
2012-04-30 22:49:36 +02:00
|
|
|
DefaultHeaders).
|
2011-11-28 09:09:41 +01:00
|
|
|
|
2012-01-23 09:36:59 +01:00
|
|
|
-spec merge_headers(cowboy_http:headers(), cowboy_http:headers())
|
|
|
|
-> cowboy_http:headers().
|
2011-11-28 09:09:41 +01:00
|
|
|
merge_headers(Headers, []) ->
|
|
|
|
Headers;
|
|
|
|
merge_headers(Headers, [{Name, Value}|Tail]) ->
|
|
|
|
Headers2 = case lists:keymember(Name, 1, Headers) of
|
|
|
|
true -> Headers;
|
|
|
|
false -> Headers ++ [{Name, Value}]
|
|
|
|
end,
|
|
|
|
merge_headers(Headers2, Tail).
|
2011-05-08 14:40:58 +02:00
|
|
|
|
2011-05-25 23:02:40 +02:00
|
|
|
-spec atom_to_connection(keepalive) -> <<_:80>>;
|
|
|
|
(close) -> <<_:40>>.
|
2011-03-18 22:38:26 +01:00
|
|
|
atom_to_connection(keepalive) ->
|
2011-05-05 14:03:39 +02:00
|
|
|
<<"keep-alive">>;
|
2011-03-18 22:38:26 +01:00
|
|
|
atom_to_connection(close) ->
|
2011-05-05 14:03:39 +02:00
|
|
|
<<"close">>.
|
|
|
|
|
2012-01-23 09:43:26 +01:00
|
|
|
-spec status(cowboy_http:status()) -> binary().
|
2011-05-05 14:03:39 +02:00
|
|
|
status(100) -> <<"100 Continue">>;
|
|
|
|
status(101) -> <<"101 Switching Protocols">>;
|
|
|
|
status(102) -> <<"102 Processing">>;
|
|
|
|
status(200) -> <<"200 OK">>;
|
|
|
|
status(201) -> <<"201 Created">>;
|
|
|
|
status(202) -> <<"202 Accepted">>;
|
|
|
|
status(203) -> <<"203 Non-Authoritative Information">>;
|
|
|
|
status(204) -> <<"204 No Content">>;
|
|
|
|
status(205) -> <<"205 Reset Content">>;
|
|
|
|
status(206) -> <<"206 Partial Content">>;
|
|
|
|
status(207) -> <<"207 Multi-Status">>;
|
|
|
|
status(226) -> <<"226 IM Used">>;
|
|
|
|
status(300) -> <<"300 Multiple Choices">>;
|
|
|
|
status(301) -> <<"301 Moved Permanently">>;
|
|
|
|
status(302) -> <<"302 Found">>;
|
|
|
|
status(303) -> <<"303 See Other">>;
|
|
|
|
status(304) -> <<"304 Not Modified">>;
|
|
|
|
status(305) -> <<"305 Use Proxy">>;
|
|
|
|
status(306) -> <<"306 Switch Proxy">>;
|
|
|
|
status(307) -> <<"307 Temporary Redirect">>;
|
|
|
|
status(400) -> <<"400 Bad Request">>;
|
|
|
|
status(401) -> <<"401 Unauthorized">>;
|
|
|
|
status(402) -> <<"402 Payment Required">>;
|
|
|
|
status(403) -> <<"403 Forbidden">>;
|
|
|
|
status(404) -> <<"404 Not Found">>;
|
|
|
|
status(405) -> <<"405 Method Not Allowed">>;
|
|
|
|
status(406) -> <<"406 Not Acceptable">>;
|
|
|
|
status(407) -> <<"407 Proxy Authentication Required">>;
|
|
|
|
status(408) -> <<"408 Request Timeout">>;
|
|
|
|
status(409) -> <<"409 Conflict">>;
|
|
|
|
status(410) -> <<"410 Gone">>;
|
|
|
|
status(411) -> <<"411 Length Required">>;
|
|
|
|
status(412) -> <<"412 Precondition Failed">>;
|
|
|
|
status(413) -> <<"413 Request Entity Too Large">>;
|
|
|
|
status(414) -> <<"414 Request-URI Too Long">>;
|
|
|
|
status(415) -> <<"415 Unsupported Media Type">>;
|
|
|
|
status(416) -> <<"416 Requested Range Not Satisfiable">>;
|
|
|
|
status(417) -> <<"417 Expectation Failed">>;
|
|
|
|
status(418) -> <<"418 I'm a teapot">>;
|
|
|
|
status(422) -> <<"422 Unprocessable Entity">>;
|
|
|
|
status(423) -> <<"423 Locked">>;
|
|
|
|
status(424) -> <<"424 Failed Dependency">>;
|
|
|
|
status(425) -> <<"425 Unordered Collection">>;
|
|
|
|
status(426) -> <<"426 Upgrade Required">>;
|
2012-05-06 13:11:21 +02:00
|
|
|
status(428) -> <<"428 Precondition Required">>;
|
|
|
|
status(429) -> <<"429 Too Many Requests">>;
|
|
|
|
status(431) -> <<"431 Request Header Fields Too Large">>;
|
2011-05-05 14:03:39 +02:00
|
|
|
status(500) -> <<"500 Internal Server Error">>;
|
|
|
|
status(501) -> <<"501 Not Implemented">>;
|
|
|
|
status(502) -> <<"502 Bad Gateway">>;
|
|
|
|
status(503) -> <<"503 Service Unavailable">>;
|
|
|
|
status(504) -> <<"504 Gateway Timeout">>;
|
|
|
|
status(505) -> <<"505 HTTP Version Not Supported">>;
|
|
|
|
status(506) -> <<"506 Variant Also Negotiates">>;
|
|
|
|
status(507) -> <<"507 Insufficient Storage">>;
|
|
|
|
status(510) -> <<"510 Not Extended">>;
|
2012-05-06 13:11:21 +02:00
|
|
|
status(511) -> <<"511 Network Authentication Required">>;
|
2011-05-05 14:03:39 +02:00
|
|
|
status(B) when is_binary(B) -> B.
|
2011-03-18 22:38:26 +01:00
|
|
|
|
2012-01-23 09:36:59 +01:00
|
|
|
-spec header_to_binary(cowboy_http:header()) -> binary().
|
2011-05-06 00:27:51 +02:00
|
|
|
header_to_binary('Cache-Control') -> <<"Cache-Control">>;
|
|
|
|
header_to_binary('Connection') -> <<"Connection">>;
|
|
|
|
header_to_binary('Date') -> <<"Date">>;
|
|
|
|
header_to_binary('Pragma') -> <<"Pragma">>;
|
|
|
|
header_to_binary('Transfer-Encoding') -> <<"Transfer-Encoding">>;
|
|
|
|
header_to_binary('Upgrade') -> <<"Upgrade">>;
|
|
|
|
header_to_binary('Via') -> <<"Via">>;
|
|
|
|
header_to_binary('Accept') -> <<"Accept">>;
|
|
|
|
header_to_binary('Accept-Charset') -> <<"Accept-Charset">>;
|
|
|
|
header_to_binary('Accept-Encoding') -> <<"Accept-Encoding">>;
|
|
|
|
header_to_binary('Accept-Language') -> <<"Accept-Language">>;
|
|
|
|
header_to_binary('Authorization') -> <<"Authorization">>;
|
|
|
|
header_to_binary('From') -> <<"From">>;
|
|
|
|
header_to_binary('Host') -> <<"Host">>;
|
|
|
|
header_to_binary('If-Modified-Since') -> <<"If-Modified-Since">>;
|
|
|
|
header_to_binary('If-Match') -> <<"If-Match">>;
|
|
|
|
header_to_binary('If-None-Match') -> <<"If-None-Match">>;
|
|
|
|
header_to_binary('If-Range') -> <<"If-Range">>;
|
|
|
|
header_to_binary('If-Unmodified-Since') -> <<"If-Unmodified-Since">>;
|
|
|
|
header_to_binary('Max-Forwards') -> <<"Max-Forwards">>;
|
|
|
|
header_to_binary('Proxy-Authorization') -> <<"Proxy-Authorization">>;
|
|
|
|
header_to_binary('Range') -> <<"Range">>;
|
|
|
|
header_to_binary('Referer') -> <<"Referer">>;
|
|
|
|
header_to_binary('User-Agent') -> <<"User-Agent">>;
|
|
|
|
header_to_binary('Age') -> <<"Age">>;
|
|
|
|
header_to_binary('Location') -> <<"Location">>;
|
|
|
|
header_to_binary('Proxy-Authenticate') -> <<"Proxy-Authenticate">>;
|
|
|
|
header_to_binary('Public') -> <<"Public">>;
|
|
|
|
header_to_binary('Retry-After') -> <<"Retry-After">>;
|
|
|
|
header_to_binary('Server') -> <<"Server">>;
|
|
|
|
header_to_binary('Vary') -> <<"Vary">>;
|
|
|
|
header_to_binary('Warning') -> <<"Warning">>;
|
|
|
|
header_to_binary('Www-Authenticate') -> <<"Www-Authenticate">>;
|
|
|
|
header_to_binary('Allow') -> <<"Allow">>;
|
|
|
|
header_to_binary('Content-Base') -> <<"Content-Base">>;
|
|
|
|
header_to_binary('Content-Encoding') -> <<"Content-Encoding">>;
|
|
|
|
header_to_binary('Content-Language') -> <<"Content-Language">>;
|
|
|
|
header_to_binary('Content-Length') -> <<"Content-Length">>;
|
|
|
|
header_to_binary('Content-Location') -> <<"Content-Location">>;
|
|
|
|
header_to_binary('Content-Md5') -> <<"Content-Md5">>;
|
|
|
|
header_to_binary('Content-Range') -> <<"Content-Range">>;
|
|
|
|
header_to_binary('Content-Type') -> <<"Content-Type">>;
|
|
|
|
header_to_binary('Etag') -> <<"Etag">>;
|
|
|
|
header_to_binary('Expires') -> <<"Expires">>;
|
|
|
|
header_to_binary('Last-Modified') -> <<"Last-Modified">>;
|
|
|
|
header_to_binary('Accept-Ranges') -> <<"Accept-Ranges">>;
|
|
|
|
header_to_binary('Set-Cookie') -> <<"Set-Cookie">>;
|
|
|
|
header_to_binary('Set-Cookie2') -> <<"Set-Cookie2">>;
|
|
|
|
header_to_binary('X-Forwarded-For') -> <<"X-Forwarded-For">>;
|
|
|
|
header_to_binary('Cookie') -> <<"Cookie">>;
|
|
|
|
header_to_binary('Keep-Alive') -> <<"Keep-Alive">>;
|
|
|
|
header_to_binary('Proxy-Connection') -> <<"Proxy-Connection">>;
|
|
|
|
header_to_binary(B) when is_binary(B) -> B.
|
2012-09-15 22:03:00 +02:00
|
|
|
|
|
|
|
%% Tests.
|
|
|
|
|
|
|
|
-ifdef(TEST).
|
|
|
|
|
|
|
|
url_test() ->
|
|
|
|
{<<"http://localhost/path">>, _ } =
|
|
|
|
url(#http_req{transport=ranch_tcp, host= <<"localhost">>, port=80,
|
|
|
|
path= <<"/path">>, raw_qs= <<>>, pid=self()}),
|
|
|
|
{<<"http://localhost:443/path">>, _} =
|
|
|
|
url(#http_req{transport=ranch_tcp, host= <<"localhost">>, port=443,
|
|
|
|
path= <<"/path">>, raw_qs= <<>>, pid=self()}),
|
|
|
|
{<<"http://localhost:8080/path">>, _} =
|
|
|
|
url(#http_req{transport=ranch_tcp, host= <<"localhost">>, port=8080,
|
|
|
|
path= <<"/path">>, raw_qs= <<>>, pid=self()}),
|
|
|
|
{<<"http://localhost:8080/path?dummy=2785">>, _} =
|
|
|
|
url(#http_req{transport=ranch_tcp, host= <<"localhost">>, port=8080,
|
|
|
|
path= <<"/path">>, raw_qs= <<"dummy=2785">>, pid=self()}),
|
|
|
|
{<<"https://localhost/path">>, _} =
|
|
|
|
url(#http_req{transport=ranch_ssl, host= <<"localhost">>, port=443,
|
|
|
|
path= <<"/path">>, raw_qs= <<>>, pid=self()}),
|
|
|
|
{<<"https://localhost:8443/path">>, _} =
|
|
|
|
url(#http_req{transport=ranch_ssl, host= <<"localhost">>, port=8443,
|
|
|
|
path= <<"/path">>, raw_qs= <<>>, pid=self()}),
|
|
|
|
{<<"https://localhost:8443/path?dummy=2785">>, _} =
|
|
|
|
url(#http_req{transport=ranch_ssl, host= <<"localhost">>, port=8443,
|
|
|
|
path= <<"/path">>, raw_qs= <<"dummy=2785">>, pid=self()}),
|
|
|
|
ok.
|
|
|
|
|
|
|
|
-endif.
|