config_parser.py 708 B

1234567891011121314151617181920212223242526272829
  1. import os
  2. import hiyapyco
  3. import yaml
  4. configs = (
  5. 'application',
  6. 'logging',
  7. 'namespaces',
  8. 'flask',
  9. )
  10. # This will hold a dict of all configuration values.
  11. config = {}
  12. # Parse configuration
  13. if 'FCREPO_CONFIG_DIR' in os.environ:
  14. CONFIG_DIR = os.environ['FCREPO_CONFIG_DIR']
  15. else:
  16. CONFIG_DIR = os.path.dirname(os.path.abspath(__file__)) + '/etc'
  17. for cname in configs:
  18. file = '{}/{}.yml'.format(CONFIG_DIR , cname)
  19. with open(file, 'r') as stream:
  20. config[cname] = yaml.load(stream, yaml.SafeLoader)
  21. # Merge default and test configurations.
  22. config['test'] = hiyapyco.load(CONFIG_DIR + '/application.yml',
  23. CONFIG_DIR + '/test.yml', method=hiyapyco.METHOD_MERGE)