PageRenderTime 23ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

/integration-tests/apps/rails2/frozen/vendor/rails/actionpack/lib/action_controller/caching/pages.rb

https://gitlab.com/meetly/torquebox
Ruby | 152 lines | 76 code | 15 blank | 61 comment | 10 complexity | b920e0e32adac67da17dbf659e560ec8 MD5 | raw file
  1. require 'fileutils'
  2. require 'uri'
  3. module ActionController #:nodoc:
  4. module Caching
  5. # Page caching is an approach to caching where the entire action output of is stored as a HTML file that the web server
  6. # can serve without going through Action Pack. This is the fastest way to cache your content as opposed to going dynamically
  7. # through the process of generating the content. Unfortunately, this incredible speed-up is only available to stateless pages
  8. # where all visitors are treated the same. Content management systems -- including weblogs and wikis -- have many pages that are
  9. # a great fit for this approach, but account-based systems where people log in and manipulate their own data are often less
  10. # likely candidates.
  11. #
  12. # Specifying which actions to cache is done through the <tt>caches_page</tt> class method:
  13. #
  14. # class WeblogController < ActionController::Base
  15. # caches_page :show, :new
  16. # end
  17. #
  18. # This will generate cache files such as <tt>weblog/show/5.html</tt> and <tt>weblog/new.html</tt>,
  19. # which match the URLs used to trigger the dynamic generation. This is how the web server is able
  20. # pick up a cache file when it exists and otherwise let the request pass on to Action Pack to generate it.
  21. #
  22. # Expiration of the cache is handled by deleting the cached file, which results in a lazy regeneration approach where the cache
  23. # is not restored before another hit is made against it. The API for doing so mimics the options from +url_for+ and friends:
  24. #
  25. # class WeblogController < ActionController::Base
  26. # def update
  27. # List.update(params[:list][:id], params[:list])
  28. # expire_page :action => "show", :id => params[:list][:id]
  29. # redirect_to :action => "show", :id => params[:list][:id]
  30. # end
  31. # end
  32. #
  33. # Additionally, you can expire caches using Sweepers that act on changes in the model to determine when a cache is supposed to be
  34. # expired.
  35. module Pages
  36. def self.included(base) #:nodoc:
  37. base.extend(ClassMethods)
  38. base.class_eval do
  39. @@page_cache_directory = defined?(Rails.public_path) ? Rails.public_path : ""
  40. ##
  41. # :singleton-method:
  42. # The cache directory should be the document root for the web server and is set using <tt>Base.page_cache_directory = "/document/root"</tt>.
  43. # For Rails, this directory has already been set to Rails.public_path (which is usually set to <tt>RAILS_ROOT + "/public"</tt>). Changing
  44. # this setting can be useful to avoid naming conflicts with files in <tt>public/</tt>, but doing so will likely require configuring your
  45. # web server to look in the new location for cached files.
  46. cattr_accessor :page_cache_directory
  47. @@page_cache_extension = '.html'
  48. ##
  49. # :singleton-method:
  50. # Most Rails requests do not have an extension, such as <tt>/weblog/new</tt>. In these cases, the page caching mechanism will add one in
  51. # order to make it easy for the cached files to be picked up properly by the web server. By default, this cache extension is <tt>.html</tt>.
  52. # If you want something else, like <tt>.php</tt> or <tt>.shtml</tt>, just set Base.page_cache_extension. In cases where a request already has an
  53. # extension, such as <tt>.xml</tt> or <tt>.rss</tt>, page caching will not add an extension. This allows it to work well with RESTful apps.
  54. cattr_accessor :page_cache_extension
  55. end
  56. end
  57. module ClassMethods
  58. # Expires the page that was cached with the +path+ as a key. Example:
  59. # expire_page "/lists/show"
  60. def expire_page(path)
  61. return unless perform_caching
  62. benchmark "Expired page: #{page_cache_file(path)}" do
  63. File.delete(page_cache_path(path)) if File.exist?(page_cache_path(path))
  64. end
  65. end
  66. # Manually cache the +content+ in the key determined by +path+. Example:
  67. # cache_page "I'm the cached content", "/lists/show"
  68. def cache_page(content, path)
  69. return unless perform_caching
  70. benchmark "Cached page: #{page_cache_file(path)}" do
  71. FileUtils.makedirs(File.dirname(page_cache_path(path)))
  72. File.open(page_cache_path(path), "wb+") { |f| f.write(content) }
  73. end
  74. end
  75. # Caches the +actions+ using the page-caching approach that'll store the cache in a path within the page_cache_directory that
  76. # matches the triggering url.
  77. #
  78. # Usage:
  79. #
  80. # # cache the index action
  81. # caches_page :index
  82. #
  83. # # cache the index action except for JSON requests
  84. # caches_page :index, :if => Proc.new { |c| !c.request.format.json? }
  85. def caches_page(*actions)
  86. return unless perform_caching
  87. options = actions.extract_options!
  88. after_filter({:only => actions}.merge(options)) { |c| c.cache_page }
  89. end
  90. private
  91. def page_cache_file(path)
  92. name = (path.empty? || path == "/") ? "/index" : URI.unescape(path.chomp('/'))
  93. name << page_cache_extension unless (name.split('/').last || name).include? '.'
  94. return name
  95. end
  96. def page_cache_path(path)
  97. page_cache_directory + page_cache_file(path)
  98. end
  99. end
  100. # Expires the page that was cached with the +options+ as a key. Example:
  101. # expire_page :controller => "lists", :action => "show"
  102. def expire_page(options = {})
  103. return unless perform_caching
  104. if options.is_a?(Hash)
  105. if options[:action].is_a?(Array)
  106. options[:action].dup.each do |action|
  107. self.class.expire_page(url_for(options.merge(:only_path => true, :skip_relative_url_root => true, :action => action)))
  108. end
  109. else
  110. self.class.expire_page(url_for(options.merge(:only_path => true, :skip_relative_url_root => true)))
  111. end
  112. else
  113. self.class.expire_page(options)
  114. end
  115. end
  116. # Manually cache the +content+ in the key determined by +options+. If no content is provided, the contents of response.body is used
  117. # If no options are provided, the requested url is used. Example:
  118. # cache_page "I'm the cached content", :controller => "lists", :action => "show"
  119. def cache_page(content = nil, options = nil)
  120. return unless perform_caching && caching_allowed
  121. path = case options
  122. when Hash
  123. url_for(options.merge(:only_path => true, :skip_relative_url_root => true, :format => params[:format]))
  124. when String
  125. options
  126. else
  127. request.path
  128. end
  129. self.class.cache_page(content || response.body, path)
  130. end
  131. private
  132. def caching_allowed
  133. request.get? && response.status.to_i == 200
  134. end
  135. end
  136. end
  137. end