aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/manual/cowboy_req.push.asciidoc
blob: 200561fe6a13a65a9afd8cea8047348a2e440be1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
= cowboy_req:push(3)

== Name

cowboy_req:push - Push a resource to the client

== Description

[source,erlang]
----
push(Path, Headers, Req :: cowboy_req:req())
    -> push(Path, Headers, Req, #{})

push(Path, Headers, Req :: cowboy_req:req(), Opts)
    -> ok

Path    :: iodata()                %% case sensitive
Headers :: cowboy:http_headers()
Opts    :: cowboy_req:push_opts()
----

Push a resource to the client.

Cowboy handles push requests the same way as if they came
from the client, including the creation of a request handling
process, routing and middlewares and so on.

This function does nothing when the HTTP/1.1 protocol is
used. You may call it safely without first checking whether
the connection uses HTTP/2.

The header names must be given as lowercase binary strings.
While header names are case insensitive, Cowboy requires them
to be given as lowercase to function properly.

Note that the headers must be the headers the client is expected
to send if it were to perform the request. They are therefore
request headers, and not response headers.

By default, Cowboy will use the GET method, an empty query string,
and take the scheme, host and port directly from the current
request's URI. You can override them by passing options.

It is not possible to push resources after sending a response.
Any attempt will result in an error.

== Arguments

Path::

The status code for the response.

Headers::

The response headers.

Header names must be given as lowercase binary strings.

Req::

The Req object.

Opts::

Customize the HTTP method or the URI scheme, host, port
or query string.

== Return value

The atom `ok` is always returned. It can be safely ignored.

== Changelog

* *2.0*: Function introduced.

== Examples

.Push a resource
[source,erlang]
----
cowboy_req:push("/static/style.css", #{
    <<"accept">> => <<"text/css">>
}, Req),
----

.Push a resource with a custom host
[source,erlang]
----
cowboy_req:push("/static/style.css", #{
    <<"accept">> => <<"text/css">>
}, #{host => <<"cdn.example.org">>}, Req),
----

== See also

link:man:cowboy_req(3)[cowboy_req(3)],
link:man:cowboy_req:reply(3)[cowboy_req:reply(3)],
link:man:cowboy_req:stream_reply(3)[cowboy_req:stream_reply(3)]