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