Sha256: e88d4ef67bb66de69724aae8e87a64cd02ac276eb00fbbb12e19a702076b120b

Contents?: true

Size: 1.4 KB

Versions: 3

Compression:

Stored size: 1.4 KB

Contents

require 'pdk'

module PDK
  class Config
    class IniFileSetting < PDK::Config::Setting
      # Initialises the PDK::Config::JSONSchemaSetting object.
      #
      # @see PDK::Config::Setting.initialize
      def initialize(_name, namespace, initial_value = nil)
        raise 'The IniFileSetting object can only be created within the IniFile Namespace' unless namespace.is_a?(PDK::Config::IniFile)

        super
        validate!(initial_value) unless initial_value.nil?
      end

      # Verifies that the new setting value is valid in an Ini File
      #
      # @see PDK::Config::Setting.validate!
      def validate!(value)
        # We're very restrictive here. Realistically Ini files only have string types
        return if value.nil? || value.is_a?(String) || value.is_a?(Integer)

        # The only other valid-ish type is a Hash
        raise ArgumentError, format('The setting %{key} may only be a String or Integer, not %{class}', key: qualified_name, class: value.class) unless value.is_a?(Hash)

        # Any hashes can only have a single String/Integer value
        value.each do |child_name, child_value|
          next if child_value.nil? || child_value.is_a?(String) || child_value.is_a?(Integer)

          raise ArgumentError, format('The setting %{key} may only be a String or Integer, not %{class}', key: "#{qualified_name}.#{child_name}", class: child_value.class)
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pdk-3.3.0 lib/pdk/config/ini_file_setting.rb
pdk-3.0.1 lib/pdk/config/ini_file_setting.rb
pdk-3.0.0 lib/pdk/config/ini_file_setting.rb