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