This repository has been archived by the owner on Aug 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.py
464 lines (375 loc) · 16.5 KB
/
application.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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
#!/usr/bin/env python3.7
import logging
from flask import Flask, render_template, request, redirect
from flask import jsonify, url_for, flash, make_response
from sqlalchemy import create_engine, asc, desc
from sqlalchemy.orm import sessionmaker
from db_setup import Base, Category, CatItem, User, Log
from flask import session as login_session
import random
import string
from oauth2client.client import flow_from_clientsecrets
from oauth2client.client import FlowExchangeError
import httplib2
import json
import requests
CLIENT_ID = json.loads(
open('credentials.json', 'r').read())['web']['client_id']
engine = create_engine('sqlite:///catalog.db?check_same_thread=False')
Base.metadata.bind = engine
DBSession = sessionmaker(bind=engine)
session = DBSession()
app = Flask(__name__)
# prevent auto sorting from jsonify
app.config['JSON_SORT_KEYS'] = False
logging.basicConfig(filename='catalog.log', level=logging.DEBUG)
# User Helper Functions
def createUser(login_session):
'''create user when he login for first time'''
newUser = User(name=login_session['username'], email=login_session[
'email'], picture=login_session['picture'])
session.add(newUser)
session.commit()
user = session.query(User).filter_by(email=login_session['email']).one()
logging.info('new user created id %s', user.id)
return user.id
def getUserInfo(user_id):
''' return user object using id'''
user = session.query(User).filter_by(id=user_id).one()
return user
def getUserID(email):
''' return user id based on email address
returns null if user not exist'''
try:
user = session.query(User).filter_by(email=email).one()
return user.id
except Exception:
return None
@app.route('/login')
def showLogin():
'''login page and adding session state for user'''
state = ''.join(random.choice(string.ascii_uppercase +
string.digits) for x in range(32))
login_session['state'] = state
return render_template('login.html', STATE=state,
login_session=login_session, not_user=True)
@app.route('/gconnect', methods=['POST'])
def gconnect():
'''login with google account'''
# Validate state token
if request.args.get('state') != login_session['state']:
response = make_response(json.dumps('Invalid state parameter.'), 401)
response.headers['Content-Type'] = 'application/json'
return response
# Obtain authorization code
code = request.data
try:
# Upgrade the authorization code into a credentials object
oauth_flow = flow_from_clientsecrets('credentials.json', scope='')
oauth_flow.redirect_uri = 'postmessage'
credentials = oauth_flow.step2_exchange(code)
except FlowExchangeError:
response = make_response(
json.dumps('Failed to upgrade the authorization code.'), 401)
response.headers['Content-Type'] = 'application/json'
return response
# Check that the access token is valid.
access_token = credentials.access_token
url = ('https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=%s'
% access_token)
h = httplib2.Http()
result = json.loads(h.request(url, 'GET')[1])
# If there was an error in the access token info, abort.
if result.get('error') is not None:
response = make_response(json.dumps(result.get('error')), 500)
response.headers['Content-Type'] = 'application/json'
return response
# Verify that the access token is used for the intended user.
gplus_id = credentials.id_token['sub']
if result['user_id'] != gplus_id:
response = make_response(
json.dumps("Token's user ID doesn't match given user ID."), 401)
response.headers['Content-Type'] = 'application/json'
return response
# Verify that the access token is valid for this app.
if result['issued_to'] != CLIENT_ID:
response = make_response(
json.dumps("Token's client ID does not match app's."), 401)
logging.debug("Token's client ID does not match app's.")
response.headers['Content-Type'] = 'application/json'
return response
stored_access_token = login_session.get('access_token')
stored_gplus_id = login_session.get('gplus_id')
if stored_access_token is not None and gplus_id == stored_gplus_id:
response = make_response(json.dumps(
'Current user is already connected.'),
200)
response.headers['Content-Type'] = 'application/json'
return response
# Store the access token in the session for later use.
login_session['access_token'] = credentials.access_token
login_session['gplus_id'] = gplus_id
# Get user info
userinfo_url = "https://www.googleapis.com/oauth2/v1/userinfo"
params = {'access_token': credentials.access_token, 'alt': 'json'}
answer = requests.get(userinfo_url, params=params)
data = answer.json()
login_session['username'] = data['name']
login_session['picture'] = data['picture']
login_session['email'] = data['email']
# ADD PROVIDER TO LOGIN SESSION
login_session['provider'] = 'google'
# see if user exists, if it doesn't make a new one
user_id = getUserID(data["email"])
if not user_id:
user_id = createUser(login_session)
login_session['user_id'] = user_id
output = ''
output += '<h1>Welcome, '
output += login_session['username']
output += '!</h1>'
output += '<img src="'
output += login_session['picture']
output += ''' " style = "width: 300px; height: 300px;border-radius: 150px;
-webkit-border-radius: 150px;-moz-border-radius: 150px;"> '''
flash("you are now logged in as %s" % login_session['username'])
logging.info('%s logged in ', login_session['username'])
return output
@app.route('/gdisconnect')
def gdisconnect():
'''disconect google account'''
access_token = login_session.get('access_token')
if access_token is None:
response = make_response(
json.dumps('Current user not connected.'), 401)
response.headers['Content-Type'] = 'application/json'
return response
url = 'https://accounts.google.com/o/oauth2/revoke?token=%s' % access_token
h = httplib2.Http()
result = h.request(url, 'GET')[0]
if result['status'] == '200':
response = make_response(json.dumps('Successfully disconnected.'), 200)
response.headers['Content-Type'] = 'application/json'
return response
else:
response = make_response(json.dumps(
'Failed to revoke token for given user.'),
400)
response.headers['Content-Type'] = 'application/json'
return response
@app.route('/disconnect')
def disconnect():
'''remove user from session and disconecting the account'''
name = login_session['username']
if 'gplus_id' in login_session:
if login_session['provider'] == 'google':
gdisconnect()
del login_session['gplus_id']
del login_session['access_token']
del login_session['username']
del login_session['email']
del login_session['picture']
del login_session['user_id']
del login_session['provider']
flash("You have successfully been logged out.")
logging.debug('%s loged out', name)
return redirect(url_for('showCategories'))
else:
flash("You were not logged in")
return redirect(url_for('showCategories'))
# http://localhost:5000/catalog/json
@app.route('/catalog/json')
def categoryJSON():
'''return json of all catagories and items'''
categories = session.query(Category).all()
json_catagory = [c.serialize for c in categories]
count = 0
# get serlized items and adding thim as child to catagory
for cataoery in categories:
items = session.query(CatItem).filter_by(cat_id=cataoery.id).all()
json_catagory[count].update({'Items': [i.serialize for i in items]})
count += 1
return jsonify(cataoeries=json_catagory)
# http://localhost:5000/category/json
@app.route('/category/json')
def categoryJSON_nodetail():
'''return json of all catagories'''
categories = session.query(Category).all()
return jsonify(categories_items=[c.serialize for c in categories])
# http://localhost:5000/category/1/items/json
@app.route('/category/<int:category_id>/items/json')
def categoryItemsJSON(category_id):
'''return json of items in catagory by id'''
items = session.query(CatItem).filter_by(cat_id=category_id).all()
return jsonify(categories_items=[i.serialize for i in items])
# http://localhost:5000/category/1/item/1/json
@app.route('/category/<int:category_id>/item/<int:catItem_id>/json')
def itemJSON(category_id, catItem_id):
'''return json of item by id'''
item = session.query(CatItem).filter_by(id=catItem_id).one()
return jsonify(item=item.serialize)
# Show all categories
# http://localhost:5000/catalog/
@app.route('/')
@app.route('/catalog/')
def showCategories():
'''GET: return a page of avaialable catagories
and recent added items '''
categories = session.query(Category).order_by(asc(Category.name))
# get recent created items
log = session.query(CatItem).join(Log).order_by(desc(Log.time)).all()
# controling show or hied of login button
not_user = True
if 'username' in login_session:
not_user = False
return render_template("categories.html", categories=categories, log=log,
not_user=not_user, login_session=login_session)
# http://localhost:5000/catalog/BASKETBALL/items
@app.route('/catalog/<string:category_name>/items')
def showCatItems(category_name):
'''GET: return a page of avaialable catagories
and items in specified catagory '''
categories = session.query(Category).order_by(asc(Category.name))
catagory = session.query(Category).filter_by(name=category_name).one()
catItems = session.query(CatItem).filter_by(cat_id=catagory.id).all()
not_user = True
if 'username' in login_session:
not_user = False
count = len(catItems)
return render_template("catItems.html", catItems=catItems,
category=catagory, categories=categories,
count=count, not_user=not_user,
login_session=login_session)
# http://localhost:5000/catalog/BASKETBALL/Basketballs
@app.route('/catalog/<string:category_name>/<string:item_title>')
def showItemDetail(item_title, category_name=None):
''' show item and description
with buttons for edit and delete for users '''
catItem = session.query(CatItem).filter_by(title=item_title).one()
itemOwner = session.query(User).filter_by(id=catItem.user_id).one()
# for controling visibility of edit/delete buttons
not_owner = True
not_user = True
if 'username' in login_session:
not_user = False
log = Log(item=catItem, user=getUserInfo(login_session['user_id']))
session.add(log)
session.commit()
if itemOwner.id == login_session['user_id']:
not_owner = False
return render_template("catItem_user.html", catItem=catItem,
not_user=not_user, login_session=login_session,
not_owner=not_owner)
# http://localhost:5000/catalog/Basketballs/edit
@app.route('/catalog/<string:item_title>/edit', methods=['GET', 'POST'])
def editItem(item_title):
'''
GET : response with form for adding editing item
POST: add item to database using values from form
if value is empty use last one
'''
if 'username' not in login_session:
return redirect('/login')
catItem = session.query(CatItem).filter_by(title=item_title).one()
if login_session['user_id'] != catItem.user_id:
return '''<script>function myFunction() {
alert('You are not authorized to edit this item.');
}</script><body onload='myFunction()'>'''
if request.method == 'POST':
if request.form['title']:
catItem.title = request.form['title']
if request.form['description']:
catItem.description = request.form['description']
if request.form['catagory_id']:
catItem.cat_id = request.form['catagory_id']
session.add(catItem)
session.commit()
flash('item Successfully Edited %s' % catItem.title)
logging.info('%s item Edited ' % catItem.title)
catagory = session.query(Category).filter_by(id=catItem.cat_id).one()
return redirect(url_for('showCatItems', category_name=catagory.name))
# handling get request for edit page
else:
selected_catagory = session.query(Category).filter_by(
id=catItem.cat_id).one()
categories = session.query(Category).all()
return render_template('edit_item.html', catItem=catItem,
categories=categories,
selected_id=selected_catagory.id,
login_session=login_session)
# http://localhost:5000/catalog/Basketballs/edit
@app.route('/catalog/<string:category_name>/add', methods=['GET', 'POST'])
def addItem(category_name):
'''
GET : response with form for adding new item
POST: add item to database using values from form
values cannot be empty
'''
if 'username' not in login_session:
return redirect('/login')
catItem = CatItem()
if request.method == 'POST':
# checking values from the form
if request.form['title']:
catItem.title = request.form['title']
else:
flash('item title cannot be empty ')
return redirect(url_for('addItem', category_name=category_name))
# description can be empty
if request.form['description']:
catItem.description = request.form['description']
if request.form['catagory_id']:
catItem.cat_id = request.form['catagory_id']
else:
flash('please choose catagory')
return redirect(url_for('addItem', category_name=category_name))
catItem.user_id = login_session['user_id']
session.add(catItem)
logging.info('%s item added ' % catItem.id)
# add log for new items
log = Log(item=catItem, user=getUserInfo(login_session['user_id']))
session.add(log)
session.commit()
flash('item Successfully added %s' % catItem.title)
catagory = session.query(Category).filter_by(id=catItem.cat_id).one()
return redirect(url_for('showCatItems', category_name=catagory.name,
login_session=login_session))
# handling get request for edit page
else:
# selecting current catagory by default
selected_catagory = session.query(Category).filter_by(
name=category_name).one()
categories = session.query(Category).all()
return render_template('addItem.html', categories=categories,
selected_id=selected_catagory.id,
login_session=login_session)
# http://localhost:5000/catalog/Basketballs/delete
@app.route('/catalog/<string:item_title>/delete', methods=['GET', 'POST'])
def deleteItem(item_title):
'''
GET : response with form to confirm item deleting
POST: remove item from database if user is item creator
'''
if 'username' not in login_session:
return redirect('/login')
catItem = session.query(CatItem).filter_by(title=item_title).one()
if login_session['user_id'] != catItem.user_id:
return '''<script>function myFunction() {
alert('You are not authorized to delete this items.');
}</script><body onload='myFunction()'>'''
catagory = session.query(Category).filter_by(id=catItem.cat_id).one()
if request.method == 'POST':
session.delete(catItem)
session.commit()
flash('item Successfully deleted %s' % catItem.title)
logging.info('item Successfully deleted %s' % catItem.title)
return redirect(url_for('showCatItems', category_name=catagory.name))
else:
return render_template('delete_item.html',
catagory=catagory, catItem=catItem,
login_session=login_session)
pass
if __name__ == '__main__':
app.secret_key = 'super_secret_key'
app.debug = True
app.run(host='0.0.0.0', port=5000)