Sha256: 92f10a1ea2cddc7ae4c44fe940704565b3ebb5167adb3f17bbf743112a50f909

Contents?: true

Size: 1.67 KB

Versions: 6

Compression:

Stored size: 1.67 KB

Contents

require 'hanami/action/cache/directives'

module Hanami
  module Action
    module Cache

      # Module with Cache-Control logic
      #
      # @since 0.3.0
      # @api private
      module CacheControl

        # The HTTP header for Cache-Control
        #
        # @since 0.3.0
        # @api private
        HEADER = 'Cache-Control'.freeze

        def self.included(base)
          base.class_eval do
            extend ClassMethods
            @cache_control_directives = nil
          end
        end

        module ClassMethods
          def cache_control(*values)
            @cache_control_directives ||= Directives.new(*values)
          end

          def cache_control_directives
            @cache_control_directives || Object.new.tap do |null_object|
              def null_object.headers
                Hash.new
              end
            end
          end
        end

        # Finalize the response including default cache headers into the response
        #
        # @since 0.3.0
        # @api private
        #
        # @see Hanami::Action#finish
        def finish
          super
          headers.merge!(self.class.cache_control_directives.headers) unless headers.include? HEADER
        end

        # Class which stores CacheControl values
        #
        # @since 0.3.0
        #
        # @api private
        #
        class Directives
          def initialize(*values)
            @directives = Hanami::Action::Cache::Directives.new(*values)
          end

          def headers
            if @directives.any?
              { HEADER => @directives.join(', ') }
            else
              {}
            end
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hanami-controller-1.0.0.beta2 lib/hanami/action/cache/cache_control.rb
hanami-controller-1.0.0.beta1 lib/hanami/action/cache/cache_control.rb
hanami-controller-0.8.1 lib/hanami/action/cache/cache_control.rb
hanami-controller-0.8.0 lib/hanami/action/cache/cache_control.rb
hanami-controller-0.7.1 lib/hanami/action/cache/cache_control.rb
hanami-controller-0.7.0 lib/hanami/action/cache/cache_control.rb