app.py 2.0 KB

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