Refactored raven plugin
[mediagoblin.git] / mediagoblin / plugins / raven / __init__.py
1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17 import os
18 import logging
19
20 from mediagoblin.tools import pluginapi
21 from raven import Client
22 from raven.contrib.celery import register_signal
23
24 _log = logging.getLogger(__name__)
25
26 PLUGIN_DIR = os.path.dirname(__file__)
27
28
29 def setup_plugin():
30 config = pluginapi.get_config('mediagoblin.plugins.oauth')
31
32 _log.info('Setting up raven for celery...')
33
34 sentry_dsn = config.get('sentry_dsn')
35
36 if sentry_dsn:
37 _log.info('Setting up raven from plugin config: {0}'.format(
38 sentry_dsn))
39 client = Client(sentry_dsn))
40 elif os.environ.get('SENTRY_DSN'):
41 _log.info('Setting up raven from SENTRY_DSN environment variable: {0}'\
42 .format(os.environ.get('SENTRY_DSN')))
43 client = Client() # Implicitly looks for SENTRY_DSN
44 else:
45 _log.error('Could not set up client, missing sentry DSN')
46 return
47
48 register_signal(client)
49
50
51 hooks = {
52 'setup': setup_plugin,
53 }