Sha256: 24d374b7266706ad2dac7ef29cdb8d2b5b05eaa54f731a1c24c4db59878e1b7e

Contents?: true

Size: 1.39 KB

Versions: 53

Compression:

Stored size: 1.39 KB

Contents

module ActionDispatch
  module Http
    class Headers
      CGI_VARIABLES = %w(
        CONTENT_TYPE CONTENT_LENGTH
        HTTPS AUTH_TYPE GATEWAY_INTERFACE
        PATH_INFO PATH_TRANSLATED QUERY_STRING
        REMOTE_ADDR REMOTE_HOST REMOTE_IDENT REMOTE_USER
        REQUEST_METHOD SCRIPT_NAME
        SERVER_NAME SERVER_PORT SERVER_PROTOCOL SERVER_SOFTWARE
      )
      HTTP_HEADER = /\A[A-Za-z0-9-]+\z/

      include Enumerable
      attr_reader :env

      def initialize(env = {})
        @env = env
      end

      def [](key)
        @env[env_name(key)]
      end

      def []=(key, value)
        @env[env_name(key)] = value
      end

      def key?(key)
        @env.key? env_name(key)
      end
      alias :include? :key?

      def fetch(key, *args, &block)
        @env.fetch env_name(key), *args, &block
      end

      def each(&block)
        @env.each(&block)
      end

      def merge(headers_or_env)
        headers = Http::Headers.new(env.dup)
        headers.merge!(headers_or_env)
        headers
      end

      def merge!(headers_or_env)
        headers_or_env.each do |key, value|
          self[env_name(key)] = value
        end
      end

      private
      def env_name(key)
        key = key.to_s
        if key =~ HTTP_HEADER
          key = key.upcase.tr('-', '_')
          key = "HTTP_" + key unless CGI_VARIABLES.include?(key)
        end
        key
      end
    end
  end
end

Version data entries

53 entries across 53 versions & 3 rubygems

Version Path
actionpack-4.1.16 lib/action_dispatch/http/headers.rb
actionpack-4.1.16.rc1 lib/action_dispatch/http/headers.rb
actionpack-4.1.15 lib/action_dispatch/http/headers.rb
actionpack-4.1.15.rc1 lib/action_dispatch/http/headers.rb
actionpack-4.1.14.2 lib/action_dispatch/http/headers.rb
actionpack-4.1.14.1 lib/action_dispatch/http/headers.rb
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/actionpack-4.1.13/lib/action_dispatch/http/headers.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/actionpack-4.1.13/lib/action_dispatch/http/headers.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/actionpack-4.1.13/lib/action_dispatch/http/headers.rb
actionpack-4.1.14 lib/action_dispatch/http/headers.rb
actionpack-4.1.14.rc2 lib/action_dispatch/http/headers.rb
actionpack-4.1.14.rc1 lib/action_dispatch/http/headers.rb
actionpack-4.1.13 lib/action_dispatch/http/headers.rb
actionpack-4.1.13.rc1 lib/action_dispatch/http/headers.rb
actionpack-4.1.12 lib/action_dispatch/http/headers.rb
actionpack-4.1.12.rc1 lib/action_dispatch/http/headers.rb
actionpack-4.1.11 lib/action_dispatch/http/headers.rb
actionpack-4.1.10 lib/action_dispatch/http/headers.rb
actionpack-4.1.10.rc4 lib/action_dispatch/http/headers.rb
actionpack-4.1.10.rc3 lib/action_dispatch/http/headers.rb