mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Breaking update of the cowboy_req interface
Simplify the interface for most cowboy_req functions. They all return a single value except the four body reading functions. The reply functions now only return a Req value. Access functions do not return a Req anymore. Functions that used to cache results do not have a cache anymore. The interface for accessing query string and cookies has therefore been changed. There are now three query string functions: qs/1 provides access to the raw query string value; parse_qs/1 returns the query string as a list of key/values; match_qs/2 returns a map containing the values requested in the second argument, after applying constraints and default value. Similarly, there are two cookie functions: parse_cookies/1 and match_cookies/2. More match functions will be added in future commits. None of the functions return an error tuple anymore. It either works or crashes. Cowboy will attempt to provide an appropriate status code in the response of crashed handlers. As a result, the content decode function has its return value changed to a simple binary, and the body reading functions only return on success.
This commit is contained in:
parent
b57f94661f
commit
f1c3b6d76f
61 changed files with 814 additions and 767 deletions
60
src/cowboy_constraints.erl
Normal file
60
src/cowboy_constraints.erl
Normal file
|
@ -0,0 +1,60 @@
|
|||
%% Copyright (c) 2014, Loïc Hoguin <essen@ninenines.eu>
|
||||
%%
|
||||
%% 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.
|
||||
|
||||
-module(cowboy_constraints).
|
||||
|
||||
-export([validate/2]).
|
||||
|
||||
-type constraint() :: int | nonempty | fun().
|
||||
-export_type([constraint/0]).
|
||||
|
||||
-spec validate(binary(), [constraint()]) -> true | {true, any()} | false.
|
||||
validate(Value, [Constraint]) ->
|
||||
apply_constraint(Value, Constraint);
|
||||
validate(Value, Constraints) when is_list(Constraints) ->
|
||||
validate_list(Value, Constraints, original);
|
||||
validate(Value, Constraint) ->
|
||||
apply_constraint(Value, Constraint).
|
||||
|
||||
validate_list(_, [], original) ->
|
||||
true;
|
||||
validate_list(Value, [], modified) ->
|
||||
{true, Value};
|
||||
validate_list(Value, [Constraint|Tail], State) ->
|
||||
case apply_constraint(Value, Constraint) of
|
||||
true ->
|
||||
validate_list(Value, Tail, State);
|
||||
{true, Value2} ->
|
||||
validate_list(Value2, Tail, modified);
|
||||
false ->
|
||||
false
|
||||
end.
|
||||
|
||||
%% @todo {int, From, To}, etc.
|
||||
apply_constraint(Value, int) ->
|
||||
int(Value);
|
||||
apply_constraint(Value, nonempty) ->
|
||||
nonempty(Value);
|
||||
apply_constraint(Value, F) when is_function(F) ->
|
||||
F(Value).
|
||||
|
||||
%% Constraint functions.
|
||||
|
||||
int(Value) when is_binary(Value) ->
|
||||
try {true, list_to_integer(binary_to_list(Value))}
|
||||
catch _:_ -> false
|
||||
end.
|
||||
|
||||
nonempty(<<>>) -> false;
|
||||
nonempty(Value) when is_binary(Value) -> true.
|
Loading…
Add table
Add a link
Reference in a new issue