-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
82 lines (61 loc) · 2.21 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
from flask import Flask, request,jsonify
from flask_mysqldb import MySQL
from werkzeug.security import generate_password_hash ,check_password_hash
import yaml
#init app
app=Flask(__name__)
#Configure db
db=yaml.load(open('db.yaml'))
app.config['MYSQL_HOST']=db['mysql_host']
app.config['MYSQL_USER']=db['mysql_user']
app.config['MYSQL_PASSWORD']=db['mysql_password']
app.config['MYSQL_DB']=db['mysql_database']
#initializing mysql
mysql=MySQL(app)
@app.route('/register',methods=['POST'])
def register():
_json=request.json #get the data from json request
# _json=request.form #get the data from form
_name=_json['name']
_email=_json['email']
_password=_json['password']
print(request.json)
if _name and _email and _password and request.method=='POST':
#generate the hash of password
_password_hash=generate_password_hash(_password)
cursor=mysql.connection.cursor()
cursor.execute('insert into users(name,email,password) values(%s,%s,%s)',(_name,_email,_password_hash))
mysql.connection.commit()
cursor.close()
return 'success'
@app.route('/login',methods=['POST'])
def login():
print('login user')
_json=request.json
_email=_json['email']
_password=_json['password']
if _email and _password and request.method=='POST':
cursor=mysql.connection.cursor()
resultValue=cursor.execute('select * from users')
if resultValue>0:
#to fetch all the values
userDetails=cursor.fetchall()
for user in userDetails:
print(user)
if _email==user[2] and check_password_hash(user[3],_password):
return 'login successfull'
return 'login failed'
@app.route('/getUsers',methods=['GET'])
def get_users():
print('users detail')
if request.method=='GET':
cursor=mysql.connection.cursor()
resultValue=cursor.execute('select * from users')
if resultValue>0:
#to fetch all the values
userDetails=cursor.fetchall()
print(userDetails)
return jsonify(userDetails)
#start server
if __name__=='__main__':
app.run(debug=True)