2019-10-10 11:58:17 +01:00
|
|
|
from flask import Flask, render_template, redirect, session, flash, url_for
|
2019-07-26 11:05:27 +01:00
|
|
|
from google.cloud import firestore
|
2019-07-26 14:18:32 +01:00
|
|
|
|
2019-07-26 11:05:27 +01:00
|
|
|
import os
|
|
|
|
|
2019-10-19 17:14:11 +01:00
|
|
|
from music.auth import auth_blueprint
|
|
|
|
from music.api import api_blueprint, player_blueprint, fm_blueprint, spotfm_blueprint, spotify_blueprint
|
2019-07-29 11:44:10 +01:00
|
|
|
|
2019-07-26 11:05:27 +01:00
|
|
|
db = firestore.Client()
|
|
|
|
|
|
|
|
app = Flask(__name__, static_folder=os.path.join(os.path.dirname(__file__), '..', 'build'), template_folder="templates")
|
2019-07-29 11:44:10 +01:00
|
|
|
app.secret_key = db.collection(u'spotify').document(u'config').get().to_dict()['secret_key']
|
|
|
|
app.register_blueprint(auth_blueprint, url_prefix='/auth')
|
|
|
|
app.register_blueprint(api_blueprint, url_prefix='/api')
|
2019-09-30 14:19:00 +01:00
|
|
|
app.register_blueprint(player_blueprint, url_prefix='/api/player')
|
2019-10-07 12:21:26 +01:00
|
|
|
app.register_blueprint(fm_blueprint, url_prefix='/api/fm')
|
|
|
|
app.register_blueprint(spotfm_blueprint, url_prefix='/api/spotfm')
|
2019-10-10 11:58:17 +01:00
|
|
|
app.register_blueprint(spotify_blueprint, url_prefix='/api/spotify')
|
2019-07-26 11:05:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
@app.route('/')
|
2019-07-29 11:44:10 +01:00
|
|
|
def index():
|
2019-08-03 21:35:08 +01:00
|
|
|
|
|
|
|
if 'username' in session:
|
|
|
|
logged_in = True
|
2019-08-05 21:43:09 +01:00
|
|
|
return redirect(url_for('app_route'))
|
2019-08-03 21:35:08 +01:00
|
|
|
else:
|
|
|
|
logged_in = False
|
|
|
|
|
|
|
|
return render_template('login.html', logged_in=logged_in)
|
2019-07-26 11:05:27 +01:00
|
|
|
|
|
|
|
|
2019-07-30 16:25:01 +01:00
|
|
|
@app.route('/app', defaults={'path': ''})
|
|
|
|
@app.route('/app/<path:path>')
|
|
|
|
def app_route(path):
|
2019-07-29 11:44:10 +01:00
|
|
|
|
|
|
|
if 'username' not in session:
|
|
|
|
flash('please log in')
|
|
|
|
return redirect(url_for('index'))
|
|
|
|
|
2019-07-26 11:05:27 +01:00
|
|
|
return render_template('app.html')
|
|
|
|
|
|
|
|
# [END gae_python37_app]
|