mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_http_file_share: Collect statistics of files uploaded
This commit is contained in:
parent
5952f52d99
commit
8fd4188823
1 changed files with 3 additions and 0 deletions
|
@ -62,6 +62,8 @@ local upload_errors = errors.init(module.name, namespace, {
|
|||
local upload_cache = cache.new(1024);
|
||||
local quota_cache = cache.new(1024);
|
||||
|
||||
local measure_uploads = module:measure("upload", "sizes");
|
||||
|
||||
-- Convenience wrapper for logging file sizes
|
||||
local function B(bytes) return hi.format(bytes, "B", "b"); end
|
||||
|
||||
|
@ -255,6 +257,7 @@ function handle_upload(event, path) -- PUT /upload/:slot
|
|||
if uploaded then
|
||||
module:log("debug", "Upload of %q completed, %s", filename, B(final_size));
|
||||
assert(os.rename(filename.."~", filename));
|
||||
measure_uploads(final_size);
|
||||
|
||||
upload_cache:set(upload_info.slot, {
|
||||
name = upload_info.filename;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue