Users can upload photos

This commit is contained in:
Lucas Jensen
2022-05-26 21:22:59 -07:00
parent 70a86fc06f
commit c474aaae3f
9 changed files with 211 additions and 18 deletions

72
main.py
View File

@@ -5,11 +5,15 @@ Last updated 5/12 for Assignment 1
"""
from flask import Flask, redirect, render_template, request, send_file
from recipe import Recipe, RecipeBook
from werkzeug.utils import secure_filename
from time import sleep
import subprocess
import os
app = Flask(__name__)
book = RecipeBook()
@app.route("/")
def home():
return render_template("index.html")
@@ -24,23 +28,79 @@ def recipes_page():
return render_template("recipes.html", content=recipes)
@app.route('/recipes/<_id>', methods=['GET', 'POST'])
def recipe_page(_id):
@app.route('/recipes/<_id>/email', methods=['GET', 'POST'])
def email_page(_id):
recipe = book.find_by_id(str(_id))
if request.method == 'POST':
addr = request.form.get('email')
subject = recipe.get_name()
message = f"{subject}; " \
f"Num loaves: {recipe.get_num_loaves()};"
ingredients = recipe.get_ingredients()
for item in ingredients:
message += f" {item}: {ingredients[item]} grams;"
body = f"$to == {addr}\n" \
f"$subject == {subject}\n" \
f"$message == {message}"
with open('mail.txt', 'wt') as txt_file:
txt_file.write(body)
subprocess.call(['python', 'mailer.py'])
return redirect('/recipes')
return render_template('email.html', content=recipe)
@app.route('/recipes/<_id>', methods=['GET', 'POST'])
def recipe_page(_id):
recipe = book.find_by_id(_id)
if request.method == 'POST':
# user wants to scale their recipe
if 'scale' in request.form:
scale = request.form.get('scale')
new = recipe.scale(scale)
new_id = book.add_recipe(new)
return redirect(f'/recipes/{new_id}')
elif 'photo' in request.files:
# user wants to add a photo
f = request.files['photo']
f.save(os.path.join('static', f"image_{_id}.jpg"))
# return "Success"
else:
# user wants to download a pdf
path = write_txt(_id)
sleep(0.5)
return send_file(path, as_attachment=True)
return render_template("recipe.html", content=recipe, _id=_id)
# find all associated images
recipe_photos = []
all_photos = os.listdir('static')
for photo in all_photos:
if 'jpg' in photo:
if get_num(photo) == int(_id):
recipe_photos.append(photo)
return render_template("recipe.html", content=recipe, _id=_id, photos=recipe_photos)
def get_num(path: str) -> int:
"""
:param path: must be formatted: "image_XXX.jpg" where XXX is the id of the recipe with any number of digits
:return: integer of the found id number
"""
num = ""
for i in range(6, len(path)):
if path[i] == '.':
break
num += path[i]
return int(num)
def write_txt(_id):
@@ -55,10 +115,6 @@ def write_txt(_id):
return f"recipe{_id}.pdf"
# app.route('/recipes/<id>/download')
# def
@app.route('/recipes/<_id>/delete')
def delete_recipe(_id):
book.find_and_delete(_id)
@@ -80,4 +136,4 @@ def add_recipe():
if __name__ == "__main__":
app.run(debug=False)
app.run(debug=True)