66 lines
2.0 KiB
Python
66 lines
2.0 KiB
Python
from flask import Flask, render_template, redirect, session, flash, url_for
|
|
|
|
import logging
|
|
import os
|
|
|
|
from music.auth import auth_blueprint
|
|
from music.api import api_blueprint, player_blueprint, fm_blueprint, \
|
|
spotfm_blueprint, spotify_blueprint, admin_blueprint, tag_blueprint
|
|
from music.model.config import Config
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def create_app():
|
|
"""Generate and retrieve a ready-to-run flask app
|
|
|
|
Returns:
|
|
Flask App: Mixonomer app
|
|
"""
|
|
|
|
app = Flask(__name__, static_folder=os.path.join(os.path.dirname(__file__), '..', 'build'), template_folder="templates")
|
|
|
|
config = Config.collection.get("config/music-tools")
|
|
if config is not None:
|
|
app.secret_key = config.secret_key
|
|
else:
|
|
logger.error('no config returned, skipping secret key')
|
|
|
|
app.register_blueprint(auth_blueprint, url_prefix='/auth')
|
|
app.register_blueprint(api_blueprint, url_prefix='/api')
|
|
app.register_blueprint(player_blueprint, url_prefix='/api/player')
|
|
app.register_blueprint(fm_blueprint, url_prefix='/api/fm')
|
|
app.register_blueprint(spotfm_blueprint, url_prefix='/api/spotfm')
|
|
app.register_blueprint(spotify_blueprint, url_prefix='/api/spotify')
|
|
app.register_blueprint(admin_blueprint, url_prefix='/api/admin')
|
|
app.register_blueprint(tag_blueprint, url_prefix='/api')
|
|
|
|
@app.route('/')
|
|
def index():
|
|
|
|
if 'username' in session:
|
|
logged_in = True
|
|
return redirect(url_for('app_route'))
|
|
else:
|
|
logged_in = False
|
|
|
|
return render_template('login.html', logged_in=logged_in)
|
|
|
|
@app.route('/privacy')
|
|
def privacy():
|
|
return render_template('privacy.html')
|
|
|
|
@app.route('/app', defaults={'path': ''})
|
|
@app.route('/app/<path:path>')
|
|
def app_route(path):
|
|
|
|
if 'username' not in session:
|
|
flash('please log in')
|
|
return redirect(url_for('index'))
|
|
|
|
return render_template('app.html')
|
|
|
|
return app
|
|
|
|
# [END gae_python37_app]
|