Class: InventoryRefresh::InventoryObject

Inherits:
Object
  • Object
show all
Defined in:
lib/inventory_refresh/inventory_object.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(inventory_collection, data) ⇒ InventoryObject

Returns a new instance of InventoryObject.

Parameters:



15
16
17
18
19
20
21
# File 'lib/inventory_refresh/inventory_object.rb', line 15

def initialize(inventory_collection, data)
  @inventory_collection     = inventory_collection
  @data                     = data
  @object                   = nil
  @id                       = nil
  @reference                = inventory_collection.build_reference(data)
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



7
8
9
# File 'lib/inventory_refresh/inventory_object.rb', line 7

def data
  @data
end

#idObject

Returns the value of attribute id.



6
7
8
# File 'lib/inventory_refresh/inventory_object.rb', line 6

def id
  @id
end

#inventory_collectionObject (readonly)

Returns the value of attribute inventory_collection.



7
8
9
# File 'lib/inventory_refresh/inventory_object.rb', line 7

def inventory_collection
  @inventory_collection
end

#objectObject

Returns the value of attribute object.



6
7
8
# File 'lib/inventory_refresh/inventory_object.rb', line 6

def object
  @object
end

#referenceObject (readonly)

Returns the value of attribute reference.



7
8
9
# File 'lib/inventory_refresh/inventory_object.rb', line 7

def reference
  @reference
end

Class Method Details

.add_attributes(inventory_object_attributes) ⇒ Object

Adds setters and getters based on :inventory_object_attributes kwarg passed into InventoryCollection Methods already defined should not be redefined (causes unexpected behaviour)

Parameters:

  • inventory_object_attributes (Array<Symbol>)


139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# File 'lib/inventory_refresh/inventory_object.rb', line 139

def self.add_attributes(inventory_object_attributes)
  defined_methods = InventoryRefresh::InventoryObject.instance_methods(false)

  inventory_object_attributes.each do |attr|
    unless defined_methods.include?("#{attr}=".to_sym)
      define_method("#{attr}=") do |value|
        data[attr] = value
      end
    end

    unless defined_methods.include?(attr.to_sym)
      define_method(attr) do
        data[attr]
      end
    end
  end
end

.allowed?(inventory_collection_scope, key) ⇒ Boolean

Return true if the attribute is allowed to be saved into the DB

Parameters:

Returns:

  • (Boolean)

    true if the attribute is allowed to be saved into the DB



163
164
165
166
167
168
169
170
171
172
173
174
175
176
# File 'lib/inventory_refresh/inventory_object.rb', line 163

def self.allowed?(inventory_collection_scope, key)
  foreign_to_association = (inventory_collection_scope.foreign_key_to_association_mapping[key] ||
    inventory_collection_scope.foreign_type_to_association_mapping[key])

  return false if inventory_collection_scope.attributes_blacklist.present? &&
    (inventory_collection_scope.attributes_blacklist.include?(key) ||
      (foreign_to_association && inventory_collection_scope.attributes_blacklist.include?(foreign_to_association)))

  return false if inventory_collection_scope.attributes_whitelist.present? &&
    (!inventory_collection_scope.attributes_whitelist.include?(key) &&
      (!foreign_to_association || (foreign_to_association && inventory_collection_scope.attributes_whitelist.include?(foreign_to_association))))

  true
end

.attributes_with_keys(data, inventory_collection_scope = nil, all_attribute_keys = [], inventory_object = nil) ⇒ Hash

Transforms InventoryObject object data into hash format with keys that are column names and resolves correct values of the foreign keys (even the polymorphic ones)

Parameters:

  • data (Array<Object>)

    Array of objects that we want to map to DB table columns

  • inventory_collection_scope (InventoryRefresh::InventoryCollection) (defaults to: nil)

    parent InventoryCollection object

  • all_attribute_keys (Array<Symbol>) (defaults to: [])

    Attribute keys we will modify based on object’s data

  • inventory_object (InventoryRefresh::InventoryObject) (defaults to: nil)

    InventoryObject object owning these attributes

Returns:

  • (Hash)

    Data in DB format



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/inventory_refresh/inventory_object.rb', line 50

