notice.rb
3.86 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
require 'recurse'
class Notice
include Mongoid::Document
include Mongoid::Timestamps
field :message
field :server_environment, :type => Hash
field :request, :type => Hash
field :notifier, :type => Hash
field :user_attributes, :type => Hash
field :framework
field :error_class
delegate :lines, :to => :backtrace, :prefix => true
delegate :app, :problem, :to => :err
belongs_to :err
belongs_to :backtrace, :index => true
index(:created_at => 1)
index(:err_id => 1, :created_at => 1, :_id => 1)
after_create :cache_attributes_on_problem, :unresolve_problem
after_create :email_notification
after_create :services_notification
before_save :sanitize
before_destroy :decrease_counter_cache, :remove_cached_attributes_from_problem
validates_presence_of :backtrace, :server_environment, :notifier
scope :ordered, order_by(:created_at.asc)
scope :reverse_ordered, order_by(:created_at.desc)
scope :for_errs, lambda {|errs| where(:err_id.in => errs.all.map(&:id))}
def user_agent
agent_string = env_vars['HTTP_USER_AGENT']
agent_string.blank? ? nil : UserAgent.parse(agent_string)
end
def user_agent_string
if user_agent.nil? || user_agent.none?
"N/A"
else
"#{user_agent.browser} #{user_agent.version} (#{user_agent.os})"
end
end
def environment_name
server_environment['server-environment'] || server_environment['environment-name']
end
def component
request['component']
end
def action
request['action']
end
def where
where = component.to_s.dup
where << "##{action}" if action.present?
where
end
def request
super || {}
end
def url
request['url']
end
def host
uri = url && URI.parse(url)
uri.blank? ? "N/A" : uri.host
rescue URI::InvalidURIError
"N/A"
end
def env_vars
request['cgi-data'] || {}
end
def params
request['params'] || {}
end
def session
request['session'] || {}
end
def in_app_backtrace_lines
backtrace_lines.in_app
end
def similar_count
problem.notices_count
end
def emailable?
app.email_at_notices.include?(similar_count)
end
def should_email?
app.emailable? && emailable?
end
def should_notify?
app.notification_service.notify_at_notices.include?(0) || app.notification_service.notify_at_notices.include?(similar_count)
end
##
# TODO: Move on decorator maybe
#
def project_root
if server_environment
server_environment['project-root'] || ''
end
end
def app_version
if server_environment
server_environment['app-version'] || ''
end
end
protected
def decrease_counter_cache
problem.inc(:notices_count, -1) if err
end
def remove_cached_attributes_from_problem
problem.remove_cached_notice_attributes(self) if err
end
def unresolve_problem
problem.update_attributes!(:resolved => false, :resolved_at => nil, :notices_count => 1) if problem.resolved?
end
def cache_attributes_on_problem
ProblemUpdaterCache.new(problem, self).update
end
def sanitize
[:server_environment, :request, :notifier].each do |h|
send("#{h}=",sanitize_hash(send(h)))
end
end
def sanitize_hash(h)
h.recurse do
|h| h.inject({}) do |h,(k,v)|
if k.is_a?(String)
h[k.gsub(/\./,'.').gsub(/^\$/,'$')] = v
else
h[k] = v
end
h
end
end
end
private
##
# Send email notification if needed
def email_notification
return true unless should_email?
Mailer.err_notification(self).deliver
rescue => e
HoptoadNotifier.notify(e)
end
##
# Launch all notification define on the app associate to this notice
def services_notification
return true unless app.notification_service_configured? and should_notify?
app.notification_service.create_notification(problem)
rescue => e
HoptoadNotifier.notify(e)
end
end