__init__.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # -*- coding: utf-8 -*-
  2. from flask import Flask, g, current_app, request
  3. from flask.ext.babel import Babel
  4. from flask.ext.sqlalchemy import SQLAlchemy, event
  5. from flask.ext.mail import Mail
  6. from flask.ext.cache import Cache
  7. from .sessions import MySessionInterface
  8. babel = Babel()
  9. db = SQLAlchemy()
  10. sess = MySessionInterface(db)
  11. cache = Cache()
  12. mail = Mail()
  13. def get_locale():
  14. if request.cookies.get('locale') in current_app.config['LANGUAGES'].keys():
  15. return request.cookies.get('locale')
  16. return request.accept_languages.best_match(current_app.config['LANGUAGES'].keys(), 'en')
  17. def create_app(config={}):
  18. global babel, db, mail, sess
  19. app = Flask(__name__)
  20. app.config.from_object('ffdnispdb.default_settings')
  21. app.config.from_envvar('FFDNISPDB_SETTINGS', True)
  22. if isinstance(config, dict):
  23. app.config.update(config)
  24. else:
  25. app.config.from_object(config)
  26. babel.init_app(app)
  27. babel.localeselector(get_locale)
  28. db.init_app(app)
  29. with app.app_context():
  30. @event.listens_for(db.engine, "first_connect")
  31. def connect(sqlite, connection_rec):
  32. sqlite.enable_load_extension(True)
  33. try:
  34. sqlite.execute('select load_extension("libspatialite")')
  35. current_app.spatialite_modulename = 'libspatialite'
  36. except Exception as e:
  37. sqlite.execute('select load_extension("mod_spatialite")')
  38. current_app.spatialite_modulename = 'mod_spatialite'
  39. sqlite.enable_load_extension(False)
  40. @event.listens_for(db.engine, "connect")
  41. def connect(sqlite, connection_rec):
  42. sqlite.enable_load_extension(True)
  43. sqlite.execute('select load_extension("%s")' % current_app.spatialite_modulename)
  44. sqlite.enable_load_extension(False)
  45. app.session_interface = sess
  46. mail.init_app(app)
  47. cache.init_app(app)
  48. from .views import ispdb
  49. from .views_api import ispdbapi
  50. app.register_blueprint(ispdb)
  51. app.register_blueprint(ispdbapi, url_prefix='/api')
  52. return app
  53. from . import models