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