2019-07-29 11:44:10 +01:00
|
|
|
from flask import Flask, render_template, redirect, request, 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-07-29 11:44:10 +01:00
|
|
|
from spotify.auth import auth_blueprint
|
|
|
|
from spotify.api import api_blueprint
|
|
|
|
|
2019-07-26 11:05:27 +01:00
|
|
|
# Project ID is determined by the GCLOUD_PROJECT environment variable
|
|
|
|
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-07-26 11:05:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
@app.route('/')
|
2019-07-29 11:44:10 +01:00
|
|
|
def index():
|
2019-07-26 11:05:27 +01:00
|
|
|
return render_template('index.html')
|
|
|
|
|
|
|
|
|
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]
|