app.py 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. import logging
  2. import os
  3. from importlib import import_module
  4. from logging.config import dictConfig
  5. from flask import Flask
  6. from lakesuperior.endpoints.ldp import ldp
  7. from lakesuperior.endpoints.query import query
  8. from lakesuperior.toolbox import Toolbox
  9. # App factory.
  10. def create_app(app_conf, logging_conf):
  11. '''
  12. App factory.
  13. Create a Flask app with a given configuration and initialize persistent
  14. connections.
  15. @param app_conf (dict) Configuration parsed from `application.yml` file.
  16. @param logging_conf (dict) Logging configuration from `logging.yml` file.
  17. '''
  18. app = Flask(__name__)
  19. app.config.update(app_conf)
  20. dictConfig(logging_conf)
  21. logger = logging.getLogger(__name__)
  22. logger.info('Starting LAKEsuperior HTTP server.')
  23. ## Configure endpoint blueprints here. ##
  24. app.register_blueprint(ldp, url_prefix='/ldp', url_defaults={
  25. 'url_prefix': 'ldp'
  26. })
  27. # Legacy endpoint. @TODO Deprecate.
  28. app.register_blueprint(ldp, url_prefix='/rest', url_defaults={
  29. 'url_prefix': 'rest'
  30. })
  31. app.register_blueprint(query, url_prefix='/query')
  32. # Initialize RDF and file store.
  33. def load_layout(type):
  34. layout_cls = app_conf['store'][type]['layout']
  35. store_mod = import_module('lakesuperior.store_layouts.{0}.{1}'.format(
  36. type, layout_cls))
  37. layout_cls = getattr(store_mod, camelcase(layout_cls))
  38. return layout_cls(app_conf['store'][type])
  39. app.rdfly = load_layout('ldp_rs')
  40. app.nonrdfly = load_layout('ldp_nr')
  41. return app
  42. def camelcase(word):
  43. '''
  44. Convert a string with underscores with a camel-cased one.
  45. Ripped from https://stackoverflow.com/a/6425628
  46. '''
  47. return ''.join(x.capitalize() or '_' for x in word.split('_'))