-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathread.php
322 lines (274 loc) · 11.4 KB
/
read.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
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
<?php
// ini_set('display_errors', 1);
error_reporting(0);
require "db.php";
$received_data = json_decode(file_get_contents('php://input'), true);
$button_value = $received_data['button'];
// $button_value = 'get_exercises';
//POST Method
/*Login API*/
if ($button_value == 'login') {
$username = $received_data['username'];
$password = $received_data['password'];
$query = mysqli_query($con, "SELECT * FROM login_details where username = $username and password = '$password'");
if ($query) {
$num_query = mysqli_num_rows($query);
$fetch = mysqli_fetch_array($query);
if ($num_query > 0) {
if ($fetch[2] == 'false') {
$update = mysqli_query($con, "UPDATE login_details SET status = 'true' where username = $username");
if ($update) {
$query = mysqli_query($con, "SELECT * FROM login_details where username = $username and password = '$password'");
$db_data = array("status" => "true", "message" => "Login Success");
while ($row = mysqli_fetch_assoc($query)) {
$data[] = $row;
}
$db_data['data'] = $data;
echo json_encode($db_data);
} else {
$response = array("status" => "false", "data" => array(), "message" => "Error in Update Query");
echo json_encode($response);
}
} else {
$response = array("status" => "true", "data" => array(), "message" => "Already logged in");
echo json_encode($response);
}
} else {
$response = array("status" => "false", "data" => array(), "message" => "Error in Login Status Query");
echo json_encode($response);
}
} else {
$response = array("status" => "true", "data" => array(), "message" => "Invalid Credentials");
echo json_encode($response);
}
}
/*API for Code and Images*/
if ($button_value == 'get_code_images') {
$code = $received_data['code'];
$query = mysqli_query($con, "SELECT code,code_url FROM titles_details WHERE code_url IS NOT NULL AND code = '$code' ");
if ($query) {
$num_rows = mysqli_num_rows($query);
if ($num_rows > 0) {
$db_data = array("status" => "true", "message" => "Query Success");
while ($row = mysqli_fetch_assoc($query)) {
$data[] = $row;
}
$db_data['data'] = $data;
echo json_encode($db_data);
} else {
$response = array("status" => "false", "data" => array(), "message" => "No Records found");
echo json_encode($response);
}
} else {
$response = array("status" => "false", "data" => array(), "message" => "Error in Query");
echo json_encode($response);
}
}
/*API for Chapters and Exercise*/
if ($button_value == 'get_chap_exe') {
$module = $received_data['module'];
$class = $received_data['class'];
$subject = $received_data['subject'];
// $module = "achievers";
// $class = "6th";
// $subject = "maths";
$query = mysqli_query($con, "SELECT DISTINCT(chapter) as chapter FROM data_details where module = '$module' and class = '$class' and subject = '$subject'");
if ($query) {
$num_chapter = mysqli_num_rows($query);
if ($num_chapter > 0) {
$db_data = array("status" => "true", "message" => "Query Success");
$i = 0;
while ($row = mysqli_fetch_assoc($query)) {
$data[] = $row;
$chapter = $data[$i]['chapter'];
$chapter_query = mysqli_query($con, "SELECT exercise FROM data_details WHERE chapter = '$chapter' and class = '$class'");
$num_exercise = mysqli_num_rows($chapter_query);
while ($fetch_chapter = mysqli_fetch_assoc($chapter_query)) {
foreach ($fetch_chapter as $value) {
$exercise[] = $value;
}
}
$data[$i]['exercise'] = $exercise;
//echo json_encode($exercise). "<br>";
unset($exercise);
$i++;
}
$db_data['data'] = $data;
echo json_encode($db_data);
} else {
$response = array("status" => "false", "data" => array(), "message" => "No Records found");
echo json_encode($response);
}
} else {
$response = array("status" => "false", "data" => array(), "message" => "Error in Query");
echo json_encode($response);
}
}
/*API for Video URL*/
if ($button_value == 'get_video_url') {
$module = $received_data['module'];
$class = $received_data['class'];
$subject = $received_data['subject'];
$chapter = $received_data['chapter'];
$exercise = $received_data['exercise'];
// $module = "achievers";
// $class = "6th";
// $subject = "maths";
// $chapter = "chapter_1";
// $exercise = "exercise_1_3";
$query = mysqli_query($con, "SELECT url_video FROM data_details where module = '$module' and class = '$class' and subject = '$subject' and chapter = '$chapter' and exercise = '$exercise'");
if ($query) {
$num_rows = mysqli_num_rows($query);
if ($num_rows > 0) {
$db_data = array("status" => "true", "message" => "Query Success");
while ($row = mysqli_fetch_assoc($query)) {
$data[] = $row;
}
$db_data['data'] = $data;
echo json_encode($db_data);
} else {
$response = array("status" => "false", "data" => array(), "message" => "No Records found");
echo json_encode($response);
}
} else {
$response = array("status" => "false", "data" => array(), "message" => "Error in Query");
echo json_encode($response);
}
}
/*API for PDF URL*/
if ($button_value == 'get_pdf_url') {
$module = $received_data['module'];
$class = $received_data['class'];
$subject = $received_data['subject'];
$chapter = $received_data['chapter'];
$exercise = $received_data['exercise'];
// $module = "achievers";
// $class = "6th";
// $subject = "maths";
// $chapter = "chapter_1";
// $exercise = "exercise_1_3";
$query = mysqli_query($con, "SELECT url_pdf FROM data_details where module = '$module' and class = '$class' and subject = '$subject' and chapter = '$chapter' and exercise = '$exercise'");
if ($query) {
$num_rows = mysqli_num_rows($query);
if ($num_rows > 0) {
$db_data = array("status" => "true", "message" => "Query Success");
while ($row = mysqli_fetch_assoc($query)) {
$data[] = $row;
}
$db_data['data'] = $data;
echo json_encode($db_data);
} else {
$response = array("status" => "false", "data" => array(), "message" => "No Records found");
echo json_encode($response);
}
} else {
$response = array("status" => "false", "data" => array(), "message" => "Error in Query");
echo json_encode($response);
}
}
// GET Method
/*API for Modules and Icons*/
if ($button_value == 'get_modules') {
$query = mysqli_query($con, "SELECT module,module_url FROM titles_details where module != 'null' and module_url != 'null'");
if ($query) {
$num_rows = mysqli_num_rows($query);
if ($num_rows > 0) {
$db_data = array("status" => "true", "message" => "Query Success");
while ($row = mysqli_fetch_assoc($query)) {
$data[] = $row;
}
$db_data['data'] = $data;
echo json_encode($db_data);
} else {
$response = array("status" => "false", "data" => array(), "message" => "No Records found");
echo json_encode($response);
}
} else {
$response = array("status" => "false", "data" => array(), "message" => "Error in Query");
echo json_encode($response);
}
}
/*API for Classes and Icons*/
if ($button_value == 'get_classes') {
$query = mysqli_query($con, "SELECT class,class_url FROM titles_details where class != 'null' and class_url != 'null'");
if ($query) {
$num_rows = mysqli_num_rows($query);
if ($num_rows > 0) {
$db_data = array("status" => "true", "message" => "Query Success");
while ($row = mysqli_fetch_assoc($query)) {
$data[] = $row;
}
$db_data['data'] = $data;
echo json_encode($db_data);
} else {
$response = array("status" => "false", "data" => array(), "message" => "No Records found");
echo json_encode($response);
}
} else {
$response = array("status" => "false", "data" => array(), "message" => "Error in Query");
echo json_encode($response);
}
}
/*API For Subjects and Icons*/
if ($button_value == 'get_subjects') {
$query = mysqli_query($con, "SELECT subject,subject_url FROM titles_details where subject != 'null' and subject_url != 'null'");
if ($query) {
$num_rows = mysqli_num_rows($query);
if ($num_rows > 0) {
$db_data = array("status" => "true", "message" => "Query Success");
while ($row = mysqli_fetch_assoc($query)) {
$data[] = $row;
}
$db_data['data'] = $data;
echo json_encode($db_data);
} else {
$response = array("status" => "false", "data" => array(), "message" => "No Records found");
echo json_encode($response);
}
} else {
$response = array("status" => "false", "data" => array(), "message" => "Error in Query");
echo json_encode($response);
}
}
/*API For Chapters and Icons*/
if ($button_value == 'get_chapters') {
$query = mysqli_query($con, "SELECT chapter,chapter_url FROM titles_details where chapter != 'null' and chapter_url != 'null'");
if ($query) {
$num_rows = mysqli_num_rows($query);
if ($num_rows > 0) {
$db_data = array("status" => "true", "message" => "Query Success");
while ($row = mysqli_fetch_assoc($query)) {
$data[] = $row;
}
$db_data['data'] = $data;
echo json_encode($db_data);
} else {
$response = array("status" => "false", "data" => array(), "message" => "No Records found");
echo json_encode($response);
}
} else {
$response = array("status" => "false", "data" => array(), "message" => "Error in Query");
echo json_encode($response);
}
}
/*API For Exercises and Icons*/
if ($button_value == 'get_exercises') {
$query = mysqli_query($con, "SELECT exercise,exercise_url FROM titles_details where exercise != 'null' and exercise_url != 'null'");
if ($query) {
$num_rows = mysqli_num_rows($query);
if ($num_rows > 0) {
$db_data = array("status" => "true", "message" => "Query Success");
while ($row = mysqli_fetch_assoc($query)) {
$data[] = $row;
}
$db_data['data'] = $data;
echo json_encode($db_data);
} else {
$response = array("status" => "false", "data" => array(), "message" => "No Records found");
echo json_encode($response);
}
} else {
$response = array("status" => "false", "data" => array(), "message" => "Error in Query");
echo json_encode($response);
}
}