rollbar 2.25.0 → 2.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b9b5cc0a79feb740c661bce79fb76f17a75d38b83172783cf61c8adf955805ec
4
- data.tar.gz: a6c59d9d8d1a228f8b06779a53a07f106f85afcdece4172cdf2f59bbe8d7e330
3
+ metadata.gz: 69307fc6496e1b12a3ebbe3e40b7341f725a7f4efadd6a1a5e76d7246bc86928
4
+ data.tar.gz: 117fb5d03ab1f140f9469558c6560963180806935d3d56eeeb35da9cf450edc6
5
5
  SHA512:
6
- metadata.gz: 639efd714acef67a62998009fbcd527a0cd28262a6cf683efc941533779bef9b51086b5469fa41971d74bf2bf29693044a0cd89634c8abfdf0021d21990524b4
7
- data.tar.gz: 5ad38e447c67a08e4da7e76fb7df303a4c9e0c11d8f469e0f6645c34283b06c35db0e6f74165d3995b0bfe95588ec94cf834f6452e7100dd7d02eddabfe828c0
6
+ metadata.gz: 61587004c5ba54fffb2bd34d9f4abdfd182a82002ebcbe688c8c500975797f43f2caac63ce3ca510276828e1b2132cda95027b42ea02533221a18a008d8d654b
7
+ data.tar.gz: 9b62efc68f689811910cb92ae3262447c41732eaa6ebdc14019b7fd96114fcfebddf921e29699480e1fa7a21d54281e9130e99a3c85f8104f2d4440fd22f840d
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # Rollbar-gem
2
- [![Build Status](https://api.travis-ci.org/rollbar/rollbar-gem.svg?branch=master)](https://travis-ci.org/rollbar/rollbar-gem/branches)
2
+ [![Build Status](https://travis-ci.org/rollbar/rollbar-gem.svg?branch=master)](https://travis-ci.org/rollbar/rollbar-gem/branches)
3
3
  [![Gem Version](https://badge.fury.io/rb/rollbar.svg)](http://badge.fury.io/rb/rollbar)
4
4
  [![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=rollbar&package-manager=bundler&version-scheme=semver&target-version=latest)](https://dependabot.com/compatibility-score.html?dependency-name=rollbar&package-manager=bundler&version-scheme=semver&new-version=latest)
5
5
 
@@ -65,7 +65,6 @@ module Rollbar
65
65
  def build
66
66
  data = build_data
67
67
  self.payload = {
68
- 'access_token' => configuration.access_token,
69
68
  'data' => data
70
69
  }
71
70
 
@@ -137,11 +136,18 @@ module Rollbar
137
136
  uuid = stringified_payload['data']['uuid']
138
137
  host = stringified_payload['data'].fetch('server', {})['host']
139
138
 
139
+ original_error = {
140
+ :message => message,
141
+ :exception => exception,
142
+ :configuration => configuration,
143
+ :uuid => uuid,
144
+ :host => host
145
+ }
146
+
140
147
  notifier.send_failsafe(
141
148
  too_large_payload_string(attempts),
142
149
  nil,
143
- uuid,
144
- host
150
+ original_error
145
151
  )
146
152
  logger.error("[Rollbar] Payload too large to be sent for UUID #{uuid}: #{Rollbar::JSON.dump(payload)}")
147
153
  end
@@ -55,7 +55,7 @@ module Rollbar
55
55
  current_exception = exception
56
56
 
57
57
  while current_exception.respond_to?(:cause) && (cause = current_exception.cause) && cause.is_a?(Exception) && !visited.include?(cause)
58
- traces.unshift(trace_data(cause))
58
+ traces << trace_data(cause)
59
59
  visited << cause
60
60
  current_exception = cause
61
61
  end
@@ -80,8 +80,11 @@ module Rollbar
80
80
  return app_result unless response_string
81
81
 
82
82
  env[JS_IS_INJECTED_KEY] = true
83
- response = ::Rack::Response.new(response_string, app_result[0],
84
- app_result[1])
83
+
84
+ status, headers, = app_result
85
+ headers['Content-Length'] = response_string.bytesize.to_s if headers.key?('Content-Length')
86
+
87
+ response = ::Rack::Response.new(response_string, status, headers)
85
88
 
86
89
  finished = response.finish
87
90
 
@@ -21,6 +21,7 @@ module Rollbar
21
21
 
22
22
  MUTEX = Mutex.new
23
23
  EXTENSION_REGEXP = /.rollbar\z/.freeze
24
+ FAILSAFE_STRING_LENGTH = 10_000
24
25
 
25
26
  def initialize(parent_notifier = nil, payload_options = nil, scope = nil)
26
27
  if parent_notifier
@@ -104,10 +105,10 @@ module Rollbar
104
105
 
105
106
  # Sends a report to Rollbar.
106
107
  #
107
- # Accepts any number of arguments. The last String argument will become
108
- # the message or description of the report. The last Exception argument
109
- # will become the associated exception for the report. The last hash
110
- # argument will be used as the extra data for the report.
108
+ # Accepts a level string plus any number of arguments. The last String
109
+ # argument will become the message or description of the report. The last
110
+ # Exception argument will become the associated exception for the report.
111
+ # The last hash argument will be used as the extra data for the report.
111
112
  #
112
113
  # If the extra hash contains a symbol key :custom_data_method_context
113
114
  # the value of the key will be used as the context for
@@ -118,14 +119,14 @@ module Rollbar
118
119
  # begin
119
120
  # foo = bar
120
121
  # rescue => e
121
- # Rollbar.log(e)
122
+ # Rollbar.log('error', e)
122
123
  # end
123
124
  #
124
125
  # @example
125
- # Rollbar.log('This is a simple log message')
126
+ # Rollbar.log('info', 'This is a simple log message')
126
127
  #
127
128
  # @example
128
- # Rollbar.log(e, 'This is a description of the exception')
129
+ # Rollbar.log('error', e, 'This is a description of the exception')
129
130
  #
130
131
  def log(level, *args)
131
132
  return 'disabled' unless enabled?
@@ -158,7 +159,13 @@ module Rollbar
158
159
  def report_with_rescue(level, message, exception, extra, context)
159
160
  report(level, message, exception, extra, context)
160
161
  rescue StandardError, SystemStackError => e
161
- report_internal_error(e)
162
+ original_error = {
163
+ :message => message,
164
+ :exception => exception,
165
+ :configuration => configuration
166
+ }
167
+
168
+ report_internal_error(e, original_error)
162
169
 
163
170
  'error'
164
171
  end
@@ -262,35 +269,34 @@ module Rollbar
262
269
  end
263
270
  end
264
271
 
265
- def send_failsafe(message, exception, uuid = nil, host = nil)
266
- exception_reason = failsafe_reason(message, exception)
267
-
268
- log_error "[Rollbar] Sending failsafe response due to #{exception_reason}"
269
-
270
- body = failsafe_body(exception_reason)
271
-
272
- failsafe_data = {
272
+ def failsafe_initial_data(exception_reason)
273
+ {
273
274
  :level => 'error',
274
275
  :environment => configuration.environment.to_s,
275
276
  :body => {
276
277
  :message => {
277
- :body => body
278
+ :body => failsafe_body(exception_reason)
278
279
  }
279
280
  },
280
281
  :notifier => {
281
282
  :name => 'rollbar-gem',
282
283
  :version => VERSION
283
284
  },
284
- :custom => {
285
- :orig_uuid => uuid,
286
- :orig_host => host
287
- },
288
285
  :internal => true,
289
286
  'failsafe' => true
290
287
  }
288
+ end
289
+
290
+ def send_failsafe(message, exception, original_error = nil)
291
+ exception_reason = failsafe_reason(message, exception)
292
+
293
+ log_error "[Rollbar] Sending failsafe response due to #{exception_reason}"
294
+
295
+ failsafe_data = failsafe_initial_data(exception_reason)
296
+
297
+ failsafe_add_original_error_data(failsafe_data[:notifier], original_error)
291
298
 
292
299
  failsafe_payload = {
293
- 'access_token' => configuration.access_token,
294
300
  'data' => failsafe_data
295
301
  }
296
302
 
@@ -299,7 +305,9 @@ module Rollbar
299
305
  :notifier => self,
300
306
  :configuration => configuration,
301
307
  :logger => logger)
302
- schedule_item(item)
308
+
309
+ process_item(item)
310
+ log_and_return_item_data(item)
303
311
  rescue StandardError => e
304
312
  log_error "[Rollbar] Error sending failsafe : #{e}"
305
313
  end
@@ -307,6 +315,57 @@ module Rollbar
307
315
  failsafe_payload
308
316
  end
309
317
 
318
+ def failsafe_add_original_error_data(payload_notifier, original_error)
319
+ return unless original_error
320
+
321
+ payload_notifier[:diagnostic] ||= {}
322
+
323
+ add_original_host(payload_notifier[:diagnostic], original_error)
324
+ add_original_uuid(payload_notifier[:diagnostic], original_error)
325
+ add_original_message(payload_notifier[:diagnostic], original_error)
326
+ add_original_error(payload_notifier[:diagnostic], original_error)
327
+ add_configured_options(payload_notifier, original_error)
328
+ end
329
+
330
+ def add_original_message(diagnostic, original_error)
331
+ diagnostic[:original_message] = original_error[:message].truncate(FAILSAFE_STRING_LENGTH) if original_error[:message]
332
+
333
+ rescue StandardError => e
334
+ diagnostic[:original_message] = "Failed: #{e.message}"
335
+ end
336
+
337
+ def add_original_error(diagnostic, original_error)
338
+ if original_error[:exception]
339
+ backtrace = original_error[:exception].backtrace
340
+ message = original_error[:exception].message
341
+ diagnostic[:original_error] = {
342
+ :message => message && message.truncate(FAILSAFE_STRING_LENGTH),
343
+ :stack => backtrace && backtrace.join(', ').truncate(FAILSAFE_STRING_LENGTH)
344
+ }
345
+ end
346
+
347
+ rescue StandardError => e
348
+ diagnostic[:original_error] = "Failed: #{e.message}"
349
+ end
350
+
351
+ def add_configured_options(payload_notifier, original_error)
352
+ if original_error[:configuration]
353
+ configured = original_error[:configuration].configured_options.configured
354
+ payload_notifier[:configured_options] = ::JSON.generate(configured).truncate(FAILSAFE_STRING_LENGTH)
355
+ end
356
+
357
+ rescue StandardError => e
358
+ payload_notifier[:configured_options] = "Failed: #{e.message}"
359
+ end
360
+
361
+ def add_original_host(diagnostic, original_error)
362
+ diagnostic[:original_host] = original_error[:host] if original_error[:host]
363
+ end
364
+
365
+ def add_original_uuid(diagnostic, original_error)
366
+ diagnostic[:original_uuid] = original_error[:uuid] if original_error[:uuid]
367
+ end
368
+
310
369
  ## Logging
311
370
  %w[debug info warn error].each do |level|
312
371
  define_method(:"log_#{level}") do |message|
@@ -462,7 +521,7 @@ module Rollbar
462
521
  # Reports an internal error in the Rollbar library. This will be reported within the configured
463
522
  # Rollbar project. We'll first attempt to provide a report including the exception traceback.
464
523
  # If that fails, we'll fall back to a more static failsafe response.
465
- def report_internal_error(exception)
524
+ def report_internal_error(exception, original_error = nil)
466
525
  log_error '[Rollbar] Reporting internal error encountered while sending data to Rollbar.'
467
526
 
468
527
  configuration.execute_hook(:on_report_internal_error, exception)
@@ -470,7 +529,7 @@ module Rollbar
470
529
  begin
471
530
  item = build_item('error', nil, exception, { :internal => true }, nil)
472
531
  rescue StandardError => e
473
- send_failsafe('build_item in exception_data', e)
532
+ send_failsafe('build_item in exception_data', e, original_error)
474
533
  log_error "[Rollbar] Exception: #{exception}"
475
534
  return
476
535
  end
@@ -478,7 +537,7 @@ module Rollbar
478
537
  begin
479
538
  process_item(item)
480
539
  rescue StandardError => e
481
- send_failsafe('error in process_item', e)
540
+ send_failsafe('error in process_item', e, original_error)
482
541
  log_error "[Rollbar] Item: #{item}"
483
542
  return
484
543
  end
@@ -486,7 +545,7 @@ module Rollbar
486
545
  begin
487
546
  log_instance_link(item['data'])
488
547
  rescue StandardError => e
489
- send_failsafe('error logging instance link', e)
548
+ send_failsafe('error logging instance link', e, original_error)
490
549
  log_error "[Rollbar] Item: #{item}"
491
550
  return
492
551
  end
@@ -1,3 +1,3 @@
1
1
  module Rollbar
2
- VERSION = '2.25.0'.freeze
2
+ VERSION = '2.26.0'.freeze
3
3
  end
@@ -16,8 +16,8 @@ class RollbarAPI
16
16
 
17
17
  protected
18
18
 
19
- def authorized?(json, _request)
20
- json['access_token'] != UNAUTHORIZED_ACCESS_TOKEN
19
+ def authorized?(_json, request)
20
+ request.env['HTTP_X_ROLLBAR_ACCESS_TOKEN'] != UNAUTHORIZED_ACCESS_TOKEN
21
21
  end
22
22
 
23
23
  def response_headers
@@ -26,8 +26,8 @@ class RollbarAPI
26
26
  }
27
27
  end
28
28
 
29
- def valid_data?(json, _request)
30
- !!json['access_token']
29
+ def valid_data?(_json, request)
30
+ !!request.env['HTTP_X_ROLLBAR_ACCESS_TOKEN']
31
31
  end
32
32
 
33
33
  def unauthorized
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rollbar
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.25.0
4
+ version: 2.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rollbar, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-24 00:00:00.000000000 Z
11
+ date: 2020-06-22 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Easy and powerful exception tracking for Ruby
14
14
  email: