Fixed expiration, and cache-control: max-age implementation.
Also use `FILE.date` instead of `FILE.change_date` (`change_date` is the date of the last status change, quite often same as creation date, while `date` is the last modification date).
This commit is contained in:
@@ -508,9 +508,16 @@ feature -- Others
|
|||||||
|
|
||||||
put_expires (a_seconds: INTEGER)
|
put_expires (a_seconds: INTEGER)
|
||||||
-- Put "Expires" header to `a_seconds' seconds
|
-- Put "Expires" header to `a_seconds' seconds
|
||||||
|
-- and also "Cache-Control: max-age=.." .
|
||||||
|
-- To be supported by most browser.
|
||||||
|
local
|
||||||
|
dt: DATE_TIME
|
||||||
do
|
do
|
||||||
put_expires_string (a_seconds.out)
|
create dt.make_now_utc
|
||||||
end
|
dt.second_add (a_seconds)
|
||||||
|
put_expires_date (dt)
|
||||||
|
put_cache_control ("max-age=" + a_seconds.out)
|
||||||
|
end
|
||||||
|
|
||||||
put_expires_string (a_expires: STRING)
|
put_expires_string (a_expires: STRING)
|
||||||
-- Put "Expires" header with `a_expires' string value
|
-- Put "Expires" header with `a_expires' string value
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ feature {NONE} -- Initialization
|
|||||||
|
|
||||||
make_with_path (d: like document_root)
|
make_with_path (d: like document_root)
|
||||||
do
|
do
|
||||||
|
max_age := -1
|
||||||
if d.is_empty then
|
if d.is_empty then
|
||||||
document_root := execution_environment.current_working_path
|
document_root := execution_environment.current_working_path
|
||||||
else
|
else
|
||||||
@@ -87,6 +88,7 @@ feature -- Access
|
|||||||
document_root: PATH
|
document_root: PATH
|
||||||
|
|
||||||
max_age: INTEGER
|
max_age: INTEGER
|
||||||
|
-- Max age, initialized at -1 by default.
|
||||||
|
|
||||||
index_disabled: BOOLEAN
|
index_disabled: BOOLEAN
|
||||||
-- Index disabled?
|
-- Index disabled?
|
||||||
@@ -367,15 +369,17 @@ feature -- Execution
|
|||||||
create fres.make_with_content_type (ct, f.path.name)
|
create fres.make_with_content_type (ct, f.path.name)
|
||||||
fres.set_status_code ({HTTP_STATUS_CODE}.ok)
|
fres.set_status_code ({HTTP_STATUS_CODE}.ok)
|
||||||
|
|
||||||
-- cache control
|
-- cache control
|
||||||
create dt.make_now_utc
|
create dt.make_now_utc
|
||||||
fres.header.put_cache_control ("private, max-age=" + max_age.out)
|
|
||||||
fres.header.put_utc_date (dt)
|
fres.header.put_utc_date (dt)
|
||||||
if max_age > 0 then
|
if max_age >= 0 then
|
||||||
dt := dt.twin
|
fres.set_max_age (max_age)
|
||||||
dt.second_add (max_age)
|
if max_age > 0 then
|
||||||
|
dt := dt.twin
|
||||||
|
dt.second_add (max_age)
|
||||||
|
end
|
||||||
|
fres.set_expires_date (dt)
|
||||||
end
|
end
|
||||||
fres.header.put_expires_date (dt)
|
|
||||||
|
|
||||||
fres.set_answer_head_request_method (req.request_method.same_string ({HTTP_REQUEST_METHODS}.method_head))
|
fres.set_answer_head_request_method (req.request_method.same_string ({HTTP_REQUEST_METHODS}.method_head))
|
||||||
res.send (fres)
|
res.send (fres)
|
||||||
@@ -388,14 +392,15 @@ feature -- Execution
|
|||||||
do
|
do
|
||||||
create dt.make_now_utc
|
create dt.make_now_utc
|
||||||
create h.make
|
create h.make
|
||||||
h.put_cache_control ("private, max-age=" + max_age.out)
|
|
||||||
h.put_utc_date (dt)
|
h.put_utc_date (dt)
|
||||||
if max_age > 0 then
|
if max_age >= 0 then
|
||||||
dt := dt.twin
|
h.put_cache_control ("max-age=" + max_age.out)
|
||||||
dt.second_add (max_age)
|
if max_age > 0 then
|
||||||
|
dt := dt.twin
|
||||||
|
dt.second_add (max_age)
|
||||||
|
end
|
||||||
|
h.put_expires_date (dt)
|
||||||
end
|
end
|
||||||
h.put_expires_date (dt)
|
|
||||||
|
|
||||||
if a_utc_date /= Void then
|
if a_utc_date /= Void then
|
||||||
h.put_last_modified (a_utc_date)
|
h.put_last_modified (a_utc_date)
|
||||||
end
|
end
|
||||||
@@ -637,7 +642,7 @@ feature {NONE} -- implementation: date time
|
|||||||
end
|
end
|
||||||
|
|
||||||
note
|
note
|
||||||
copyright: "2011-2013, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Colin Adams, Eiffel Software and others"
|
copyright: "2011-2016, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Colin Adams, Eiffel Software and others"
|
||||||
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
source: "[
|
source: "[
|
||||||
Eiffel Software
|
Eiffel Software
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
note
|
note
|
||||||
description : "Objects that ..."
|
description: "Response to send a file back to the client"
|
||||||
author : "$Author$"
|
date: "$Date$"
|
||||||
date : "$Date$"
|
revision: "$Revision$"
|
||||||
revision : "$Revision$"
|
|
||||||
|
|
||||||
class
|
class
|
||||||
WSF_FILE_RESPONSE
|
WSF_FILE_RESPONSE
|
||||||
@@ -105,22 +104,46 @@ feature {NONE} -- Initialization
|
|||||||
|
|
||||||
feature -- Element change
|
feature -- Element change
|
||||||
|
|
||||||
set_expires_in_seconds (sec: INTEGER)
|
set_max_age (sec: INTEGER)
|
||||||
do
|
do
|
||||||
set_expires (sec.out)
|
header.put_cache_control ("max-age=" + sec.out)
|
||||||
|
end
|
||||||
|
|
||||||
|
set_public_max_age (sec: INTEGER)
|
||||||
|
do
|
||||||
|
header.put_cache_control ("public, max-age=" + sec.out)
|
||||||
|
end
|
||||||
|
|
||||||
|
set_private_max_age (sec: INTEGER)
|
||||||
|
do
|
||||||
|
header.put_cache_control ("private, max-age=" + sec.out)
|
||||||
|
end
|
||||||
|
|
||||||
|
set_expires_in_seconds (sec: INTEGER)
|
||||||
|
-- Set Expires and Cache-control: max-age... to value related `sec' seconds.
|
||||||
|
do
|
||||||
|
header.put_expires (sec)
|
||||||
end
|
end
|
||||||
|
|
||||||
set_expires (s: STRING)
|
set_expires (s: STRING)
|
||||||
|
-- Set Expires header value to `s'.
|
||||||
do
|
do
|
||||||
header.put_expires_string (s)
|
header.put_expires_string (s)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
set_expires_date (dt: DATE_TIME)
|
||||||
|
-- Set Expires header value to date time `dt'.
|
||||||
|
do
|
||||||
|
header.put_expires_date (dt)
|
||||||
|
end
|
||||||
|
|
||||||
set_no_cache
|
set_no_cache
|
||||||
local
|
local
|
||||||
h: like header
|
h: like header
|
||||||
do
|
do
|
||||||
h := header
|
h := header
|
||||||
h.put_expires (0)
|
h.put_expires (0)
|
||||||
|
h.put_cache_control ("max-age=0")
|
||||||
h.put_cache_control ("no-cache, must-revalidate")
|
h.put_cache_control ("no-cache, must-revalidate")
|
||||||
h.put_pragma_no_cache
|
h.put_pragma_no_cache
|
||||||
end
|
end
|
||||||
@@ -250,7 +273,7 @@ feature {NONE} -- Implementation: file system helper
|
|||||||
f: RAW_FILE
|
f: RAW_FILE
|
||||||
do
|
do
|
||||||
create f.make_with_path (file_path)
|
create f.make_with_path (file_path)
|
||||||
create Result.make_from_epoch (f.change_date)
|
create Result.make_from_epoch (f.date)
|
||||||
end
|
end
|
||||||
|
|
||||||
file_extension (fn: PATH): STRING_32
|
file_extension (fn: PATH): STRING_32
|
||||||
@@ -293,19 +316,11 @@ feature {NONE} -- Implementation: output
|
|||||||
create f.make_with_path (fn)
|
create f.make_with_path (fn)
|
||||||
check f.is_readable end
|
check f.is_readable end
|
||||||
|
|
||||||
f.open_read
|
res.put_file_content (f, 0, f.count)
|
||||||
from
|
|
||||||
until
|
|
||||||
f.exhausted
|
|
||||||
loop
|
|
||||||
f.read_stream (4_096)
|
|
||||||
res.put_string (f.last_string)
|
|
||||||
end
|
|
||||||
f.close
|
|
||||||
end
|
end
|
||||||
|
|
||||||
note
|
note
|
||||||
copyright: "2011-2013, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Eiffel Software and others"
|
copyright: "2011-2016, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Colin Adams, Eiffel Software and others"
|
||||||
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
source: "[
|
source: "[
|
||||||
Eiffel Software
|
Eiffel Software
|
||||||
|
|||||||
Reference in New Issue
Block a user