aboutsummaryrefslogtreecommitdiffstats
path: root/src/cow_http_hd.erl
diff options
context:
space:
mode:
authorAndrei Nesterov <[email protected]>2016-03-06 18:25:58 +0300
committerAndrei Nesterov <[email protected]>2016-06-07 21:36:15 +0300
commit85f3208c34ef8774eeb0cc49576c82dd01b8d689 (patch)
tree5f1b28b5a6269d602b2d1182bf9b199d5c87b407 /src/cow_http_hd.erl
parent0f1dd8f0f90097e24657dc04ff396651892a7c98 (diff)
downloadcowlib-85f3208c34ef8774eeb0cc49576c82dd01b8d689.tar.gz
cowlib-85f3208c34ef8774eeb0cc49576c82dd01b8d689.tar.bz2
cowlib-85f3208c34ef8774eeb0cc49576c82dd01b8d689.zip
Add cow_http_hd:access_control_allow_headers/1
Diffstat (limited to 'src/cow_http_hd.erl')
-rw-r--r--src/cow_http_hd.erl29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/cow_http_hd.erl b/src/cow_http_hd.erl
index 6a7837b..0baacab 100644
--- a/src/cow_http_hd.erl
+++ b/src/cow_http_hd.erl
@@ -113,6 +113,7 @@
%% Building.
-export([access_control_allow_credentials/0]).
+-export([access_control_allow_headers/1]).
-type etag() :: {weak | strong, binary()}.
-export_type([etag/0]).
@@ -3222,6 +3223,34 @@ parse_x_forwarded_for_error_test_() ->
-spec access_control_allow_credentials() -> iodata().
access_control_allow_credentials() -> <<"true">>.
+%% @doc Build the Access-Control-Allow-Headers header.
+
+-spec access_control_allow_headers([binary()]) -> iodata().
+access_control_allow_headers(Headers) ->
+ join_token_list(nonempty(Headers)).
+
+-ifdef(TEST).
+access_control_allow_headers_test_() ->
+ Tests = [
+ {[<<"accept">>], <<"accept">>},
+ {[<<"accept">>, <<"authorization">>, <<"content-type">>], <<"accept, authorization, content-type">>}
+ ],
+ [{lists:flatten(io_lib:format("~p", [V])),
+ fun() -> R = iolist_to_binary(access_control_allow_headers(V)) end} || {V, R} <- Tests].
+
+access_control_allow_headers_error_test_() ->
+ Tests = [
+ []
+ ],
+ [{lists:flatten(io_lib:format("~p", [V])),
+ fun() -> {'EXIT', _} = (catch access_control_allow_headers(V)) end} || V <- Tests].
+
+horse_access_control_allow_headers() ->
+ horse:repeat(200000,
+ access_control_allow_headers([<<"accept">>, <<"authorization">>, <<"content-type">>])
+ ).
+-endif.
+
%% Internal.
%% Only return if the list is not empty.