Pman/Login.php
[Pman.Base] / Pman / Login.php
1 <?php
2
3 require_once 'Pman.php';
4
5 /***
6
7 * Auth wrapper..
8
9 * User class must provide the following features.
10
11 * logout()
12 * isAuth() 
13 * getAuthUser();
14 * authUserArray() 
15 * active()  -- is user active. // or set prior to checking..
16 * authUserName(n) - sets the value prior to a find(true)
17 * checkPassword($_REQUEST['password'])) {
18 * login();
19 * lang(val) - to set the language..
20 */
21
22
23
24 class Pman_Login extends Pman
25
26     var $masterTemplate = 'login.html';
27     
28     var $ip_management = false;
29     
30     function getAuth() // everyone allowed in here..
31     {
32         parent::getAuth(); // load company..
33         
34         $ff = HTML_FlexyFramework::get();
35         
36         $this->ip_management = (empty($ff->Pman['ip_management'])) ? false : true;
37         
38         return true;
39     }
40     /**
41      * Accepts:
42      * logout =
43      * 
44      * 
45      */
46     function get($v, $opts=array()) 
47     {
48         $this->initErrorHandling();
49         
50          //DB_DataObject::DebugLevel(1);
51         if (!empty($_REQUEST['logout'])) {
52            return $this->logout();
53         }
54         
55         // general query...
56         if (!empty($_REQUEST['getAuthUser'])) {
57             //DB_Dataobject::debugLevel(5);
58             $this->sendAuthUserDetails();
59             exit;
60            
61         }
62         
63         // might be an idea to disable this?!?
64         if (!empty($_REQUEST['username'])) {
65             $this->post();
66         }
67         
68         
69         if (!empty($_REQUEST['switch'])) {
70             $this->switchUser($_REQUEST['switch']);
71         }
72         
73         if (!empty($_REQUEST['loginPublic'])) {
74             $this->switchPublicUser($_REQUEST['loginPublic']);
75         }
76         
77         
78         $this->jerr("INVALID REQUEST");
79         exit;
80     }
81     
82     
83     function logout()
84     {
85         $ff = class_exists('HTML_FlexyFramework2') ?  HTML_FlexyFramework2::get()  :  HTML_FlexyFramework::get();
86         //DB_DAtaObject::debugLevel(1);
87         $u = $this->getAuthUser();
88         //print_r($u);
89         if ($u) {
90             
91             $this->addEvent('LOGOUT');
92             $e = DB_DataObject::factory('Events');
93           
94             
95             $u->logout();
96             session_regenerate_id(true);
97             session_commit(); 
98
99             if(!empty($ff->Pman['local_autoauth']) && !empty($_SERVER['HTTP_HOST']) && $_SERVER['HTTP_HOST'] == 'localhost') {
100                 $this->jerr("you are using local autoauth!?");                
101             }
102             //echo '<PRE>';print_R($_SESSION);
103             $this->jok("Logged out - user ");
104         }
105         // log it..
106         
107         //$_SESSION['Pman_I18N'] = array(); << 
108         session_regenerate_id(true);
109         session_commit();
110         
111         $this->jok("Logged out - no user");
112         
113     }
114     
115     function sendAuthUserDetails()
116     {
117         // remove for normal use - it's a secuirty hole!
118         //DB_DataObject::debugLevel(1);
119         if (!empty($_REQUEST['_debug'])) {
120            // DB_DataObject::debugLevel(1);
121         }
122         // 
123         $ff = HTML_FlexyFramework::get();
124         $tbl = empty($ff->Pman['authTable']) ? 'core_person' : $ff->Pman['authTable'];
125         
126         $u = DB_DataObject::factory($tbl);
127         if (!$u->isAuth()) {
128              
129             $this->jok(array('id' => 0)); // not logged in..
130             exit;
131         }
132         //die("got here?");
133         $au = $u->getAuthUser();
134         
135          // might occur on shared systems.
136         $ff= HTML_FlexyFramework::get();
137         
138         if (!empty($ff->Pman['auth_comptype'])  && $au->id > 0 &&
139                 ($ff->Pman['auth_comptype'] != $au->company()->comptype)) {
140             $au->logout();
141             $this->jerr("Login not permited to outside companies - please reload");
142         }
143         
144         //$au = $u->getAuthUser();
145         
146         $aur = $au ?  $au->authUserArray() : array();
147         
148         /** -- these need modulizing somehow! **/
149         
150         
151         
152         // basically calls Pman_MODULE_Login::sendAuthUserDetails($aur) on all the modules
153         //echo '<PRE>'; print_r($this->modules());
154         // technically each module should only add properties to an array named after that module..
155         
156         foreach($this->modules() as $m) {
157             if (empty($m)) {
158                 continue;
159             }
160             if (!file_exists($this->rootDir.'/Pman/'.$m.'/Login.php')) {
161                 continue;
162             }
163             $cls = 'Pman_'.$m.'_Login';
164             require_once 'Pman/'.$m.'/Login.php';
165             $x = new $cls;
166             $x->authUser = $au;
167             $aur = $x->sendAuthUserDetails($aur);
168         }
169         
170                  
171 //        
172 //        echo '<PRE>';print_r($aur);
173 //        exit;
174         $this->jok($aur);
175         exit;
176         
177             
178     }
179
180     
181     function switchUser($id)
182     {
183         $tbl = empty($ff->Pman['authTable']) ? 'core_person' : $ff->Pman['authTable'];
184         $u = DB_DataObject::factory($tbl);
185         if (!$u->isAuth()) {
186             $this->err("not logged in");
187         }
188         
189         $au = $u->getAuthUser();
190         
191         
192         // first check they have perms to do this..
193         if (!$au|| ($au->company()->comptype != 'OWNER') || !$this->hasPerm('Core.Person', 'E')) {
194             $this->jerr("User switching not permitted");
195         }
196         
197         
198         $u = DB_DataObject::factory($tbl);
199         $u->get($id);
200         if (!$u->active()) {
201             $this->jerr('Account disabled');
202         }
203         $u->login();
204             // we might need this later..
205         $this->addEvent("SWITCH USER", false, $au->name . ' TO ' . $u->name);
206         $this->jok("SWITCH");
207         
208     }
209     
210     function switchPublicUser($id)
211     {
212         $tbl = empty($ff->Pman['authTable']) ? 'core_person' : $ff->Pman['authTable'];
213         
214         $u = DB_DataObject::factory($tbl);
215         $u->get($id);
216         
217         if (!$u->active()) {
218             $this->jerr('Account disabled');
219         }
220         
221         if(!$u->loginPublic()){
222             $this->jerr('Switch fail');
223         }
224         
225         $this->jok('OK');
226     }
227     
228     var $domObj = false;
229     
230     function post($v)
231     {
232         //DB_DataObject::debugLevel(1);
233         
234         if (!empty($_REQUEST['getAuthUser'])) {
235             $this->sendAuthUserDetails();
236             exit;
237         }
238         
239         if (!empty($_REQUEST['logout'])) {
240            return $this->logout();
241         }
242         
243         if (!empty($_REQUEST['passwordRequest'])) { //|| (strpos($_REQUEST['username'], '@') < 1)) {
244             
245             return $this->passwordRequest($_REQUEST['passwordRequest']);
246             
247         }
248         
249         if (!empty($_REQUEST['changePassword'])) {
250             return $this->changePassword($_REQUEST);
251         }
252         
253         // login attempt..
254         
255         $ff = HTML_FlexyFramework::get();
256         $tbl = empty($ff->Pman['authTable']) ? 'core_person' : $ff->Pman['authTable'];
257         
258        
259         $u = DB_DataObject::factory($tbl);
260         
261         $ip = $this->ip_lookup();
262         // ratelimit
263         if (!empty($ip)) {
264             //DB_DataObject::DebugLevel(1);
265             $e = DB_DataObject::Factory('Events');
266             $e->action = 'LOGIN-BAD';
267             $e->ipaddr = $ip;
268             $e->whereAdd('event_when > NOW() - INTERVAL 10 MINUTE');
269             if ($e->count() > 5) {
270                 $this->jerror('LOGIN-RATE', "Login failures are rate limited - please try later");
271             }
272         }
273         
274         //$u->active = 1;
275         
276         // empty username = not really a hacking attempt.
277         
278         if (empty($_REQUEST['username'])) { //|| (strpos($_REQUEST['username'], '@') < 1)) {
279             $this->jerror('LOGIN-EMPTY', 'You typed the wrong Username or Password (0)');
280             exit;
281         }
282         
283         $u->authUserName($_REQUEST['username']);
284         
285         if ($u->count() > 1 || !$u->find(true)) {
286             $this->jerror('LOGIN-BAD','You typed the wrong Username or Password  (1)');
287             exit;
288         }
289         
290         if (!$u->active()) {
291             $this->jerror('LOGIN-BAD','Account disabled');
292         }
293         
294         if(!empty($u->oath_key) && empty($_REQUEST['oath_password'])){
295             $this->jerror('LOGIN-BAD','Your account require Two-Factor Authentication');
296         }
297         
298         // check if config allows non-owner passwords.
299         // auth_company = "OWNER" // auth_company = "CLIENT" or blank for all?
300         // perhaps it should support arrays..
301         $ff= HTML_FlexyFramework::get();
302         if (!empty($ff->Pman['auth_comptype']) && $ff->Pman['auth_comptype'] != $u->company()->comptype) {
303             //print_r($u->company());
304             $this->jerror('LOGIN-BADUSER', "Login not permited to outside companies"); // serious failure
305         }
306         
307         
308         // note we trim \x10 -- line break - as it was injected the front end
309         // may have an old bug on safari/chrome that added that character in certian wierd scenarios..
310         if (!$u->checkPassword(trim($_REQUEST['password'],"\x10"))) {
311             $this->jerror('LOGIN-BAD', 'You typed the wrong Username or Password  (2)'); // - " . htmlspecialchars(print_r($_POST,true))."'");
312             exit;
313         }
314         
315         if(!empty($u->oath_key) && !$u->checkTwoFactorAuthentication(trim($_REQUEST['oath_password'],"\x10"))){
316             $this->jerror('LOGIN-BAD', 'You typed the wrong Username or Password  (3)');
317             exit;
318         }
319         
320         $this->ip_checking();
321         
322         $u->login();
323         // we might need this later..
324         $this->addEvent("LOGIN", false, session_id());
325         if (!empty($_REQUEST['lang'])) {
326             $u->lang($_REQUEST['lang']);
327         }
328          // log it..
329
330         $this->sendAuthUserDetails();
331         exit;
332          
333         
334     }
335     
336     function passwordRequest($n) 
337     {
338         $u = DB_DataObject::factory('core_person');
339         //$u->company_id = $this->company->id;
340         
341         $u->whereAdd('LENGTH(passwd) > 1');
342         $u->email = $n;
343         $u->active = 1;
344         if ($u->count() > 1 || !$u->find(true)) {
345             $this->jerr('invalid User (1)');
346         }
347         // got a avlid user..
348         if (!strlen($u->passwd)) {
349             $this->jerr('invalid User (2)');
350         }
351         // check to see if we have sent a request before..
352         
353         if ($u->no_reset_sent > 3) {
354             $this->jerr('We have issued to many resets - please contact the Administrator');
355         }
356         
357         
358         
359         
360         // sort out sender.
361         $cm = DB_DataObject::factory('core_email');
362         if (!$cm->get('name', 'ADMIN_PASSWORD_RESET')) {
363             $this->jerr("no template ADMIN_PASSWORD_RESET exists - please run importer ");
364             
365         }
366         /*
367         
368         $g = DB_DAtaObject::factory('Groups');
369         if (!$g->get('name', 'system-email-from')) {
370             $this->jerr("no group 'system-email-from' exists in the system");
371         }
372         $from_ar = $g->members();
373         if (count($from_ar) != 1) {
374             $this->jerr(count($from_ar) ? "To many members in the 'system-email-from' group " :
375                        "'system-email-from' group  does not have any members");
376         }
377         */
378         
379         
380         
381         // bcc..
382         $g = DB_DAtaObject::factory('core_group');
383         if (!$g->get('name', 'bcc-email')) {
384             $this->jerr("no group 'bcc-email' exists in the system");
385         }
386         $bcc = $g->members('email');
387         if (!count($bcc)) {
388             $this->jerr( "'bcc-email' group  does not have any members");
389         }
390         
391         
392         
393         $this->authFrom = time();
394         $this->authKey = $u->genPassKey($this->authFrom);
395         //$this->authKey = md5($u->email . $this->authFrom . $u->passwd);
396         $this->person = $u;
397         $this->bcc = $bcc;
398         $this->rcpts = $u->getEmailFrom();
399         
400         $ret = $cm->send($this);
401         //$this->jerr(print_r($r->toData(),true));
402         
403         if (is_object($ret)) {
404             $this->addEvent('SYSERR',false, $ret->getMessage());
405             $this->jerr($ret->getMessage());
406         }
407         $this->addEvent('PASSREQ',$u, $u->email);
408         $uu = clone($u);
409         $uu->no_reset_sent++;
410         $uu->update($u);
411         $this->jok("done");
412         
413     }
414     
415     function changePassword($r)
416     {   
417         $au = $this->getAuthUser();
418         if ($au) {
419             $uu = clone($au);
420             $au->setPassword($r['passwd1']);
421             $au->update($uu);
422             $this->addEvent("CHANGEPASS", $au);
423             $this->jok($au);
424         }
425         // not logged in -> need to validate 
426         if (empty($r['passwordReset'])) {
427             $this->jerr("invalid request");
428         }
429         // same code as reset pasword
430        
431         $bits = explode('/', $r['passwordReset']);
432         //print_R($bits);
433       
434         $res= $this->resetPassword(@$bits[0],@$bits[1],@$bits[2]);
435           
436         if ($res !== false) {
437             $this->jerr($res);
438         }
439         // key is correct.. let's change password...
440         
441         $u = DB_DataObject::factory('core_person');
442         
443         //$u->company_id = $this->company->id;
444         $u->whereAdd('LENGTH(passwd) > 1');
445         $u->active = 1;
446         if (!$u->get($bits[0])) {
447            $this->jerr("invalid id"); // should not happen!!!!
448         }
449         $uu = clone($u);
450         $u->setPassword($r['passwd1']);
451         $u->update($uu);
452         $u->login();
453         $this->addEvent("CHANGEPASS", $u);
454         $this->jok($u);
455     }
456     
457     function ip_checking()
458     {
459         if(empty($this->ip_management)){
460             return;
461         }
462         
463         $ip = $this->ip_lookup();
464         
465         if(empty($ip)){
466             $this->jerr('BAD-IP-ADDRESS', array('ip' => $ip));
467         }
468         
469         $core_ip_access = DB_DataObject::factory('core_ip_access');
470         
471         if(!DB_DataObject::factory('core_ip_access')->count()){ // first ip we always mark it as approved..
472             
473             $core_ip_access = DB_DataObject::factory('core_ip_access');
474             
475             $core_ip_access->setFrom(array(
476                 'ip' => $ip,
477                 'created_dt' => $core_ip_access->sqlValue("NOW()"),
478                 'authorized_key' => md5(openssl_random_pseudo_bytes(16)),
479                 'status' => 1,
480                 'email' => (empty($_REQUEST['username'])) ? '' : $_REQUEST['username'],
481                 'user_agent' => (empty($_SERVER['HTTP_USER_AGENT'])) ? '' : $_SERVER['HTTP_USER_AGENT']
482             ));
483             
484             $core_ip_access->insert();
485             
486             return;
487         }
488         
489         $core_ip_access = DB_DataObject::factory('core_ip_access');
490         
491         if(!$core_ip_access->get('ip', $ip)){ // new ip
492             
493             $core_ip_access->setFrom(array(
494                 'ip' => $ip,
495                 'created_dt' => $core_ip_access->sqlValue("NOW()"),
496                 'authorized_key' => md5(openssl_random_pseudo_bytes(16)),
497                 'status' => 0,
498                 'email' => (empty($_REQUEST['username'])) ? '' : $_REQUEST['username'],
499                 'user_agent' => (empty($_SERVER['HTTP_USER_AGENT'])) ? '' : $_SERVER['HTTP_USER_AGENT']
500             ));
501             
502             $core_ip_access->insert();
503             
504             $core_ip_access->sendXMPP();
505             
506             $this->jerr('NEW-IP-ADDRESS', array('ip' => $ip));
507             
508             return;
509         }
510         
511         if(empty($core_ip_access->status)){
512             $this->jerr('PENDING-IP-ADDRESS', array('ip' => $ip));
513         }
514         
515         if($core_ip_access->status == -1){
516             $this->jerr('BLOCKED-IP-ADDRESS', array('ip' => $ip));
517             return;
518         }
519         
520         if($core_ip_access->status == -2 && strtotime($core_ip_access->expire_dt) < strtotime('NOW')){
521             $this->jerr('BLOCKED-IP-ADDRESS', array('ip' => $ip));
522             return;
523         }
524         
525         return;
526     }
527     
528     function ip_lookup()
529     {
530
531         if (!empty($_SERVER['HTTP_CLIENT_IP'])){
532             return $_SERVER['HTTP_CLIENT_IP'];
533         }
534         
535         if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
536             return $_SERVER['HTTP_X_FORWARDED_FOR'];
537         }
538         
539         return $_SERVER['REMOTE_ADDR'];
540     }
541     
542     
543 }
544