-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathapp.py
145 lines (122 loc) · 5.01 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import os
import uuid
from datetime import datetime
from flask import (Flask, redirect, render_template, request,
send_from_directory, url_for)
from flask_migrate import Migrate
from flask_sqlalchemy import SQLAlchemy
from flask_wtf.csrf import CSRFProtect
from requests import RequestException
from azureproject.get_conn import get_conn
app = Flask(__name__, static_folder='static')
csrf = CSRFProtect(app)
# If RUNNING_IN_PRODUCTION is defined as an environment variable, then we're running on Azure
if not 'RUNNING_IN_PRODUCTION' in os.environ:
# Local development, where we'll use environment variables.
print("Loading config.development and environment variables from .env file.")
app.config.from_object('azureproject.development')
else:
# Production, we don't load environment variables from .env file but add them as environment variables in Azure.
print("Loading config.production.")
app.config.from_object('azureproject.production')
with app.app_context():
app.config.update(
SQLALCHEMY_TRACK_MODIFICATIONS=False,
SQLALCHEMY_DATABASE_URI=get_conn(),
)
# Initialize the database connection
db = SQLAlchemy(app)
# Enable Flask-Migrate commands "flask db init/migrate/upgrade" to work
migrate = Migrate(app, db)
# Create databases, if databases exists doesn't issue create
# For schema changes, run "flask db migrate"
from models import Restaurant, Review
with app.app_context():
db.create_all()
db.session.commit()
@app.route('/', methods=['GET'])
def index():
from models import Restaurant
print('Request for index page received')
restaurants = Restaurant.query.all()
return render_template('index.html', restaurants=restaurants)
@app.route('/<int:id>', methods=['GET'])
def details(id):
return details(id,'')
def details(id, message):
from models import Restaurant, Review
restaurant = Restaurant.query.where(Restaurant.id == id).first()
reviews = Review.query.where(Review.restaurant==id)
return render_template('details.html', restaurant=restaurant, reviews=reviews, message=message)
@app.route('/create', methods=['GET'])
def create_restaurant():
print('Request for add restaurant page received')
return render_template('create_restaurant.html')
@app.route('/add', methods=['POST'])
@csrf.exempt
def add_restaurant():
from models import Restaurant
try:
name = request.values.get('restaurant_name')
street_address = request.values.get('street_address')
description = request.values.get('description')
if (name == "" or description == "" ):
raise RequestException()
except (KeyError, RequestException):
# Redisplay the restaurant entry form.
return render_template('create_restaurant.html',
message='Restaurant not added. Include at least a restaurant name and description.')
else:
restaurant = Restaurant()
restaurant.name = name
restaurant.street_address = street_address
restaurant.description = description
db.session.add(restaurant)
db.session.commit()
return redirect(url_for('details', id=restaurant.id))
@app.route('/review/<int:id>', methods=['POST'])
@csrf.exempt
def add_review(id):
from models import Review
try:
user_name = request.values.get('user_name')
rating = request.values.get('rating')
review_text = request.values.get('review_text')
if (user_name == "" or rating == None):
raise RequestException()
except (KeyError, RequestException):
# Redisplay the review form.
from models import Restaurant
restaurant = Restaurant.query.where(Restaurant.id == id).first()
reviews = Review.query.where(Review.restaurant==id)
return details(id, 'Review not added. Include at least a name and rating for review.')
else:
review = Review()
review.restaurant = id
review.review_date = datetime.now()
review.user_name = user_name
review.rating = int(rating)
review.review_text = review_text
db.session.add(review)
db.session.commit()
return redirect(url_for('details', id=id))
@app.context_processor
def utility_processor():
def star_rating(id):
from models import Review
reviews = Review.query.where(Review.restaurant==id)
ratings = []
review_count = 0;
for review in reviews:
ratings += [review.rating]
review_count += 1
avg_rating = round(sum(ratings)/len(ratings), 2) if ratings else 0
stars_percent = round((avg_rating / 5.0) * 100) if review_count > 0 else 0
return {'avg_rating': avg_rating, 'review_count': review_count, 'stars_percent': stars_percent}
return dict(star_rating=star_rating)
@app.route('/favicon.ico')
def favicon():
return send_from_directory(os.path.join(app.root_path, 'static'),
'favicon.ico', mimetype='image/vnd.microsoft.icon')
if __name__ == '__main__':
app.run()