app.py 1.9 KB

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