0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00
Commit graph

1302 commits

Author SHA1 Message Date
Loïc Hoguin
21d9ebe33b Reverse the order of arguments of match_* functions
Wasn't following the same order as the rest of the module.
2014-10-04 13:21:16 +03:00
Loïc Hoguin
4bc8e330fa Remove the REST known_content_type callback
This callback was simply useless.
2014-10-03 18:52:14 +03:00
Loïc Hoguin
bee5ca852b Replace some /binary to /bits in binary pattern matching
We don't need the extra check for multiple of 8 bits.
2014-10-03 18:25:29 +03:00
Loïc Hoguin
8e17d492b3 Fix a compile issue caused by a warning 2014-10-03 18:11:29 +03:00
Loïc Hoguin
403895a641 Fix two edge cases when the request-line provided is invalid 2014-10-03 17:19:04 +03:00
Loïc Hoguin
18f50b8697 Make examples use Cowboy master 2014-10-03 16:28:02 +03:00
Loïc Hoguin
e0c8e9ad5c Merge branch 'fix_peer_spec' of git://github.com/aahoughton/cowboy 2014-10-03 15:07:32 +03:00
Loïc Hoguin
26b19c645d Remove empty sections from the manual 2014-10-01 19:50:02 +03:00
Andrew Houghton
d1898b969e Req#http_req.peer can be 'undefined'; update spec accordingly 2014-10-01 09:55:51 -04:00
Loïc Hoguin
0dc063ab7d Improve handler interface and documentation
This change simplifies a little more the sub protocols mechanism.
Aliases have been removed. The renaming of loop handlers as long
polling handlers has been reverted.

Plain HTTP handlers now simply do their work in the init/2
callback. There is no specific code for them.

Loop handlers now follow the same return value as Websocket,
they use ok to continue and shutdown to stop.

Terminate reasons for all handler types have been documented.
The terminate callback is now appropriately called in all cases
(or should be).

Behaviors for all handler types have been moved in the module
that implement them. This means that cowboy_handler replaces
the cowboy_http_handler behavior, and similarly cowboy_loop
replaces cowboy_loop_handler, cowboy_websocket replaces
cowboy_websocket_handler. Finally cowboy_rest now has the
start of a behavior in it and will have the full list of
optional callbacks defined once Erlang 18.0 gets released.

The guide has been reorganized and should be easier to follow.
2014-09-30 20:12:13 +03:00
Loïc Hoguin
5ce4c2bfb4 Unify the init and terminate callbacks
This set of changes is the first step to simplify the
writing of handlers, by removing some extraneous
callbacks and making others optional.

init/3 is now init/2, its first argument being removed.

rest_init/2 and rest_terminate/2 have been removed.

websocket_init/3 and websocket_terminate/3 have been removed.

terminate/3 is now optional. It is called regardless of
the type of handler, including rest and websocket.

The return value of init/2 changed. It now returns
{Mod, Req, Opts} with Mod being either one of the four
handler type or a custom module. It can also return extra
timeout and hibernate options.

The signature for sub protocols has changed, they now
receive these extra timeout and hibernate options.

