2017-08-10 17:12:04 +02:00
|
|
|
from flask import Flask, request
|
2017-07-25 09:52:24 +02:00
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
from sqlalchemy import MetaData
|
|
|
|
from flask_migrate import Migrate
|
2017-08-07 14:51:33 +02:00
|
|
|
import version
|
2017-08-07 21:50:31 +02:00
|
|
|
from lib import cachebust
|
2017-08-10 17:07:39 +02:00
|
|
|
from flask_limiter import Limiter
|
|
|
|
from flask_limiter.util import get_remote_address
|
|
|
|
from lib import get_viewer
|
2017-07-25 09:52:24 +02:00
|
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
2017-07-26 11:11:54 +02:00
|
|
|
default_config = {
|
|
|
|
"SQLALCHEMY_TRACK_MODIFICATIONS": False,
|
|
|
|
"SQLALCHEMY_DATABASE_URI": "postgresql+psycopg2:///forget",
|
2017-07-27 20:20:59 +02:00
|
|
|
"SECRET_KEY": "hunter2",
|
|
|
|
"CELERY_BROKER": "amqp://",
|
2017-08-07 15:06:29 +02:00
|
|
|
"HTTPS": True,
|
2017-08-10 17:22:32 +02:00
|
|
|
"SENTRY_CONFIG": {},
|
|
|
|
"RATELIMIT_STORAGE_URL": "redis://",
|
2017-07-26 11:11:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
app.config.update(default_config)
|
|
|
|
|
|
|
|
app.config.from_pyfile('config.py', True)
|
2017-07-25 23:05:46 +02:00
|
|
|
|
2017-07-25 09:52:24 +02:00
|
|
|
metadata = MetaData(naming_convention = {
|
|
|
|
"ix": 'ix_%(column_0_label)s',
|
|
|
|
"uq": "uq_%(table_name)s_%(column_0_name)s",
|
|
|
|
"ck": "ck_%(table_name)s_%(constraint_name)s",
|
|
|
|
"fk": "fk_%(table_name)s_%(column_0_name)s_%(referred_table_name)s",
|
|
|
|
"pk": "pk_%(table_name)s"
|
|
|
|
})
|
|
|
|
|
|
|
|
db = SQLAlchemy(app, metadata=metadata)
|
|
|
|
migrate = Migrate(app, db)
|
2017-08-07 13:29:31 +02:00
|
|
|
|
|
|
|
sentry = None
|
|
|
|
if 'SENTRY_DSN' in app.config:
|
|
|
|
from raven.contrib.flask import Sentry
|
2017-08-07 15:09:28 +02:00
|
|
|
app.config['SENTRY_CONFIG']['release'] = version.version
|
2017-08-07 14:59:38 +02:00
|
|
|
sentry = Sentry(app, dsn=app.config['SENTRY_DSN'])
|
2017-08-07 21:35:46 +02:00
|
|
|
|
2017-08-07 21:50:31 +02:00
|
|
|
url_for = cachebust(app)
|
|
|
|
|
2017-08-07 21:35:46 +02:00
|
|
|
@app.context_processor
|
|
|
|
def inject_static():
|
|
|
|
def static(filename, **kwargs):
|
|
|
|
return url_for('static', filename=filename, **kwargs)
|
|
|
|
return {'st': static}
|
2017-08-10 17:07:39 +02:00
|
|
|
|
|
|
|
def rate_limit_key():
|
|
|
|
viewer = get_viewer()
|
|
|
|
if viewer:
|
|
|
|
return viewer.id
|
|
|
|
for address in request.access_route:
|
|
|
|
if address != '127.0.0.1':
|
|
|
|
print(address)
|
|
|
|
return address
|
|
|
|
return request.remote_addr
|
|
|
|
|
|
|
|
limiter = Limiter(app, key_func=rate_limit_key)
|