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