plugin/raven: Fix paster's celery config issue
[mediagoblin.git] / mediagoblin / init / celery / from_celery.py
CommitLineData
1e48a830 1# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
1e48a830
CAW
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
17import os
b1bb15d1 18import logging
9d7c69fb 19import logging.config
b1bb15d1 20
b1bb15d1 21from celery.signals import setup_logging
1e48a830 22
924c586b 23from mediagoblin import app, mg_globals
073b61fe 24from mediagoblin.init.celery import setup_celery_from_config
1e48a830
CAW
25
26
e893094a 27OUR_MODULENAME = __name__
1e48a830 28
b1bb15d1 29_log = logging.getLogger(__name__)
b1bb15d1
JW
30
31
b4ab702f 32def setup_logging_from_paste_ini(loglevel, **kw):
b1bb15d1
JW
33 if os.path.exists(os.path.abspath('paste_local.ini')):
34 logging_conf_file = 'paste_local.ini'
35 else:
36 logging_conf_file = 'paste.ini'
37
86f0ff75
CAW
38 # allow users to set up explicitly which paste file to check via the
39 # PASTE_CONFIG environment variable
40 logging_conf_file = os.environ.get(
41 'PASTE_CONFIG', logging_conf_file)
42
b1bb15d1
JW
43 if not os.path.exists(logging_conf_file):
44 raise IOError('{0} does not exist. Logging can not be set up.'.format(
45 logging_conf_file))
46
9d7c69fb 47 logging.config.fileConfig(logging_conf_file)
b1bb15d1 48
b1bb15d1
JW
49
50setup_logging.connect(setup_logging_from_paste_ini)
51
1e48a830 52
9ea5c28b 53def setup_self(check_environ_for_conf=True, module_name=OUR_MODULENAME,
80dc071b 54 default_conf_file=None):
1e48a830
CAW
55 """
56 Transform this module into a celery config module by reading the
57 mediagoblin config file. Set the environment variable
924c586b 58 MEDIAGOBLIN_CONFIG to specify where this config file is.
1e48a830 59
924c586b 60 By default it defaults to 'mediagoblin.ini'.
1e48a830 61
924c586b
CAW
62 Note that if celery_setup_elsewhere is set in your config file,
63 this simply won't work.
1e48a830 64 """
a8acb5a3
CAW
65 if not default_conf_file:
66 if os.path.exists(os.path.abspath('mediagoblin_local.ini')):
67 default_conf_file = 'mediagoblin_local.ini'
68 else:
69 default_conf_file = 'mediagoblin.ini'
80dc071b 70
eaca7874
CAW
71 if check_environ_for_conf:
72 mgoblin_conf_file = os.path.abspath(
9ea5c28b 73 os.environ.get('MEDIAGOBLIN_CONFIG', default_conf_file))
eaca7874 74 else:
9ea5c28b 75 mgoblin_conf_file = default_conf_file
eaca7874 76
1e48a830
CAW
77 if not os.path.exists(mgoblin_conf_file):
78 raise IOError(
79 "MEDIAGOBLIN_CONFIG not set or file does not exist")
243c3843 80
924c586b
CAW
81 # By setting the environment variable here we should ensure that
82 # this is the module that gets set up.
eaca7874 83 os.environ['CELERY_CONFIG_MODULE'] = module_name
924c586b 84 app.MediaGoblinApp(mgoblin_conf_file, setup_celery=False)
9ea5c28b 85
1e48a830 86 setup_celery_from_config(
924c586b 87 mg_globals.app_config, mg_globals.global_config,
eaca7874 88 settings_module=module_name,
1e48a830
CAW
89 set_environ=False)
90
1e48a830
CAW
91
92if os.environ['CELERY_CONFIG_MODULE'] == OUR_MODULENAME:
93 setup_self()