DataObjects/Person.php
[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     
261     function active()
262     {
263         return $this->active;
264     }
265     function authUserName($n) // set username prior to acheck user exists query.
266     {
267         
268         $this->whereAdd('LENGTH(passwd) > 1'); 
269         $this->email = $n;
270     }
271     function lang($val)
272     {
273         if ($val == $this->lang) {
274             return;
275         }
276         $uu = clone($u);
277         $this->lang = $val;
278         $this->update($uu);
279
280     }
281             
282     
283     function authUserArray()
284     {
285         
286         $aur = $this->toArray();
287         
288         
289         
290         //DB_DataObject::debugLevel(1);
291         $c = DB_Dataobject::factory('Companies');
292         $im = DB_Dataobject::factory('Images');
293         $c->joinAdd($im, 'LEFT');
294         $c->selectAdd();
295         $c->selectAs($c, 'company_id_%s');
296         $c->selectAs($im, 'company_id_logo_id_%s');
297         $c->id = $this->company_id;
298         $c->limit(1);
299         $c->find(true);
300         
301         $aur = array_merge( $c->toArray(),$aur);
302         
303         if (empty($c->company_id_logo_id_id))  {
304                  
305             $im = DB_Dataobject::factory('Images');
306             $im->ontable = 'Companies';
307             $im->onid = $c->id;
308             $im->imgtype = 'LOGO';
309             $im->limit(1);
310             $im->selectAs($im,  'company_id_logo_id_%s');
311             if ($im->find(true)) {
312                     
313                 foreach($im->toArray() as $k=>$v) {
314                     $aur[$k] = $v;
315                 }
316             }
317         }
318         
319         
320         $lang = empty($this->lang) ? 'en' : $this->lang;
321         if (empty($_SESSION['Pman_I18N'][$lang])) {
322             require_once 'Pman/I18N.php';
323             $x = new Pman_I18N();
324             $x->setSession($this);
325             
326         }
327         
328         $aur['i18n'] =$_SESSION['Pman_I18N'][$lang];
329         
330         // perms + groups.
331         $aur['perms']  = $this->getPerms();
332         $g = DB_DataObject::Factory('Group_Members');
333         $aur['groups']  = $g->listGroupMembership($this, 'name');
334         
335         $aur['passwd'] = '';
336         $aur['dailykey'] = '';
337         
338         
339         
340         return $aur;
341     }
342     
343     //   ----------PERMS------  ----------------
344     function getPerms() 
345     {
346          //DB_DataObject::debugLevel(1);
347         // find out all the groups they are a member of.. + Default..
348         $g = DB_DataObject::Factory('Group_Rights');
349         if (!$g->count()) {
350             $g->genDefault();
351         }
352         if ($this->id < 0) {
353             return $g->adminRights();
354         }
355         
356         $g = DB_DataObject::Factory('Group_Members');
357         $grps = $g->listGroupMembership($this);
358         $isAdmin = $g->inAdmin;
359        // var_dump($grps);
360         // the load all the perms for those groups, and add them all together..
361         // then load all those 
362         $g = DB_DataObject::Factory('Group_Rights');
363         $ret =  $g->listPermsFromGroupIds($grps, $isAdmin);
364        // echo '<PRE>';print_r($ret);
365         return $ret;
366          
367         
368     }
369     function hasPerm($name, $lvl) 
370     {
371         static $pcache = array();
372         
373         if (!isset($pcache[$this->id])) {
374             $pcache[$this->id] = $this->getPerms();
375         }
376        // echo "<PRE>";print_r($pcache[$au->id]);
377        // var_dump($pcache[$au->id]);
378         if (empty($pcache[$this->id][$name])) {
379             return false;
380         }
381         
382         return strpos($pcache[$this->id][$name], $lvl) > -1;
383         
384     }    
385     
386     //  ------------ROO HOOKS------------------------------------
387     function applyFilters($q, $au)
388     {
389         if (!empty($q['query']['person_not_internal'])) {
390             $this->whereAdd(" join_company_id_id.isOwner = 0 ");
391         }
392         if (!empty($q['query']['person_internal_only_all'])) {
393             // must be internal and not current user (need for distribution list)
394             $this->whereAdd(" join_company_id_id.isOwner = 1");
395             
396         }
397         // -- for distribution
398         if (!empty($q['query']['person_internal_only'])) {
399             // must be internal and not current user (need for distribution list)
400             $this->whereAdd(" join_company_id_id.isOwner = 1");
401             
402             //$this->whereAdd(($this->tableName() == 'Person' ? 'Person' : "join_person_id_id") .
403             //    ".id  != ".$au->id);
404             $this->whereAdd("Person.id != {$au->id}");
405         } 
406         // staff list..
407         if (!empty($q['query']['person_inactive'])) {
408            // DB_Dataobject::debugLevel(1);
409             $this->active = 1;
410         }
411         
412         ///---------------- Group views --------
413         if (!empty($q['query']['in_group'])) {
414             // DB_DataObject::debugLevel(1);
415             $ing = (int) $q['query']['in_group'];
416             if ($q['query']['in_group'] == -1) {
417                 // list all staff who are not in a group.
418                 $this->whereAdd("Person.id NOT IN (
419                     SELECT distinct(user_id) FROM Group_Members LEFT JOIN
420                         Groups ON Groups.id = Group_Members.group_id
421                         WHERE Groups.type = ".$q['query']['type']."
422                     )");
423                 
424                 
425             } else {
426                 
427                 $this->whereAdd("Person.id IN (
428                     SELECT distinct(user_id) FROM Group_Members 
429                         WHERE group_id = $ing
430                     )");
431                }
432             
433         }
434         
435         if (!empty($q['query']['not_in_directory'])) { 
436             // it's a Person list..
437             // DB_DATaobjecT::debugLevel(1);
438             
439             // specific to project directory which is single comp. login
440             //
441             $owncomp = DB_DataObject::Factory('Companies');
442             $owncomp->get('comptype', 'OWNER');
443             if ($q['company_id'] == $owncomp->id) {
444                 $this->active =1;
445             }
446             
447             
448             if ( $q['query']['not_in_directory'] > -1) {
449                 // can list current - so that it does not break!!!
450                 $x->whereAdd('Person.id NOT IN 
451                     ( SELECT distinct person_id FROM ProjectDirectory WHERE
452                         project_id = ' . $q['query']['not_in_directory'] . ' AND 
453                         company_id = ' . $this->company_id . ')');
454             }
455         }
456         
457         if (!empty($q['query']['search'])) {
458             $s = $this->escape($q['query']['search']);
459                     $this->whereAdd("
460                         Person.name LIKE '%$s%'  OR
461                         Person.email LIKE '%$s%'  OR
462                         Person.role LIKE '%$s%'  OR
463                         Person.remarks LIKE '%$s%' 
464                         
465                     ");
466         }
467         
468         //
469     }
470     function setFromRoo($ar, $roo)
471     {
472         $this->setFrom($ar);
473         if (!empty($ar['passwd1'])) {
474             $this->setPassword($ar['passwd1']);
475         }
476         
477         
478         if (    $this->id &&
479                 ($this->email == $roo->old->email)&&
480                 ($this->company_id == $roo->old->company_id)
481             ) {
482             return true;
483         }
484         $xx = DB_Dataobject::factory('Person');
485         $xx->setFrom(array(
486             'email' => $this->email,
487            // 'company_id' => $x->company_id
488         ));
489         
490         if ($xx->count()) {
491             return "Duplicate Email found";
492         }
493         return true;
494     }    
495     function checkPerm($lvl, $au, $changes=false) //heck who is trying to access this. false == access denied..
496     {
497          // determine if it's staff!!!
498          
499          
500         if ($au->company()->comptype != 'OWNER') {
501             
502             // - can not change company!!!
503             if ($changes && 
504                 isset($changes['company_id']) && 
505                 $changes['company_id'] != $au->company_id) {
506                 return false;
507             }
508             // can only set new emails..
509             if ($changes && 
510                     !empty($this->email) && 
511                     isset($changes['email']) && 
512                     $changes['email'] != $this->email) {
513                 return false;
514             }
515             
516             // edit self... - what about other staff members...
517             
518             return $this->company_id == $au->company_id;
519         }
520          
521          
522         // yes, only owner company can mess with this...
523         $owncomp = DB_DataObject::Factory('Companies');
524         $owncomp->get('comptype', 'OWNER');
525         
526         $isStaff = ($this->company_id ==  $owncomp->id);
527         
528     
529         switch ($lvl) {
530             // extra case change passwod?
531             case 'P': //??? password
532                 // standard perms -- for editing + if the user is dowing them selves..
533                 $ret = $isStaff ? $au->hasPerm("Core.Person", "E") : $au->hasPerm("Core.Staff", "E");
534                 return $ret || $au->id == $this->id;
535             
536             case 'S': // list..
537                 return $au->hasPerm("Core.Person", "S");
538             
539             case 'E': // edit
540                 return $isStaff ? $au->hasPerm("Core.Person", "E") : $au->hasPerm("Core.Staff", "E");
541             
542             case 'A': // add
543                 return $isStaff ? $au->hasPerm("Core.Person", "A") : $au->hasPerm("Core.Staff", "A");
544             
545             case 'D': // add
546                 return $isStaff ? $au->hasPerm("Core.Person", "D") : $au->hasPerm("Core.Staff", "D");
547         
548         }
549         return false;
550     }
551     function onInsert($req, $roo)  
552     {
553         
554         if ($roo->authUser->id < 0) {
555             $g = DB_DataObject::factory('Groups');
556             $g->type = 0;
557             $g->get('name', 'Administrators');
558             
559             $p = DB_DataObject::factory('Group_Members');
560             $p->group_id = $g->id;
561             $p->user_id = $this->id;     
562             if (!$p->count()) {
563                 $p->insert();
564                 $roo->addEvent("ADD", $p, $g->toEventString(). " Added " . $this->toEventString());
565             }
566             $this->login();
567         }
568         if (!empty($req['project_id_addto'])) {
569             $pd = DB_DataObject::factory('ProjectDirectory');
570             $pd->project_id = $req['project_id_addto'];
571             $pd->person_id = $this->id; 
572             $pd->ispm =0;
573             $pd->office_id = $this->office_id;
574             $pd->company_id = $this->company_id;
575             $pd->insert();
576         }
577         
578     }
579  }