2008-05-18 06:22:34 +02:00
require 'set'
module ActionController #:nodoc:
module Caching
# Action caching is similar to page caching by the fact that the entire output of the response is cached, but unlike page caching,
# every request still goes through the Action Pack. The key benefit of this is that filters are run before the cache is served, which
# allows for authentication and other restrictions on whether someone is allowed to see the cache. Example:
#
# class ListsController < ApplicationController
# before_filter :authenticate, :except => :public
# caches_page :public
2008-06-02 08:35:38 +02:00
# caches_action :index, :show, :feed
2008-05-18 06:22:34 +02:00
# end
#
# In this example, the public action doesn't require authentication, so it's possible to use the faster page caching method. But both the
# show and feed action are to be shielded behind the authenticate filter, so we need to implement those as action caches.
#
# Action caching internally uses the fragment caching and an around filter to do the job. The fragment cache is named according to both
# the current host and the path. So a page that is accessed at http://david.somewhere.com/lists/show/1 will result in a fragment named
# "david.somewhere.com/lists/show/1". This allows the cacher to differentiate between "david.somewhere.com/lists/" and
# "jamis.somewhere.com/lists/" -- which is a helpful way of assisting the subdomain-as-account-key pattern.
#
# Different representations of the same resource, e.g. <tt>http://david.somewhere.com/lists</tt> and <tt>http://david.somewhere.com/lists.xml</tt>
# are treated like separate requests and so are cached separately. Keep in mind when expiring an action cache that <tt>:action => 'lists'</tt> is not the same
# as <tt>:action => 'list', :format => :xml</tt>.
#
# You can set modify the default action cache path by passing a :cache_path option. This will be passed directly to ActionCachePath.path_for. This is handy
# for actions with multiple possible routes that should be cached differently. If a block is given, it is called with the current controller instance.
#
2008-10-27 07:47:01 +01:00
# And you can also use :if (or :unless) to pass a Proc that specifies when the action should be cached.
#
# Finally, if you are using memcached, you can also pass :expires_in.
2008-06-02 08:35:38 +02:00
#
2008-05-18 06:22:34 +02:00
# class ListsController < ApplicationController
# before_filter :authenticate, :except => :public
# caches_page :public
2008-06-02 08:35:38 +02:00
# caches_action :index, :if => Proc.new { |c| !c.request.format.json? } # cache if is not a JSON request
2008-10-27 07:47:01 +01:00
# caches_action :show, :cache_path => { :project => 1 }, :expires_in => 1.hour
2008-06-02 08:35:38 +02:00
# caches_action :feed, :cache_path => Proc.new { |controller|
# controller.params[:user_id] ?
2008-10-27 07:47:01 +01:00
# controller.send(:user_list_url, controller.params[:user_id], controller.params[:id]) :
# controller.send(:list_url, controller.params[:id]) }
2008-05-18 06:22:34 +02:00
# end
2008-06-02 08:35:38 +02:00
#
2008-10-27 07:47:01 +01:00
# If you pass :layout => false, it will only cache your action content. It is useful when your layout has dynamic information.
#
2008-05-18 06:22:34 +02:00
module Actions
def self . included ( base ) #:nodoc:
base . extend ( ClassMethods )
base . class_eval do
attr_accessor :rendered_action_cache , :action_cache_path
end
end
module ClassMethods
# Declares that +actions+ should be cached.
# See ActionController::Caching::Actions for details.
def caches_action ( * actions )
return unless cache_configured?
2008-06-02 08:35:38 +02:00
options = actions . extract_options!
2008-10-27 07:47:01 +01:00
filter_options = { :only = > actions , :if = > options . delete ( :if ) , :unless = > options . delete ( :unless ) }
cache_filter = ActionCacheFilter . new ( :layout = > options . delete ( :layout ) , :cache_path = > options . delete ( :cache_path ) , :store_options = > options )
2009-08-04 17:16:03 +02:00
around_filter ( filter_options ) do | controller , action |
cache_filter . filter ( controller , action )
end
2008-05-18 06:22:34 +02:00
end
end
protected
def expire_action ( options = { } )
return unless cache_configured?
if options [ :action ] . is_a? ( Array )
options [ :action ] . dup . each do | action |
2008-10-27 07:47:01 +01:00
expire_fragment ( ActionCachePath . path_for ( self , options . merge ( { :action = > action } ) , false ) )
2008-05-18 06:22:34 +02:00
end
else
2008-10-27 07:47:01 +01:00
expire_fragment ( ActionCachePath . path_for ( self , options , false ) )
2008-05-18 06:22:34 +02:00
end
end
class ActionCacheFilter #:nodoc:
2008-06-02 08:35:38 +02:00
def initialize ( options , & block )
@options = options
2008-05-18 06:22:34 +02:00
end
2009-08-04 17:16:03 +02:00
def filter ( controller , action )
should_continue = before ( controller )
action . call if should_continue
after ( controller )
end
2008-05-18 06:22:34 +02:00
def before ( controller )
2008-10-27 07:47:01 +01:00
cache_path = ActionCachePath . new ( controller , path_options_for ( controller , @options . slice ( :cache_path ) ) )
if cache = controller . read_fragment ( cache_path . path , @options [ :store_options ] )
2008-05-18 06:22:34 +02:00
controller . rendered_action_cache = true
set_content_type! ( controller , cache_path . extension )
2008-10-27 07:47:01 +01:00
options = { :text = > cache }
options . merge! ( :layout = > true ) if cache_layout?
controller . __send__ ( :render , options )
2008-05-18 06:22:34 +02:00
false
else
controller . action_cache_path = cache_path
end
end
def after ( controller )
2008-06-02 08:35:38 +02:00
return if controller . rendered_action_cache || ! caching_allowed ( controller )
2008-10-27 07:47:01 +01:00
action_content = cache_layout? ? content_for_layout ( controller ) : controller . response . body
controller . write_fragment ( controller . action_cache_path . path , action_content , @options [ :store_options ] )
2008-05-18 06:22:34 +02:00
end
private
def set_content_type! ( controller , extension )
controller . response . content_type = Mime :: Type . lookup_by_extension ( extension ) . to_s if extension
end
def path_options_for ( controller , options )
( ( path_options = options [ :cache_path ] ) . respond_to? ( :call ) ? path_options . call ( controller ) : path_options ) || { }
end
def caching_allowed ( controller )
2009-02-04 21:26:08 +01:00
controller . request . get? && controller . response . status . to_i == 200
2008-05-18 06:22:34 +02:00
end
2008-10-27 07:47:01 +01:00
def cache_layout?
@options [ :layout ] == false
end
def content_for_layout ( controller )
controller . response . layout && controller . response . template . instance_variable_get ( '@cached_content_for_layout' )
end
2008-05-18 06:22:34 +02:00
end
2008-06-02 08:35:38 +02:00
2008-05-18 06:22:34 +02:00
class ActionCachePath
attr_reader :path , :extension
2008-06-02 08:35:38 +02:00
2008-05-18 06:22:34 +02:00
class << self
2009-03-16 15:55:30 +01:00
def path_for ( controller , options , infer_extension = true )
2008-10-27 07:47:01 +01:00
new ( controller , options , infer_extension ) . path
2008-05-18 06:22:34 +02:00
end
end
2008-10-27 07:47:01 +01:00
# When true, infer_extension will look up the cache path extension from the request's path & format.
2009-03-16 15:55:30 +01:00
# This is desirable when reading and writing the cache, but not when expiring the cache -
# expire_action should expire the same files regardless of the request format.
def initialize ( controller , options = { } , infer_extension = true )
if infer_extension
extract_extension ( controller . request )
options = options . reverse_merge ( :format = > @extension ) if options . is_a? ( Hash )
2008-10-27 07:47:01 +01:00
end
2009-03-16 15:55:30 +01:00
2008-05-18 06:22:34 +02:00
path = controller . url_for ( options ) . split ( '://' ) . last
normalize! ( path )
2009-03-16 15:55:30 +01:00
add_extension! ( path , @extension )
2008-05-18 06:22:34 +02:00
@path = URI . unescape ( path )
end
2008-06-02 08:35:38 +02:00
2008-05-18 06:22:34 +02:00
private
def normalize! ( path )
path << 'index' if path [ - 1 ] == ?/
end
2008-06-02 08:35:38 +02:00
2008-05-18 06:22:34 +02:00
def add_extension! ( path , extension )
2008-10-27 07:47:01 +01:00
path << " . #{ extension } " if extension and ! path . ends_with? ( extension )
2008-05-18 06:22:34 +02:00
end
2008-10-27 07:47:01 +01:00
def extract_extension ( request )
2008-05-18 06:22:34 +02:00
# Don't want just what comes after the last '.' to accommodate multi part extensions
# such as tar.gz.
2009-03-16 15:55:30 +01:00
@extension = request . path [ / ^[^.]+ \ .(.+)$ / , 1 ] || request . cache_format
2008-05-18 06:22:34 +02:00
end
end
end
end
2008-06-02 08:35:38 +02:00
end