Kim Alvefur
73b512d3a6
util.error: Use is_error() instead of is_err() everywhere
...
Continuation of 4b39691a274e
2024-10-29 14:10:02 +01:00
Kim Alvefur
a26b39e1b7
net.http.server: Fix whitespace-ignoring syntax
2023-12-01 22:00:18 +01:00
Kim Alvefur
c41d63004a
net.http.server: Complete async waiter for non-persistent connections
...
Otherwise requests with Connection: close would be stuck in the async
wait that starts after the handle_request() call.
Together with the new async debugging, this makes the async thread stay
in the set of waiting runners forever, where previously it would simply
be garbage collected.
2023-11-24 00:31:08 +01:00
Kim Alvefur
adfd306e6e
net.http.server: Fix typo in previous commit
2023-09-23 15:48:21 +02:00
Kim Alvefur
e1128dbdbc
net.http.server: Support setting Content-Type of uncaught HTTP errors
...
mod_http_errors normally sets the Content-Type header via the response
object, which isn't available when handling these uncaught errors.
Without a Content-Type header the browser is forced to guess, which may
or may not result in something sensible.
2023-09-22 01:47:21 +02:00
Kim Alvefur
4d9931786d
net.http.server: Return request ID in header to aid debugging
...
Eases locating the request in logs
2023-05-29 01:42:31 +02:00
Kim Alvefur
223a8b69a4
net.http.server: Remove "Firing event" logs, use event logging instead
...
Since these are noisy and we have the thing in util.helpers to log
events fired.
The new status line events are meant to replace these as they include
more useful info.
2023-05-14 18:48:20 +02:00
Kim Alvefur
ff0b9242e3
net.http.server: Log request and response status lines
...
Points out the beginning and end of a request.
2023-05-14 18:44:38 +02:00
Kim Alvefur
fe8e6dc8ca
net.http.server: Assign each request its own log source
2023-05-14 18:44:11 +02:00
Kim Alvefur
f064c099a2
net.http.server: Assign an ID to each request, shared with response
...
Goal is improve tracking of individual HTTP requests throughout its
life-cycle. Having a single ID to use in logging should help here.
2023-05-14 18:38:22 +02:00
Kim Alvefur
869581384d
net: Prefix module imports with prosody namespace
2023-03-17 16:23:12 +01:00
Matthew Wild
424a334450
Merge 0.12->trunk
2023-02-16 16:00:07 +00:00
Matthew Wild
bc1e51eb83
net.http.server: Add new API to get HTTP request from a connection
...
This information is sometimes necessary in the context where we have a
connection that we know (or believe to be) associated with an incoming HTTP
request.
For example, it can be used to retrieve the IP address of a request (which may
differ from the IP address of the connection, due to X-Forwarded-For and co).
Thanks to the Jitsi team for highlighting this gap in the API.
2023-02-16 15:59:26 +00:00
Kim Alvefur
fe97c773a6
net.http.server: Fix #1789
...
Unregistering the response before sending the trailer of the chunked
transfer encoding prevents opportunistic writes from being invoked and
running this code again when, which may cause an error when closing the
file handle a second time.
Normally the file size is known, so no chuck headers are sent.
2023-01-08 13:35:04 +01:00
Kim Alvefur
d364693166
net.http.server: Close file handle earlier
...
Frees unneeded resources earlier, so they're not held on to while
potentially sending the chunk trailer.
2023-01-08 13:51:30 +01:00
Kim Alvefur
0175ab04cc
net.http.server: Split out method for sending only the header
...
Makes it easier to reuse, e.g. for SSE or websockets or other custom
responses.
2021-04-24 10:50:24 +02:00
Kim Alvefur
2acba62388
net.http.server: Set request.ip so mod_http doesn't have to
...
Because it already sets request.secure, which depends on the connection,
just like the IP, so it makes sense to do both in the same place.
Dealing with proxies can be left to mod_http for now, but maybe it could
move into some util some day?
2021-02-27 21:37:16 +01:00
Kim Alvefur
f0ac919609
net.http.server: Don't pause early streaming uploads
...
Fixes that otherwise it would wait for the request to be done after
receiving the head of the request, when it's meant to select a target
for where to store the data, instead of waiting after receiving the
request for when the request has been handled.
2021-02-13 13:38:56 +01:00
Kim Alvefur
3c96f613c0
net.http.server: Allow storing more than the parser in the session
...
Storing the async thread on the connection was weird.
2021-02-12 14:47:27 +01:00
Kim Alvefur
f0202d38c2
net.http.server: Enable async during HTTP request handling ( fixes #1487 )
2020-07-12 20:31:31 +02:00
Matthew Wild
7672305919
Merge 0.11->trunk
2020-10-13 11:59:40 +01:00
Matthew Wild
518904b66c
net.http.server: Don't send Content-Length on 1xx/204 responses, per RFC ( fixes #1596 )
2020-10-13 11:55:28 +01:00
Matthew Wild
9229c7a571
net.http.server: Default to HTTP result code 500 when promise is rejected
2020-09-28 16:21:41 +01:00
Kim Alvefur
540be50a3c
net.http.server: Fix reporting of missing Host header
...
The "Missing or invalid 'Host' header" case was dead code previously
because `host` was always at least an empty string.
2020-06-23 15:43:57 +02:00
Kim Alvefur
48c9a60d19
net.http.server: Strip port from Host header in IPv6 friendly way ( fix #1302 )
...
E.g. given `[::1]:5280` it would previously result in only `[` instead
of the correct `[::1]`
2020-06-23 15:39:31 +02:00
Kim Alvefur
f7614d491a
Merge 0.11->trunk
2020-06-23 17:59:24 +02:00
Kim Alvefur
4f2548e8ef
net.http.server: Use error code from util.error ( fixes #1502 )
...
Oversight in 955e54e451dc when this was added.
2020-04-12 22:57:14 +02:00
Kim Alvefur
87d0125802
util.error: Move default for numeric error code to net.http.server
...
Stanza errors can also have numbers but these are a legacy thing and
rarely used, except in MUC. HTTP errors on the other hand always have a
number.
2019-12-14 20:28:44 +01:00
Kim Alvefur
58990598f2
net.http.server: Treat promise rejection without value as a HTTP 500 error
2019-11-05 01:34:13 +01:00
Kim Alvefur
5cac177270
net.http.server: Handle promises from http handlers
2019-11-01 22:31:15 +01:00
Kim Alvefur
fdfe1e0b2b
net.http.server: Handle util.error objects from http handlers
2019-11-01 22:30:35 +01:00
Kim Alvefur
fbab8ed06a
net.http.server: Tail call because tail call!
2019-11-01 22:28:39 +01:00
Kim Alvefur
6a73014b9a
net.http.server: Factor out handling of event response for easier reuse
2019-11-01 22:25:54 +01:00
Kim Alvefur
30a72c72a3
net.http.server: Explicitly convert number to string, avoiding implicit coercion
2019-10-12 19:30:29 +02:00
Kim Alvefur
8e485ec320
net.http.server: Re-fire unhandled HEAD requsts as GET events ( fixes #1447 )
...
BC: This overloads the GET event.
Previous commit ensures HEAD requests are sent without a body.
2019-10-12 18:27:54 +02:00
Kim Alvefur
89a6f8d8c1
net.http.server: Ensure HEAD requests are sent with empty body
2019-10-12 18:27:02 +02:00
Matthew Wild
8ebaee9c3d
net.http.server: Move event formation to avoid traceback on missing Host header
2018-11-13 15:03:24 +00:00
Matthew Wild
f5f6460b2e
Many things: switch from hacky multi-arg xpcall implementations to a standard util.xpcall
2018-10-26 19:32:00 +01:00
Kim Alvefur
95eac7d4c6
net.http.server: Delay host checks until after host-less event
...
This allows handling events without any hosts enabled.
2018-09-23 18:59:04 +02:00
Kim Alvefur
91c5bd7853
net.http.server: Fire an event without host
2018-09-21 23:40:17 +02:00
Kim Alvefur
a31b6728d4
Revert 2dc7490899ae::5d6b252bc36f: Unfinished and broken
2018-09-21 22:14:40 +02:00
Kim Alvefur
83cd0e7ba7
net.http.server: Fix default host logic
...
This was used to construct the event name previously
2018-09-21 21:33:41 +02:00
Kim Alvefur
c6540b14f9
net.http.server: Move handling of hosts to mod_http
...
Now an event like `GET /path` is fired at first, and mod\_http
dispatches the old `GET host/path` events.
2018-09-21 21:19:41 +02:00
Kim Alvefur
843edf3cb1
net.http.server: Include response object in most http-error events
2017-10-27 14:08:28 +02:00
Kim Alvefur
f30f5f6218
net.http.server: Add luacheck annotations
2016-08-18 15:21:30 +02:00
Kim Alvefur
860d3a58b8
Merge 0.9->0.10
2016-08-18 15:16:02 +02:00
Kim Alvefur
47fe58f5ca
net.http.server: Expose way to set http server options
2016-08-18 14:50:39 +02:00
Kim Alvefur
3506b08847
net.http.server: Set blocksize for serving data from FDs to 64k (sweet spot of efficiency according to a recent study)
2016-08-08 16:07:46 +02:00
Kim Alvefur
99ba4462fc
net.http.server: Add response method for reading response body from a file handle
2016-07-11 11:52:43 +02:00
Kim Alvefur
83e7c91e01
net.http.server: Return from listen_on() whatever net.server.addserver() returns
2016-01-16 22:43:11 +01:00