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