module Filemaker::Model::Builder

Public Instance Methods

build(record, object) click to toggle source
# File lib/filemaker/model/builder.rb, line 18
def build(record, object)
  object.instance_variable_set('@new_record', false)
  object.instance_variable_set('@record_id', record.record_id)
  object.instance_variable_set('@mod_id', record.mod_id)
  object.instance_variable_set('@portals', record.portals)

  record.each_key do |fm_field_name|
    # record.keys are all lowercase
    field = object.class.find_field_by_name(fm_field_name)

    # Do not bother with undefined field, we don't necessarily need all
    # FM's fields
    next unless field

    setter = :"#{field.name}="
    value = field.cast(record[fm_field_name])
    object.public_send(setter, value)

    if record[fm_field_name].is_a?(Array) && field.max_repeat > 1
      field.max_repeat.times do |idx|
        index = idx + 1
        repeated_setter = "#{field.name}__#{index}="
        repeated_value = field.cast(record[fm_field_name][idx])
        object.public_send(repeated_setter, repeated_value)
      end
    end

    # So after hydrating, we do not say it was dirty
    object.clear_changes_information
  end

  object
end
collection(resultset, klass) click to toggle source

Given an array of resultset, build out the exact same number of model objects.

# File lib/filemaker/model/builder.rb, line 8
def collection(resultset, klass)
  models = []

  resultset.each do |record|
    models << build(record, klass.new)
  end

  models
end