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         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['passwordRequest'])) { //|| (strpos($_REQUEST['username'], '@') < 1)) {
257             return $this->passwordRequest($_REQUEST['passwordRequest']);   
258         }
259         
260         if (!empty($_REQUEST['ResetPassword'])) {
261             if (empty($_REQUEST['id']) || 
262                 empty($_REQUEST['ts']) ||
263                 empty($_REQUEST['key']) ||
264                 empty($_REQUEST['password1']) ||
265                 empty($_REQUEST['password2']) ||
266                 ($_REQUEST['password1'] != $_REQUEST['password2'])
267             ) {
268                 $this->jerr("Invalid request to reset password");
269             }
270             
271             $this->resetPassword($_REQUEST['id'], $_REQUEST['ts'], $_REQUEST['key'], $_REQUEST['password1'] );
272         }
273         
274         // this is 'classic' change password...
275         if (!empty($_REQUEST['changePassword'])) {
276             return $this->changePassword($_REQUEST);
277         }
278         
279         // login attempt..
280         
281         $ff = HTML_FlexyFramework::get();
282         $tbl = empty($ff->Pman['authTable']) ? 'core_person' : $ff->Pman['authTable'];
283         
284        
285         $u = DB_DataObject::factory($tbl);
286         
287         $ip = $this->ip_lookup();
288         // ratelimit
289         if (!empty($ip)) {
290             //DB_DataObject::DebugLevel(1);
291             $e = DB_DataObject::Factory('Events');
292             $e->action = 'LOGIN-BAD';
293             $e->ipaddr = $ip;
294             $e->whereAdd('event_when > NOW() - INTERVAL 10 MINUTE');
295             if ($e->count() > 5) {
296                 $this->jerror('LOGIN-RATE', "Login failures are rate limited - please try later");
297             }
298         }
299         
300         //$u->active = 1;
301         
302         // empty username = not really a hacking attempt.
303         
304         if (empty($_REQUEST['username'])) { //|| (strpos($_REQUEST['username'], '@') < 1)) {
305             $this->jerror('LOGIN-EMPTY', 'You typed the wrong Username or Password (0)');
306             exit;
307         }
308         
309         $u->authUserName($_REQUEST['username']);
310         
311         if ($u->count() > 1 || !$u->find(true)) {
312             $this->jerror('LOGIN-BAD','You typed the wrong Username or Password  (1)');
313             exit;
314         }
315         
316         if (!$u->active()) {
317             $this->jerror('LOGIN-BAD','Account disabled');
318         }
319         
320         if(!empty($u->oath_key) && empty($_REQUEST['oath_password'])){
321             $this->jerror('LOGIN-BAD','Your account requires Two-Factor Authentication');
322         }
323         
324         // check if config allows non-owner passwords.
325         // auth_company = "OWNER" // auth_company = "CLIENT" or blank for all?
326         // perhaps it should support arrays..
327         $ff= HTML_FlexyFramework::get();
328         if (!empty($ff->Pman['auth_comptype']) && $ff->Pman['auth_comptype'] != $u->company()->comptype) {
329             //print_r($u->company());
330             $this->jerror('LOGIN-BADUSER', "Login not permited to outside companies"); // serious failure
331         }
332         
333         
334         // note we trim \x10 -- line break - as it was injected the front end
335         // may have an old bug on safari/chrome that added that character in certian wierd scenarios..
336         if (!$u->checkPassword(trim($_REQUEST['password'],"\x10"))) {
337             $this->jerror('LOGIN-BAD', 'You typed the wrong Username or Password  (2)'); // - " . htmlspecialchars(print_r($_POST,true))."'");
338             exit;
339         }
340         
341         if(
342             !empty($u->oath_key) &&
343             (
344                 empty($_REQUEST['oath_password']) ||
345                 !$u->checkTwoFactorAuthentication($_REQUEST['oath_password'])
346             )
347         ) {
348             $this->jerror('LOGIN-BAD', 'You typed the wrong Username or Password  (3)');
349             exit;
350         }
351         
352         $this->ip_checking();
353         
354         $u->login();
355         // we might need this later..
356         $this->addEvent("LOGIN", false, session_id());
357         if (!empty($_REQUEST['lang'])) {
358             $u->lang($_REQUEST['lang']);
359         }
360          // log it..
361
362         $this->sendAuthUserDetails();
363         exit;
364          
365         
366     }
367     
368     function passwordRequest($n) 
369     {
370         $u = DB_DataObject::factory('core_person');
371         //$u->company_id = $this->company->id;
372         
373         $u->whereAdd('LENGTH(passwd) > 1');
374         $u->email = $n;
375         $u->active = 1;
376         if ($u->count() > 1 || !$u->find(true)) {
377             $this->jerr('invalid User (1)');
378         }
379         // got a avlid user..
380         if (!strlen($u->passwd)) {
381             $this->jerr('invalid User (2)');
382         }
383         // check to see if we have sent a request before..
384         
385         if ($u->no_reset_sent > 3) {
386             $this->jerr('We have issued to many resets - please contact the Administrator');
387         }
388         
389         
390         
391         
392         // sort out sender.
393         $cm = DB_DataObject::factory('core_email');
394         if (!$cm->get('name', 'ADMIN_PASSWORD_RESET')) {
395             $this->jerr("no template ADMIN_PASSWORD_RESET exists - please run importer ");
396             
397         }
398         /*
399         
400         $g = DB_DAtaObject::factory('Groups');
401         if (!$g->get('name', 'system-email-from')) {
402             $this->jerr("no group 'system-email-from' exists in the system");
403         }
404         $from_ar = $g->members();
405         if (count($from_ar) != 1) {
406             $this->jerr(count($from_ar) ? "To many members in the 'system-email-from' group " :
407                        "'system-email-from' group  does not have any members");
408         }
409         */
410         
411         
412         
413         // bcc..
414         $g = DB_DAtaObject::factory('core_group');
415         if (!$g->get('name', 'bcc-email')) {
416             $this->jerr("no group 'bcc-email' exists in the system");
417         }
418         $bcc = $g->members('email');
419         if (!count($bcc)) {
420             $this->jerr( "'bcc-email' group  does not have any members");
421         }
422         
423         
424         
425         $this->authFrom = time();
426         $this->authKey = $u->genPassKey($this->authFrom);
427         //$this->authKey = md5($u->email . $this->authFrom . $u->passwd);
428         $this->person = $u;
429         $this->bcc = $bcc;
430         $this->rcpts = $u->getEmailFrom();
431         
432         
433         $mailer = $cm->toMailer($this, false);
434         if (is_a($mailer,'PEAR_Error') ) {
435             $this->addEvent('SYSERR',false, $mailer->getMessage());
436             $this->jerr($mailer->getMessage());
437         }
438         $sent = $mailer->send();
439         if (is_a($sent,'PEAR_Error') ) {
440             $this->addEvent('SYSERR',false, $sent->getMessage());
441             $this->jerr($ret->getMessage());
442         }
443         
444         $this->addEvent('PASSREQ',$u, $u->email);
445         $uu = clone($u);
446         $uu->no_reset_sent++;
447         $uu->update($u);
448         $this->jok("done");
449         
450     }
451     
452     
453     function resetPassword($id,$t, $key, $newpass)
454     {
455         
456         $au = $this->getAuthUser();
457         if ($au) {
458             return "Already Logged in - no need to use Password Reset";
459         }
460         
461         $u = DB_DataObject::factory('core_person');
462         //$u->company_id = $this->company->id;
463         $u->active = 1;
464         if (!$u->get($id) || !strlen($u->passwd)) {
465             return "invalid id";
466         }
467         
468         // validate key.. 
469         if ($key != $u->genPassKey($t)) {
470             return "invalid key";
471         }
472         $uu = clone($u);
473         $u->no_reset_sent = 0;
474         $u->update($uu);
475         
476         if ($t < strtotime("NOW - 1 DAY")) {
477             return "expired";
478         }
479         $this->showNewPass = implode("/", array($id,$t,$key));
480         return false;
481     }
482     
483     
484     function changePassword($r)
485     {   
486         $au = $this->getAuthUser();
487         if ($au) {
488             $uu = clone($au);
489             $au->setPassword($r['passwd1']);
490             $au->update($uu);
491             $this->addEvent("CHANGEPASS", $au);
492             $this->jok($au);
493         }
494         // not logged in -> need to validate 
495         if (empty($r['passwordReset'])) {
496             $this->jerr("invalid request");
497         }
498         // same code as reset pasword
499        
500         $bits = explode('/', $r['passwordReset']);
501         //print_R($bits);
502       
503         $res= $this->resetPassword(@$bits[0],@$bits[1],@$bits[2]);
504           
505         if ($res !== false) {
506             $this->jerr($res);
507         }
508         // key is correct.. let's change password...
509         
510         $u = DB_DataObject::factory('core_person');
511         
512         //$u->company_id = $this->company->id;
513         $u->whereAdd('LENGTH(passwd) > 1');
514         $u->active = 1;
515         if (!$u->get($bits[0])) {
516            $this->jerr("invalid id"); // should not happen!!!!
517         }
518         $uu = clone($u);
519         $u->setPassword($r['passwd1']);
520         $u->update($uu);
521         $u->login();
522         $this->addEvent("CHANGEPASS", $u);
523         $this->jok($u);
524     }
525     
526     function ip_checking()
527     {
528         if(empty($this->ip_management)){
529             return;
530         }
531         
532         $ip = $this->ip_lookup();
533         
534         if(empty($ip)){
535             $this->jerr('BAD-IP-ADDRESS', array('ip' => $ip));
536         }
537         
538         $core_ip_access = DB_DataObject::factory('core_ip_access');
539         
540         if(!DB_DataObject::factory('core_ip_access')->count()){ // first ip we always mark it as approved..
541             
542             $core_ip_access = DB_DataObject::factory('core_ip_access');
543             
544             $core_ip_access->setFrom(array(
545                 'ip' => $ip,
546                 'created_dt' => $core_ip_access->sqlValue("NOW()"),
547                 'authorized_key' => md5(openssl_random_pseudo_bytes(16)),
548                 'status' => 1,
549                 'email' => (empty($_REQUEST['username'])) ? '' : $_REQUEST['username'],
550                 'user_agent' => (empty($_SERVER['HTTP_USER_AGENT'])) ? '' : $_SERVER['HTTP_USER_AGENT']
551             ));
552             
553             $core_ip_access->insert();
554             
555             return;
556         }
557         
558         $core_ip_access = DB_DataObject::factory('core_ip_access');
559         
560         if(!$core_ip_access->get('ip', $ip)){ // new ip
561             
562             $core_ip_access->setFrom(array(
563                 'ip' => $ip,
564                 'created_dt' => $core_ip_access->sqlValue("NOW()"),
565                 'authorized_key' => md5(openssl_random_pseudo_bytes(16)),
566                 'status' => 0,
567                 'email' => (empty($_REQUEST['username'])) ? '' : $_REQUEST['username'],
568                 'user_agent' => (empty($_SERVER['HTTP_USER_AGENT'])) ? '' : $_SERVER['HTTP_USER_AGENT']
569             ));
570             
571             $core_ip_access->insert();
572             
573             $core_ip_access->sendXMPP();
574             
575             $this->jerr('NEW-IP-ADDRESS', array('ip' => $ip));
576             
577             return;
578         }
579         
580         if(empty($core_ip_access->status)){
581             $this->jerr('PENDING-IP-ADDRESS', array('ip' => $ip));
582         }
583         
584         if($core_ip_access->status == -1){
585             $this->jerr('BLOCKED-IP-ADDRESS', array('ip' => $ip));
586             return;
587         }
588         
589         if($core_ip_access->status == -2 && strtotime($core_ip_access->expire_dt) < strtotime('NOW')){
590             $this->jerr('BLOCKED-IP-ADDRESS', array('ip' => $ip));
591             return;
592         }
593         
594         return;
595     }
596     
597     function ip_lookup()
598     {
599
600         if (!empty($_SERVER['HTTP_CLIENT_IP'])){
601             return $_SERVER['HTTP_CLIENT_IP'];
602         }
603         
604         if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
605             return $_SERVER['HTTP_X_FORWARDED_FOR'];
606         }
607         
608         return $_SERVER['REMOTE_ADDR'];
609     }
610 }
611