-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
505 lines (422 loc) · 16.7 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
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
from flask import Flask, render_template, json, request, redirect, session, flash ,url_for
from flaskext.mysql import MySQL
from werkzeug import generate_password_hash, check_password_hash
import os
from datetime import datetime
mysql = MySQL()
app = Flask(__name__)
app.secret_key = os.urandom(24)
# MySQL configurations
app.config['MYSQL_DATABASE_USER'] = 'user'
app.config['MYSQL_DATABASE_PASSWORD'] = 'password'
app.config['MYSQL_DATABASE_DB'] = 'database'
app.config['MYSQL_DATABASE_HOST'] = 'localhost'
mysql.init_app(app)
@app.route('/', methods = ['GET', 'POST'])
def index():
conn = mysql.connect()
cursor = conn.cursor()
cursor.execute("SELECT * FROM tbl_blog;")
posts = cursor.fetchall()
cursor.close()
conn.close()
return render_template('index.html', posts = posts)
@app.route('/post/<pid>')
def post(pid):
# print(pid)
post_id = str(pid)
conn = mysql.connect()
cursor = conn.cursor()
cursor.execute("SELECT * FROM tbl_blog where blog_id = " + post_id + ";")
post = cursor.fetchall()
# cursor.execute("SELECT blog_user.user_name FROM blog_user,tbl_blog WHERE tbl_blog.blog_id = " + post_id + "AND blog_user_id = user_id" + ";")
cursor.execute("SELECT blog_user.user_fname,blog_user.user_lname FROM blog_user,tbl_blog WHERE blog_user_id = user_id AND tbl_blog.blog_id = " + post_id + ";")
name = cursor.fetchall()
cursor.execute("SELECT blog_user.user_fname,comment FROM blog_user,comments WHERE comments.user_id = blog_user.user_id AND comments.blog_id = " + post_id + ";")
comments = cursor.fetchall()
cursor.execute("SELECT COUNT(l_id) FROM likes WHERE likes.blog_id = " + post_id + ";")
likes = cursor.fetchall()
# cursor.execute("SELECT tag FROM tags WHERE blog_id = " + post_id + ";")
# tags = cursor.fetchall()
# cursor.execute("SELECT * FROM comments where cid = 5;")
# cursor.execute("SELECT blog_user.user_name FROM blog_user,comments WHERE comments.user_id = blog_user.user_id AND comments.blog_id = " + post_id + ";")
# commented_by = cursor.fetchall()
# print(comments)
return render_template('post.html', post=post, name=name, likes=likes, comments=comments)
@app.route('/Userpost/<pid>')
def Userpost(pid):
# post_title = str(ptitle)
post_id = str(pid)
conn = mysql.connect()
cursor = conn.cursor()
cursor.execute("SELECT * FROM tbl_blog where blog_id = " + post_id + ";")
post = cursor.fetchall()
cursor.execute("SELECT blog_user.user_fname,comment FROM blog_user,comments WHERE comments.user_id = blog_user.user_id AND comments.blog_id = " + post_id + ";")
comments = cursor.fetchall()
return render_template('UsersPost.html', post=post, comments=comments)
@app.route('/showSignUp')
@app.route('/showSignUp')
def showSignUp():
return render_template('signup.html')
@app.route('/signUp',methods=['POST','GET'])
def signUp():
_fname = request.form['inputFName']
_lname = request.form['inputLName']
_email = request.form['inputEmail']
_password = request.form['inputPassword']
if _fname and _lname and _email and _password:
# All Good, let's call MySQL
conn = mysql.connect()
cursor = conn.cursor()
#_hashed_password = generate_password_hash(_password)
cursor.callproc('sp_createUser',(_fname,_lname,_email,_password))
data = cursor.fetchall()
conn.commit()
cursor.close()
conn.close()
# flash ('Sucessfull signup')
return render_template('SucessfulSignUp.html')
@app.route('/showSignin')
def showSignin():
return render_template('signin.html')
@app.route('/validateLogin',methods=['POST'])
def validateLogin():
try:
_username = request.form['inputEmail']
_password = request.form['inputPassword']
# connect to mysql
con = mysql.connect()
cursor = con.cursor()
cursor.callproc('sp_validateLogin',(_username,))
data = cursor.fetchall()
if len(data) > 0:
#if check_password_hash(str(data[0][3]),_password):
if _password == str(data[0][4]) :
session['user'] = data[0][0]
# return redirect('/userHome')
return redirect('/showDashboard')
return render_template('error.html',error = 'Wrong Email address or Password.')
else:
return render_template('error.html',error = 'Wrong Email address or Password.')
except Exception as e:
return render_template('error.html',error = str(e))
finally:
cursor.close()
con.close()
@app.route('/userHome', methods=['POST','GET'])
def userHome():
if session.get('user'):
return render_template('userHome.html')
else:
return render_template('error.html',error = 'Unauthorized Access')
# if session.get('user'):
# try:
# if session.get('user'):
# _user = session.get('user')
#
# con = mysql.connect()
# cursor = con.cursor()
# #cursor.callproc('sp_GetBlogByUser',(_user,))
# cursor.execute("select * from tbl_blog;")
# blogs = cursor.fetchall()
#
#
# blogs_dict = []
# # for blog in blogs:
# # blogs_dict.append(list(blog))
# # print(blogs_dict)
#
# for blog in blogs:
# blog_dict = {
# 'Id': blog[0],
# 'Title': blog[1],
# 'Description': blog[2],
# 'Date': blog[4]}
# blogs_dict.append(blog_dict)
#
# return json.dumps(blogs_dict)
# else:
# return render_template('error.html', error = 'Unauthorized Access')
# except Exception as e:
# return render_template('error.html', error = str(e))
# return render_template('userHome.html',blogs_dict=blogs_dict)
#
# return render_template('userHome.html')
# else:
# return render_template('error.html',error = 'Unauthorized Access')
# # def getBlog():
# try:
# if session.get('user'):
# _user = session.get('user')
#
# con = mysql.connect()
# cursor = con.cursor()
# #cursor.callproc('sp_GetBlogByUser',(_user,))
# cursor.execute("select * from tbl_blog;")
# blogs = cursor.fetchall()
#
#
# blogs_dict = []
# for blog in blogs:
# blogs_dict.append(list(blog))
# print(blogs_dict)
#
#
# # blog_dict = {
# # 'Id': blog[0],
# # 'Title': blog[1],
# # 'Description': blog[2],
# # 'Date': blog[4]}
# # blogs_dict.append(blog_dict)
#
# #return json.dumps(blogs_dict)
# else:
# return render_template('error.html', error = 'Unauthorized Access')
# except Exception as e:
# return render_template('error.html', error = str(e))
#
# return render_template('userHome.html',blogs_dict=blogs_dict)
@app.route('/logout')
def logout():
session.pop('user', None)
return redirect('/')
@app.route('/showAddBlog')
def showAddBlog():
return render_template('addBlog.html')
@app.route('/addBlog',methods=['POST'])
def addBlog():
_title=0
_description=0
_user=0
_tags=" "
_datetime=" "
if session.get('user'):
_title = request.form['inputTitle']
_tags = request.form['inputTags']
_description = request.form['inputDescription']
_user = session.get('user')
_datetime = datetime.now()
conn = mysql.connect()
cursor = conn.cursor()
#cursor.execute("INSERT INTO tbl_blog VALUES('_title','_description','_user','_datetime')")
cursor.callproc('sp_addBlog',(_title,_description,_user))
tags=_tags.split(",")
cursor.execute("select blog_id from tbl_blog where blog_description = '" + str(_description) + "';")
_blog_id = cursor.fetchone()[0]
for tag in tags:
cursor.execute("INSERT INTO tags VALUES(0,'%s','%s')" %(tag,_blog_id))
print(tag)
data = cursor.fetchall()
if len(data) is 0:
conn.commit()
return redirect('/userHome')
else:
return render_template('error.html',error = 'An error occurred!')
@app.route('/getBlog')
def getBlog():
try:
if session.get('user'):
_user = session.get('user')
con = mysql.connect()
cursor = con.cursor()
cursor.execute("select * from tbl_blog where blog_user_id = " + str(_user) + ";")
blogs = cursor.fetchall()
blogs_dict = []
for blog in blogs:
blog_dict = {
'Id': blog[0],
'Title': blog[1],
'Description': blog[2],
'Date': blog[4]}
blogs_dict.append(blog_dict)
return json.dumps(blogs_dict)
else:
return render_template('error.html', error = 'Unauthorized Access')
except Exception as e:
return render_template('error.html', error = str(e))
return render_template('userHome.html', posts=blogs_dict)
@app.route('/getBlogById',methods=['POST'])
def getBlogById():
try:
if session.get('user'):
_id = request.form['id']
_user = session.get('user')
conn = mysql.connect()
cursor = conn.cursor()
cursor.callproc('sp_GetBlogById',(_id,_user))
result = cursor.fetchall()
blog = []
blog.append({'Id':result[0][0],'Title':result[0][1],'Description':result[0][2]})
return json.dumps(blog)
else:
return render_template('error.html', error = 'Unauthorized Access')
except Exception as e:
return render_template('error.html',error = str(e))
@app.route('/updateBlog', methods=['POST'])
def updateBlog():
try:
if session.get('user'):
_user = session.get('user')
_title = request.form['title']
_description = request.form['description']
_blog_id = request.form['id']
conn = mysql.connect()
cursor = conn.cursor()
cursor.callproc('sp_updateBlog',(_title,_description,_blog_id,_user))
data = cursor.fetchall()
if len(data) is 0:
conn.commit()
return json.dumps({'status':'OK'})
else:
return json.dumps({'status':'ERROR'})
except Exception as e:
return json.dumps({'status':'Unauthorized access'})
finally:
cursor.close()
conn.close()
@app.route('/deleteBlog',methods=['POST'])
def deleteBlog():
try:
if session.get('user'):
_id = request.form['id']
_user = session.get('user')
conn = mysql.connect()
cursor = conn.cursor()
cursor.callproc('sp_deleteBlog',(_id,_user))
result = cursor.fetchall()
if len(result) is 0:
conn.commit()
return json.dumps({'status':'OK'})
else:
return json.dumps({'status':'An Error occured'})
else:
return render_template('error.html',error = 'Unauthorized Access')
except Exception as e:
return json.dumps({'status':str(e)})
finally:
cursor.close()
conn.close()
@app.route('/showDashboard')
def showDashboard():
try:
if session.get('user'):
# _id = request.form['id']
_user = session.get('user')
print(_user)
conn = mysql.connect()
cursor = conn.cursor()
cursor.execute("SELECT * FROM tbl_blog;")
posts = cursor.fetchall()
print(posts)
return render_template('dashboard.html', posts=posts)
else:
return render_template('error.html',error = 'An error occured.')
except Exception as e:
return render_template('error.html',error = str(e))
finally:
cursor.close()
conn.close()
@app.route('/getAllBlogs')
def getAllBlogs():
try:
if session.get('user'):
conn = mysql.connect()
cursor = conn.cursor()
cursor.callproc('sp_GetAllBlogs')
result = cursor.fetchall()
blogs_dict = []
for blog in result:
blog_dict = {
'Id': blog[0],
'Title': blog[1],
'Description': blog[2],
}
blogs_dict.append(blog_dict)
return json.dumps(blogs_dict)
else:
return render_template('error.html', error = 'Unauthorized Access')
except Exception as e:
return render_template('error.html',error = str(e))
@app.route('/Comment/<pid>', methods=['GET','POST'])
# def getBlogId(pid):
# try:
# if session.get('user'):
#
# _id = pid
# _user = session.get('user')
#
# # conn = mysql.connect()
# # cursor = conn.cursor()
# # result = cursor.fetchall()
#
# # blog_id = result[0][0]
# return _id
#
# else:
# return render_template('error.html', error = 'Unauthorized Access')
# except Exception as e:
# return render_template('error.html',error = str(e))
def Comment(pid):
try:
if session.get('user'):
user_id = session.get('user')
post_id = pid
pid=str(post_id)
comment = request.form['inputComment']
conn = mysql.connect()
cursor = conn.cursor()
cursor.execute("INSERT INTO comments VALUES(0,'%s','%s','%s')" %(pid,user_id,comment))
result=cursor.fetchall()
# print(result)
if len(result) is 0:
cursor.execute("SELECT * FROM tbl_blog where blog_id = " + post_id + ";")
post = cursor.fetchall()
conn.commit()
cursor.execute("SELECT blog_user.user_fname FROM blog_user,tbl_blog WHERE blog_user_id = user_id AND tbl_blog.blog_id = " + post_id + ";")
name = cursor.fetchall()
cursor.execute("SELECT blog_user.user_fname,comment FROM blog_user,comments WHERE comments.user_id = blog_user.user_id AND comments.blog_id = " + post_id + ";")
comments = cursor.fetchall()
cursor.execute("SELECT COUNT(l_id) FROM likes WHERE likes.blog_id = " + post_id + ";")
likes = cursor.fetchall()
# return render_template('UsersPost.html' ,post=post)
# cursor.execute("SELECT tag FROM tags WHERE blog_id = " + post_id + ";")
# tags = cursor.fetchall()
# print(tags)
return render_template('post.html',post = post, name=name, likes=likes, comments=comments)
else:
return render_template('error.html',error = 'U have not logged in, Please log in !')
# return render_template('UsersPost.html', result=result)
except Exception as e:
return render_template('error.html',error = str(e))
@app.route('/Like/<pid>', methods=['GET','POST'])
def Like(pid):
try:
if session.get('user'):
user_id = session.get('user')
post_id = pid
pid=str(post_id)
# comment = request.form['inputComment']
conn = mysql.connect()
cursor = conn.cursor()
cursor.execute("INSERT INTO likes VALUES(0,'%s','%s')" %(pid,user_id))
result=cursor.fetchall()
# print(result)
if len(result) is 0:
cursor.execute("SELECT * FROM tbl_blog where blog_id = " + post_id + ";")
post = cursor.fetchall()
conn.commit()
cursor.execute("SELECT blog_user.user_fname FROM blog_user,tbl_blog WHERE blog_user_id = user_id AND tbl_blog.blog_id = " + post_id + ";")
name = cursor.fetchall()
cursor.execute("SELECT blog_user.user_fname,comment FROM blog_user,comments WHERE comments.user_id = blog_user.user_id AND comments.blog_id = " + post_id + ";")
comments = cursor.fetchall()
cursor.execute("SELECT COUNT(l_id) FROM likes WHERE likes.blog_id = " + post_id + ";")
likes = cursor.fetchall()
# return redirect('UsersPost.html' ,post=post)
return render_template('post.html',post = post, name=name, likes=likes, comments=comments)
else:
return render_template('error.html',error = 'U have not logged in, Please log in !')
# return render_template('UsersPost.html', result=result)
except Exception as e:
return render_template('error.html',error = str(e))
if __name__ == "__main__":
app.run(debug=True,port=5000)