Class: DeadMansSnitch::V3

Inherits:
Integration
  • Object
show all
Defined in:
app/models/pager_tree/integrations/dead_mans_snitch/v3.rb

Constant Summary collapse

OPTIONS =
[]

Instance Method Summary collapse

Instance Method Details

#adapter_actionObject



25
26
27
28
29
30
31
32
33
# File 'app/models/pager_tree/integrations/dead_mans_snitch/v3.rb', line 25

def adapter_action
  if _type == "snitch.missing" && _current_status == "missing" && _previous_status == "healthy"
    :create
  elsif _type == "snitch.reporting" && _current_status == "healthy" && _previous_status == "missing"
    :resolve
  else
    :other
  end
end

#adapter_incoming_can_defer?Boolean

Returns:

  • (Boolean)


17
18
19
# File 'app/models/pager_tree/integrations/dead_mans_snitch/v3.rb', line 17

def adapter_incoming_can_defer?
  true
end

#adapter_process_createObject



35
36
37
38
39
40
41
42
43
44
# File 'app/models/pager_tree/integrations/dead_mans_snitch/v3.rb', line 35

def adapter_process_create
  Alert.new(
    title: _title,
    description: _description,
    thirdparty_id: adapter_thirdparty_id,
    dedup_keys: [],
    additional_data: _additional_datums,
    tags: _tags
  )
end

#adapter_supports_incoming?Boolean

Returns:

  • (Boolean)


9
10
11
# File 'app/models/pager_tree/integrations/dead_mans_snitch/v3.rb', line 9

def adapter_supports_incoming?
  true
end

#adapter_supports_outgoing?Boolean

Returns:

  • (Boolean)


13
14
15
# File 'app/models/pager_tree/integrations/dead_mans_snitch/v3.rb', line 13

def adapter_supports_outgoing?
  false
end

#adapter_thirdparty_idObject



21
22
23
# File 'app/models/pager_tree/integrations/dead_mans_snitch/v3.rb', line 21

def adapter_thirdparty_id
  adapter_incoming_request_params.dig("data", "snitch", "token")
end