aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE_data/rest_resource_etags.erl
blob: 9509d0ac1e79f7069312c2b3bcb5ed42599e5a3e (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
-module(rest_resource_etags).

-export([init/2]).
-export([generate_etag/2]).
-export([content_types_provided/2]).
-export([get_text_plain/2]).

init(Req, Opts) ->
	{rest, Req, Opts}.

generate_etag(Req, State) ->
	#{type := Type} = cowboy_req:match_qs(Req, [type]),
	case Type of
		%% Correct return values from generate_etag/2.
		<<"tuple-weak">> ->
			{{weak, <<"etag-header-value">>}, Req, State};
		<<"tuple-strong">> ->
			{{strong, <<"etag-header-value">>}, Req, State};
		%% Backwards compatible return values from generate_etag/2.
		<<"binary-weak-quoted">> ->
			{<<"W/\"etag-header-value\"">>, Req, State};
		<<"binary-strong-quoted">> ->
			{<<"\"etag-header-value\"">>, Req, State};
		%% Invalid return values from generate_etag/2.
		<<"binary-strong-unquoted">> ->
			cowboy_error_h:ignore(cowboy_http, quoted_string, 2),
			{<<"etag-header-value">>, Req, State};
		<<"binary-weak-unquoted">> ->
			cowboy_error_h:ignore(cowboy_http, quoted_string, 2),
			{<<"W/etag-header-value">>, Req, State}
	end.

content_types_provided(Req, State) ->
	{[{{<<"text">>, <<"plain">>, []}, get_text_plain}], Req, State}.

get_text_plain(Req, State) ->
	{<<"This is REST!">>, Req, State}.