Class: Kennel::Models::Record

Inherits:
Base
  • Object
show all
Includes:
OptionalValidations
Defined in:
lib/kennel/models/record.rb

Direct Known Subclasses

Dashboard, Monitor, Slo, SyntheticTest

Constant Summary collapse

MARKER_TEXT =

Apart from if you just don’t like the default for some reason, overriding MARKER_TEXT allows for namespacing within the same Datadog account. If you run one Kennel setup with marker text A and another with marker text B (assuming that A isn’t a substring of B and vice versa), then the two Kennel setups will operate independently of each other, not trampling over each other’s objects.

This could be useful for allowing multiple products / projects / teams to share a Datadog account but otherwise largely operate independently of each other. In particular, it can be useful for running a “dev” or “staging” instance of Kennel in the same account as, but mostly isolated from, a “production” instance.

ENV.fetch("KENNEL_MARKER_TEXT", "Managed by kennel")
LOCK =
"\u{1F512}"
TRACKING_FIELDS =
[:message, :description].freeze
READONLY_ATTRIBUTES =
[
  :deleted, :id, :created, :created_at, :creator, :org_id, :modified, :modified_at,
  :klass, :tracking_id # added by syncer.rb
].freeze
TITLE_FIELDS =

possible fields that could have the title

[:name, :title].freeze
ALLOWED_KENNEL_ID_CHARS =
"a-zA-Z_\\d.-"
ALLOWED_KENNEL_ID_SEGMENT =
/[#{ALLOWED_KENNEL_ID_CHARS}]+/
ALLOWED_KENNEL_ID_FULL =
"#{ALLOWED_KENNEL_ID_SEGMENT}:#{ALLOWED_KENNEL_ID_SEGMENT}".freeze
ALLOWED_KENNEL_ID_REGEX =
/\A#{ALLOWED_KENNEL_ID_FULL}\z/

Constants included from OptionalValidations

OptionalValidations::UNIGNORABLE, OptionalValidations::UNUSED_IGNORES

Constants inherited from Base

Base::SETTING_OVERRIDABLE_METHODS

Constants included from SettingsAsMethods

SettingsAsMethods::AS_PROCS, SettingsAsMethods::SETTING_OVERRIDABLE_METHODS

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from OptionalValidations

filter_validation_errors, included, #invalid!, valid?

Methods inherited from Base

#kennel_id, #name, #to_json

Methods included from SubclassTracking

#recursive_subclasses, #subclasses

Methods included from SettingsAsMethods

included

Constructor Details

#initialize(project) ⇒ Record

Returns a new instance of Record.

Raises:

  • (ArgumentError)


83
84
85
86
87
# File 'lib/kennel/models/record.rb', line 83

def initialize(project, ...)
  raise ArgumentError, "First argument must be a project, not #{project.class}" unless project.is_a?(Project)
  @project = project
  super(...)
end

Instance Attribute Details

#as_jsonObject (readonly)

Returns the value of attribute as_json.



81
82
83
# File 'lib/kennel/models/record.rb', line 81

def as_json
  @as_json
end

#projectObject (readonly)

Returns the value of attribute project.



81
82
83
# File 'lib/kennel/models/record.rb', line 81

def project
  @project
end

Class Method Details

.api_resource_mapObject



48
49
50
# File 'lib/kennel/models/record.rb', line 48

def api_resource_map
  subclasses.to_h { |s| [s.api_resource, s] }
end

.parse_any_url(url) ⇒ Object



40
41
42
43
44
45
46
# File 'lib/kennel/models/record.rb', line 40

def parse_any_url(url)
  subclasses.detect do |s|
    if (id = s.parse_url(url))
      break s.api_resource, id
    end
  end
end

.parse_tracking_id(a) ⇒ Object



52
53
54
# File 'lib/kennel/models/record.rb', line 52

def parse_tracking_id(a)
  a[self::TRACKING_FIELD].to_s[/-- #{Regexp.escape(MARKER_TEXT)} (#{ALLOWED_KENNEL_ID_FULL})/, 1]
end

.remove_tracking_id(a) ⇒ Object

TODO: combine with parse into a single method or a single regex



57
58
59
60
61
62
# File 'lib/kennel/models/record.rb', line 57

def remove_tracking_id(a)
  value = a[self::TRACKING_FIELD]
  a[self::TRACKING_FIELD] =
    value.dup.sub!(/\n?-- #{Regexp.escape(MARKER_TEXT)} .*/, "") ||
    raise("did not find tracking id in #{value}")
end

Instance Method Details

#add_tracking_idObject



118
119
120
121
122
123
124
125
126
# File 'lib/kennel/models/record.rb', line 118

def add_tracking_id
  json = as_json
  if self.class.parse_tracking_id(json)
    raise "#{safe_tracking_id} Remove \"-- #{MARKER_TEXT}\" line from #{self.class::TRACKING_FIELD} to copy a resource"
  end
  json[self.class::TRACKING_FIELD] =
    "#{json[self.class::TRACKING_FIELD]}\n" \
    "-- #{MARKER_TEXT} #{tracking_id} in #{project.class.file_location}, do not modify manually".lstrip
end

#buildObject



138
139
140
141
142
143
# File 'lib/kennel/models/record.rb', line 138

def build
  @as_json = build_json
  (id = @as_json.delete(:id)) && @as_json[:id] = id
  validate_json(@as_json)
  @as_json
end

#build_jsonObject



132
133
134
135
136
# File 'lib/kennel/models/record.rb', line 132

def build_json
  {
    id: id
  }.compact
end

#diff(actual) ⇒ Object



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/kennel/models/record.rb', line 89

def diff(actual)
  expected = as_json
  expected.delete(:id)

  self.class.send(:normalize, expected, actual)

  return [] if actual == expected # Hashdiff is slow, this is fast

  # strict: ignore Integer vs Float
  # similarity: show diff when not 100% similar
  # use_lcs: saner output
  result = Hashdiff.diff(actual, expected, use_lcs: false, strict: false, similarity: 1)
  raise "Empty diff detected: guard condition failed" if result.empty?
  result
end

#invalid_update!(field, old_value, new_value) ⇒ Object



149
150
151
# File 'lib/kennel/models/record.rb', line 149

def invalid_update!(field, old_value, new_value)
  raise DisallowedUpdateError, "#{safe_tracking_id} Datadog does not allow update of #{field} (#{old_value.inspect} -> #{new_value.inspect})"
end

#remove_tracking_idObject



128
129
130
# File 'lib/kennel/models/record.rb', line 128

def remove_tracking_id
  self.class.remove_tracking_id(as_json)
end

#resolve_linked_tracking_ids!Object



115
116
# File 'lib/kennel/models/record.rb', line 115

def resolve_linked_tracking_ids!(*)
end

#safe_tracking_idObject

For use during error handling



154
155
156
157
158
# File 'lib/kennel/models/record.rb', line 154

def safe_tracking_id
  tracking_id
rescue StandardError
  "<unknown; #tracking_id crashed>"
end

#tracking_idObject



105
106
107
108
109
110
111
112
113
# File 'lib/kennel/models/record.rb', line 105

def tracking_id
  @tracking_id ||= begin
    id = "#{project.kennel_id}:#{kennel_id}"
    unless id.match?(ALLOWED_KENNEL_ID_REGEX) # <-> parse_tracking_id
      raise "Bad kennel/tracking id: #{id.inspect} must match #{ALLOWED_KENNEL_ID_REGEX}"
    end
    id
  end
end

#validate_update!(_diffs) ⇒ Object

Can raise DisallowedUpdateError



146
147
# File 'lib/kennel/models/record.rb', line 146

def validate_update!(_diffs)
end