init
[Pman.Core] / DataObjects / Person.php
1 <?php
2 /**
3  * Table Definition for Person
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Person extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'Person';                          // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $office_id;                       // int(11)  
15     public $name;                            // string(128)  not_null
16     public $phone;                           // string(32)  not_null
17     public $fax;                             // string(32)  not_null
18     public $email;                           // string(128)  not_null
19     public $company_id;                      // int(11)  
20     public $role;                            // string(32)  not_null
21     public $active;                          // int(11)  
22     public $remarks;                         // blob(65535)  not_null blob
23     public $passwd;                          // string(64)  not_null
24     public $owner_id;                        // int(11)  not_null
25     public $lang;                            // string(8)  
26     public $no_reset_sent;                   // int(11)  
27     public $project_id;                      // int(11)  
28     public $action_type;                     // string(32)  
29
30     
31     /* the code above is auto generated do not remove the tag below */
32     ###END_AUTOCODE
33     
34     function sendTemplate($templateFile, $args)
35     {
36         
37         
38         
39         $content  = clone($this);
40         
41         foreach((array)$args as $k=>$v) {
42             $content->$k = $v;
43         }
44         
45         if (!in_array($templateFile, array(
46            // templates that can be sent without authentication.
47             'password_reset' ,
48             'password_welcome'
49             ))) {
50             $content->authUser = $this->getAuthUser();
51             if (!$content->authUser) {
52                 return PEAR::raiseError("Not authenticated");
53             }
54         }
55         
56         $content->HTTP_HOST = $_SERVER["HTTP_HOST"];
57         /* use the regex compiler, as it doesnt parse <tags */
58         require_once 'HTML/Template/Flexy.php';
59         $template = new HTML_Template_Flexy( array(
60                  'compiler'    => 'Regex',
61                  'filters' => array('SimpleTags','Mail'),
62             //     'debug'=>1,
63             ));
64         
65      
66          
67         
68         $template->compile("mail/$templateFile.txt");
69         
70         /* use variables from this object to ouput data. */
71         $mailtext = $template->bufferedOutputObject($content);
72         //echo "<PRE>";print_R($mailtext);
73         
74         /* With the output try and send an email, using a few tricks in Mail_MimeDecode. */
75         require_once 'Mail/mimeDecode.php';
76         require_once 'Mail.php';
77         
78         $decoder = new Mail_mimeDecode($mailtext);
79         $parts = $decoder->getSendArray();
80         if (PEAR::isError($parts)) {
81             return $parts;
82             //echo "PROBLEM: {$parts->message}";
83             //exit;
84         } 
85         list($recipents,$headers,$body) = $parts;
86         $recipents = array($this->email);
87         if (!empty($content->bcc) && is_array($content->bcc)) {
88             $recipents =array_merge($recipents, $content->bcc);
89         }
90         //print_r($recipents);exit;
91         $mailOptions = PEAR::getStaticProperty('Mail','options');
92         $mail = Mail::factory("SMTP",$mailOptions);
93         $headers['Date'] = date('r');
94         if (PEAR::isError($mail)) {
95             return $mail;
96         } 
97         $oe = error_reporting(E_ALL ^ E_NOTICE);
98         $ret = $mail->send($recipents,$headers,$body);
99         error_reporting($oe);
100        
101         return $ret;
102     
103     }
104     function getEmailFrom()
105     {
106         return '"' . addslashes($this->name) . '" <' . $this->email . '>';
107     }
108     function toEventString() 
109     {
110         return empty($this->name) ? $this->email : $this->name;
111     } 
112     function whereAddIn($key, $list, $type) {
113         $ar = array();
114         foreach($list as $k) {
115             $ar[] = $type =='int' ? (int)$k : $this->escape($k);
116         }
117         if (!$ar) {
118             return;
119         }
120         $this->whereAdd("$key IN (". implode(',', $ar). ')');
121     }
122     function fetchAll($k= false, $v = false) 
123     {
124         // should it even do this!!!?!?
125         if ($k !== false && 
126                 (   // only do this is we have not been explicit..
127                     empty($this->_query['data_select']) || 
128                     ($this->_query['data_select'] == '*')
129                 )
130             ) {
131             $this->selectAdd();
132             $this->selectAdd($k);
133             if ($v !== false) {
134                 $this->selectAdd($v);
135             }
136         }
137         
138         $this->find();
139         $ret = array();
140         while ($this->fetch()) {
141             if ($v !== false) {
142                 $ret[$this->$k] = $this->$v;
143                 continue;
144             }
145             $ret[] = $k === false ? clone($this) : $this->$k;
146         }
147         return $ret;
148          
149     }
150     //   ---------------- authentication / passwords and keys stuff  ----------------
151     function isAuth()
152     {
153         $db = $this->getDatabaseConnection();
154         $sesPrefix = $db->dsn['database'];
155         @session_start();
156         if (!empty($_SESSION[__CLASS__][$sesPrefix .'-auth'])) {
157             // in session...
158             $a = unserialize($_SESSION[__CLASS__][$sesPrefix .'-auth']);
159             $u = DB_DataObject::factory('Person');
160             if ($u->get($a->id)) { //&& strlen($u->passwd)) {
161                 return true;
162             }
163             $_SESSION[__CLASS__][$sesPrefix .'-auth'] = '';
164             
165         }
166         // not in session or not matched...
167         $u = DB_DataObject::factory('Person');
168         $u->whereAdd(' LENGTH(passwd) > 0');
169         $n = $u->count();
170         $error =  PEAR::getStaticProperty('DB_DataObject','lastError');
171         if ($error) {
172             die($error->toString()); // not really a good thing to do...
173         }
174         if (!$n){ // authenticated as there are no users in the system...
175             return true;
176         }
177         
178         return false;
179         
180     }
181     function getAuthUser()
182     {
183         if (!$this->isAuth()) {
184             return false;
185         }
186         $db = $this->getDatabaseConnection();
187         $sesPrefix = $db->dsn['database'];
188         if (!empty($_SESSION[__CLASS__][$sesPrefix .'-auth'])) {
189             $a = unserialize($_SESSION[__CLASS__][$sesPrefix .'-auth']);
190             
191             $u = DB_DataObject::factory('Person');
192             if ($u->get($a->id)) { /// && strlen($u->passwd)) {
193                 return clone($u);
194             }
195              
196         }
197         
198         $u = DB_DataObject::factory('Person');
199         $u->whereAdd(' LENGTH(passwd) > 0');
200         if (!$u->count()){
201             $u = DB_DataObject::factory('Person');
202             $u->id = -1;
203             return $u;
204             
205         }
206         return false;
207     }     
208     function login()
209     {
210         $this->isAuth(); // force session start..
211          $db = $this->getDatabaseConnection();
212         $sesPrefix = $db->dsn['database'];
213         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = serialize($this);
214         
215     }
216     function logout()
217     {
218         $this->isAuth(); // force session start..
219          $db = $this->getDatabaseConnection();
220         $sesPrefix = $db->dsn['database'];
221         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = "";
222         
223     }    
224     function genPassKey ($t) 
225     {
226         return md5($this->email . $t. $this->passwd);
227     }
228     function simpleAuthKey($m = 0)
229     {
230         $month = $m > -1 ? date('Y-m') : date('Y-m', strtotime('LAST MONTH'));
231         
232         return md5(implode(',' ,  array($month, $this->email , $this->passwd, $this->id)));
233     } 
234     function checkPassword($val)
235     {
236         if (substr($this->passwd,0,1) == '$') {
237             return crypt($val,$this->passwd) == $this->passwd ;
238         }
239         // old style md5 passwords...- cant be used with courier....
240         return md5($val) == $this->passwd;
241     }
242     function setPassword($value) 
243     {
244         $salt='';
245         while(strlen($salt)<9) {
246             $salt.=chr(rand(64,126));
247             //php -r var_dump(crypt('testpassword', '$1$'. (rand(64,126)). '$'));
248         }
249         $this->passwd = crypt($value, '$1$'. $salt. '$');
250        
251     }      
252     
253     function company()
254     {
255         $x = DB_DataObject::factory('Companies');
256         $x->get($this->company_id);
257         return $x;
258     }
259     
260     //   ----------PERMS------  ----------------
261     function getPerms() 
262     {
263          //DB_DataObject::debugLevel(1);
264         // find out all the groups they are a member of.. + Default..
265         $g = DB_DataObject::Factory('Group_Rights');
266         if (!$g->count()) {
267             $g->genDefault();
268         }
269         if ($this->id < 0) {
270             return $g->adminRights();
271         }
272         
273         $g = DB_DataObject::Factory('Group_Members');
274         $grps = $g->listGroupMembership($this);
275         $isAdmin = $g->inAdmin;
276        // var_dump($grps);
277         // the load all the perms for those groups, and add them all together..
278         // then load all those 
279         $g = DB_DataObject::Factory('Group_Rights');
280         $ret =  $g->listPermsFromGroupIds($grps, $isAdmin);
281        // echo '<PRE>';print_r($ret);
282         return $ret;
283          
284         
285     }
286     function hasPerm($name, $lvl) 
287     {
288         static $pcache = array();
289         
290         if (!isset($pcache[$this->id])) {
291             $pcache[$this->id] = $this->getPerms();
292         }
293        // echo "<PRE>";print_r($pcache[$au->id]);
294        // var_dump($pcache[$au->id]);
295         if (empty($pcache[$this->id][$name])) {
296             return false;
297         }
298         
299         return strpos($pcache[$this->id][$name], $lvl) > -1;
300         
301     }    
302     
303     //  ------------ROO HOOKS------------------------------------
304     function applyFilters($q, $au)
305     {
306         if (!empty($q['query']['person_not_internal'])) {
307             $this->whereAdd(" join_company_id_id.isOwner = 0 ");
308         }
309         if (!empty($q['query']['person_internal_only_all'])) {
310             // must be internal and not current user (need for distribution list)
311             $this->whereAdd(" join_company_id_id.isOwner = 1");
312             
313         }
314         // -- for distribution
315         if (!empty($q['query']['person_internal_only'])) {
316             // must be internal and not current user (need for distribution list)
317             $this->whereAdd(" join_company_id_id.isOwner = 1");
318             
319             //$this->whereAdd(($this->tableName() == 'Person' ? 'Person' : "join_person_id_id") .
320             //    ".id  != ".$au->id);
321             $this->whereAdd("Person.id != {$au->id}");
322         } 
323         // staff list..
324         if (!empty($q['query']['person_inactive'])) {
325            // DB_Dataobject::debugLevel(1);
326             $this->active = 1;
327         }
328         
329         ///---------------- Group views --------
330         if (!empty($q['query']['in_group'])) {
331             // DB_DataObject::debugLevel(1);
332             $ing = (int) $q['query']['in_group'];
333             if ($q['query']['in_group'] == -1) {
334                 // list all staff who are not in a group.
335                 $this->whereAdd("Person.id NOT IN (
336                     SELECT distinct(user_id) FROM Group_Members LEFT JOIN
337                         Groups ON Groups.id = Group_Members.group_id
338                         WHERE Groups.type = ".$q['query']['type']."
339                     )");
340                 
341                 
342             } else {
343                 
344                 $this->whereAdd("Person.id IN (
345                     SELECT distinct(user_id) FROM Group_Members 
346                         WHERE group_id = $ing
347                     )");
348                }
349             
350         }
351         
352         if (!empty($q['query']['not_in_directory'])) { 
353             // it's a Person list..
354             // DB_DATaobjecT::debugLevel(1);
355             
356             // specific to project directory which is single comp. login
357             //
358             $owncomp = DB_DataObject::Factory('Companies');
359             $owncomp->get('comptype', 'OWNER');
360             if ($q['company_id'] == $owncomp->id) {
361                 $this->active =1;
362             }
363             
364             
365             if ( $q['query']['not_in_directory'] > -1) {
366                 // can list current - so that it does not break!!!
367                 $x->whereAdd('Person.id NOT IN 
368                     ( SELECT distinct person_id FROM ProjectDirectory WHERE
369                         project_id = ' . $q['query']['not_in_directory'] . ' AND 
370                         company_id = ' . $this->company_id . ')');
371             }
372         }
373         
374         if (!empty($q['query']['search'])) {
375             $s = $this->escape($q['query']['search']);
376                     $this->whereAdd("
377                         Person.name LIKE '%$s%'  OR
378                         Person.email LIKE '%$s%'  OR
379                         Person.role LIKE '%$s%'  OR
380                         Person.remarks LIKE '%$s%' 
381                         
382                     ");
383         }
384         
385         //
386     }
387     function setFromRoo($ar, $roo)
388     {
389         $this->setFrom($ar);
390         if (!empty($ar['passwd1'])) {
391             $this->setPassword($ar['passwd1']);
392         }
393         
394         
395         if (    $this->id &&
396                 ($this->email == $roo->old->email)&&
397                 ($this->company_id == $roo->old->company_id)
398             ) {
399             return true;
400         }
401         $xx = DB_Dataobject::factory('Person');
402         $xx->setFrom(array(
403             'email' => $this->email,
404            // 'company_id' => $x->company_id
405         ));
406         
407         if ($xx->count()) {
408             return "Duplicate Email found";
409         }
410         return true;
411     }    
412     function checkPerm($lvl, $au, $changes=false) //heck who is trying to access this. false == access denied..
413     {
414          // determine if it's staff!!!
415          
416          
417         if ($au->company()->comptype != 'OWNER') {
418             
419             // - can not change company!!!
420             if ($changes && 
421                 isset($changes['company_id']) && 
422                 $changes['company_id'] != $au->company_id) {
423                 return false;
424             }
425             // can only set new emails..
426             if ($changes && 
427                     !empty($this->email) && 
428                     isset($changes['email']) && 
429                     $changes['email'] != $this->email) {
430                 return false;
431             }
432             
433             // edit self... - what about other staff members...
434             
435             return $this->company_id == $au->company_id;
436         }
437          
438          
439         // yes, only owner company can mess with this...
440         $owncomp = DB_DataObject::Factory('Companies');
441         $owncomp->get('comptype', 'OWNER');
442         
443         $isStaff = ($this->company_id ==  $owncomp->id);
444         
445     
446         switch ($lvl) {
447             // extra case change passwod?
448             case 'P': //??? password
449                 // standard perms -- for editing + if the user is dowing them selves..
450                 $ret = $isStaff ? $au->hasPerm("Core.Person", "E") : $au->hasPerm("Core.Staff", "E");
451                 return $ret || $au->id == $this->id;
452             
453             case 'S': // list..
454                 return $au->hasPerm("Core.Person", "S");
455             
456             case 'E': // edit
457                 return $isStaff ? $au->hasPerm("Core.Person", "E") : $au->hasPerm("Core.Staff", "E");
458             
459             case 'A': // add
460                 return $isStaff ? $au->hasPerm("Core.Person", "A") : $au->hasPerm("Core.Staff", "A");
461             
462             case 'D': // add
463                 return $isStaff ? $au->hasPerm("Core.Person", "D") : $au->hasPerm("Core.Staff", "D");
464         
465         }
466         return false;
467     }
468     function onInsert($req, $roo)  
469     {
470         
471         if ($roo->authUser->id < 0) {
472             $g = DB_DataObject::factory('Groups');
473             $g->type = 0;
474             $g->get('name', 'Administrators');
475             
476             $p = DB_DataObject::factory('Group_Members');
477             $p->group_id = $g->id;
478             $p->user_id = $this->id;     
479             if (!$p->count()) {
480                 $p->insert();
481                 $roo->addEvent("ADD", $p, $g->toEventString(). " Added " . $this->toEventString());
482             }
483             $this->login();
484         }
485         if (!empty($req['project_id_addto'])) {
486             $pd = DB_DataObject::factory('ProjectDirectory');
487             $pd->project_id = $req['project_id_addto'];
488             $pd->person_id = $this->id; 
489             $pd->ispm =0;
490             $pd->office_id = $this->office_id;
491             $pd->company_id = $this->company_id;
492             $pd->insert();
493         }
494         
495     }
496  }