Sha256: 42e721e48b4a23bb26ba621bfb67cd92bf58de178cc3aff0a11ff3f5fd2d7c99

Contents?: true

Size: 901 Bytes

Versions: 13

Compression:

Stored size: 901 Bytes

Contents

module SecureHeaders
  class XContentTypeOptionsConfigError < StandardError; end

  class XContentTypeOptions
    HEADER_NAME = "X-Content-Type-Options"
    DEFAULT_VALUE = "nosniff"
    CONFIG_KEY = :x_content_type_options

    class << self
      # Public: generate an X-Content-Type-Options header.
      #
      # Returns a default header if no configuration is provided, or a
      # header name and value based on the config.
      def make_header(config = nil)
        [HEADER_NAME, config || DEFAULT_VALUE]
      end

      def validate_config!(config)
        return if config.nil? || config == OPT_OUT
        raise TypeError.new("Must be a string. Found #{config.class}: #{config}") unless config.is_a?(String)
        unless config.casecmp(DEFAULT_VALUE) == 0
          raise XContentTypeOptionsConfigError.new("Value can only be nil or 'nosniff'")
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
secure_headers-3.6.0 lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.5.1 lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.5.0 lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.5.0.pre lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.4.1 lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.4.0 lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.3.2 lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.3.1 lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.3.0 lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.2.0 lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.1.2 lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.1.1 lib/secure_headers/headers/x_content_type_options.rb
secure_headers-3.1.0 lib/secure_headers/headers/x_content_type_options.rb