forked from debtcollective/discourse-sentry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.rb
35 lines (27 loc) · 965 Bytes
/
plugin.rb
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
# frozen_string_literal: true
# name: discourse-sentry
# about: Discourse plugin to integrate Sentry (sentry.io)
# version: 1.1
# authors: debtcollective
# url: https://github.com/debtcollective/discourse-sentry
gem "sentry-raven", "3.0.0"
enabled_site_setting :discourse_sentry_enabled
PLUGIN_NAME ||= "DiscourseSentry".freeze
after_initialize do
if SiteSetting.discourse_sentry_enabled && SiteSetting.discourse_sentry_dsn.present?
Raven.configure do |config|
config.dsn = SiteSetting.discourse_sentry_dsn
end
class ::ApplicationController
before_action :set_raven_context
private
def set_raven_context
Raven.user_context(id: current_user.id, username: current_user.username) if current_user
Raven.extra_context(params: params.to_unsafe_h, url: request.url)
end
end
extend_content_security_policy(
script_src: ['https://browser.sentry-cdn.com/5.19.1/bundle.min.js']
)
end
end