12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- import sys
- from os import path, environ
- import hiyapyco
- import yaml
- def parse_config(config_dir=None):
- """
- Parse configuration from a directory.
- This is normally called by the standard endpoints (``lsup_admin``, web
- server, etc.) or by a Python client by importing
- :py:mod:`lakesuperior.env_setup` but an application using a non-default
- configuration may specify an alternative configuration directory.
- The directory must have the same structure as the one provided in
- ``etc.defaults``.
- :param config_dir: Location on the filesystem of the configuration
- directory. The default is set by the ``FCREPO_CONFIG_DIR`` environment
- variable or, if this is not set, the ``etc.defaults`` stock directory.
- """
- configs = (
- 'application',
- 'logging',
- 'namespaces',
- 'flask',
- )
- if not config_dir:
- config_dir = environ.get('FCREPO_CONFIG_DIR', path.dirname(
- path.dirname(path.abspath(__file__))) + '/etc.defaults')
- # This will hold a dict of all configuration values.
- _config = {}
- print('Reading configuration at {}'.format(config_dir))
- for cname in configs:
- file = '{}/{}.yml'.format(config_dir , cname)
- with open(file, 'r') as stream:
- _config[cname] = yaml.load(stream, yaml.SafeLoader)
- error_msg = '''
- **************
- ** WARNING! **
- **************
- Your test {} store location is set to be the same as the production
- location. This means that if you run a test suite, your live data may be
- wiped clean!
- Please review your configuration before starting.
- '''
- # Merge default and test configurations.
- test_config = {'application': hiyapyco.load(
- config_dir + '/application.yml',
- config_dir + '/test.yml', method=hiyapyco.METHOD_MERGE)}
- if _config['application']['store']['ldp_rs']['location'] \
- == test_config['application']['store']['ldp_rs']['location']:
- raise RuntimeError(error_msg.format('RDF'))
- sys.exit()
- if _config['application']['store']['ldp_nr']['path'] \
- == test_config['application']['store']['ldp_nr']['path']:
- raise RuntimeError(error_msg.format('binary'))
- sys.exit()
- return _config
- # Load default configuration.
- config = parse_config()
|