-
Notifications
You must be signed in to change notification settings - Fork 3
/
class.security.php
209 lines (185 loc) · 7.26 KB
/
class.security.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
<?php
define ("PAGE", 0);
define ("SCRIPT", 1);
define ("AJAX", 2);
$o_GLOBAL_security = NULL;
function security($bHasToBeLoggedIn = TRUE, $iType = PAGE) {
global $o_GLOBAL_security;
if (is_null($o_GLOBAL_security)) $o_GLOBAL_security = new security($bHasToBeLoggedIn = TRUE, $iType = PAGE);
return $o_GLOBAL_security;
}
class security { /*
wordt aangeroepen vanaf elke pagina, sessie wordt aangemaakt / opgeroepen
- inloggen van de bezoeker
- opvragen of de gebruiker bepaalde rechten heeft
- de gebruiker uitloggen
*/
private $bLoggedIn = FALSE;
private $bAdmin = FALSE;
private $strError = "";
private $iUser = 0;
private $oUser;
private $iType = PAGE;
public function security($bHasToBeLoggedIn = TRUE, $iType = PAGE) { /*
- optional $bHasToBeLoggedIn : indien TRUE kan de huidige pagina enkel geopend worden door ingelogde gebruikers, indien niet ingelogd wordt de gebruiker doorgestuurd naar loginscherm, indien FALSE; pagina kan door iedereen / alles gelezen worden
- optional $iType : PAGE / SCRIPT / AJAX : nodig om te weten met welke code de gebruiker doorgestuurd wordt (indien niet ingelogd)
- indien niet ingelogd maar wel nodig: afhankelijk van $iType wordt code / redirect gestuurd + EXIT()
*/
//ini_set('session.use_cookies', 0);
//ini_set('session.use_only_cookies', 0);
//ini_set('session.use_trans_sid', 1);
session_start();
$this->setLoggedIn(FALSE);
$this->iType = $iType;
if(isset($_SESSION['session']) || isset($_COOKIE['session'])) {
$iUser = isset($_SESSION['userid'])?$_SESSION['userid']:(isset($_COOKIE['user'])?$_COOKIE['user']:0);
$strSession = isset($_SESSION['session'])?$_SESSION['session']:(isset($_COOKIE['session'])?$_COOKIE['session']:"");
$iTime = owaesTime();
$oDBrecord = new database("select s.*, u.admin, u.deleted from tblUserSessions s
inner join tblUsers u on s.user = u.id
where s.user = $iUser
and s.sessionpass = '$strSession'
and s.start <= $iTime
and s.stop >= $iTime
and s.active = 1
; ", true);
if ($oDBrecord->length() > 0) {
// maybe a check for IP (if session is copied)
$this->setLoggedIn($oDBrecord->get("deleted")==0);
$this->setUserID($iUser);
$this->admin($oDBrecord->get("admin")==1);
}
}
if ($bHasToBeLoggedIn && !$this->bLoggedIn) {
global $oPage;
switch($iType) {
case AJAX:
echo ("<a href=\"" . fixpath("login.php") . "\">U bent niet meer ingelogd. Klik hier om terug in te loggen. </a>");
break;
case SCRIPT:
echo ("document.location.href = '" . fixpath("login.php") . "'; ");
break;
case PAGE:
default:
redirect(fixPath("login.php?p=" . urlencode($oPage->filename())));
break;
}
exit();
}
return $this->bLoggedIn;
}
public function ingelogd() { // returns boolean of gebruiker ingelogd is
return $this->bLoggedIn;
}
public function user($iUser = NULL) { /* SETS / GETS current user
TODO: zou private moeten zijn (enfin, SET-gedeelte)
*/
if (!is_null($iUser)) {
$this->iUser = $iUser;
me($iUser);
}
return user($this->iUser);
}
private function setLoggedIn($bValue) {
$this->bLoggedIn = $bValue;
global $oPage;
$oPage->loggedIn($bValue);
}
public function admin($bValue = NULL) { // returns boolean: admin-rechten ?
if (!is_null($bValue)) $this->bAdmin = $bValue;
return $this->bAdmin;
}
public function doLogin($strUser, $strPass = NULL) {
//echo "doLogin";
$this->setLoggedIn(FALSE);
$this->strError = "";
$oDBquery = new database();
$strUser = $oDBquery->escape($strUser);
$strPass = is_null($strPass) ? NULL : md5(trim($strPass));
$strSession = uniqueKey();
$arWhere = array("deleted = 0");
$arWhere[] = (strrpos($strUser, "@") === false)
? "login = '" . $strUser . "'"
: "mail = '" . $strUser . "'";
$oDBquery->sql("select * from tblUsers where " . implode(" and ", $arWhere) . " limit 0, 1; ");
if ($oDBquery->execute() > 0) {
if (($oDBquery->get("actief")==0)||($oDBquery->get("deleted")==1)) {
$this->strError = "Deze account werd geblokkeerd";
return false;
} else {
if (($oDBquery->get("pass") == $strPass) || (is_null($strPass))) {
session_start();
$iUser = $oDBquery->get("id");
$_SESSION['userid'] = $iUser;
$_SESSION['session'] = $strSession;
$iStart = owaesTime();
$iStop = owaesTime() + 60*60*24*14; // session valid for 2 weeks
$strIP = $_SERVER['REMOTE_ADDR'];
$oDBinsert = new database();
$strConf = $oDBinsert->escape($_SERVER['HTTP_USER_AGENT']);
$oDBinsert->execute("insert into tblUserSessions (user, start, stop, sessionpass, active, ip, conf) values ($iUser, $iStart, $iStop, '$strSession', 1, '$strIP', '$strConf'); ");
$this->setLoggedIn(TRUE);
setcookie("user", $iUser, $iStop);
setcookie("session", $strSession, $iStop);
return true;
} else {
// echo $oDBquery->table();
// echo $strPass;
console("class.security", "dologin() - Incorrect password.");
$this->strError = "Je gaf een verkeerd wachtwoord in";
return false;
}
}
} else {
console("class.security", "dologin() - Incorrect username.");
$this->strError = "Deze gebruikersnaam werd niet herkend. Gebruik je loginnaam of e-mailadres. ";
return false;
}
}
public function doLogout($bResult = TRUE) { // forceert een logout. ($bResult : indien TRUE: deze functie zorgt voor redirect of HTML / bij FALSE moet afhandeling in pagina zelf gedaan worden.
if(isset($_SESSION['session'])) {
$iUser = $_SESSION['userid'];
$strSession = $_SESSION['session'];
$iTime = owaesTime();
$oDBlogout = new database("update tblUserSessions set active = 0, stop = $iTime where user = $iUser and sessionpass = '$strSession'; ", true);
}
session_destroy();
$this->setUserID(0);
$this->setLoggedIn(FALSE);
if (isset($_COOKIE["user"])) setcookie("user", "", owaesTime()-3600);
if (isset($_COOKIE["session"])) setcookie("session", "", owaesTime()-3600);
if ($bResult) {
switch($this->iType) {
case AJAX:
echo ("<a href=\"/owaes/login.php\">U bent niet meer ingelogd. Klik hier om terug in te loggen. </a>");
break;
case SCRIPT:
echo ("document.location.href = '/owaes/login.php'; ");
break;
case PAGE:
default:
redirect("login.php");
break;
}
}
return TRUE;
}
public function errorMessage() { // geeft foutmelding na ongeldige inlogpoging op doLogin (bv. ongelidg paswoord of ongeldige login)
return $this->strError;
}
public function getUserID() { // TODO: zou weg moeten
return $this->iUser;
}
private function setUserID($iUser) { // TODO: zou weg moeten
$this->user($iUser);
// $this->iUser = $iUser;
global $oPage;
$oPage->iUser = $iUser;
}
public function me() { /* geeft ID van huidige gebruiker terug.
TODO: zou weg moeten want er bestaat een GLOBAL function me()
*/
if (!isset($this->oUser)) $this->oUser = user($this->iUser);
return $this->oUser;
}
}