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

1315 commits

Author SHA1 Message Date
Loïc Hoguin
f14c45151d Escape reserved filename characters
Note that this commit has currently only been tested on Linux.
It might be incomplete for other platforms.
2016-06-06 17:39:06 +02:00
Loïc Hoguin
a82495fa5c Static: Fix status code returned with empty path_info 2016-06-06 17:38:39 +02:00
Loïc Hoguin
c9f5603650 Router: properly handle path segments
The path segments . and .. are now removed according to the
rules found in RFC3986.

The path segments are now percent-decoded using the correct
algorithm (the one in RFC3986 and not the "query string" one).
2016-06-06 17:35:48 +02:00
Loïc Hoguin
493794145e REST: Ignore If...Since if If...Match header exists
The If-Modified-Since and If-Unmodified-Since headers are
only used when If-None-Match or If-Match were not found,
respectively. The latter are preferred by the standard
and the former is only there for compatibility with older
clients.
2016-06-06 17:33:46 +02:00
Loïc Hoguin
6d63557235 REST: If-None-Match uses weak Etag comparison
Was badly implemented previously.
2016-06-06 17:33:03 +02:00
Loïc Hoguin
68c57430da REST: If-Match uses strong Etag comparison
Weak Etag never matches.
2016-06-06 17:32:04 +02:00
Loïc Hoguin
84b3b61b39 Remove the environment from cowboy_rest crash reports
It only serves to pollute logs.
2016-06-06 17:30:13 +02:00
Loïc Hoguin
725bdb9774 HTTP/2: Separate path and query components 2016-06-06 17:28:56 +02:00
Loïc Hoguin
8e9196215d HTTP/2: Handle internal errors 2016-06-06 17:28:35 +02:00
Loïc Hoguin
61e9f29279 HTTP/2: add support for sending files 2016-06-06 17:27:48 +02:00
Loïc Hoguin
7603518ed0 HTTP/1.1: Don't send 500 errors twice
The stream handler is responsible for sending errors.
The protocol should only send errors when no responses
were sent (this might not work yet).
2016-06-06 17:26:13 +02:00
Loïc Hoguin
327e8db623 Report request process crashes 2016-06-06 17:20:30 +02:00
Loïc Hoguin
d19134b02e Use the correct process type for clear connections 2016-06-06 16:13:51 +02:00
Loïc Hoguin
fb6940599c Wording tweak in static handler chapter in the guide 2016-06-06 16:12:24 +02:00
Loïc Hoguin
b5a40256dd Partial update of the user guide
I will do more breaking changes before documenting more.
2016-05-24 14:50:27 +02:00
Loïc Hoguin
25912dfc05 Fix ssl_hello_world example; document HTTP/2 output 2016-04-30 14:58:32 +02:00
Loïc Hoguin
ff936ff0ee Fix hello_world example 2016-04-30 14:41:10 +02:00
Loïc Hoguin
45158c1da4 Clarify comments about remaining tests to add to rfc7540_SUITE 2016-03-14 00:00:00 +01:00
Loïc Hoguin
3969c31824 Fix most remaining HTTP/2 handshake tests
One category of tests involving the SETTINGS ack still fails.
It is probably wise to leave these until more SETTINGS related
tests are written.
2016-03-13 23:14:57 +01:00
Loïc Hoguin
2620d65fde Fix more HTTP/2 handshake test cases 2016-03-13 11:26:26 +01:00
Loïc Hoguin
4e6a4ee53f Add initial HTTP/1.1 Upgrade to HTTP/2
The same edge cases that fail with other handshake methods
also fail here (mostly bad preface/timeouts stuff). In
addition, the HTTP2-Settings header contents are currently
not checked and so the related edge case tests also fail.
2016-03-12 18:25:35 +01:00
Loïc Hoguin
92edad53d2 Add the beginning of the rfc7540 test suite
Currently only testing handshake.

Tests that pass currently involve no request/response.
ALPN and prior knowledge support have some edge cases left to fix.
HTTP/1.1 Upgrade has not been implemented yet.
2016-03-10 23:30:49 +01:00
Loïc Hoguin
e87438ffb1 Update Ranch to 1.2.1 2016-03-10 23:30:19 +01:00
Loïc Hoguin
0193538dba Fix warnings 2016-03-06 18:09:43 +01:00
Loïc Hoguin
7bdd710849 Completely remove SPDY 2016-03-06 17:48:35 +01:00
Loïc Hoguin
b370442a63 Initial commit with connection/streams
Breaking changes with previous commit. This is a very large change,
and I am giving up on making a single commit that fixes everything.
More commits will follow slowly adding back features, introducing
new tests and fixing the documentation.

This change contains most of the work toward unifying the interface
for handling both HTTP/1.1 and HTTP/2. HTTP/1.1 connections are now
no longer 1 process per connection; instead by default 1 process per
request is also created. This has a number of pros and cons.

Because it has cons, we also allow users to use a lower-level API
that acts on "streams" (requests/responses) directly at the connection
process-level. If performance is a concern, one can always write a
stream handler. The performance in this case will be even greater
than with Cowboy 1, although all the special handlers are unavailable.

