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         
63         // might be an idea to disable this?!?
64         if (!empty($_REQUEST['username'])) {
65             $this->post();
66         }
67         
68         
69         if (!empty($_REQUEST['switch'])) {
70             $this->switchUser($_REQUEST['switch']);
71         }
72         
73         if (!empty($_REQUEST['loginPublic'])) {
74             $this->switchPublicUser($_REQUEST['loginPublic']);
75         }
76         
77         
78         $this->jerr("INVALID REQUEST");
79         exit;
80     }
81     
82     
83     function logout()
84     {
85         $ff = class_exists('HTML_FlexyFramework2') ?  HTML_FlexyFramework2::get()  :  HTML_FlexyFramework::get();
86         //DB_DAtaObject::debugLevel(1);
87         $u = $this->getAuthUser();
88         //print_r($u);
89         if ($u) {
90             
91             $this->addEvent('LOGOUT');
92             $e = DB_DataObject::factory('Events');
93           
94             
95             $u->logout();
96             session_regenerate_id(true);
97             session_commit(); 
98
99             if(!empty($ff->Pman['local_autoauth']) && !empty($_SERVER['HTTP_HOST']) && $_SERVER['HTTP_HOST'] == 'localhost') {
100                 $this->jerr("you are using local autoauth!?");                
101             }
102             //echo '<PRE>';print_R($_SESSION);
103             $this->jok("Logged out - user ");
104         }
105         // log it..
106         
107         //$_SESSION['Pman_I18N'] = array(); << 
108         session_regenerate_id(true);
109         session_commit();
110         
111         $this->jok("Logged out - no user");
112         
113     }
114     
115     function sendAuthUserDetails()
116     {
117         // remove for normal use - it's a secuirty hole!
118         //DB_DataObject::debugLevel(1);
119         if (!empty($_REQUEST['_debug'])) {
120            // DB_DataObject::debugLevel(1);
121         }
122         // 
123         $ff = HTML_FlexyFramework::get();
124         $tbl = empty($ff->Pman['authTable']) ? 'core_person' : $ff->Pman['authTable'];
125         
126         $u = DB_DataObject::factory($tbl);
127         if (!$u->isAuth()) {
128              
129             $this->jok(array('id' => 0)); // not logged in..
130             exit;
131         }
132         //die("got here?");
133         $au = $u->getAuthUser();
134         
135          // might occur on shared systems.
136         $ff= HTML_FlexyFramework::get();
137         
138         if (!empty($ff->Pman['auth_comptype'])  && $au->id > 0 &&
139                 ($ff->Pman['auth_comptype'] != $au->company()->comptype)) {
140             $au->logout();
141             $this->jerr("Login not permited to outside companies - please reload");
142         }
143         
144         //$au = $u->getAuthUser();
145         
146         $aur = $au ?  $au->authUserArray() : array();
147         
148         /** -- these need modulizing somehow! **/
149         
150         
151         
152         // basically calls Pman_MODULE_Login::sendAuthUserDetails($aur) on all the modules
153         //echo '<PRE>'; print_r($this->modules());
154         // technically each module should only add properties to an array named after that module..
155         
156         foreach($this->modules() as $m) {
157             if (empty($m)) {
158                 continue;
159             }
160             if (!file_exists($this->rootDir.'/Pman/'.$m.'/Login.php')) {
161                 continue;
162             }
163             $cls = 'Pman_'.$m.'_Login';
164             require_once 'Pman/'.$m.'/Login.php';
165             $x = new $cls;
166             $x->authUser = $au;
167             $aur = $x->sendAuthUserDetails($aur);
168         }
169         
170                  
171 //        
172 //        echo '<PRE>';print_r($aur);
173 //        exit;
174         $this->jok($aur);
175         exit;
176         
177             
178     }
179
180     
181     function switchUser($id)
182     {
183         $tbl = empty($ff->Pman['authTable']) ? 'core_person' : $ff->Pman['authTable'];
184         $u = DB_DataObject::factory($tbl);
185         if (!$u->isAuth()) {
186             $this->err("not logged in");
187         }
188         
189         $au = $u->getAuthUser();
190         
191         
192         // first check they have perms to do this..
193         if (!$au|| ($au->company()->comptype != 'OWNER') || !$this->hasPerm('Core.Person', 'E')) {
194             $this->jerr("User switching not permitted");
195         }
196         
197         
198         $u = DB_DataObject::factory($tbl);
199         $u->get($id);
200         if (!$u->active()) {
201             $this->jerr('Account disabled');
202         }
203         $u->login();
204             // we might need this later..
205         $this->addEvent("SWITCH USER", false, $au->name . ' TO ' . $u->name);
206         $this->jok("SWITCH");
207         
208     }
209     
210     function switchPublicUser($id)
211     {
212         $tbl = empty($ff->Pman['authTable']) ? 'core_person' : $ff->Pman['authTable'];
213         
214         $u = DB_DataObject::factory($tbl);
215         $u->get($id);
216         
217         if (!$u->active()) {
218             $this->jerr('Account disabled');
219         }
220         
221         if(!$u->loginPublic()){
222             $this->jerr('Switch fail');
223         }
224         
225         $this->jok('OK');
226     }
227     
228     var $domObj = false;
229     
230     function post($v)
231     {
232         //DB_DataObject::debugLevel(1);
233         
234         $this->ip_checking();
235         
236         if (!empty($_REQUEST['getAuthUser'])) {
237             $this->sendAuthUserDetails();
238             exit;
239         }
240         
241         if (!empty($_REQUEST['logout'])) {
242            return $this->logout();
243         }
244         
245         if (!empty($_REQUEST['passwordRequest'])) { //|| (strpos($_REQUEST['username'], '@') < 1)) {
246             
247             return $this->passwordRequest($_REQUEST['passwordRequest']);
248             
249         }
250         
251         if (!empty($_REQUEST['changePassword'])) {
252             return $this->changePassword($_REQUEST);
253         }
254         
255         // login attempt..
256         
257         $ff = HTML_FlexyFramework::get();
258         $tbl = empty($ff->Pman['authTable']) ? 'core_person' : $ff->Pman['authTable'];
259         
260        
261         $u = DB_DataObject::factory($tbl);
262         
263         
264         
265         // ratelimit
266         if (!empty($_SERVER['REMOTE_ADDR'])) {
267             //DB_DataObject::DebugLevel(1);
268             $e = DB_DataObject::Factory('Events');
269             $e->action = 'LOGIN-BAD';
270             $e->ipaddr = $_SERVER['REMOTE_ADDR'];
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 require 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(!empty($u->oath_key) && !$u->checkTwoFactorAuthentication(trim($_REQUEST['oath_password'],"\x10"))){
319             $this->jerror('LOGIN-BAD', 'You typed the wrong Username or Password  (3)');
320             exit;
321         }
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         print_R(strtotime('NOW'));exit;
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(strtotime($core_ip_access->expire_dt) > 0 && strtotime($core_ip_access->expire_dt) < strtotime('NOW')){
522             $this->jerr('PENDING-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     
544 }
545