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