-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_db.php
196 lines (161 loc) · 5.66 KB
/
user_db.php
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
<?php
require_once ('db.php');
function add_user ($role, $phoneNumber, $name, $status, $area, $gender, $birthday, $email, $avatar, $password)
{
$sql = 'insert into user (phoneNumber, name, status, area, gender, birthday, email, avatar, password) values (?, ?, ?, ?, ?, ?, ?, ?, ?)';
$conn = get_connection();
$stm = $conn->prepare($sql);
$stm->bind_param('ssisissss', $phoneNumber, $name, $status, $area, $gender, $birthday, $email, $avatar, $password);
$stm->execute();
if ($stm->affected_rows == 1) {
$emptyField = "Other";
if ($role==='student') {
$sql = "insert into student (id, fields) values (?, ?)";
$conn = get_connection();
$stm = $conn->prepare($sql);
$stm->bind_param('ss', $phoneNumber, $emptyField);
$stm->execute();
if ($stm->affected_rows == 1) {
return 0;
}
return 1;
}
if ($role==='tutor') {
$sql = "insert into tutor (id, fields) values (?, ?)";
$conn = get_connection();
$stm = $conn->prepare($sql);
$stm->bind_param('ss', $phoneNumber, $emptyField);
$stm->execute();
if ($stm->affected_rows == 1) {
return 0;
}
return 2;
}
}
return 3;
}
function update_user_info ($phoneNumber, $name, $area, $gender, $birthday, $email, $avatar)
{
$sql = 'update user set name = ?, area = ?, gender = ?, birthday = ?, email = ?, avatar = ? where phoneNumber = ?';
$conn = get_connection();
$stm = $conn->prepare($sql);
$stm->bind_param('ssissss', $name, $area, $gender, $birthday, $email, $avatar, $phoneNumber);
$stm->execute();
if ($stm->affected_rows == 1) {
return 1;
}
if ($stm->affected_rows == 0) {
return 2;
}
return 0;
}
function change_password ($phoneNumber, $password)
{
$sql = 'update user set password = ? where phoneNumber = ?';
$conn = get_connection();
$stm = $conn->prepare($sql);
$stm->bind_param('ss', $password, $phoneNumber);
$stm->execute();
if ($stm->affected_rows == 1) {
return 0;
}
if ($stm->affected_rows == 0) {
return 1;
}
return 2;
}
function lock_account ($phoneNumber)
{
$sql = 'update user set status = -1 where phoneNumber = ?';
$conn = get_connection();
$stm = $conn->prepare($sql);
$stm->bind_param('s', $phoneNumber);
$stm->execute();
if ($stm->affected_rows == 1) {
return 1;
}
if ($stm->affected_rows == 0) {
return 2;
}
return 0;
}
function verified_account ($phoneNumber)
{
$sql = 'update user set status = 1 where phoneNumber = ?';
$conn = get_connection();
$stm = $conn->prepare($sql);
$stm->bind_param('s', $phoneNumber);
$stm->execute();
if ($stm->affected_rows == 1) {
return 1;
}
if ($stm->affected_rows == 0) {
return 2;
}
return 0;
}
function login ($id, $password)
{
$sql = 'select * from user where phoneNumber = ? and password = ?';
$conn = get_connection();
$stm = $conn->prepare($sql);
$stm->bind_param('ss', $id, $password);
if ( !$stm->execute() ) {
return array('code'=>1, 'message'=>'Execute command failed');
}
$result = $stm->get_result();
if ( $result->num_rows==0 ) {
return array('code'=>2, 'message'=>'Account does not exists or password is incorrect');
}
$data = $result->fetch_assoc();
if ($data != null) {
return array('code'=>0, 'message'=>'Password is correct', 'data'=>$data);
}
}
function login_student ($id, $password)
{
$sql = 'select * from student where id = ?';
$conn = get_connection();
$stm = $conn->prepare($sql);
$stm->bind_param('s', $id);
if ( !$stm->execute() ) {
return array('code'=>1, 'message'=>'Execute command failed');
}
$result = $stm->get_result();
if ( $result->num_rows==0 ) {
return array('code'=>2, 'message'=>'Student account does not exists');
}
return login ($id, $password);
}
function login_tutor ($id, $password)
{
$sql = 'select * from tutor where id = ?';
$conn = get_connection();
$stm = $conn->prepare($sql);
$stm->bind_param('s', $id);
if ( !$stm->execute() ) {
return array('code'=>1, 'message'=>'Execute command failed');
}
$result = $stm->get_result();
if ( $result->num_rows==0 ) {
return array('code'=>2, 'message'=>'Tutor account does not exists');
}
return login ($id, $password);
}
function get_user ($id)
{
$sql = 'select * from user where phoneNumber = ?';
$conn = get_connection();
$stm = $conn->prepare($sql);
$stm->bind_param('s', $id);
$stm->execute();
if ($stm->execute() == 1) {
$result = $stm->get_result();
$data = $result->fetch_assoc();
if ($data != null) {
return $data;
}
}
return 0;
}
?>