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