mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: Compare If-Modified-Since to last modification date
This commit is contained in:
parent
7c7e98953e
commit
eaba58e39b
1 changed files with 7 additions and 4 deletions
|
@ -57,11 +57,14 @@ function serve_file(event, path)
|
|||
return 404;
|
||||
end
|
||||
|
||||
response.headers.last_modified = os_date('!%a, %d %b %Y %H:%M:%S GMT', attr.modification);
|
||||
local last_modified = os_date('!%a, %d %b %Y %H:%M:%S GMT', attr.modification);
|
||||
response.headers.last_modified = last_modified;
|
||||
|
||||
local tag = ("%02x-%x-%x-%x"):format(attr.dev or 0, attr.ino or 0, attr.size or 0, attr.modification or 0);
|
||||
response.headers.etag = tag;
|
||||
if tag == request.headers.if_none_match then
|
||||
local etag = ("%02x-%x-%x-%x"):format(attr.dev or 0, attr.ino or 0, attr.size or 0, attr.modification or 0);
|
||||
response.headers.etag = etag;
|
||||
|
||||
if etag == request.headers.if_none_match
|
||||
or last_modified == request.headers.if_modified_since then
|
||||
return 304;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue