2017-02-10 06:10:44 +01:00
|
|
|
from config import config
|
|
|
|
from database import db
|
2017-03-25 08:52:56 +01:00
|
|
|
from flask import Flask, render_template, request, session, url_for, redirect, jsonify
|
2017-04-08 01:31:08 +02:00
|
|
|
from flask_sslify import SSLify
|
2017-03-27 01:37:27 +02:00
|
|
|
from titanembeds.utils import cache, rate_limiter
|
2017-02-10 06:10:44 +01:00
|
|
|
import blueprints.api
|
2017-03-24 09:22:03 +01:00
|
|
|
import blueprints.user
|
2017-03-26 06:14:42 +02:00
|
|
|
import blueprints.embed
|
2017-02-10 06:10:44 +01:00
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
os.chdir(config['app-location'])
|
2017-03-25 08:52:56 +01:00
|
|
|
app = Flask(__name__, static_folder="static")
|
2017-02-10 06:10:44 +01:00
|
|
|
app.config['SQLALCHEMY_DATABASE_URI'] = config['database-uri']
|
|
|
|
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False # Suppress the warning/no need this on for now.
|
2017-04-04 07:53:27 +02:00
|
|
|
app.config['RATELIMIT_HEADERS_ENABLED'] = True
|
2017-04-08 03:37:45 +02:00
|
|
|
app.config['SQLALCHEMY_POOL_RECYCLE'] = 250
|
2017-04-22 03:06:19 +02:00
|
|
|
app.config['RATELIMIT_STORAGE_URL'] = 'redislite://redislite.db'
|
2017-02-10 06:10:44 +01:00
|
|
|
app.secret_key = config['app-secret']
|
|
|
|
|
|
|
|
db.init_app(app)
|
2017-03-26 05:31:47 +02:00
|
|
|
cache.init_app(app, config={'CACHE_TYPE': 'simple'})
|
2017-03-27 01:37:27 +02:00
|
|
|
rate_limiter.init_app(app)
|
2017-04-08 01:31:08 +02:00
|
|
|
sslify = SSLify(app, permanent=True)
|
2017-02-10 06:10:44 +01:00
|
|
|
|
|
|
|
app.register_blueprint(blueprints.api.api, url_prefix="/api", template_folder="/templates")
|
2017-03-24 09:22:03 +01:00
|
|
|
app.register_blueprint(blueprints.user.user, url_prefix="/user", template_folder="/templates")
|
2017-03-26 06:14:42 +02:00
|
|
|
app.register_blueprint(blueprints.embed.embed, url_prefix="/embed", template_folder="/templates")
|
2017-02-10 06:10:44 +01:00
|
|
|
|
|
|
|
@app.route("/")
|
2017-03-25 08:52:56 +01:00
|
|
|
def index():
|
2017-03-26 05:31:47 +02:00
|
|
|
return render_template("index.html.j2")
|
2017-02-10 06:10:44 +01:00
|
|
|
|
2017-03-26 06:14:42 +02:00
|
|
|
@app.route("/oldembed/<guildid>/<channelid>")
|
2017-02-10 06:10:44 +01:00
|
|
|
def embed_get(guildid, channelid):
|
|
|
|
if 'username' not in session:
|
|
|
|
return redirect(url_for("get_set_username", guildid=guildid, channelid=channelid))
|
|
|
|
return render_template("embed.html")
|