Kim Alvefur
89064c8cfb
mod_s2s: Clarify comment about unused TLS settings
...
Ref 115b5e32d960
2021-02-06 21:40:21 +01:00
Kim Alvefur
6a7ef48669
mod_admin_shell: Add help section with (top level) MUC commands
...
These were previously only documented on the site.
2021-02-05 15:52:46 +01:00
Kim Alvefur
8825267f5c
mod_admin_shell: Pretty-print HTTP endpoints in a human table
...
Attempted readability improvement
2021-02-03 23:46:13 +01:00
Kim Alvefur
fdf14d1c06
mod_admin_shell: Remove previous print() call
...
Accident involving Mercurial interactive commit
2021-02-03 23:47:59 +01:00
Kim Alvefur
8aebef35ae
mod_admin_shell: List modules providing each HTTP endpoint
2021-02-03 23:31:34 +01:00
Kim Alvefur
6b1da26463
mod_admin_shell: List global HTTP endpoints by default
...
Trick copied from the module commands
2021-02-03 23:28:02 +01:00
Kim Alvefur
8b35cb5c87
mod_c2s: Reflect stream 'from' attribute back if set ( fix #1625 )
...
Clients should *not* be setting this before TLS anyways.
2021-02-03 21:41:45 +01:00
Kim Alvefur
f539be51b3
mod_http_file_share: Collect cache hit/miss statistics for downloads
2021-02-02 22:16:20 +01:00
Kim Alvefur
e2ea04d905
mod_http_file_share: Measure how long it takes to prune expired files
2021-02-02 22:11:53 +01:00
Kim Alvefur
8fd4188823
mod_http_file_share: Collect statistics of files uploaded
2021-02-02 22:08:51 +01:00
Kim Alvefur
5952f52d99
mod_storage_sql: Implement map-like API for archives
...
Used by mod_http_file_share, muc moderation, etc.
Tests tweaked because they failed on stanza internals that happen
becasue of re-serialization. Namespaces differ since inheritance is
implicit when building but explicit after parsing.
2021-02-01 12:47:05 +01:00
Kim Alvefur
e2f121eccb
adhoc.lib: Tweak to allow using util.error objects
...
Since util.stanza supports util.error objects via duck-typing and adhoc
errors look enough like util.error objects, they should able to pass as
such. This will allow converting adhoc commands to use util.error.
2021-01-31 21:11:55 +01:00
Kim Alvefur
2c54183cfc
mod_http_file_share: Reorder arguments
...
'filetype' is optional, so having it last seems sensible.
'slot' is pretty important, so moving it earlier seems sensible.
2021-01-31 20:38:40 +01:00
Kim Alvefur
a609c0902b
mod_http_file_share: Update cached value while it is reasonably fresh
...
This should ensure that cache entries until the oldest file that counted
to the last 24h becomes older than 24h.
2021-01-31 17:44:19 +01:00
Kim Alvefur
1af0932ecf
mod_http_file_share: Cache quotas to avoid hitting storage
2021-01-31 17:56:49 +01:00
Kim Alvefur
12a72e28dc
mod_http_file_share: Split out some variables for later reuse
2021-01-31 17:56:35 +01:00
Kim Alvefur
55cb283433
mod_http_file_share: Add support for daily upload quotas.
...
Daily instead of total quotas, should be more efficient to calculate.
Still O(n), but a smaller n. Less affected by total retention period.
2021-01-31 14:43:42 +01:00
Kim Alvefur
8767624de1
mod_http_file_share: Add missing semicolon
...
Last comma or semicolon isn't required but makes the diffs nicer once
you add another item after it.
2021-01-31 14:41:56 +01:00
Kim Alvefur
5be0b93ead
mod_http_file_share: Clarify log message
...
No expired ... what? Could be inferred from the module logging it, but
better to be explicit.
2021-01-30 17:35:13 +01:00
Kim Alvefur
dcc391f187
mod_tls: Ignore lack of STARTTLS offer only when s2s_require_encryption set
2021-01-29 23:23:25 +01:00
Kim Alvefur
2b988f0786
mod_tls: Attempt STARTTLS even if not advertised as per RFC 7590
2021-01-29 23:17:08 +01:00
Kim Alvefur
ce457ad645
mod_mam: Remove obsolete 'queryid' attribute from iq-result (thanks paul)
...
Mentioned in xmpp:xsf@muc.xmpp.org?join
2021-01-29 17:01:05 +01:00
Kim Alvefur
593c4cd45e
mod_http_file_share: Indicate missing token via WWW-Authenticate header
2021-01-29 15:34:36 +01:00
Kim Alvefur
d068be45d5
mod_http_file_share: Clarify message about missing Authorization header
2021-01-29 15:34:15 +01:00
Kim Alvefur
2c8349a602
mod_http_file_share: Allow started uploads to complete after token expired
...
Otherwise uploads taking longer than 5 minutes would be rejected on
completion, and that's probably annoying.
Thanks jonas’
2021-01-28 17:24:37 +01:00
Kim Alvefur
08d9ba953a
mod_http_file_share: Serve configurable set of safe mime types inline (thanks jonas’)
...
Otherwise people complain about browser 'Save as' dialog.
2021-01-28 17:13:49 +01:00
Kim Alvefur
5236e4bef0
mod_http_file_share: Cache file metadata
...
For faster access by avoiding archive ID.
No benchmarks were harmed in the making of this commit.
... no benchmarks were performed at all.
2021-01-28 16:34:13 +01:00
Kim Alvefur
bf23a2fb0d
mod_http_file_share: Extract all file properties into variables earlier
...
A step towards adding caching, which will unpack into the same
variables.
2021-01-28 16:23:38 +01:00
Kim Alvefur
f60a7d5f55
mod_http_file_share: Fix the obligatory misplaced closing bracket (thanks scansion)
2021-01-27 23:38:14 +01:00
Kim Alvefur
7b01925b09
mod_http_file_share: Insert pauses to avoid blocknig for long periods
...
Similar to the mod_mam cleanup job
2021-01-27 22:10:11 +01:00
Kim Alvefur
cdccf23854
mod_http_file_share: Add support for removing old files (default 2 weeks)
2021-01-27 22:09:26 +01:00
Kim Alvefur
af9f7de378
mod_http_file_share: More security headers
2021-01-27 19:51:36 +01:00
Kim Alvefur
2cb87c6ffa
mod_http_file_share: Strip authorization type prefix a bit earlier
2021-01-27 18:26:24 +01:00
Kim Alvefur
ae4ad08b4a
mod_http_file_share: Factor out function for generating full filename
2021-01-27 18:13:15 +01:00
Kim Alvefur
7ab22af561
mod_http_file_share: Use '.bin' file extension
...
Distinct from '.dat' used by datamanager / internal stortage for Lua
object storage so that they can't easily be loaded by accident that way.
2021-01-27 17:48:12 +01:00
Kim Alvefur
77e9e9eaa6
mod_http_file_share: Validate file size early in HTTP PUT request
2021-01-27 17:47:04 +01:00
Kim Alvefur
02595598b0
mod_http_file_share: Move Authorization type string
...
It belongs with the header more than the token itself
2021-01-27 17:34:48 +01:00
Kim Alvefur
9a74f50494
mod_http_file_share: Add some logging
2021-01-27 17:29:26 +01:00
Kim Alvefur
0d5bd3974d
mod_http_file_share: Handle content-type being optional
2021-01-27 09:47:21 +01:00
Kim Alvefur
8485e85c70
mod_http_file_share: Reject invalid file sizes
2021-01-27 00:36:49 +01:00
Kim Alvefur
4b74c6abb7
mod_http_file_share: Fix name of max-file-size tag
2021-01-27 00:29:12 +01:00
Kim Alvefur
435af38451
mod_http_file_share: Expand registry to fix extra tag
...
Error registry compact format doesn't support extra.tag so needs to be
the more verbose format
2021-01-27 00:28:42 +01:00
Kim Alvefur
19be6e8a27
mod_http_file_share: Verify final file size on completion of upload
2021-01-27 00:09:49 +01:00
Kim Alvefur
afa3ec821a
mod_http_file_share: Add file type filter
...
Unlike mod_http_upload, this can't be bypassed by uploading with a
different file extension.
2021-01-26 14:53:43 +01:00
Kim Alvefur
ba59af458c
mod_http_file_share: Add file size limit (default 10M)
2021-01-26 14:53:24 +01:00
Kim Alvefur
71267fd111
mod_http_file_share: Validate that filename does not contain '/'
2021-01-26 14:52:37 +01:00
Kim Alvefur
2c09796dda
mod_http_file_share: Return proper error if unauthorized
2021-01-26 14:51:55 +01:00
Kim Alvefur
a28c769e1a
mod_http_file_share: Add basic access control
...
Partly lifted from mod_external_services
2021-01-26 14:39:11 +01:00
Kim Alvefur
52a969df34
mod_http_file_share: Add support for external file upload service
...
PUT /upload/:slot/:filename
Authorization: Bearer JWT{ uploader, filename, filesize, filetype, exp }
2021-01-26 14:27:51 +01:00
Kim Alvefur
5b1f885242
mod_http_file_share: Let's write another XEP-0363 implementation
...
This variant is meant to improve upon mod_http_upload in some ways:
* Handle files much of arbitrary size efficiently
* Allow GET and PUT URLs to be different
* Remember Content-Type sent by client
* Avoid dependency on mod_http_files
* Built-in way to delegate storage to another httpd
2021-01-26 03:19:17 +01:00