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         }
116         
117                 
118         if ($this->hasModule('Fax')) {
119             // should check fax module???
120             $f = DB_DataObject::factory('Fax_Queue');
121             $aur['faxMax'] = $f->getMaxId();
122             $aur['faxNumPending'] = $f->getNumPending();
123         }
124         
125         if ($this->hasModule('Documents')) {
126         // inbox...
127             $d = DB_DataObject::factory('Documents_Tracking');
128             $d->person_id = $au->id;
129             //$d->status = 0; // unread
130             $d->whereAdd('date_read IS NULL');
131             $d->applyFilters(array('query'=> array('unread' => 1)), $au);
132             $aur['inbox_unread'] = $d->count();
133         }
134         
135         //echo '<PRE>';print_r($aur);
136         
137         $this->jok($aur);
138         exit;
139         
140             
141     }
142
143     
144     function switchUser($id)
145     {
146         $tbl = empty($ff->Pman['authTable']) ? 'Person' : $ff->Pman['authTable'];
147         $u = DB_DataObject::factory($tbl);
148         if (!$u->isAuth()) {
149             $this->err("not logged in");
150         }
151         
152         $au = $u->getAuthUser();
153         
154         
155         // first check they have perms to do this..
156         if (!$au|| ($au->company()->comptype != 'OWNER') || !$this->hasPerm('Core.Person', 'E')) {
157             $this->jerr("User switching not permitted");
158         }
159         
160         
161         $u = DB_DataObject::factory($tbl);
162         $u->get($id);
163         if (!$u->active()) {
164             $this->jerr('Account disabled');
165         }
166         $u->login();
167             // we might need this later..
168         $this->addEvent("SWITCH USER", false, $au->name . ' TO ' . $u->name);
169         $this->jok("SWITCH");
170         
171     }
172     
173     
174     var $domObj = false;
175     function post()
176     {
177         //DB_DataObject::debugLevel(1);
178         if (!empty($_REQUEST['getAuthUser'])) {
179             $this->sendAuthUserDetails();
180             exit;
181         }
182         
183         
184         if (!empty($_REQUEST['passwordRequest'])) { //|| (strpos($_REQUEST['username'], '@') < 1)) {
185             
186             return $this->passwordRequest($_REQUEST['passwordRequest']);
187             
188         }
189         
190         if (!empty($_REQUEST['changePassword'])) {
191             return $this->changePassword($_REQUEST);
192         }
193         
194         // login attempt..
195         
196         $ff = HTML_FlexyFramework::get();
197         $tbl = empty($ff->Pman['authTable']) ? 'Person' : $ff->Pman['authTable'];
198         
199        
200         $u = DB_DataObject::factory($tbl);
201         //$u->active = 1;
202         
203         
204         if (empty($_REQUEST['username'])) { //|| (strpos($_REQUEST['username'], '@') < 1)) {
205             $this->jerr('You typed the wrong Username or Password (0)');
206             exit;
207         }
208         
209         $u->authUserName($_REQUEST['username']);
210         
211         
212         if ($u->count() > 1 || !$u->find(true)) {
213             $this->jerr('You typed the wrong Username or Password  (1)');
214             exit;
215         }
216         
217         if (!$u->active()) {
218             $this->jerr('Account disabled');
219         }
220         
221         // check if config allows non-owner passwords.
222         // auth_company = "OWNER" // auth_company = "CLIENT" or blank for all?
223         // perhaps it should support arrays..
224         $ff= HTML_FlexyFramework::get();
225         if (!empty($ff->Pman['auth_comptype']) && $ff->Pman['auth_comptype'] != $u->company()->comptype) {
226             $this->jerr("Login not permited to outside companies");
227         }
228         
229         
230         
231         if ($u->checkPassword($_REQUEST['password'])) {
232             $u->login();
233             // we might need this later..
234             $this->addEvent("LOGIN", false, session_id());
235             if (!empty($_REQUEST['lang'])) {
236                 $u->lang($_REQUEST['lang']);
237             }
238              // log it..
239             
240             $this->sendAuthUserDetails();
241             exit;
242
243             //exit;
244         }
245         
246          
247         $this->jerr('You typed the wrong Username or Password  (2)'); // - " . htmlspecialchars(print_r($_POST,true))."'");
248         exit;
249     }
250     
251     function passwordRequest($n) 
252     {
253         $u = DB_DataObject::factory('Person');
254         //$u->company_id = $this->company->id;
255         
256         $u->whereAdd('LENGTH(passwd) > 1');
257         $u->email = $n;
258         $u->active = 1;
259         if ($u->count() > 1 || !$u->find(true)) {
260             $this->jerr('invalid User (1)');
261         }
262         // got a avlid user..
263         if (!strlen($u->passwd)) {
264             $this->jerr('invalid User (2)');
265         }
266         // check to see if we have sent a request before..
267         
268         if ($u->no_reset_sent > 3) {
269             $this->jerr('We have issued to many resets - please contact the Administrator');
270         }
271         $this->authFrom = time();
272         $this->authKey = $u->genPassKey($this->authFrom);
273         $this->authKey = md5($u->email . $this->authFrom . $u->passwd);
274         
275         $ret =  $u->sendTemplate('password_reset', $this);
276         if (is_object($ret)) {
277             $this->addEvent('SYSERR',false, $ret->getMessage());
278             $this->jerr($ret->getMessage());
279         }
280         $this->addEvent('PASSREQ',$u, $u->email);
281         $uu = clone($u);
282         $uu->no_reset_sent++;
283         $uu->update($u);
284         $this->jok("done");
285         
286         
287     }
288     function changePassword($r)
289     {
290         $au = $this->getAuthUser();
291         if ($au) {
292             $uu = clone($au);
293             $au->setPassword($r['passwd1']);
294             $au->update($uu);
295             $this->jok($au);
296         }
297         // not logged in -> need to validate 
298         if (empty($r['passwordReset'])) {
299             $this->jerr("invalid request");
300         }
301         // same code as reset pasword
302        
303         $bits = explode('/', $r['passwordReset']);
304         //print_R($bits);
305       
306         $res= $this->resetPassword(@$bits[0],@$bits[1],@$bits[2]);
307           
308         if ($res !== false) {
309             $this->jerr($res);
310         }
311         // key is correct.. let's change password...
312         
313         $u = DB_DataObject::factory('Person');
314         
315         //$u->company_id = $this->company->id;
316         $u->whereAdd('LENGTH(passwd) > 1');
317         $u->active = 1;
318         if (!$u->get($bits[0])) {
319            $this->jerr("invalid id"); // should not happen!!!!
320         }
321         $uu = clone($u);
322         $u->setPassword($r['passwd1']);
323         $u->update($uu);
324         $u->login();
325         
326         $this->jok($u);
327     }
328     
329     
330     
331 }
332