Sha256: 4940a3ec2999eaaecd200196a77b11da3242c4df1e3257d2225a8010aef0e1ef

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

module Ecoportal
  module API
    class Internal
      class Person < V1::Person
        def as_json
          super.update("account" => account&.as_json)
        end

        def account
          return @account if defined?(@account)
          return @account = nil if doc["account"].nil?
          @account = Internal::Account.new(doc["account"])
        end

        def account=(value)
          case value
          when NilClass
            doc["account"] = nil
          when Internal::Account
            doc["account"] = JSON.parse(value.to_json)
          when Hash
            # TODO
            doc["account"] = value.slice(%w[policy_group_ids landing_page_id permissions_preset permissions_custom preferences prefilter filter_tags login_provider_ids starred_ids])
          else
            # TODO
            raise "Invalid set on account: Need nil, Account or Hash; got #{value.class}"
          end
          remove_instance_variable("@account") if defined?(@account)
          return account
        end

        private

        def person_details_class
          Internal::PersonDetails
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ecoportal-api-0.1.3 lib/ecoportal/api/internal/person.rb
ecoportal-api-0.1.2 lib/ecoportal/api/internal/person.rb