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