Sha256: 39cb5c210f1d017a88ccb601682223bebc1374fa23e8ffc7db76b33894af6ce0

Contents?: true

Size: 858 Bytes

Versions: 14

Compression:

Stored size: 858 Bytes

Contents

module SecureHeaders
  class XDOConfigError < StandardError; end
  class XDownloadOptions
    HEADER_NAME = "X-Download-Options".freeze
    DEFAULT_VALUE = 'noopen'
    CONFIG_KEY = :x_download_options

    class << self
      # Public: generate an X-Download-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 XDOConfigError.new("Value can only be nil or 'noopen'")
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
secure_headers-3.9.0 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.8.0 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.7.4 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.7.3 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.7.2 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.7.1 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.7.0 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.6.7 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.6.6 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.6.5 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.6.4 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.6.3 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.6.2 lib/secure_headers/headers/x_download_options.rb
secure_headers-3.6.1 lib/secure_headers/headers/x_download_options.rb