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     
27     var $masterTemplate = 'login.html';
28     
29     function getAuth() // everyone allowed in here..
30     {
31         parent::getAuth(); // load company..
32         return true;
33         
34     }
35     /**
36      * Accepts:
37      * logout =
38      * 
39      * 
40      */
41     function get() 
42     {
43         
44         
45         
46         
47         if (!empty($_REQUEST['logout'])) {
48             $u = $this->getAuthUser();
49             //print_r($u);
50             if ($u) {
51                 
52                 $this->addEvent('LOGOUT');
53                 $e = DB_DataObject::factory('Events');
54               
55                 session_regenerate_id(true);
56                 $u->logout();
57             }
58             // log it..
59             
60             $_SESSION['Pman_I18N'] = array();
61             
62         }
63         
64         // general query...
65         if (!empty($_REQUEST['getAuthUser'])) {
66             //DB_Dataobject::debugLevel(5);
67             $this->sendAuthUserDetails();
68             exit;
69            
70         }
71         if (!empty($_REQUEST['username'])) {
72             $this->post();
73         }
74         if (!empty($_REQUEST['switch'])) {
75             $this->switchUser($_REQUEST['switch']);
76         }
77         
78         
79         $this->jerr("INVALID REQUEST");
80         exit;
81     }
82     
83     function sendAuthUserDetails()
84     {
85        // DB_DataObject::debugLevel(1);
86         $ff = HTML_FlexyFramework::get();
87         $tbl = empty($ff->Pman['authTable']) ? 'Person' : $ff->Pman['authTable'];
88         
89         $u = DB_DataObject::factory($tbl);
90         if (!$u->isAuth()) {
91             $this->jok(array('id' => 0)); // not logged in..
92             exit;
93         }
94         $au = $u->getAuthUser();
95         // might occur on shared systems.
96         $ff= HTML_FlexyFramework::get();
97         if (!empty($ff->Pman['auth_comptype']) && $ff->Pman['auth_comptype'] != $au->company()->comptype) {
98             $au->logout();
99             $this->jerr("Login not permited to outside companies - please reload");
100         }
101         
102         
103         $au = $u->getAuthUser();
104         
105         $aur = $au->authUserArray();
106          
107         /** -- these need modulizing somehow! **/
108         
109         
110         
111         // basically calls Pman_MODULE_Login::sendAuthUserDetails($aur) on all the modules
112         foreach($this->modules as $m) {
113             
114             if (!file_exists($this->rootDir.'/Pman/'.$m.'/Login.php')) {
115                 continue;
116             }
117             $cls = 'Pman_'.$m.'_Login';
118         }
119         
120                 
121         if ($this->hasModule('Fax')) {
122             // should check fax module???
123             $f = DB_DataObject::factory('Fax_Queue');
124             $aur['faxMax'] = $f->getMaxId();
125             $aur['faxNumPending'] = $f->getNumPending();
126         }
127         
128         if ($this->hasModule('Documents')) {
129         // inbox...
130             $d = DB_DataObject::factory('Documents_Tracking');
131             $d->person_id = $au->id;
132             //$d->status = 0; // unread
133             $d->whereAdd('date_read IS NULL');
134             $d->applyFilters(array('query'=> array('unread' => 1)), $au);
135             $aur['inbox_unread'] = $d->count();
136         }
137         
138         //echo '<PRE>';print_r($aur);
139         
140         $this->jok($aur);
141         exit;
142         
143             
144     }
145
146     
147     function switchUser($id)
148     {
149         $tbl = empty($ff->Pman['authTable']) ? 'Person' : $ff->Pman['authTable'];
150         $u = DB_DataObject::factory($tbl);
151         if (!$u->isAuth()) {
152             $this->err("not logged in");
153         }
154         
155         $au = $u->getAuthUser();
156         
157         
158         // first check they have perms to do this..
159         if (!$au|| ($au->company()->comptype != 'OWNER') || !$this->hasPerm('Core.Person', 'E')) {
160             $this->jerr("User switching not permitted");
161         }
162         
163         
164         $u = DB_DataObject::factory($tbl);
165         $u->get($id);
166         if (!$u->active()) {
167             $this->jerr('Account disabled');
168         }
169         $u->login();
170             // we might need this later..
171         $this->addEvent("SWITCH USER", false, $au->name . ' TO ' . $u->name);
172         $this->jok("SWITCH");
173         
174     }
175     
176     
177     var $domObj = false;
178     function post()
179     {
180         //DB_DataObject::debugLevel(1);
181         if (!empty($_REQUEST['getAuthUser'])) {
182             $this->sendAuthUserDetails();
183             exit;
184         }
185         
186         
187         if (!empty($_REQUEST['passwordRequest'])) { //|| (strpos($_REQUEST['username'], '@') < 1)) {
188             
189             return $this->passwordRequest($_REQUEST['passwordRequest']);
190             
191         }
192         
193         if (!empty($_REQUEST['changePassword'])) {
194             return $this->changePassword($_REQUEST);
195         }
196         
197         // login attempt..
198         
199         $ff = HTML_FlexyFramework::get();
200         $tbl = empty($ff->Pman['authTable']) ? 'Person' : $ff->Pman['authTable'];
201         
202        
203         $u = DB_DataObject::factory($tbl);
204         //$u->active = 1;
205         
206         
207         if (empty($_REQUEST['username'])) { //|| (strpos($_REQUEST['username'], '@') < 1)) {
208             $this->jerr('You typed the wrong Username or Password (0)');
209             exit;
210         }
211         
212         $u->authUserName($_REQUEST['username']);
213         
214         
215         if ($u->count() > 1 || !$u->find(true)) {
216             $this->jerr('You typed the wrong Username or Password  (1)');
217             exit;
218         }
219         
220         if (!$u->active()) {
221             $this->jerr('Account disabled');
222         }
223         
224         // check if config allows non-owner passwords.
225         // auth_company = "OWNER" // auth_company = "CLIENT" or blank for all?
226         // perhaps it should support arrays..
227         $ff= HTML_FlexyFramework::get();
228         if (!empty($ff->Pman['auth_comptype']) && $ff->Pman['auth_comptype'] != $u->company()->comptype) {
229             $this->jerr("Login not permited to outside companies");
230         }
231         
232         
233         
234         if ($u->checkPassword($_REQUEST['password'])) {
235             $u->login();
236             // we might need this later..
237             $this->addEvent("LOGIN", false, session_id());
238             if (!empty($_REQUEST['lang'])) {
239                 $u->lang($_REQUEST['lang']);
240             }
241              // log it..
242             
243             $this->sendAuthUserDetails();
244             exit;
245
246             //exit;
247         }
248         
249          
250         $this->jerr('You typed the wrong Username or Password  (2)'); // - " . htmlspecialchars(print_r($_POST,true))."'");
251         exit;
252     }
253     
254     function passwordRequest($n) 
255     {
256         $u = DB_DataObject::factory('Person');
257         //$u->company_id = $this->company->id;
258         
259         $u->whereAdd('LENGTH(passwd) > 1');
260         $u->email = $n;
261         $u->active = 1;
262         if ($u->count() > 1 || !$u->find(true)) {
263             $this->jerr('invalid User (1)');
264         }
265         // got a avlid user..
266         if (!strlen($u->passwd)) {
267             $this->jerr('invalid User (2)');
268         }
269         // check to see if we have sent a request before..
270         
271         if ($u->no_reset_sent > 3) {
272             $this->jerr('We have issued to many resets - please contact the Administrator');
273         }
274         $this->authFrom = time();
275         $this->authKey = $u->genPassKey($this->authFrom);
276         $this->authKey = md5($u->email . $this->authFrom . $u->passwd);
277         
278         $ret =  $u->sendTemplate('password_reset', $this);
279         if (is_object($ret)) {
280             $this->addEvent('SYSERR',false, $ret->getMessage());
281             $this->jerr($ret->getMessage());
282         }
283         $this->addEvent('PASSREQ',$u, $u->email);
284         $uu = clone($u);
285         $uu->no_reset_sent++;
286         $uu->update($u);
287         $this->jok("done");
288         
289         
290     }
291     function changePassword($r)
292     {
293         $au = $this->getAuthUser();
294         if ($au) {
295             $uu = clone($au);
296             $au->setPassword($r['passwd1']);
297             $au->update($uu);
298             $this->jok($au);
299         }
300         // not logged in -> need to validate 
301         if (empty($r['passwordReset'])) {
302             $this->jerr("invalid request");
303         }
304         // same code as reset pasword
305        
306         $bits = explode('/', $r['passwordReset']);
307         //print_R($bits);
308       
309         $res= $this->resetPassword(@$bits[0],@$bits[1],@$bits[2]);
310           
311         if ($res !== false) {
312             $this->jerr($res);
313         }
314         // key is correct.. let's change password...
315         
316         $u = DB_DataObject::factory('Person');
317         
318         //$u->company_id = $this->company->id;
319         $u->whereAdd('LENGTH(passwd) > 1');
320         $u->active = 1;
321         if (!$u->get($bits[0])) {
322            $this->jerr("invalid id"); // should not happen!!!!
323         }
324         $uu = clone($u);
325         $u->setPassword($r['passwd1']);
326         $u->update($uu);
327         $u->login();
328         
329         $this->jok($u);
330     }
331     
332     
333     
334 }
335