-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
301 lines (264 loc) · 11.2 KB
/
main.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
'''
SET UP INFO:
1. Install Python 3
2. CD into the CS411 directory on your machine via the command line
3. Run 'pip3 install Flask'
4. Run 'pip3 install pymongo'
5. Run 'export FLASK_APP=main.py' or For windows: $env:FLASK_APP = "main.py" , or set FLASK_APP=main.py
6. Run 'python3 -m flask run'
7. Go to http://127.0.0.1:5000/ (or http://localhost:5000/) in your browser
8. Do ‘CTRL+C’ in your terminal to kill the instance.
9. To auto update the instance once you save ,export FLASK_DEBUG=1 or windows: $env:FLASK_DEBUG = "main.py"
'''
from flask import Flask , request,jsonify, redirect,render_template, url_for, session
from APIs import Google_Places_Api, config, Yelp_API
from flask_mongoengine import MongoEngine, Document
from flask_wtf import FlaskForm
from flask_wtf.csrf import CSRFProtect
from wtforms import StringField, PasswordField
from wtforms.validators import Email, Length, InputRequired
from werkzeug.security import generate_password_hash, check_password_hash
from flask_login import LoginManager, UserMixin, login_user, login_required, logout_user, current_user
from flask_oauth import OAuth
from urllib.request import urlopen
from urllib import request as URLLib_request
from urllib import error
import json
import pymongo
import pymongo
app = Flask(__name__)
csrf = CSRFProtect()
csrf.init_app(app)
app.config['MONGODB_SETTINGS'] = {
'db': 'testWinWin',
'host': config.DB_URL
}
db = MongoEngine(app)
app.config['SECRET_KEY'] = '_no_one_cared_til_i_put_on_the_mask_'
login_manager = LoginManager()
login_manager.init_app(app)
login_manager.login_view = 'login'
class User(UserMixin, db.Document):
meta = {'collection': 'accounts'}
username = db.StringField()
name = db.StringField()
email = db.StringField(max_length=30)
password = db.StringField()
class Cache(db.Document):
meta = {'collection': 'cache'}
all_reviews = db.StringField()
name = db.StringField()
@login_manager.user_loader
def load_user(user_id):
return User.objects(pk=user_id).first()
class RegForm(FlaskForm):
username = StringField('username', validators=[InputRequired(), Length(max=30)])
name = StringField('name', validators=[InputRequired(), Length(max=30)])
email = StringField('email', validators=[InputRequired(), Email(message='Invalid email'), Length(max=30)])
password = PasswordField('password', validators=[InputRequired(), Length(min=0, max=20)])
class LogInForm(FlaskForm):
username = StringField('username', validators=[InputRequired(), Length(max=30)])
password = PasswordField('password', validators=[InputRequired(), Length(min=8, max=20)])
class RequestForm(FlaskForm):
area = StringField('location', validators=[InputRequired(), Length(max=100)])
#***CODE FOR ROUTING***
#Code for GOOGLE AUTHENTICATION
oauth = OAuth()
GOOGLE_CLIENT_ID = config.Google_Client_ID
GOOGLE_CLIENT_SECRET = config.Google_Client_Secret
REDIRECT_URI = '/oauth2callback'
SECRET_KEY = 'SOMETHINGRANDOM_IHATEOAUTH'
google = oauth.remote_app('google',
base_url='https://www.google.com/accounts/',
authorize_url='https://accounts.google.com/o/oauth2/auth',
request_token_url=None,
request_token_params={'scope': 'https://www.googleapis.com/auth/userinfo.email',
'response_type': 'code'},
access_token_url='https://accounts.google.com/o/oauth2/token',
access_token_method='POST',
access_token_params={'grant_type': 'authorization_code'},
consumer_key=GOOGLE_CLIENT_ID,
consumer_secret=GOOGLE_CLIENT_SECRET)
access_token = [""]
#Every route is declared with an app.route call
@app.route("/")
def landing_page():
form_Login = LogInForm()
form_Request = RequestForm()
access_token = session.get('access_token')
if access_token is None:
return redirect(url_for('requestare'))
access_token = access_token[0]
headers = {'Authorization': 'OAuth '+access_token}
req = URLLib_request.Request('https://www.googleapis.com/oauth2/v1/userinfo',headers= headers)
try:
opener = URLLib_request.build_opener()
res = opener.open(req)
except error.URLError as e:
if e.code == 401:
# Unauthorized - bad token
session.pop('access_token', None)
return redirect(url_for('Login'))
return res.read()
return redirect(url_for('Login'))
@app.route('/Googlelogin')
def login():
callback=url_for('authorized', _external=True)
return google.authorize(callback=callback)
@app.route(REDIRECT_URI)
@google.authorized_handler
def authorized(resp):
access_token = resp['access_token']
session['access_token'] = access_token, ''
return redirect(url_for('requestare'))
@google.tokengetter
def get_access_token():
return session.get('access_token')
@app.route("/Login", methods=['GET', 'POST'])
def Login():
form = LogInForm()
form_Request = RequestForm()
if request.method == 'GET':
if current_user.is_authenticated == True:
return redirect(url_for('requestare'))
return render_template('Login.html', form=form)
else:
check_user = User.objects(username=form.username.data).first()
if check_user:
if check_password_hash(check_user['password'], form.password.data):
login_user(check_user)
return redirect(url_for('requestare'))
return render_template('Login.html', form=form, error="Incorrect password!",Client_id_url=config.Google_Client_ID)
return render_template('Login.html', form=form, error="Username doesn't exist!",Client_id_url=config.Google_Client_ID)
@app.route("/Signup", methods=['GET', 'POST'])
def signup():
form = RegForm()
form_Request = RequestForm()
if request.method == 'GET':
return render_template('Signup.html', form=form)
else:
if form.validate_on_submit():
existing_email = User.objects(email=form.email.data).first()
existing_user = User.objects(username=form.username.data).first()
if existing_email is not None:
return render_template('Signup.html', form=form, error="Email taken") # We should return a pop up error msg as well account taken
elif existing_user is not None:
return render_template('Signup.html', form=form, error="Username taken")
else:
hashpass = generate_password_hash(form.password.data, method='sha256')
newUser = User(username=form.username.data, name=form.name.data, email=form.email.data,
password=hashpass).save()
login_user(newUser)
return redirect(url_for('requestare'))
return render_template('Signup.html', form=form) #We should return a pop up error msg as well bad input
#An example of a route that changes based on the input of the endpoint. Notice how '<name>' is a variable.
#http://127.0.0.1:5000/example/mike will return a UI different than http://127.0.0.1:5000/example/tessa, for instance.
@app.route("/example/")
@app.route("/example/<name>")
def example(name=None):
if name:
length = len(name)
else:
length = 0
return render_template('example.html', name=name, length=length)
#Go to THIS URL To insert the area you want to go to
@app.route("/requestarea/", methods = ['GET','POST'])
def requestare():
form = RequestForm()
if current_user.is_authenticated == True or session.get('access_token') is not None:
#Example of insert
status = True
toInsert = {"hit": "requestArea"}
#response = mycol.insert_one(toInsert)
#end example
name = None
try:
if(current_user.name.count(" ")>=1):
name = current_user.name.split(" ")[0]
else:
name = current_user.name
except Exception as e:
name = None
return render_template('place_request.html',form =form, name=name,loggedin=status)
else:
return redirect("/Login")
def save_to_cache(n, reviews, c):
query = n + "_" + c
for x in Cache.objects:
if(x.name == query):
return
Cache(name=query, all_reviews=json.dumps(reviews)).save()
return
def load_from_cache(n, c):
query = n + "_" + c
temp = Cache.objects(name=query).first()
if temp:
return json.loads(temp.all_reviews)
return []
#This once gets routed to from the above one, DONT ACCESS THIS DIRECTLY
@app.route("/places/", methods = ['GET','POST'])
def place():
data = "NO DATA"
if request.method == 'POST':
status = True
place = request.form['area']
categories = ["Restaurants", "Museums", "Bars", "night_club", "park"]
titles = ["Restaurants:", "Museums:", "Bars:", "Night Clubs:", "Parks:"]
names = [[],[],[],[],[]]
address = [[],[],[],[],[]]
pics = [[],[],[],[],[]]
ratings = []
all_reviews = [[],[],[],[],[]]
count = 0
for i in range(len(categories)):
data = Google_Places_Api.get_activities(place, categories[i])
data = data["results"]
temp_load = load_from_cache(place, categories[i])
for d in data:
# ratings.append(d['rating'])
names[i].append(d["name"])
address[i].append(d["formatted_address"])
if "photos" in d:
temp = d["photos"][0]["photo_reference"]
temp = "https://maps.googleapis.com/maps/api/place/photo?maxwidth=400&photoreference=" + temp + "&key=" + config.api_key_google_places
pics[i].append([temp,count])
else:
pics[i].append(["https://safekozani.gr/images/coming-soon.png",count])
count += 1
for_yelp = [x.strip() for x in d["formatted_address"].split(",")]
current_reviews = []
if temp_load == []:
try:
test_yelp = Yelp_API.get_reviews_of_business(d["name"], for_yelp[0], for_yelp[1],
for_yelp[2].split(" ")[0], "US")
for x in test_yelp["reviews"]:
current_reviews.append([x["rating"], x["text"], x["url"]])
except:
print("no reviews")
all_reviews[i].append(current_reviews)
else:
all_reviews[i] = temp_load
save_to_cache(place, all_reviews[i], categories[i])
response = json.dumps(data, sort_keys = True, indent = 4, separators = (',', ': '))
return render_template('places.html',Categories=titles, place=place, names = names, address = address,
pics = pics,loggedin=status, all_reviews=all_reviews,ratings = ratings)
else:
return redirect("/requestarea/")
@app.route('/logout', methods = ['GET'])
@login_required
def logout():
logout_user()
try:
del session['access_token']
except Exception:
pass
return redirect("/Login")
@app.route('/resetpassword', methods = ['GET'])
def resetpassword():
return redirect("/Login")
@app.route('/aboutus/', methods = ['GET'])
def aboutus():
status=False
if current_user.is_authenticated == True or session.get('access_token') is not None:
status = True
return render_template('aboutus.html',loggedin=status)