-
Notifications
You must be signed in to change notification settings - Fork 0
/
User.php
534 lines (490 loc) · 15.8 KB
/
User.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
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
531
532
533
534
<?php
include_once("functions.php");
/**
* The User class is a generic class that contains all the properties and
* methods to make it possible for users to interact with the application
*
* @author Alhassan Kamil
*/
class User {
//Declaring member variables/properties
private $firstname, $middlename, $lastname, $programme, $department,$courses;
private $age, $username, $name, $country, $region, $town, $gender, $notes;
private $password, $email, $phone, $owner_id, $hostel, $user_type;
function __construct($user=null) {
if(is_null($user)){
$this->username = $user;
}
$conn = get_connection_handle();
$query = $conn->query("select * from users where username = '$user'");
if($query && $query->num_rows > 0){
$res = $query->fetch_object();
$this->firstname = $res->firstname;
$this->age = $res->age;
$this->lastname = $res->lastname;
$this->middlename = $res->middlename;
$this->name = $res->name;
$this->username = $res->username;
$this->gender = $res->gender;
$this->country = $res->nationality;
$this->town = $res->town;
$this->region = $res->region;
$this->email = $res->email;
$this->password = $res->password;
$this->phone = $res->phone;
$this->department = $res->department;
$this->programme = $res->programme;
$this->certificate = $res->certificate;
$this->owner_id = $res->id;
$this->user_type = $res->type;
$this->hostel = $res->hostel;
}
}
/**
* Gets the name of the current user. Includes the person's first name,
* lastname, and middle name(if any)
* @return string
*/
public function get_fullname(){
if($this->middlename){
$name = $this->firstname.' '.$this->middlename.' '.$this->lastname;
} else {
$name = $this->firstname. " ".$this->lastname;
}
return $name;
}
public function get_usertype(){
return $this->user_type;
}
public function set_usertype($type){
$this->user_type = $type;
}
public function get_middlename() {
return $this->middlename;
}
public function set_hostel($hostel){
$this->hostel = $hostel;
}
public function get_hostel(){
return $this->hostel;
}
public function get_country() {
return $this->country;
}
public function get_region() {
return $this->region;
}
public function set_username($username){
$this->username = $username;
}
public function get_town() {
return $this->town;
}
public function get_email() {
return $this->email;
}
public function set_middlename($middlename) {
$this->middlename = $middlename;
return $this;
}
public function set_country($country) {
$this->country = $country;
return $this;
}
public function set_region($region) {
$this->region = $region;
return $this;
}
public function set_town($town) {
$this->town = $town;
return $this;
}
public function set_email($email) {
$this->email = $email;
return $this;
}
public function login($user_id, $pass){
$conn = get_connection_handle();
$this->student_id = $user_id;
$this->password = $pass;
$stmt = $conn->prepare("SELECT * FROM users WHERE user_id = ? or username = ?");
$stmt->bind_param('ss', $user_id, $user_id);
$stmt->execute();
if($stmt->num_rows == 1){
$r = $result->fetch_assoc();
if(password_verify($password, $r['password'])){
if(!session_id())
session_start();
$_SESSION["user_id"] = $sdt_id;
$_SESSION['user_type'] = "normal";
$_SESSION["username"] = $r['username'];
$_SESSION['ip'] = $_SERVER['REMOTE_ADDR'];
$_SESSION['email'] = $r['email'];
$_SESSION['id'] = $r['id'];
return true;
}else{
return false;
}
}else{
return false;
}
}
public function admin_login($user_id, $pass){
$conn = get_connection_handle();
$this->student_id = $user_id;
$this->password = $pass;
$stmt = $conn->prepare("SELECT * FROM admins WHERE username = ?");
$stmt->bind_param('s', $user_id);
$stmt->execute();
if($stmt->num_rows == 1){
$r = $result->fetch_assoc();
if(password_verify($password, $r['password'])){
if(!session_id())
session_start();
$_SESSION["user_type"] = "admin";
$_SESSION["username"] = $r['username'];
$_SESSION['ip'] = $_SERVER['REMOTE_ADDR'];
$_SESSION['email'] = $r['email'];
$_SESSION['id'] = $r['id'];
return true;
}else{
return false;
}
} else{
return false;
}
}
/**
* Gets user's profile picture from their directory
*/
public function get_profile_image(){
$user = $this->get_username();
$user_folder = "users/$user/$user";
if(file_exists($user_folder.".jpg")){
$image = $user_folder.".jpg";
}elseif(file_exists($user_folder.".png")){
$image = $user_folder.".png";
}elseif(file_exists($user_folder.".gif")){
$image = $user_folder.".gif";
}else {
$image = "";
}
if($image !== ""){
return $image;
}
return false;
}
/**
* Gets the first name of the current user
* @return str
*/
public function get_firstname(){
return $this->firstname;
}
/**
* Gets all notes of this user
* @return object
*/
function get_notes(){
$conn = get_connection_handle();
$owner = $this->username;
$query = "select * from notes where owner = '$owner'";
$stmt = $conn->query($query);
if($stmt && $stmt->num_rows > 0){
return $stmt;
}
return false;
}
function get_note_count(){
$conn = get_connection_handle();
$user = $this->username;
$query = "select count(id) as total from notes where owner = '$user'";
$stmt = $conn->query($query);
if($stmt && $stmt->num_rows > 0){
$count = $stmt->fetch_object();
return $count->total;
}
return 0;
}
function get_note($title){
$conn = get_connection_handle();
if(is_okay($title)){
$owner = $this->username;
$query = "select * from notes where title = '$title' and "
. "owner = '$owner'";
$stmt = $conn->query($query);
if($stmt && $stmt->num_rows > 0){
$row = $stmt->fetch_object();
return $row;
}
return false;
}
}
function get_noteby_link($link){
$conn = get_connection_handle();
if(is_okay($link)){
$owner = $this->username;
$query = "select * from notes where link_id = '$link' and "
. "owner = '$owner' and status = 'public'";
$stmt = $conn->query($query);
if($stmt && $stmt->num_rows > 0){
$row = $stmt->fetch_object();
return $row;
}
return false;
}
}
public function get_notes_titles(){
$conn = get_connection_handle();
$user = $this->username;
$query = $conn->query("select title from notes where owner = '$user' order by id desc");
if($query && $query->num_rows > 0){
return $query;
}
return false;
}
/**
* Gets the last name of the current user
* @return string
*/
public function get_lastname(){
return $this->lastname;
}
/**
* Gets the age of the current user
* @return integer
*/
public function get_age() {
return $this->age;
}
/**
* Gets and returns the course of the current user
* @return String
*/
public function get_programme(){
return $this->programme;
}
/**
* Gets the current user's department
* @return string
*/
public function get_department(){
return $this->department;
}
/**
* Returns the current user's username
* @return string
*/
public function get_username(){
return $this->username;
}
/**
* Returns current user's age
* @return int
*/
public function get_gender(){
return $this->gender;
}
/**
* Sets the name of the current user using $fname as first name, $lname as
* last name, and $mname as middle name.
* @param string $fname
* @param string $lname
* @param string $mname
*/
public function set_name($fname, $lname, $mname = ''){
$this->name = $fname.' '.$mname.' '.$lname;
}
/**
* Sets the age of current user with age $age
* @param integer $age
*/
public function set_age($age){
$this->age = $age;
}
public function get_phone(){
return $this->phone;
}
public function get_password(){
return $this->password;
}
public function get_courses(){
$conn = get_connection_handle();
$query = $conn->query("select * from registered_courses
where username = '$this->username'");
if($query && $query->num_rows > 0){
return $query;
}
return false;
}
public function get_course_count(){
$conn = get_connection_handle();
$query = $conn->query("select count(id) as total from registered_courses
where username = '$this->username'");
if($query && $query->num_rows > 0){
$count = $query->fetch_object();
return $count->total;
}
return 0;
}
public function get_answers(){
$conn = get_connection_handle();
$query = $conn->query("select * from answers where answered_by = '$this->username'");
if($query && $query->num_rows > 0){
return $query;
}
return false;
}
public function get_answer_count(){
$conn = get_connection_handle();
$query = $conn->query("select count(id) as total from answers
where answered_by = '$this->username'");
if($query && $query->num_rows > 0){
$count = $query->fetch_object();
return $count->total;
}
return 0;
}
public function get_questions(){
$conn = get_connection_handle();
$query = $conn->query("select * from questions where asked_by = '$this->username'");
if($query && $query->num_rows > 0){
return $query;
}
return false;
}
public function get_question_upvotes(){
$conn = get_connection_handle();
$query = $conn->query("select sum(upvotes) as total from questions where
asked_by = '$this->username'");
if($query && $query->num_rows > 0){
$row = $query->fetch_object();
return $row->total;
}
return 0;
}
function get_unviewed_chats(){
$conn = get_connection_handle();
$query = $conn->query("select distinct sender from chats where receiver =
'$this->username' and status = 'unviewed'");
if($query && $query->num_rows > 0){
return $query;
}
return 0;
}
function get_num_chats($user){
$conn = get_connection_handle();
$query = $conn->query("select count(id) as total from chats where receiver =
'$this->username' and sender = '$user' and status = 'unviewed'");
if($query && $query->num_rows > 0){
$row = $query->fetch_object();
return $row->total;
}
return 0;
}
public function get_answer_upvotes(){
$conn = get_connection_handle();
$query = $conn->query("select sum(upvotes) as total from answers where
answered_by = '$this->username'");
if($query && $query->num_rows > 0){
$row = $query->fetch_object();
return $row->total;
}
return 0;
}
public function get_question_downvotes(){
$conn = get_connection_handle();
$query = $conn->query("select sum(downvotes) as total from questions where
asked_by = '$this->username'");
if($query && $query->num_rows > 0){
$row = $query->fetch_object();
return $row->total;
}
return 0;
}
public function get_answer_downvotes(){
$conn = get_connection_handle();
$query = $conn->query("select sum(downvotes) as total from answers where
answered_by = '$this->username'");
if($query && $query->num_rows > 0){
$row = $query->fetch_object();
return $row->total;
}
return 0;
}
public function get_question_count(){
$conn = get_connection_handle();
$query = $conn->query("select count(id) as total from questions
where asked_by = '$this->username'");
if($query && $query->num_rows > 0){
$count = $query->fetch_object();
return $count->total;
}
return 0;
}
public function get_question($id){
$id = is_okay($id) ? $id: "";
$conn = get_connection_handle();
$query = $conn->query("select * from questions where id = $id");
if($query && $query->num_rows > 0){
return $query;
}
return false;
}
function get_assignments(){
$conn = get_connection_handle();
$department = $this->get_department();
$query = $conn->query("select * from assignments where course in (
select course_code from courses where department = '$department')
and submit_date >= CAST(CURRENT_DATE AS DATETIME)");
if($query && $query->num_rows > 0){
return $query;
}
return false;
}
function get_assignment_count(){
$conn = get_connection_handle();
$department = $this->get_department();
$query = $conn->query("select count(id) as total from assignments where course in (
select course_code from courses where department = '$department')
and submit_date >= CAST(CURRENT_DATE AS DATETIME)");
if($query && $query->num_rows > 0){
$count = $query->fetch_object();
return $count->total;
}
return false;
}
function get_assignment($id){
$conn = get_connection_handle();
$id = is_okay($id) ? $id: "";
$query = $conn->query("select * from assignments where id = $id");
if($query && $query->num_rows > 0){
$row = $query->fetch_object();
return $row;
}
return 0;
}
function has_submitted($id){
$conn = get_connection_handle();
$id = is_okay($id) ? $id: "";
$query = $conn->query("select * from submissions where assignment_id = $id");
if($query && $query->num_rows > 0){
return true;
}
return false;
}
function get_lectures(){
$conn = get_connection_handle();
$courses = $this->get_courses();
$course_codes = array();
while($row = $courses->fetch_object()){
$course_codes[] = $row->course_code;
}
$codes = implode(",", explode("", $course_codes));
$query = $conn->query("select * from assignments where course in ('$codes')");
if($query && $query->num_rows > 0){
return $query;
}
return false;
}
}