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