def self.attributes_with_keys(data, inventory_collection_scope = nil, all_attribute_keys = [], inventory_object = nil)
  # We should explicitly pass a scope, since the inventory_object can be mapped to more InventoryCollections with
  # different blacklist and whitelist. The generic code always passes a scope.
  inventory_collection_scope ||= inventory_collection

  attributes_for_saving = {}
  # First transform the values
  data.each do |key, value|
    if !allowed?(inventory_collection_scope, key)
      next
    elsif loadable?(value) || inventory_collection_scope.association_to_foreign_key_mapping[key]
      # Lets fill also the original data, so other InventoryObject referring to this attribute gets the right
      # result
      data[key] = value.load(inventory_object, key) if value.respond_to?(:load)
      if (foreign_key = inventory_collection_scope.association_to_foreign_key_mapping[key])
        # We have an association to fill, lets fill also the :key, cause some other InventoryObject can refer to it
        record_id = data[key].try(:id)
        foreign_key_to_sym = foreign_key.to_sym
        attributes_for_saving[foreign_key_to_sym] = record_id
        all_attribute_keys << foreign_key_to_sym
        if (foreign_type = inventory_collection_scope.association_to_foreign_type_mapping[key])
          # If we have a polymorphic association, we need to also fill a base class name, but we want to nullify it
          # if record_id is missing
          base_class = data[key].try(:base_class_name) || data[key].class.try(:base_class).try(:name)
          foreign_type_to_sym = foreign_type.to_sym
          attributes_for_saving[foreign_type_to_sym] = record_id ? base_class : nil
          all_attribute_keys << foreign_type_to_sym
        end
      else
        # We have a normal attribute to fill
        attributes_for_saving[key] = data[key]
        all_attribute_keys << key
      end
    else
      attributes_for_saving[key] = value
      all_attribute_keys << key
    end
  end

  attributes_for_saving
end

.loadable?(value) ⇒ Boolean

Return true if the object is loadable, which we determine by a list of loadable classes.

Parameters:

  • value (Object)

    object we test

Returns:

  • (Boolean)

    true if the object is loadable



182
183
184
185
# File 'lib/inventory_refresh/inventory_object.rb', line 182

def self.loadable?(value)
  value.kind_of?(::InventoryRefresh::InventoryObjectLazy) || value.kind_of?(::InventoryRefresh::InventoryObject) ||
    value.kind_of?(::InventoryRefresh::ApplicationRecordReference)
end

Instance Method Details

#assign_attributes(attributes) ⇒ InventoryRefresh::InventoryObject

Given hash of attributes, we assign them to InventoryObject object using its public writers

Parameters:

  • attributes (Hash)

    attributes we want to assign

Returns:



96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'lib/inventory_refresh/inventory_object.rb', line 96

def assign_attributes(attributes)
  attributes.each do |k, v|
    # We don't want timestamps or resource versions to be overwritten here, since those are driving the conditions
    next if i(resource_timestamps resource_timestamps_max resource_timestamp).include?(k)
    next if i(resource_counters resource_counters_max resource_counter).include?(k)

    if data[:resource_timestamp] && attributes[:resource_timestamp]
      assign_only_newest(:resource_timestamp, :resource_timestamps, attributes, data, k, v)
    elsif data[:resource_counter] && attributes[:resource_counter]
      assign_only_newest(:resource_counter, :resource_counters, attributes, data, k, v)
    else
      public_send("#{k}=", v)
    end
  end

  if attributes[:resource_timestamp]
    assign_full_row_version_attr(:resource_timestamp, attributes, data)
  elsif attributes[:resource_counter]
    assign_full_row_version_attr(:resource_counter, attributes, data)
  end

  self
end

#dependency?TrueClass

Returns InventoryObject object is always a dependency.

Returns:

  • (TrueClass)

    InventoryObject object is always a dependency



131
132
133
# File 'lib/inventory_refresh/inventory_object.rb', line 131

def dependency?
  true
end

#inspectString

Returns string format for nice logging.

Returns:

  • (String)

    string format for nice logging



126
127
128
# File 'lib/inventory_refresh/inventory_object.rb', line 126

def inspect
  "InventoryObject:('#{manager_uuid}', #{inventory_collection})"
end

#keyObject



38
39
40
# File 'lib/inventory_refresh/inventory_object.rb', line 38

def key
  nil
end

#load(*_args) ⇒ InventoryRefresh::InventoryObject

Returns self

Returns:



34
35
36
# File 'lib/inventory_refresh/inventory_object.rb', line 34

def load(*_args)
  self
end

#manager_uuidString

Returns stringified reference.

Returns:

  • (String)

    stringified reference



24
25
26
# File 'lib/inventory_refresh/inventory_object.rb', line 24

def manager_uuid
  reference.stringified_reference
end

#to_sString

Returns stringified UUID.

Returns:

  • (String)

    stringified UUID



121
122
123
# File 'lib/inventory_refresh/inventory_object.rb', line 121

def to_s
  manager_uuid
end

#uuidHash

Returns hash reference having :manager_ref keys, which can uniquely identity entity under a manager.

Returns:

  • (Hash)

    hash reference having :manager_ref keys, which can uniquely identity entity under a manager



29
30
31
# File 'lib/inventory_refresh/inventory_object.rb', line 29

def uuid
  reference.full_reference.slice(*reference.keys).stringify_keys!
end