Loop handlers are now implemented in cowboy_long_polling,
and will be renamed throughout the project in a future commit.
2014-09-26 15:58:44 +03:00
Loïc Hoguin
fd37fad592 Small tweak from erlang:error/1 to error/1 2014-09-24 15:07:59 +03:00
Loïc Hoguin
c56bada509 Remove the error tuple return value for middlewares
It wasn't interesting compared to simply returning a halt tuple
with an explicit reply.
2014-09-24 15:03:10 +03:00
Loïc Hoguin
aa4d86b81f Remove the onrequest hook
It was redundant with middlewares. Allows us to save a few operations
for every incoming requests.
2014-09-24 14:39:17 +03:00
Loïc Hoguin
25259671f5 Make routing constraints use the fields format
This makes routing more in line with the rest of Cowboy and
allows us to use cowboy_constraints directly.
2014-09-23 21:36:52 +03:00
Loïc Hoguin
f1c3b6d76f 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.
2014-09-23 16:43:29 +03:00
Loïc Hoguin
b57f94661f Merge branch 'master' of git://github.com/okeuday/cowboy 2014-08-12 19:01:56 +02:00
Loïc Hoguin
ef0ec79322 Fix incorrect type in cowboy_static manual 2014-08-12 19:01:12 +02:00
Michael Truog
a32a476bf2 Add cowboy_req:part/2 export 2014-08-12 08:31:30 -07:00
Loïc Hoguin
2928456ae8 Merge branch 'patch-1' of git://github.com/asabil/cowboy 2014-08-11 19:25:47 +02:00
Ali Sabil
428653ab36 Fix REST guide reference to accept_missing_post
The guide refers to accept_missing_post instead of allow_missing_post.
2014-08-11 10:58:48 +02:00
Loïc Hoguin
260fc1e60b Handle absolute URIs that lack a path entirely 2014-08-06 11:32:58 +02:00
Loïc Hoguin
3625d6a2e2 Accept absolute URI scheme as uppercase
We should be doing a case insensitive comparison to be correct,
but this is more expensive. Almost all clients send lowercase,
this patch fixes handling of the aws/aws-sdk-php client which
sends uppercase, and no known client sends mixed case so I am
holding back on the more expensive solution for the moment.
2014-08-06 11:15:26 +02:00
Loïc Hoguin
a2fabcdecf Fix language in getting started 2014-08-02 12:55:15 +02:00
Loïc Hoguin
5cf9ac25e5 Update links extend -> ninenines 2014-08-02 12:38:15 +02:00
Loïc Hoguin
ee370accec Fix bad link format in the guide 2014-08-02 12:11:54 +02:00
Loïc Hoguin
021f4f6069 Update Cowboy to 1.0.0 2014-08-01 14:49:02 +02:00
Loïc Hoguin
03d8131f2a Remove 1.0 section in the ROADMAP 2014-08-01 14:43:04 +02:00
Loïc Hoguin
2d6ff3d3a9 Update CHANGELOG 2014-08-01 14:40:33 +02:00
Loïc Hoguin
aaac973cbd Update rebar.config 2014-08-01 14:33:30 +02:00
Loïc Hoguin
55ede9e5a9 Update AUTHORS 2014-08-01 14:31:46 +02:00
Loïc Hoguin
e16d1bafab Add OTP release support and versioning info to the guide 2014-08-01 14:27:30 +02:00
Loïc Hoguin
8d436c4744 Update the Getting started chapter to new erlang.mk
Length of the chapter divided by 2! \o/
2014-08-01 14:27:04 +02:00
Loïc Hoguin
62de3a62f9 Update to erlang.mk 1.0.0 2014-08-01 14:26:51 +02:00
Loïc Hoguin
9e437e8119 Merge branch 'master' of git://github.com/ztmr/cowboy 2014-07-27 16:45:58 +02:00
Tomas Morstein
912d3d3566 fix a documentation typo
The function `set_resp_header' is defined in `cowboy_req'
module, not the `cowboy'.
2014-07-26 12:32:04 +02:00
Loïc Hoguin
99061274b6 Merge branch 'http-1-0-keepalive' of git://github.com/heroku/cowboy 2014-07-17 13:54:29 +02:00
Fred Hebert
b10b34a8f2 Support ad-hoc keep-alive for HTTP/1.0 Clients
Only go for keep-alive if they submit a 'connection: keep-alive' header
in the request, keep behaviour the same otherwise.

The new RFC 7230 (http://tools.ietf.org/html/rfc7230#section-6.3)
states:

    If the received protocol is HTTP/1.0, the "keep-alive" connection
    option is present, the recipient is not a proxy, and the recipient
    wishes to honor the HTTP/1.0 "keep-alive" mechanism, the
    connection will persist after the current response;

Even though clients are discouraged from doing so in Appendix A.1.2
(http://tools.ietf.org/html/rfc7230#appendix-A.1.2)
2014-07-14 10:11:03 -04:00
Loïc Hoguin
9980348a1c Remove deprecated body reading interface 2014-07-12 15:42:45 +02:00
Loïc Hoguin
ecbebeefe8 Remove useless todo comments 2014-07-12 14:50:01 +02:00
Loïc Hoguin
e2b5c21443 Drop R15 support 2014-07-12 14:19:29 +02:00
Loïc Hoguin
de4697690c Small addition to the ROADMAP 2014-07-12 12:11:24 +02:00
Loïc Hoguin
97a3108576 Reply with 400 on header parsing crash
This is a first step to improve the HTTP status codes returned
by Cowboy on crashes. We will tweak it over time.

Also fixes a small bug where two replies may have been sent
when using loop handlers under rare conditions.
2014-07-12 12:09:43 +02:00
Loïc Hoguin
20f598f373 Clarify {true, URL} return for AcceptResource callback 2014-07-10 14:27:11 +02:00
Loïc Hoguin
fd423eb170 Merge branch 'fix-spdy-parse-frame' of git://github.com/voluntas/cowboy
A fix for a possible bug has been made to the original patch.
2014-07-07 17:22:36 +02:00
Loïc Hoguin
7f179f377f Add failing test of chaining SPDY frames 2014-07-07 17:18:14 +02:00
Loïc Hoguin
d38c064f73 Small addition to 2.0 roadmap 2014-07-07 14:14:36 +02:00
Loïc Hoguin
078d686a0a Provide installable man pages
make docs: generate Markdown and man pages in doc/
make install-docs: install man pages to be usable directly

Docs are generated from the ezdoc files in doc/src/.
2014-07-06 13:10:35 +02:00
Loïc Hoguin
1a71a733c3 Add a new guide chapter: designing a resource handler 2014-07-01 14:06:20 +02:00
Loïc Hoguin
993606ede8 Explain that passing Req around leads to undefined behavior 2014-07-01 13:21:24 +02:00