Sha256: b42eeae3622e2ae0addae313a66aaf41b46c5c35badb9084dfdf23f898d801d4

Contents?: true

Size: 1.54 KB

Versions: 33

Compression:

Stored size: 1.54 KB

Contents

module Eco
  module API
    module Common
      module People

        # Class to define a set of default attribute parsers
        class DefaultParsers < PersonParser
          autoloads_children_of "Eco::API::Common::Loaders::Parser"
          autoload_namespace    "Eco::API::Common::People::DefaultParsers"

          def initialize(*args)
            super(*args)
            define_defaults
          end

          private

          def define_defaults
            # Select Options
            select_hashes = @schema.fields.map do |fld|
              if fld.type == "select"
                raise "The schema selection field '#{fld.name}' is missing selection options." unless fld.options && !fld.options.empty?
                options_hash = fld.options.map { |v| [v.downcase.strip, v] }.to_h
                [fld.alt_id, options_hash]
              end
            end.compact.to_h

            SelectParser.new(self, select_hashes: select_hashes).process
          end

        end
      end
    end
  end
end

require_relative 'default_parsers/select_parser'
require_relative 'default_parsers/boolean_parser'
require_relative 'default_parsers/numeric_parser'
require_relative 'default_parsers/date_parser'
require_relative 'default_parsers/multi_parser'
require_relative 'default_parsers/send_invites_parser'
require_relative 'default_parsers/freemium_parser'
require_relative 'default_parsers/policy_groups_parser'
require_relative 'default_parsers/login_providers_parser'
require_relative 'default_parsers/csv_parser'

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
eco-helpers-2.0.21 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.19 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.18 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.17 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.16 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.15 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.14 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.13 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.12 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.11 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.10 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.9 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.8 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.7 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.6 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.5 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.4 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.3 lib/eco/api/common/people/default_parsers.rb
eco-helpers-2.0.2 lib/eco/api/common/people/default_parsers.rb
eco-helpers-1.5.15 lib/eco/api/common/people/default_parsers.rb