mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: Only serve cached data if etag is unchanged.
This commit is contained in:
parent
0ff07edb45
commit
f098458b69
1 changed files with 3 additions and 3 deletions
|
@ -73,7 +73,7 @@ function serve_file(event, path)
|
||||||
end
|
end
|
||||||
|
|
||||||
local data = cache[path];
|
local data = cache[path];
|
||||||
if data then
|
if data and data.etag == etag then
|
||||||
response_headers.content_type = data.content_type;
|
response_headers.content_type = data.content_type;
|
||||||
data = data.data;
|
data = data.data;
|
||||||
elseif attr.mode == "directory" then
|
elseif attr.mode == "directory" then
|
||||||
|
@ -105,7 +105,7 @@ function serve_file(event, path)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
data = "<!DOCTYPE html>\n"..tostring(html);
|
data = "<!DOCTYPE html>\n"..tostring(html);
|
||||||
cache[path] = { data = data, content_type = mime_map.html; hits = 0 };
|
cache[path] = { data = data, content_type = mime_map.html; etag = etag; };
|
||||||
response_headers.content_type = mime_map.html;
|
response_headers.content_type = mime_map.html;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -120,7 +120,7 @@ function serve_file(event, path)
|
||||||
end
|
end
|
||||||
local ext = path:match("%.([^./]+)$");
|
local ext = path:match("%.([^./]+)$");
|
||||||
local content_type = ext and mime_map[ext];
|
local content_type = ext and mime_map[ext];
|
||||||
cache[path] = { data = data; content_type = content_type; };
|
cache[path] = { data = data; content_type = content_type; etag = etag };
|
||||||
response_headers.content_type = content_type;
|
response_headers.content_type = content_type;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue