The cowboy_req
module provides functions to access, manipulate
and respond to requests.
The functions in this module follow patterns for their return types, based on the kind of function.
{Value, Req}
{Result, Req} | {Result, Value, Req} | {error, atom()}
Req
boolean()
The only exception is the chunk/2
function which may return ok
.
Whenever Req
is returned, you must use this returned value and
ignore any previous you may have had. This value contains various
state informations which are necessary for Cowboy to do some lazy
evaluation or cache results where appropriate.
All functions which perform an action should only be called once. This includes reading the request body or replying. Cowboy will generally throw an error on the second call.
It is highly discouraged to pass the Req object to another process.
Doing so and calling cowboy_req
functions from it leads to
undefined behavior.
| {length, non_neg_integer()}
| {read_length, non_neg_integer()}
| {read_timeout, timeout()}
| {transfer_decode, transfer_decode_fun(), any()}
| {content_decode, content_decode_fun()}]
Request body reading options.
| {domain, binary()} | {path, binary()}
| {secure, boolean()} | {http_only, boolean()}]
Cookie options.
The
Req
object.All functions in this module receive a
Req
as argument, and most of them return a new object labelledReq2
in the function descriptions below.
Types:
- Name = atom()
- Default = any()
- Value = any() | Default
Return the value for the given binding.
By default the value is a binary, however constraints may change the type of this value (for example automatically converting numbers to integer).
Types:
- Name = atom()
- Value = any()
Return all bindings.
By default the value is a binary, however constraints may change the type of this value (for example automatically converting numbers to integer).
Types:
- Name = binary()
- Default = any()
- Value = binary() | Default
Return the value for the given cookie.
Cookie names are case sensitive.
Types:
- Name = binary()
- Value = binary()
Return all cookies.
Types:
- Name = binary()
- Default = any()
- Value = binary() | Default
Return the value for the given header.
While header names are case insensitive, this function expects the name to be a lowercase binary.
Types:
- Headers = cowboy:http_headers()
Return all headers.
Types:
- Host = binary()
Return the requested host.
Types:
- HostInfo = cowboy_router:tokens() | undefined
Return the extra tokens from matching against
...
during routing.
Types:
- HostURL = binary() | undefined
Return the requested URL excluding the path component.
This function will always return
undefined
until thecowboy_router
middleware has been executed. This includes theonrequest
hook.
Types:
- Name = atom()
- Default = any()
- Value = any()
Return metadata about the request.
Types:
- Method = binary()
Return the method.
Methods are case sensitive. Standard methods are always uppercase.
| {undefined, Value, Req2} | {error, badarg}
Types:
- Name = binary()
- Default = any()
- ParsedValue - see below
- Value = any()
Parse the given header.
While header names are case insensitive, this function expects the name to be a lowercase binary.
The
parse_header/2
function will callparser_header/3
with a different default value depending on the header being parsed. The following table summarizes the default values used.
Header name Default value transfer-encoding [<<"identity">>]
Any other header undefined
The parsed value differs depending on the header being parsed. The following table summarizes the different types returned.
Header name Type accept [{{Type, SubType, Params}, Quality, AcceptExt}]
accept-charset [{Charset, Quality}]
accept-encoding [{Encoding, Quality}]
accept-language [{LanguageTag, Quality}]
authorization {AuthType, Credentials}
content-length non_neg_integer()
content-type {Type, SubType, ContentTypeParams}
cookie [{binary(), binary()}]
expect `[Expect if-match `'*' if-modified-since calendar:datetime()
if-none-match `'*' if-unmodified-since calendar:datetime()
range {Unit, [Range]}
sec-websocket-protocol [binary()]
transfer-encoding [binary()]
upgrade [binary()]
x-forwarded-for [binary()]
Types for the above table:
- Type = SubType = Charset = Encoding = LanguageTag = binary()
- AuthType = Expect = OpaqueTag = Unit = binary()
- Params = ContentTypeParams = [{binary(), binary()}]
- Quality = 0..1000
- AcceptExt = [{binary(), binary()} | binary()]
- Credentials - see below
- Range = {non_neg_integer(), non_neg_integer() | infinity} | neg_integer()
The cookie names and values, the values of the sec-websocket-protocol and x-forwarded-for headers, the values in
AcceptExt
andParams
, the authorizationCredentials
, theExpectValue
andOpaqueTag
are case sensitive. All values inContentTypeParams
are case sensitive except the value of the charset parameter, which is case insensitive. All other values are case insensitive and will be returned as lowercase.The headers accept, accept-encoding and cookie headers can return an empty list. Others will return
{error, badarg}
if the header value is empty.The authorization header parsing code currently only supports basic HTTP authentication. The
Credentials
type is thus{Username, Password}
withUsername
andPassword
beingbinary()
.The range header value
Range
can take three forms:
{From, To}
: fromFrom
toTo
units{From, infinity}
: everything afterFrom
units-Final
: the finalFinal
unitsAn
undefined
tuple will be returned if Cowboy doesn't know how to parse the requested header.
Types:
- Path = binary()
Return the requested path.
Types:
- PathInfo = cowboy_router:tokens() | undefined
Return the extra tokens from matching against
...
during routing.
Types:
- Peer = {inet:ip_address(), inet:port_number()}
Return the client's IP address and port number.
Types:
- Port = inet:port_number()
Return the request's port.
The port returned by this function is obtained by parsing the host header. It may be different than the actual port the client used to connect to the Cowboy server.
Types:
- QueryString = binary()
Return the request's query string.
Types:
- Name = binary()
- Default = any()
- Value = binary() | true
Return a value from the request's query string.
The value
true
will be returned when the name was found in the query string without an associated value.
Types:
- Name = binary()
- Value = binary() | true
Return the request's query string as a list of tuples.
The value
true
will be returned when a name was found in the query string without an associated value.
Types:
- Name = atom()
- Value = any()
Set metadata about the request.
An existing value will be overwritten.
Types:
- URL = binary() | undefined
Return the requested URL.
This function will always return
undefined
until thecowboy_router
middleware has been executed. This includes theonrequest
hook.
Types:
- Version = cowboy:http_version()
Return the HTTP version used for this request.
Types:
- Opts = [body_opt()]
- Data = binary()
- Reason = atom()
Read the request body.
This function will read a chunk of the request body. If there is more data to be read after this function call, then a
more
tuple is returned. Otherwise anok
tuple is returned.Cowboy will automatically send a
100 Continue
reply if required. If this behavior is not desirable, it can be disabled by setting thecontinue
option tofalse
.Cowboy will by default attempt to read up to 8MB of the body, but in chunks of 1MB. It will use a timeout of 15s per chunk. All these values can be changed using the
length
,read_length
andread_timeout
options respectively. Note that the size of the data may not be the same as requested as the decoding functions may grow or shrink it, and Cowboy makes not attempt at returning an exact amount.Cowboy will properly handle chunked transfer-encoding by default. If any other transfer-encoding or content-encoding has been used for the request, custom decoding functions can be used. The
content_decode
andtransfer_decode
options allow setting the decode functions manually.After the body has been streamed fully, Cowboy will remove the transfer-encoding header from the
Req
object, and add the content-length header if it wasn't already there.This function can only be called once. Cowboy will not cache the result of this call.
Types:
- Length = non_neg_integer() | undefined
Return the length of the request body.
The length will only be returned if the request does not use any transfer-encoding and if the content-length header is present.
[{length, 64000}, {read_length, 64000}, {read_timeout, 5000}])
| {badlength, Req2} | {error, Reason}
Types:
- Opts = [body_opt()]
- Name = binary()
- Value = binary() | true
- Reason = chunked | badlength | atom()
Return the request body as a list of tuples.
This function will parse the body assuming the content-type application/x-www-form-urlencoded, commonly used for the query string.
This function calls
body/2
for reading the body, with the same options it received. By default it will attempt to read a body of 64KB in one chunk, with a timeout of 5s. If the body is larger then abadlength
tuple is returned.This function can only be called once. Cowboy will not cache the result of this call.
Return whether the request has a body.
[{length, 64000}, {read_length, 64000}, {read_timeout, 5000}])
Types:
- Opts = [body_opt()]
- Headers = cow_multipart:headers()
Read the headers for the next part of the multipart message.
Cowboy will skip any data remaining until the beginning of the next part. This includes the preamble to the multipart message but also the body of a previous part if it hasn't been read. Both are skipped automatically when calling this function.
The headers returned are MIME headers, NOT HTTP headers. They can be parsed using the functions from the
cow_multipart
module. In addition, thecow_multipart:form_data/1
function can be used to quickly figure outmultipart/form-data
messages. It takes the list of headers and returns whether this part is a simple form field or a file being uploaded.Note that once a part has been read, or skipped, it cannot be read again.
This function calls
body/2
for reading the body, with the same options it received. By default it will only read chunks of 64KB with a timeout of 5s. This is tailored for reading part headers, not for skipping the previous part's body. You might want to consider skipping large parts manually.
Types:
- Opts = [body_opt()]
- Data = binary()
Read the body of the current part of the multipart message.
This function calls
body/2
for reading the body, with the same options it received. It uses the same defaults.If there are more data to be read from the socket for this part, the function will return what it could read inside a
more
tuple. Otherwise, it will return anok
tuple.Calling this function again after receiving a
more
tuple will return another chunk of body. The last chunk will be returned inside anok
tuple.Note that once the body has been read, fully or partially, it cannot be read again.
Types:
- Data = iodata()
- Reason = atom()
Send a chunk of data.
This function should be called as many times as needed to send data chunks after calling
chunked_reply/{2,3}
.When the method is HEAD, no data will actually be sent.
If the request uses HTTP/1.0, the data is sent directly without wrapping it in an HTTP/1.1 chunk, providing compatibility with older clients.
Types:
- StatusCode = cowboy:http_status()
- Headers = cowboy:http_headers()
Send a response using chunked transfer-encoding.
This function effectively sends the response status line and headers to the client.
This function will not send any body set previously. After this call the handler must use the
chunk/2
function repeatedly to send the body in as many chunks as needed.If the request uses HTTP/1.0, the data is sent directly without wrapping it in an HTTP/1.1 chunk, providing compatibility with older clients.
This function can only be called once, with the exception of overriding the response in the
onresponse
hook.
Types:
- Reason = atom()
Send a 100 Continue intermediate reply.
This reply is required before the client starts sending the body when the request contains the
expect
header with the100-continue
value.Cowboy will send this automatically when required. However you may want to do it manually by disabling this behavior with the
continue
body option and then calling this function.
Types:
- Name = binary()
Delete the given response header.
While header names are case insensitive, this function expects the name to be a lowercase binary.
Return whether a response body has been set.
This function will return false if a response body has been set with a length of 0.
Types:
- Name = binary()
Return whether the given response header has been set.
While header names are case insensitive, this function expects the name to be a lowercase binary.
Types:
- StatusCode = cowboy:http_status()
- Headers = cowboy:http_headers()
- Body = iodata()
Send a response.
This function effectively sends the response status line, headers and body to the client, in a single send function call.
The
reply/2
andreply/3
functions will send the body set previously, if any. Thereply/4
function overrides any body set previously and sendsBody
instead.If a body function was set, and
reply/2
orreply/3
was used, it will be called before returning.No more data can be sent to the client after this function returns.
This function can only be called once, with the exception of overriding the response in the
onresponse
hook.
Types:
- Body = iodata()
Set a response body.
This body will not be sent if
chunked_reply/{2,3}
orreply/4
is used, as they override it.
Types:
- Fun = fun((Socket, Transport) -> ok)
- Socket = inet:socket()
- Transport = module()
- Length = non_neg_integer()
Set a fun for sending the response body.
If a
Length
is provided, it will be sent in the content-length header in the response. It is recommended to set the length if it can be known in advance. Otherwise, the transfer-encoding header will be set to identity.This function will only be called if the response is sent using the
reply/2
orreply/3
function.The fun will receive the Ranch
Socket
andTransport
as arguments. Only send and sendfile operations are supported.
Types:
- Fun = fun((ChunkFun) -> ok)
- ChunkFun = fun((iodata()) -> ok | {error, atom()})
Set a fun for sending the response body using chunked transfer-encoding.
This function will only be called if the response is sent using the
reply/2
orreply/3
function.The fun will receive another fun as argument. This fun is to be used to send chunks in a similar way to the
chunk/2
function, except the fun only takes one argument, the data to be sent in the chunk.
Types:
- Name = iodata()
- Value = iodata()
- Opts = cookie_opts()
Set a cookie in the response.
Cookie names are case sensitive.
Types:
- Name = binary()
- Value = iodata()
Set a response header.
You should use
set_resp_cookie/4
instead of this function to set cookies.
Remove any non-essential data from the
Req
object.Long-lived connections usually only need to manipulate the
Req
object at initialization. Compacting allows saving up memory by discarding extraneous information.