-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmain.py
530 lines (435 loc) · 17.5 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
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
#!/usr/bin/python
from flask import Flask, render_template, request, redirect, url_for, \
flash, jsonify
from flask import session as login_session
from flask import make_response
# importing SqlAlchemy
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
from database_setup import Base, BookDB, User
import random
import string
import httplib2
import json
import requests
# importing oauth
from oauth2client.client import flow_from_clientsecrets
from oauth2client.client import FlowExchangeError
from oauth2client.client import AccessTokenCredentials
# app configuration
app = Flask(__name__)
app.secret_key = 'itsasecret'
# google client secret
secret_file = json.loads(open('client_secret.json', 'r').read())
CLIENT_ID = secret_file['web']['client_id']
APPLICATION_NAME = 'Item-Catalog'
# Bind the engine to the metadata of the Base class so that the
# declaratives can be accessed through a DBSession instance
engine = create_engine('sqlite:///BookCatalog.db')
Base.metadata.bind = engine
DBSession = sessionmaker(bind=engine)
session = DBSession()
# validating current loggedin user
def check_user():
email = login_session['email']
return session.query(User).filter_by(email=email).one_or_none()
# retreive admin user details
def check_admin():
return session.query(User).filter_by(
email='[email protected]').one_or_none()
# Add new user into database
def createUser():
name = login_session['name']
email = login_session['email']
url = login_session['img']
provider = login_session['provider']
newUser = User(name=name, email=email, image=url, provider=provider)
session.add(newUser)
session.commit()
def new_state():
state = ''.join(random.choice(string.ascii_uppercase +
string.digits) for x in xrange(32))
login_session['state'] = state
return state
def queryAllBooks():
return session.query(BookDB).all()
# App Routes
# main page
@app.route('/')
@app.route('/books/')
def showBooks():
books = queryAllBooks()
state = new_state()
return render_template('main.html', books=books, currentPage='main',
state=state, login_session=login_session)
# To add new book
@app.route('/book/new/', methods=['GET', 'POST'])
def newBook():
if request.method == 'POST':
# check if user is logged in or not
if 'provider' in login_session and \
login_session['provider'] != 'null':
bookName = request.form['bookName']
bookAuthor = request.form['authorName']
coverUrl = request.form['bookImage']
description = request.form['bookDescription']
description = description.replace('\n', '<br>')
bookCategory = request.form['category']
user_id = check_user().id
if bookName and bookAuthor and coverUrl and description \
and bookCategory:
newBook = BookDB(
bookName=bookName,
authorName=bookAuthor,
coverUrl=coverUrl,
description=description,
category=bookCategory,
user_id=user_id,
)
session.add(newBook)
session.commit()
return redirect(url_for('showBooks'))
else:
state = new_state()
return render_template(
'newItem.html',
currentPage='new',
title='Add New Book',
errorMsg='All Fields are Required!',
state=state,
login_session=login_session,
)
else:
state = new_state()
books = queryAllBooks()
return render_template(
'main.html',
books=books,
currentPage='main',
state=state,
login_session=login_session,
errorMsg='Please Login first to Add Book!',
)
elif 'provider' in login_session and login_session['provider'] \
!= 'null':
state = new_state()
return render_template('newItem.html', currentPage='new',
title='Add New Book', state=state,
login_session=login_session)
else:
state = new_state()
books = queryAllBooks()
return render_template(
'main.html',
books=books,
currentPage='main',
state=state,
login_session=login_session,
errorMsg='Please Login first to Add Book!',
)
# To show book of different category
@app.route('/books/category/<string:category>/')
def sortBooks(category):
books = session.query(BookDB).filter_by(category=category).all()
state = new_state()
return render_template(
'main.html',
books=books,
currentPage='main',
error='Sorry! No Book in Database With This Genre :(',
state=state,
login_session=login_session)
# To show book detail
@app.route('/books/category/<string:category>/<int:bookId>/')
def bookDetail(category, bookId):
book = session.query(BookDB).filter_by(id=bookId,
category=category).first()
state = new_state()
if book:
return render_template('itemDetail.html', book=book,
currentPage='detail', state=state,
login_session=login_session)
else:
return render_template('main.html', currentPage='main',
error="""No Book Found with this Category
and Book Id :(""",
state=state,
login_session=login_session)
# To edit book detail
@app.route('/books/category/<string:category>/<int:bookId>/edit/',
methods=['GET', 'POST'])
def editBookDetails(category, bookId):
book = session.query(BookDB).filter_by(id=bookId,
category=category).first()
if request.method == 'POST':
# check if user is logged in or not
if 'provider' in login_session and login_session['provider'] \
!= 'null':
bookName = request.form['bookName']
bookAuthor = request.form['authorName']
coverUrl = request.form['bookImage']
description = request.form['bookDescription']
bookCategory = request.form['category']
user_id = check_user().id
admin_id = check_admin().id
# check if book owner is same as logged in user or admin or not
if book.user_id == user_id or user_id == admin_id:
if bookName and bookAuthor and coverUrl and description \
and bookCategory:
book.bookName = bookName
book.authorName = bookAuthor
book.coverUrl = coverUrl
description = description.replace('\n', '<br>')
book.description = description
book.category = bookCategory
session.add(book)
session.commit()
return redirect(url_for('bookDetail',
category=book.category,
bookId=book.id))
else:
state = new_state()
return render_template(
'editItem.html',
currentPage='edit',
title='Edit Book Details',
book=book,
state=state,
login_session=login_session,
errorMsg='All Fields are Required!',
)
else:
state = new_state()
return render_template(
'itemDetail.html',
book=book,
currentPage='detail',
state=state,
login_session=login_session,
errorMsg='Sorry! The Owner can only edit book Details!')
else:
state = new_state()
return render_template(
'itemDetail.html',
book=book,
currentPage='detail',
state=state,
login_session=login_session,
errorMsg='Please Login to Edit the Book Details!',
)
elif book:
state = new_state()
if 'provider' in login_session and login_session['provider'] \
!= 'null':
user_id = check_user().id
admin_id = check_admin().id
if user_id == book.user_id or user_id == admin_id:
book.description = book.description.replace('<br>', '\n')
return render_template(
'editItem.html',
currentPage='edit',
title='Edit Book Details',
book=book,
state=state,
login_session=login_session,
)
else:
return render_template(
'itemDetail.html',
book=book,
currentPage='detail',
state=state,
login_session=login_session,
errorMsg='Sorry! The Owner can only edit book Details!')
else:
return render_template(
'itemDetail.html',
book=book,
currentPage='detail',
state=state,
login_session=login_session,
errorMsg='Please Login to Edit the Book Details!',
)
else:
state = new_state()
return render_template('main.html', currentPage='main',
error="""Error Editing Book! No Book Found
with this Category and Book Id :(""",
state=state,
login_session=login_session)
# To delete books
@app.route('/books/category/<string:category>/<int:bookId>/delete/')
def deleteBook(category, bookId):
book = session.query(BookDB).filter_by(category=category,
id=bookId).first()
state = new_state()
if book:
# check if user is logged in or not
if 'provider' in login_session and login_session['provider'] \
!= 'null':
user_id = check_user().id
admin_id = check_admin().id
if user_id == book.user_id or user_id == admin_id:
session.delete(book)
session.commit()
return redirect(url_for('showBooks'))
else:
return render_template(
'itemDetail.html',
book=book,
currentPage='detail',
state=state,
login_session=login_session,
errorMsg='Sorry! Only the Owner Can delete the book'
)
else:
return render_template(
'itemDetail.html',
book=book,
currentPage='detail',
state=state,
login_session=login_session,
errorMsg='Please Login to Delete the Book!',
)
else:
return render_template('main.html', currentPage='main',
error="""Error Deleting Book! No Book Found
with this Category and Book Id :(""",
state=state,
login_session=login_session)
# JSON Endpoints
@app.route('/books.json/')
def booksJSON():
books = session.query(BookDB).all()
return jsonify(Books=[book.serialize for book in books])
@app.route('/books/category/<string:category>.json/')
def bookCategoryJSON(category):
books = session.query(BookDB).filter_by(category=category).all()
return jsonify(Books=[book.serialize for book in books])
@app.route('/books/category/<string:category>/<int:bookId>.json/')
def bookJSON(category, bookId):
book = session.query(BookDB).filter_by(category=category,
id=bookId).first()
return jsonify(Book=book.serialize)
# google signin function
@app.route('/gconnect', methods=['POST'])
def gConnect():
if request.args.get('state') != login_session['state']:
response.make_response(json.dumps('Invalid State paramenter'),
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('client_secret.json',
scope='')
oauth_flow.redirect_uri = 'postmessage'
credentials = oauth_flow.step2_exchange(code)
except FlowExchangeError:
response = make_response(json.dumps("""Failed to upgrade the
authorisation 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
header = httplib2.Http()
result = json.loads(header.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 does not
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)
response.headers['Content-Type'] = 'application/json'
return response
# Store the access token in the session for later use.
stored_credentials = login_session.get('credentials')
stored_gplus_id = login_session.get('gplus_id')
if stored_credentials 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
login_session['credentials'] = access_token
login_session['id'] = gplus_id
# Get user info
userinfo_url = 'https://www.googleapis.com/oauth2/v1/userinfo'
params = {'access_token': access_token, 'alt': 'json'}
answer = requests.get(userinfo_url, params=params)
data = answer.json()
# ADD PROVIDER TO LOGIN SESSION
login_session['name'] = data['name']
login_session['img'] = data['picture']
login_session['email'] = data['email']
login_session['provider'] = 'google'
if not check_user():
createUser()
return jsonify(name=login_session['name'],
email=login_session['email'],
img=login_session['img'])
# logout user
@app.route('/logout', methods=['post'])
def logout():
# Disconnect based on provider
if login_session.get('provider') == 'google':
return gdisconnect()
else:
response = make_response(json.dumps({'state': 'notConnected'}),
200)
response.headers['Content-Type'] = 'application/json'
return response
@app.route('/gdisconnect')
def gdisconnect():
access_token = login_session['credentials']
# Only disconnect a connected user.
if access_token is None:
response = make_response(json.dumps({'state': 'notConnected'}),
200)
response.headers['Content-Type'] = 'application/json'
return response
url = 'https://accounts.google.com/o/oauth2/revoke?token=%s' \
% access_token
header = httplib2.Http()
result = header.request(url, 'GET')[0]
if result['status'] == '200':
# Reset the user's session.
del login_session['credentials']
del login_session['id']
del login_session['name']
del login_session['email']
del login_session['img']
login_session['provider'] = 'null'
response = make_response(json.dumps({'state': 'loggedOut'}),
200)
response.headers['Content-Type'] = 'application/json'
return response
else:
# if given token is invalid, unable to revoke token
response = make_response(json.dumps({'state': 'errorRevoke'}),
200)
response.headers['Content-Type'] = 'application/json'
return response
if __name__ == '__main__':
app.debug = True
app.run(host='', port=5000)