notification_service.rb
1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
class NotificationService
include Mongoid::Document
include Rails.application.routes.url_helpers
default_url_options[:host] = ActionMailer::Base.default_url_options[:host]
default_url_options[:port] = ActionMailer::Base.default_url_options[:port]
field :room_id, type: String
field :user_id, type: String
field :service_url, type: String
field :service, type: String
field :api_token, type: String
field :subdomain, type: String
field :sender_name, type: String
field :notify_at_notices, type: Array, default: Errbit::Config.notify_at_notices
embedded_in :app, inverse_of: :notification_service
validate :check_params
if Errbit::Config.per_app_notify_at_notices
FIELDS = [[:notify_at_notices,
{ placeholder: 'comma separated numbers or simply 0 for every notice',
label: 'notify on errors (0 for all errors)'
}
]]
else
FIELDS = []
end
def notify_at_notices
Errbit::Config.per_app_notify_at_notices ? super : Errbit::Config.notify_at_notices
end
# Subclasses are responsible for overwriting this method.
def check_params
true
end
def notification_description(problem)
"[#{problem.environment}][#{problem.where}] #{problem.message.to_s.truncate(100)}"
end
# Allows us to set the issue tracker class from a single form.
def type
_type
end
def type=(t)
self._type = t
end
def url
nil
end
# Retrieve tracker label from either class or instance.
LABEL = ''
def self.label
self::LABEL
end
def label
self.class.label
end
def configured?
api_token.present?
end
end