diff options
author | Azul <azul@riseup.net> | 2016-05-03 11:29:45 -0300 |
---|---|---|
committer | Azul <azul@riseup.net> | 2016-05-03 11:49:24 -0300 |
commit | 33e2a52f683697ca8489d856df90b39bfbbe7373 (patch) | |
tree | 0cec8c6b9f3a20174089bb7633d7a075c53a5e90 /app/controllers/controller_extension | |
parent | fc066a42ec5a3271b0d476ff2c5ab771f1ab726d (diff) |
use APP_CONFIG[config_file_paths] for provider.json
This avoids overwriting the PROVIDER_JSON constant in the
StaticConfigController and thus fixes test warnings.
Also moved away from using instance variables in the
ControllerExtension::JsonFile - instead querying the corresponding
functions now - less sideeffects and easier stubbing.
Diffstat (limited to 'app/controllers/controller_extension')
-rw-r--r-- | app/controllers/controller_extension/json_file.rb | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/app/controllers/controller_extension/json_file.rb b/app/controllers/controller_extension/json_file.rb index 5b5e55e..df9cf55 100644 --- a/app/controllers/controller_extension/json_file.rb +++ b/app/controllers/controller_extension/json_file.rb @@ -4,20 +4,25 @@ module ControllerExtension::JsonFile protected - def send_file - if stale?(:last_modified => @file.mtime) - response.content_type = 'application/json' - render :text => @file.read + def send_file(filename) + file = fetch_file(filename) + if file.present? + send_file_or_cache_hit(file) + else + not_found end end - def fetch_file - if File.exist?(@filename) - @file = File.new(@filename) - else - not_found + def send_file_or_cache_hit(file) + if stale?(:last_modified => file.mtime) + response.content_type = 'application/json' + render :text => file.read end end + def fetch_file(filename) + File.new(filename) if File.exist?(filename) + end + end |