Sha256: 4c414dc01319dc2908a2ac2e0efa7676246eef4e86f4e11dbda404a2c672479d
Contents?: true
Size: 951 Bytes
Versions: 18
Compression:
Stored size: 951 Bytes
Contents
# frozen_string_literal: true module SecureHeaders class XContentTypeOptionsConfigError < StandardError; end class XContentTypeOptions HEADER_NAME = "X-Content-Type-Options".freeze DEFAULT_VALUE = "nosniff" 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, user_agent = nil) return if config == OPT_OUT [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
18 entries across 18 versions & 1 rubygems