Sha256: b87c3e1d1f7af27ef82896f725b41a08db0da02e6c636745178a41fdfeca837e

Contents?: true

Size: 1.15 KB

Versions: 4

Compression:

Stored size: 1.15 KB

Contents

require "alephant/broker/errors/invalid_cache_key"
require "alephant/logger"
require "aws-sdk"
require "ostruct"
require "date"

module Alephant
  module Broker
    module Response
      class Base
        include Logger

        attr_reader :content, :headers, :status

        STATUS_CODE_MAPPING = {
          200 => "ok",
          404 => "Not found",
          500 => "Error retrieving content"
        }

        def initialize(status = 200, content_type = "text/html")
          @content = STATUS_CODE_MAPPING[status]
          @headers = { "Content-Type" => content_type }
          @status  = status

          log_status
          setup
        end

        protected

        def setup; end

        private

        def log_status
          add_no_cache_headers if status !~ /200/
        end

        def add_no_cache_headers
          headers.merge!(
            "Cache-Control" => "no-cache, must-revalidate",
            "Pragma"        => "no-cache",
            "Expires"       => Date.today.prev_year.httpdate
          )
          log
        end

        def log
          logger.metric "BrokerResponse#{status}"
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
alephant-broker-3.5.5 lib/alephant/broker/response/base.rb
alephant-broker-3.5.4 lib/alephant/broker/response/base.rb
alephant-broker-3.5.3 lib/alephant/broker/response/base.rb
alephant-broker-3.5.2 lib/alephant/broker/response/base.rb