module RailsConnector class ObjDataFromService < ObjData def initialize(data) @data = data end def value_and_type_of(attribute_name) value_and_type = @data[attribute_name] if value_and_type.blank? if INTERNAL_KEYS.include?(attribute_name) type = type_of_internal(attribute_name) [default_attribute_value(type), type] else raise "Illegal attribute name #{attribute_name}" end elsif value_and_type.length == 1 [value_and_type.first, type_of_internal(attribute_name)] else value_and_type end end def has_custom_attribute?(attribute_name) is_custom_attribute?(attribute_name) && !!@data[attribute_name] end private def is_custom_attribute?(attribute_name) !attribute_name.starts_with?('_') end internal_key_list = %w[ last_changed permalink sort_key1 sort_key2 sort_key3 sort_order sort_type1 sort_type2 sort_type3 suppress_export text_links valid_from valid_until ] INTERNAL_KEYS = Set.new(internal_key_list.map { |name| "_#{name}" } ) end end