Class: SDM::NodeHistory

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

NodeHistory records the state of a Node at a given point in time, where every change (create, update and delete) to a Node produces an NodeHistory record.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(activity_id: nil, deleted_at: nil, node: nil, timestamp: nil) ⇒ NodeHistory

Returns a new instance of NodeHistory.



12098
12099
12100
12101
12102
12103
12104
12105
12106
12107
12108
# File 'lib/models/porcelain.rb', line 12098

def initialize(
  activity_id: nil,
  deleted_at: nil,
  node: nil,
  timestamp: nil
)
  @activity_id = activity_id == nil ? "" : activity_id
  @deleted_at = deleted_at == nil ? nil : deleted_at
  @node = node == nil ? nil : node
  @timestamp = timestamp == nil ? nil : timestamp
end

Instance Attribute Details

#activity_idObject

The unique identifier of the Activity that produced this change to the Node. May be empty for some system-initiated updates.



12090
12091
12092
# File 'lib/models/porcelain.rb', line 12090

def activity_id
  @activity_id
end

#deleted_atObject

If this Node was deleted, the time it was deleted.



12092
12093
12094
# File 'lib/models/porcelain.rb', line 12092

def deleted_at
  @deleted_at
end

#nodeObject

The complete Node state at this time.



12094
12095
12096
# File 'lib/models/porcelain.rb', line 12094

def node
  @node
end

#timestampObject

The time at which the Node state was recorded.



12096
12097
12098
# File 'lib/models/porcelain.rb', line 12096

def timestamp
  @timestamp
end

Instance Method Details

#to_json(options = {}) ⇒ Object



12110
12111
12112
12113
12114
12115
12116
# File 'lib/models/porcelain.rb', line 12110

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end