1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- # -*- coding: utf-8 -*-
- """
- flaskbb.extensions
- ~~~~~~~~~~~~~~~~~~
- The extensions that are used by FlaskBB.
- :copyright: (c) 2014 by the FlaskBB Team.
- :license: BSD, see LICENSE for more details.
- """
- from celery import Celery
- from sqlalchemy import MetaData
- from flask_alembic import Alembic
- from flask_allows import Allows
- from flask_babelplus import Babel
- from flask_caching import Cache
- from flask_debugtoolbar import DebugToolbarExtension
- from flask_limiter import Limiter
- from flask_limiter.util import get_remote_address
- from flask_login import LoginManager
- from flask_mail import Mail
- from flask_redis import FlaskRedis
- from flask_sqlalchemy import SQLAlchemy
- from flask_themes2 import Themes
- from flask_whooshee import Whooshee
- from flask_wtf.csrf import CSRFProtect
- from flaskbb.exceptions import AuthorizationRequired
- # Permissions Manager
- allows = Allows(throws=AuthorizationRequired)
- # Database
- metadata = MetaData(
- naming_convention={
- "ix": "ix_%(column_0_label)s",
- "uq": "uq_%(table_name)s_%(column_0_name)s",
- "fk": "fk_%(table_name)s_%(column_0_name)s_%(referred_table_name)s",
- "pk": "pk_%(table_name)s",
- }
- )
- db = SQLAlchemy(metadata=metadata)
- # Whooshee (Full Text Search)
- whooshee = Whooshee()
- # Login
- login_manager = LoginManager()
- # Mail
- mail = Mail()
- # Caching
- cache = Cache()
- # Redis
- redis_store = FlaskRedis()
- # Debugtoolbar
- debugtoolbar = DebugToolbarExtension()
- # Migrations
- alembic = Alembic()
- # Themes
- themes = Themes()
- # Babel
- babel = Babel()
- # CSRF
- csrf = CSRFProtect()
- # Rate Limiting
- limiter = Limiter(auto_check=False, key_func=get_remote_address)
- # Celery
- celery = Celery("flaskbb")
|