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
|
<?php
Class User extends CI_Model {
/*
* Constructor
*/
function __construct() {
parent::__construct();
//Load required libraries and drivers
$this->load->database();
$this->load->library('session');
}
/*
* This function returns the users password hint (or FALSE if user isn't logged in).
* RESTRICTED-LEVEL: None
*/
public function getPasswordHint($user) {
//Query-structure
$this->db->select('passwdHint');
$this->db->from('Users');
$this->db->where('userName', $user);
$this->db->limit(1);
//Execute query
$query = $this->db->get();
$result = $query->result();
//If a matching DB record is found.
if($result) {
foreach($result as $row) {
$hint = $row->passwdHint;
//Return hint
return $hint;
}
}
//No such user
return FALSE;
}
/*
* This function logs the user in (returns FALSE on fail).
* RESTRICTED-LEVEL: None
*/
public function login($username, $password)
{
//Generate a salted hash
$hash = $this->getSaltedHash($password);
//Query-structure
$this->db->select('userName, name, passwd, userType, ssn');
$this->db->from('Users');
$this->db->where('userName', $username);
$this->db->where('passwd', $hash);
$this->db->limit(1);
//Execute query
$query = $this->db->get();
$result = $query->result();
//If a matching DB record is found.
if($result) {
//Prepare session data
$userDetails = array();
foreach($result as $row) {
$userDetails = array(
'username' => $row->userName,
'name' => $row->name,
'usertype' => $row->userType,
'ssn' => $row->ssn
);
}
//Set session data
$this->session->set_userdata('authenticated', $userDetails);
//Return success
return TRUE;
}
//Return fail
return FALSE;
}
/*
* This function logs the user out.
* RESTRICTED-LEVEL: Self
*/
public function logout() {
//Unset session data
$this->session->unset_userdata('authenticated');
}
/*
* This function changes the users password.
* RESTRICTED-LEVEL: Self
*/
public function changePassword($pwdOld, $pwdNew, $pwdHint) {
//Check that a user is logged in.
if($this->isLoggedIn()) {
$user = $this->getUserName();
$oldHash = $this->getSaltedHash($pwdOld);
$newHash = $this->getSaltedHash($pwdNew);
//Validate input with database
$this->db->select('userName');
$this->db->from('Users');
$this->db->where('userName', $user);
$this->db->where('passwd', $oldHash);
$this->db->limit(1);
$query = $this->db->get();
$result = $query->result();
//If a matching DB record is found, update database.
if($result) {
$data = array(
'passwd' => $newHash,
'passwdHint' => $pwdHint
);
$this->db->where('userName', $user);
$this->db->update('Users', $data);
//Return Success!
return TRUE;
}
}
//Return error
return FALSE;
}
/*
* This function registers user into the database.
* RESTRICTED-LEVEL: Teacher
*/
public function addUser($userName, $name, $ssn, $password, $userType, $pwdHint) {
//Check that a user is logged in and has the right privileges (is teacher)
if($this->isLoggedIn() && $this->getUserType() === 'Teacher') {
//Generate a salted hash
$hash = $this->getSaltedHash($password);
//Query-structure (All values are escaped automatically by codeigninte, producing safer queries.)
$this->db->set('userName', $userName);
$this->db->set('name', $name);
$this->db->set('ssn', $ssn);
$this->db->set('passwd', $password);
$this->db->set('userType', $userType);
$this->db->set('passwdHint', $pwdHint);
$result = $this->db->insert('Users');
//Check for my-sql error
if($result) {
//Return success
return TRUE;
}
}
//Return error
return FALSE;
}
/*
* This function removes users from the database.
* RESTRICTED-LEVEL: Teacher
*/
public function removeUser($userName) {
//Check that a user is logged in, has the right privileges (is teacher) and not is the users own username.
if($this->isLoggedIn() && $this->getUserType() === 'Teacher' && $this->getUserName() != $userName) {
//Query-structure
$this->db->where('userName', $userName);
$result = $this->db->delete('Users');
//Check for my-sql error
if($result) {
//Return success
return TRUE;
}
}
//Return error
return FALSE;
}
/*
* Generates a salted password hash, encrypted with sha1.
*/
private function getSaltedHash($pwd) {
//Salt = CodeIgniters encryption-key from config
$salt = $this->config->item('encryption_key');
//Generate SHA1 hash using salt
$hash = sha1($salt.$pwd);
return $hash;
}
/*
* This function return TRUE if the user is logged in and FALSE otherwise.
* RESTRICTED-LEVEL: System
*/
public function isLoggedIn() {
if ($this->session->userdata('authenticated')) {
return TRUE;
}
return FALSE;
}
/*
* This function returns the users type (or FALSE if user isn't logged in).
* RESTRICTED-LEVEL: System
*/
public function getUserType() {
if($this->isLoggedIn()) {
$temp = $this->session->userdata('authenticated');
return $temp['usertype'];
}
return FALSE;
}
/*
* This function returns the username (or FALSE if user isn't logged in).
* RESTRICTED-LEVEL: System
*/
public function getUserName() {
if($this->isLoggedIn()) {
$temp = $this->session->userdata('authenticated');
return $temp['username'];
}
return FALSE;
}
}
?>
|