Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow using lambdas as storage options #68

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ class ListsController < ApplicationController

# custom cache path with a proc
caches_action :history, cache_path: -> { request.domain }

# use version for cache invalidation
caches_action :show, version: -> { @list.cache_version }

# custom cache path with a symbol
caches_action :feed, cache_path: :user_cache_path
Expand Down
5 changes: 3 additions & 2 deletions lib/action_controller/caching/actions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -155,14 +155,15 @@ def around(controller)
cache_layout = expand_option(controller, @cache_layout)
path_options = expand_option(controller, @cache_path)
cache_path = ActionCachePath.new(controller, path_options || {})
store_options = @store_options.transform_values { |value| expand_option(controller, value) }

body = controller.read_fragment(cache_path.path, @store_options)
body = controller.read_fragment(cache_path.path, store_options)

unless body
controller.action_has_layout = false unless cache_layout
yield
controller.action_has_layout = true
body = controller._save_fragment(cache_path.path, @store_options)
body = controller._save_fragment(cache_path.path, store_options)
end

body = render_to_string(controller, body) unless cache_layout
Expand Down
12 changes: 7 additions & 5 deletions test/caching_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ class ActionCachingTestController < CachingController
request.params[:format] = :json
end

caches_action :index, :redirected, :forbidden, if: ->(c) { c.request.format && !c.request.format.json? }, expires_in: 1.hour
caches_action :index, :redirected, :forbidden, if: ->(c) { c.request.format && !c.request.format.json? }
caches_action :store_options_index, expires_in: 1.hour, version: -> { 1 }
caches_action :show, cache_path: "http://test.host/custom/show"
caches_action :edit, cache_path: ->(c) { c.params[:id] ? "http://test.host/#{c.params[:id]};edit" : "http://test.host/edit" }
caches_action :custom_cache_path, cache_path: CachePath.new
Expand Down Expand Up @@ -105,6 +106,7 @@ def simple_runtime_error
alias_method :layout_false, :with_layout
alias_method :with_layout_proc_param, :with_layout
alias_method :with_layout_proc_param_no_args, :with_layout
alias_method :store_options_index, :index

def expire
expire_action controller: "action_caching_test", action: "index"
Expand Down Expand Up @@ -389,13 +391,13 @@ def test_action_cache_not_url_cache_path

def test_action_cache_with_store_options
draw do
get "/action_caching_test", to: "action_caching_test#index"
get "/action_caching_test", to: "action_caching_test#store_options_index"
end

CacheContent.expects(:to_s).returns('12345.0').once
@controller.expects(:read_fragment).with("hostname.com/action_caching_test", expires_in: 1.hour).once
@controller.expects(:write_fragment).with("hostname.com/action_caching_test", "12345.0", expires_in: 1.hour).once
get :index
@controller.expects(:read_fragment).with("hostname.com/action_caching_test", expires_in: 1.hour, version: 1).once
@controller.expects(:write_fragment).with("hostname.com/action_caching_test", "12345.0", expires_in: 1.hour, version: 1).once
get :store_options_index
assert_response :success
end

Expand Down