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