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