Sha256: 9c33da2b723e5c52509fcc2f01d4997fb37ec23f50f099e925652dcae07bd37e

Contents?: true

Size: 888 Bytes

Versions: 15

Compression:

Stored size: 888 Bytes

Contents

# frozen_string_literal: true
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

15 entries across 15 versions & 1 rubygems

Version Path
secure_headers-5.2.0 lib/secure_headers/headers/x_download_options.rb
secure_headers-5.1.0 lib/secure_headers/headers/x_download_options.rb
secure_headers-5.0.5 lib/secure_headers/headers/x_download_options.rb
secure_headers-5.0.4 lib/secure_headers/headers/x_download_options.rb
secure_headers-5.0.3 lib/secure_headers/headers/x_download_options.rb
secure_headers-5.0.2 lib/secure_headers/headers/x_download_options.rb
secure_headers-4.0.2 lib/secure_headers/headers/x_download_options.rb
secure_headers-5.0.1 lib/secure_headers/headers/x_download_options.rb
secure_headers-5.0.0.alpha01 lib/secure_headers/headers/x_download_options.rb
secure_headers-4.0.1 lib/secure_headers/headers/x_download_options.rb
secure_headers-4.0.0 lib/secure_headers/headers/x_download_options.rb
secure_headers-4.0.0.alpha04 lib/secure_headers/headers/x_download_options.rb
secure_headers-4.0.0.alpha03 lib/secure_headers/headers/x_download_options.rb
secure_headers-4.0.0.alpha02 lib/secure_headers/headers/x_download_options.rb
secure_headers-4.0.0.alpha01 lib/secure_headers/headers/x_download_options.rb