When switching to Websocket, after the handler returns from init/2,
Cowboy stops the stream and the Websocket protocol takes over the
connection process. Websocket then calls websocket_init/2 for any
additional initialization such as timers, because the process is
different in init/2 and websocket_*/* functions. This however would
allow us to use websocket_init/2 for sending messages on connect,
instead of sending ourselves a message and be subject to races.
Note that websocket_init/2 is optional.

This is all a big change and while most of the tests pass, some
functionality currently doesn't. SPDY is broken and will be removed
soon in favor of HTTP/2. Automatic compression is currently disabled.
The cowboy_req interface probably still have a few functions that
need to be updated. The docs and examples do not refer the current
functionality anymore.

Everything will be fixed over time. Feedback is more than welcome.
Open a ticket!
2016-03-05 20:20:42 +01:00
Loïc Hoguin
dbb636034f Minor grammar improvements from Derek Brown
[ci-skip]
2016-01-15 16:16:56 +01:00
Loïc Hoguin
6deac75ea4 Update Erlang.mk 2016-01-15 14:56:00 +01:00
Loïc Hoguin
8fd7364517 Try an experimental Erlang.mk CI feature 2016-01-15 14:44:26 +01:00
Loïc Hoguin
e84e06d8f9 Update CI 2016-01-15 13:48:35 +01:00
Loïc Hoguin
3d48e58111 Make the getting started properly use master 2016-01-15 11:19:59 +01:00
Loïc Hoguin
ec82e3548b Simplify specifying the Cowboy version in examples 2016-01-14 22:58:22 +01:00
Loïc Hoguin
cf44496005 Remove the .app.src file in all examples 2016-01-14 20:56:31 +01:00
Loïc Hoguin
5dd9d877b1 Convert the example index README to AsciiDoc 2016-01-14 20:09:01 +01:00
Loïc Hoguin
6f8cb8225a Merge branch 'patch-1' of https://github.com/yurrriq/cowboy 2016-01-14 20:01:52 +01:00
Loïc Hoguin
394b4f0bf7 Simplify example instructions and fix broken examples
Also convert to AsciiDoc while we're at it.
2016-01-14 20:00:50 +01:00
Loïc Hoguin
4023e7f4e4 Convert the documentation to Asciidoc
A few small revisions were made, and Erlang.mk has been updated.
2016-01-14 13:37:20 +01:00
Eric Bailey
a56d3a6fe5 Update README.md
Consistently use the imperative mood and add link to LFE examples.
2016-01-06 16:55:28 -06:00
Loïc Hoguin
b7d666cfc7 Merge pull request #924 from abs/patch-1
Update README.md
2015-12-11 23:05:30 +01:00
Andrei Soroker
986d0f1c3f Update README.md
Replace Kato with Sameroom
2015-12-11 14:04:39 -08:00
Loïc Hoguin
837cf8b9ce Update Erlang.mk 2015-11-16 23:08:38 +01:00
Loïc Hoguin
c37852fa2b Update CONTRIBUTING 2015-11-16 18:55:53 +01:00
Thomas Gebert
f50bf62416 Update README.md
I noticed that this appeared to point to a bad URL.  If LeoFS is sponsoring this, they'd probably prefer having the right URL.
2015-10-28 18:04:51 -04:00
Loïc Hoguin
27ecd7fca1 Update OTP versions to use for CI 2015-09-23 13:58:38 +02:00
Loïc Hoguin
0ffde50991 Update apt-get before installing things on CI 2015-08-16 20:24:29 +02:00
Alexey Lebedeff
b290b88a67 Use 'Connection' header only when necessary
Fixes #839 when 'Connection: Keep-Alive' wasn't sent in a HTTP/1.0
response. Now the usage of 'Connection' header is consistent with
current protocol version: when this header is not specified explicitly
in the response, HTTP/1.0 implies 'Connection: close' and HTTP/1.1
implies 'Connection: Keep-Alive'. So if current 'Connection' value
matches the default value of current protocol, we won't state obvious
fact in the response; and vice versa.

Amended to fix and improve tests, and revert the variable name
change from HTTP11Headers to StdHeaders. I think it's still good
to leave it as is because it's not really a standard header for
HTTP/1.0, and it's gone from HTTP/2 entirely.
2015-08-07 12:48:07 +02:00
Loïc Hoguin
e25634cd9d Add optional callbacks
Mostly useful for REST, which has a ton. This is an initial
commit, it still needs to be tested, but it's time to sleep.
2015-07-27 23:58:58 +02:00
Loïc Hoguin
dd1eaee0cd Add spec to silence a Dialyzer warning
Yes I know the function never returns. :-)
2015-07-27 17:58:27 +02:00
Loïc Hoguin
d043148f4a Use map syntax instead of maps:put/3 2015-07-27 17:32:05 +02:00
Loïc Hoguin
ccd786baee Use erlang:monotonic_time instead of os:timestamp
Avoids unnecessary calculations.
2015-07-27 17:31:24 +02:00