sarsooxyz.pyreact/main.py

62 lines
1.7 KiB
Python
Raw Normal View History

2019-02-07 11:50:42 +00:00
from flask import Flask, render_template
2019-02-18 23:20:19 +00:00
from google.cloud import firestore
# Project ID is determined by the GCLOUD_PROJECT environment variable
db = firestore.Client()
2019-02-07 00:13:16 +00:00
app = Flask(__name__)
2019-02-18 23:20:19 +00:00
staticbucketurl = 'https://storage.googleapis.com/sarsooxyzstatic/'
2019-02-07 00:13:16 +00:00
@app.route('/')
2019-02-16 18:28:49 +00:00
def main():
return render_template('index.html', staticroot = staticbucketurl)
2019-02-07 00:13:16 +00:00
2019-02-17 10:04:54 +00:00
@app.route('/music')
def music():
return render_template('music.html')
2019-02-16 18:28:49 +00:00
@app.route('/art')
def art():
2019-02-18 23:20:19 +00:00
art_collection = db.collection(u'art')
art_tags_collection = db.collection(u'art_tags')
2019-02-18 23:20:19 +00:00
try:
2019-02-19 20:38:34 +00:00
#pics = art_collection.get()
tags = art_tags_collection.get()
2019-02-18 23:20:19 +00:00
except google.cloud.exceptions.NotFound:
return 'no such document'
sections = []
for tag in tags:
tag_dict = tag.to_dict()
query_ref = art_collection.where(u'tag', u'==', u'{}'.format(tag_dict['name']))
query = query_ref.get()
image_list = []
for image in query:
image_list.append(image.to_dict())
#sections.append({tag_dict['name']: image_list})
sections.append({'images': image_list, 'name': tag_dict['name'], 'description': tag_dict['description'], 'index': tag_dict['index']})
2019-02-19 20:38:34 +00:00
#print(sections[0])
2019-02-18 23:20:19 +00:00
images = []
for doc in pics:
#image = doc.to_dict()
images.append(doc.to_dict())
#categories[categories.index(image['tag'])].append(image)
2019-02-18 23:20:19 +00:00
2019-02-19 20:38:34 +00:00
return render_template('art.html', staticroot = staticbucketurl, tags=sections)
@app.route('/dev')
def dev():
return render_template('dev.html')
2019-02-07 00:13:16 +00:00
if __name__ == '__main__':
app.run(host='127.0.0.1', port=8080, debug=True)
# [END gae_python37_app]