environment.py
106 lines
| 3.8 KiB
| text/x-python
|
PythonLexer
r547 | """Pylons environment configuration""" | |||
r1006 | ||||
import os | ||||
import logging | ||||
r2109 | import rhodecode | |||
r1006 | ||||
r547 | from mako.lookup import TemplateLookup | |||
from pylons.configuration import PylonsConfig | ||||
from pylons.error import handle_mako_error | ||||
r1006 | ||||
r2109 | # don't remove this import it does magic for celery | |||
from rhodecode.lib import celerypylons | ||||
r1006 | import rhodecode.lib.app_globals as app_globals | |||
r547 | from rhodecode.config.routing import make_map | |||
r2109 | ||||
from rhodecode.lib import helpers | ||||
r1036 | from rhodecode.lib.auth import set_available_permissions | |||
r2109 | from rhodecode.lib.utils import repo2db_mapper, make_ui, set_rhodecode_config,\ | |||
load_rcextensions | ||||
from rhodecode.lib.utils2 import engine_from_config, str2bool | ||||
r547 | from rhodecode.model import init_model | |||
r691 | from rhodecode.model.scm import ScmModel | |||
r547 | ||||
log = logging.getLogger(__name__) | ||||
r1205 | ||||
r547 | def load_environment(global_conf, app_conf, initial=False): | |||
r2109 | """ | |||
Configure the Pylons environment via the ``pylons.config`` | ||||
r547 | object | |||
""" | ||||
config = PylonsConfig() | ||||
r631 | ||||
r547 | # Pylons paths | |||
root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | ||||
r2109 | paths = dict( | |||
root=root, | ||||
controllers=os.path.join(root, 'controllers'), | ||||
static_files=os.path.join(root, 'public'), | ||||
templates=[os.path.join(root, 'templates')] | ||||
) | ||||
r547 | ||||
# Initialize config with the basic options | ||||
config.init_app(global_conf, app_conf, package='rhodecode', paths=paths) | ||||
r1726 | # store some globals into rhodecode | |||
r1723 | rhodecode.CELERY_ON = str2bool(config['app_conf'].get('use_celery')) | |||
r2299 | rhodecode.CELERY_EAGER = str2bool(config['app_conf'].get('celery.always.eager')) | |||
r1723 | ||||
r547 | config['routes.map'] = make_map(config) | |||
config['pylons.app_globals'] = app_globals.Globals(config) | ||||
r2109 | config['pylons.h'] = helpers | |||
r2016 | rhodecode.CONFIG = config | |||
r2105 | ||||
r2109 | load_rcextensions(root_path=config['here']) | |||
r547 | # Setup cache object as early as possible | |||
import pylons | ||||
pylons.cache._push_object(config['pylons.app_globals'].cache) | ||||
r631 | ||||
r547 | # Create the Mako TemplateLookup, with the default auto-escaping | |||
config['pylons.app_globals'].mako_lookup = TemplateLookup( | ||||
directories=paths['templates'], | ||||
error_handler=handle_mako_error, | ||||
module_directory=os.path.join(app_conf['cache_dir'], 'templates'), | ||||
input_encoding='utf-8', default_filters=['escape'], | ||||
imports=['from webhelpers.html import escape']) | ||||
r2016 | # sets the c attribute access when don't existing attribute are accessed | |||
r547 | config['pylons.strict_tmpl_context'] = True | |||
test = os.path.split(config['__file__'])[-1] == 'test.ini' | ||||
if test: | ||||
r2560 | if os.environ.get('TEST_DB'): | |||
# swap config if we pass enviroment variable | ||||
config['sqlalchemy.db1.url'] = os.environ.get('TEST_DB') | ||||
r547 | from rhodecode.lib.utils import create_test_env, create_test_index | |||
r688 | from rhodecode.tests import TESTS_TMP_PATH | |||
r2752 | # set RC_NO_TMP_PATH=1 to disable re-creating the database and | |||
# test repos | ||||
if not int(os.environ.get('RC_NO_TMP_PATH', 0)): | ||||
create_test_env(TESTS_TMP_PATH, config) | ||||
r2683 | # set RC_WHOOSH_TEST_DISABLE=1 to disable whoosh index during tests | |||
if not int(os.environ.get('RC_WHOOSH_TEST_DISABLE', 0)): | ||||
create_test_index(TESTS_TMP_PATH, config, True) | ||||
r631 | ||||
r2016 | # MULTIPLE DB configs | |||
r547 | # Setup the SQLAlchemy database engine | |||
r1360 | sa_engine_db1 = engine_from_config(config, 'sqlalchemy.db1.') | |||
r547 | init_model(sa_engine_db1) | |||
r631 | ||||
r1036 | repos_path = make_ui('db').configitems('paths')[0][1] | |||
r2622 | repo2db_mapper(ScmModel().repo_scan(repos_path), | |||
r2637 | remove_obsolete=False, install_git_hook=False) | |||
r547 | set_available_permissions(config) | |||
r1036 | config['base_path'] = repos_path | |||
r548 | set_rhodecode_config(config) | |||
r547 | # CONFIGURATION OPTIONS HERE (note: all config options will override | |||
# any Pylons config options) | ||||
r631 | ||||
r2016 | # store config reference into our module to skip import magic of | |||
# pylons | ||||
rhodecode.CONFIG.update(config) | ||||
r547 | return config | |||