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