0f131d24c26bdb80839baf1b201a723a67fd26b0
[Pman.Core] / DataObjects / Core_person.php
1 <?php
2 /**
3  * Table Definition for Person
4  */
5 class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php';
6
7
8 class Pman_Core_DataObjects_Core_person extends DB_DataObject 
9 {
10     ###START_AUTOCODE
11     /* the code below is auto generated do not remove the above tag */
12
13     public $__table = 'core_person';                          // table name
14     public $id;                              // int(11)  not_null primary_key auto_increment
15     public $email;                           // string(128)  not_null
16     public $alt_email;
17     
18     public $company_id;                      // int(11)  
19     public $office_id;                       // int(11)  
20     public $name;                            // string(128)  not_null
21     public $firstname;                            // string(128)  not_null
22     public $lastname;                            // string(128)  not_null
23     public $phone;                           // string(32)  not_null
24     public $fax;                             // string(32)  not_null
25     
26     public $role;                            // string(32)  not_null
27     public $remarks;                         // blob(65535)  not_null blob
28     public $passwd;                          // string(64)  not_null
29     public $owner_id;                        // int(11)  not_null
30     public $lang;                            // string(8)  
31     public $no_reset_sent;                   // int(11)  
32     public $action_type;                     // string(32)  
33     public $project_id;                      // int(11)
34
35     
36     public $active;                          // int(11)  not_null
37     public $deleted_by;                      // int(11)  not_null
38     public $deleted_dt;                      // datetime(19)  binary
39
40
41     public $name_facebook; // VARCHAR(128) NULL;
42     public $url_blog; // VARCHAR(256) NULL ;
43     public $url_twitter; // VARCHAR(256) NULL ;
44     public $url_linkedin; // VARCHAR(256) NULL ;
45     public $linkedin_id; // VARCHAR(256) NULL ;
46     
47     public $phone_mobile; // varchar(32)  NOT NULL  DEFAULT '';
48     public $phone_direct; // varchar(32)  NOT NULL  DEFAULT '';
49     public $countries; // VARCHAR(128) NULL;
50     
51     /* the code above is auto generated do not remove the tag below */
52     ###END_AUTOCODE
53     
54     function owner()
55     {
56         $p = DB_DataObject::Factory($this->tableName());
57         $p->get($this->owner_id);
58         return $p;
59     }
60     
61     /**
62      *
63      *
64      *
65      *
66      *  FIXME !!!! -- USE Pman_Core_Mailer !!!!!
67      *
68      *
69      *
70      *  
71      */
72     function buildMail($templateFile, $args)
73     {
74           
75         $args = (array) $args;
76         $content  = clone($this);
77         
78         foreach((array)$args as $k=>$v) {
79             $content->$k = $v;
80         }
81         
82         $ff = HTML_FlexyFramework::get();
83         
84         
85         //?? is this really the place for this???
86         if (
87                 !$ff->cli && 
88                 empty($args['no_auth']) &&
89                 !in_array($templateFile, array(
90                     // templates that can be sent without authentication.
91                      'password_reset' ,
92                      'password_welcome'
93                  ))
94             ) {
95             
96             $content->authUser = $this->getAuthUser();
97             if (!$content->authUser) {
98                 return PEAR::raiseError("Not authenticated");
99             }
100         }
101         
102         // should handle x-forwarded...
103         
104         $content->HTTP_HOST = isset($_SERVER["HTTP_HOST"]) ?
105             $_SERVER["HTTP_HOST"] :
106             (isset($ff->HTTP_HOST) ? $ff->HTTP_HOST : 'localhost');
107             
108         /* use the regex compiler, as it doesnt parse <tags */
109         
110         $tops = array(
111             'compiler'    => 'Flexy',
112             'nonHTML' => true,
113             'filters' => array('SimpleTags','Mail'),
114             //     'debug'=>1,
115         );
116         
117         
118         
119         if (!empty($args['templateDir'])) {
120             $tops['templateDir'] = $args['templateDir'];
121         }
122         
123         
124         
125         require_once 'HTML/Template/Flexy.php';
126         $template = new HTML_Template_Flexy( $tops );
127         $template->compile("mail/$templateFile.txt");
128         
129         /* use variables from this object to ouput data. */
130         $mailtext = $template->bufferedOutputObject($content);
131         
132         $htmlbody = false;
133         // if a html file with the same name exists, use that as the body
134         // I've no idea where this code went, it was here before..
135         if (false !== $template->resolvePath ( "mail/$templateFile.html" )) {
136             $tops['nonHTML'] = false;
137             $template = new HTML_Template_Flexy( $tops );
138             $template->compile("mail/$templateFile.html");
139             $htmlbody = $template->bufferedOutputObject($content);
140             
141         }
142         
143         
144         
145         //echo "<PRE>";print_R($mailtext);
146         //print_R($mailtext);exit;
147         /* With the output try and send an email, using a few tricks in Mail_MimeDecode. */
148         require_once 'Mail/mimeDecode.php';
149         require_once 'Mail.php';
150         
151         $decoder = new Mail_mimeDecode($mailtext);
152         $parts = $decoder->getSendArray();
153         
154         if (is_a($parts,'PEAR_Error')) {
155             return $parts;
156             //echo "PROBLEM: {$parts->message}";
157             //exit;
158         } 
159         list($recipents,$headers,$body) = $parts;
160         $recipents = array($this->email);
161         if (!empty($content->bcc) && is_array($content->bcc)) {
162             $recipents =array_merge($recipents, $content->bcc);
163         }
164         $headers['Date'] = date('r');
165         
166         if ($htmlbody !== false) {
167             require_once 'Mail/mime.php';
168             $mime = new Mail_mime(array('eol' => "\n"));
169             $mime->setTXTBody($body);
170             $mime->setHTMLBody($htmlbody);
171             // I think there might be code in mediaoutreach toEmail somewhere
172             // h embeds images here..
173             $body = $mime->get();
174             $headers = $mime->headers($headers);
175             
176         }
177         
178          
179         
180         return array(
181             'recipients' => $recipents,
182             'headers'    => $headers,
183             'body'      => $body
184         );
185         
186         
187     }
188     
189     
190     /**
191      * send a template
192      * - user must be authenticate or args[no_auth] = true
193      *   or template = password_[reset|welcome]
194      * 
195      */
196     function sendTemplate($templateFile, $args)
197     {
198         
199         $ar = $this->buildMail($templateFile, $args);
200       
201         
202         //print_r($recipents);exit;
203         $mailOptions = PEAR::getStaticProperty('Mail','options');
204         $mail = Mail::factory("SMTP",$mailOptions);
205         
206         if (PEAR::isError($mail)) {
207             return $mail;
208         } 
209         $oe = error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);
210         $ret = $mail->send($ar['recipients'],$ar['headers'],$ar['body']);
211         error_reporting($oe);
212        
213         return $ret;
214     
215     }
216     
217   
218     
219     
220     function getEmailFrom()
221     {
222         if (empty($this->name)) {
223             return $this->email;
224         }
225         return '"' . addslashes($this->name) . '" <' . $this->email . '>';
226     }
227     
228     function toEventString() 
229     {
230         return empty($this->name) ? $this->email : $this->name;
231     } 
232     
233     function verifyAuth()
234     { 
235         $ff= HTML_FlexyFramework::get();
236         if (!empty($ff->Pman['auth_comptype']) &&
237             (!$this->company_id || ($ff->Pman['auth_comptype'] != $this->company()->comptype))
238            ){
239             
240             $sesPrefix = $this->sesPrefix();
241        
242             $_SESSION[get_class($this)][$sesPrefix .'-auth'] = "";
243             
244             return false;
245             
246             //$ff->page->jerr("Login not permited to outside companies");
247         }
248         return true;
249         
250     }    
251    
252    
253     //   ---------------- authentication / passwords and keys stuff  ----------------
254     function isAuth()
255     {
256         
257         @session_start();
258        
259         $ff= HTML_FlexyFramework::get();
260        
261         $sesPrefix = $this->sesPrefix();
262         
263         if (!empty($_SESSION[get_class($this)][$sesPrefix .'-auth'])) {
264             // in session...
265             $a = unserialize($_SESSION[get_class($this)][$sesPrefix .'-auth']);
266              
267             $u = DB_DataObject::factory($this->tableName());
268             if ($a->id && $u->get($a->id)) { //&& strlen($u->passwd)) {
269               
270                 return $u->verifyAuth();  // got authentication...
271                 
272     
273             }
274             
275             unset($_SESSION[get_class($this)][$sesPrefix .'-auth']);
276             unset($_SESSION[get_class($this)][$sesPrefix .'-timeout']);
277             setcookie('Pman.timeout', -1, time() + (30*60), '/');
278             
279         }
280         
281         // http basic auth..
282         $u = DB_DataObject::factory($this->tableName());
283         
284         if (!empty($_SERVER['PHP_AUTH_USER']) 
285             &&
286             !empty($_SERVER['PHP_AUTH_PW'])
287             &&
288             $u->get('email', $_SERVER['PHP_AUTH_USER'])
289             &&
290             $u->checkPassword($_SERVER['PHP_AUTH_PW'])
291            ) {
292             $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize($u);
293             return true; 
294         }
295         //die("test init");
296         if (!$this->canInitializeSystem()) {
297           //  die("can not init");
298             return false;
299         }
300         
301         
302         // local auth - 
303         $default_admin = false;
304         if (!empty($ff->Pman['local_autoauth']) && 
305             ($ff->Pman['local_autoauth'] === true) &&
306             (!empty($_SERVER['SERVER_ADDR'])) &&
307             (
308                 (
309                     $_SERVER['SERVER_ADDR'] == '127.0.0.1' &&
310                     $_SERVER['REMOTE_ADDR'] == '127.0.0.1'
311                 )
312                 ||
313                 (
314                     $_SERVER['SERVER_ADDR'] == '127.0.0.1' &&
315                     $_SERVER['REMOTE_ADDR'] == '127.0.0.1'
316                 )   
317             )
318         ) {
319             $group = DB_DataObject::factory('core_group');
320             $group->get('name', 'Administrators');
321             
322             $member = DB_DataObject::factory('core_group_member');
323             $member->autoJoin();
324             $member->group_id = $group->id;
325             $member->whereAdd("
326                 join_user_id_id.id IS NOT NULL
327             ");
328             if($member->find(true)){
329                 $default_admin = DB_DataObject::factory($this->tableName());
330                 if(!$default_admin->get($member->user_id)){
331                     $default_admin = false;
332                 }
333             }
334         }
335         
336         //var_dump($ff->Pman['local_autoauth']);         var_dump($_SERVER); exit;
337         $u = DB_DataObject::factory($this->tableName());
338         $ff = HTML_FlexyFramework::get();
339         
340         if (!empty($ff->Pman['local_autoauth']) && 
341             (!empty($_SERVER['SERVER_ADDR'])) &&
342             ($_SERVER['SERVER_ADDR'] == '127.0.0.1') &&
343             ($_SERVER['REMOTE_ADDR'] == '127.0.0.1')  &&
344             ($default_admin ||  $u->get('email', $ff->Pman['local_autoauth']))
345         ) {
346             $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize($default_admin ? $default_admin : $u);
347             return true;
348         }
349         
350         //var_dump(session_id());
351         //var_dump($_SESSION[__CLASS__]);
352         
353         //if (!empty(   $_SESSION[__CLASS__][$sesPrefix .'-empty'] )) {
354         //    return false;
355         //}
356         //die("got this far?");
357         // not in session or not matched...
358         $u = DB_DataObject::factory($this->tableName());
359         $u->whereAdd(' LENGTH(passwd) > 0');
360         $n = $u->count();
361         $_SESSION[get_class($this)][$sesPrefix .'-empty']  = $n;
362         if (class_exists('PEAR')) {
363             $error =  PEAR::getStaticProperty('DB_DataObject','lastError');
364             if ($error) {
365                 die($error->toString()); // not really a good thing to do...
366             }
367         }
368         if (!$n){ // authenticated as there are no users in the system...
369             return true;
370         }
371         
372         return false;
373         
374     }
375     
376     function canInitializeSystem()
377     {
378         
379         return !strcasecmp(get_class($this) , __CLASS__);
380     }
381     
382     function getAuthUser()
383     {
384         if (!$this->isAuth()) {
385             return false;
386         }
387         
388         $ff= HTML_FlexyFramework::get();
389         
390         $sesPrefix = $this->sesPrefix();
391         
392         //var_dump(array(get_class($this),$sesPrefix .'-auth'));
393        
394         if (!empty($_SESSION[get_class($this)][$sesPrefix .'-auth'])) {
395             $a = unserialize($_SESSION[get_class($this)][$sesPrefix .'-auth']);
396             
397             $u = DB_DataObject::factory($this->tableName()); // allow extending this ...
398             $u->autoJoin();
399             if ($u->get($a->id)) { /// && strlen($u->passwd)) {  // should work out the pid .. really..
400                 
401                 $_SESSION[get_class($this)][$sesPrefix .'-auth-timeout'] = time() + (30*60); // eg. 30 minutes
402                 setcookie('Pman.timeout', time() + (30*60), time() + (30*60), '/');
403                 
404                 $user = clone ($u);
405                 return clone($user);
406             
407             }
408             unset($_SESSION[get_class($this)][$sesPrefix .'-auth']);
409             unset($_SESSION[get_class($this)][$sesPrefix .'-timeout']);
410             setcookie('Pman.timeout', -1, time() + (30*60), '/');
411             
412         }
413         
414         
415         
416         if (!$this->canInitializeSystem()) {
417             return false;
418         }
419         
420         
421         
422         if (empty(   $_SESSION[get_class($this)][$sesPrefix .'-empty'] )) {
423             $u = DB_DataObject::factory($this->tableName());
424             $u->whereAdd(' LENGTH(passwd) > 0');
425             $_SESSION[get_class($this)][$sesPrefix .'-empty']  = $u->count();
426         }
427                 
428              
429         if (isset(   $_SESSION[get_class($this)][$sesPrefix .'-empty'] ) && $_SESSION[get_class($this)][$sesPrefix .'-empty']  < 1) {
430             
431             // fake person - open system..
432             //$ce = DB_DataObject::factory('core_enum');
433             //$ce->initEnums();
434             
435             
436             $u = DB_DataObject::factory($this->tableName());
437             $u->id = -1;
438             
439             // if a company has been created fill that in in company_id_id
440             $c = DB_DAtaObject::factory('core_company')->lookupOwner();
441             if ($c) {
442                 $u->company_id_id = $c->pid();
443                 $u->company_id = $c->pid();
444             }
445             
446             return $u;
447             
448         }
449         return false;
450     }     
451     function login()
452     {
453         $this->isAuth(); // force session start..
454         if (!$this->verifyAuth()) { // check for company valid..
455             return false;
456         }
457         
458         // open up iptables at login..
459         $dbname = $this->databaseNickname();
460         touch( '/tmp/run_pman_admin_iptables-'.$dbname);
461          
462         // refresh admin group if we are logged in as one..
463         //DB_DataObject::debugLevel(1);
464         $g = DB_DataObject::factory('core_group');
465         $g->type = 0;
466         $g->get('name', 'Administrators');
467         $gm = DB_DataObject::Factory('core_group_member');
468         if (in_array($g->id,$gm->listGroupMembership($this))) {
469             // refresh admin groups.
470             $gr = DB_DataObject::Factory('core_group_right');
471             $gr->applyDefs($g, 0);
472         }
473         
474         $sesPrefix = $this->sesPrefix();
475         
476         // we should not store the whole data in the session - otherwise it get's huge.
477         $p = DB_DAtaObject::Factory($this->tableName());
478         $p->get($this->pid());
479         
480         $d = $p->toArray();
481         
482         $_SESSION[get_class($this)][$sesPrefix .'-auth-timeout'] = time() + (30*60); // eg. 30 minutes
483         setcookie('Pman.timeout', time() + (30*60), time() + (30*60), '/');
484         
485         //var_dump(array(get_class($this),$sesPrefix .'-auth'));
486         $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize((object)$d);
487         // ensure it's written so that ajax calls can fetch it..
488         
489         
490         
491     }
492     function logout()
493     {
494         $this->isAuth(); // force session start..
495         
496         $sesPrefix = $this->sesPrefix();
497         
498         $_SESSION[get_class($this)][$sesPrefix .'-auth-timeout'] = -1;
499         
500         $_SESSION[get_class($this)][$sesPrefix .'-auth'] = "";
501         
502     }    
503     function genPassKey ($t) 
504     {
505         return md5($this->email . $t. $this->passwd);
506     }
507     function simpleAuthKey($m = 0)
508     {
509         $month = $m > -1 ? date('Y-m') : date('Y-m', strtotime('LAST MONTH'));
510         
511         return md5(implode(',' ,  array($month, $this->email , $this->passwd, $this->id)));
512     } 
513     function checkPassword($val)
514     {
515         
516         
517         if (substr($this->passwd,0,1) == '$') {
518             if (function_exists('pasword_verify')) {
519                 return password_verify($val, $this->passwd);
520             }
521             return crypt($val,$this->passwd) == $this->passwd ;
522         }
523         // old style md5 passwords...- cant be used with courier....
524         return md5($val) == $this->passwd;
525     }
526     
527     function setPassword($value) 
528     {
529         if (function_exists('pasword_hash')) {
530             return password_hash($value);
531         }
532         
533         $salt='';
534         while(strlen($salt)<9) {
535             $salt.=chr(rand(64,126));
536             //php -r var_dump(crypt('testpassword', '$1$'. (rand(64,126)). '$'));
537         }
538         $this->passwd = crypt($value, '$1$'. $salt. '$');
539        
540        
541     }      
542     
543     function generatePassword($length = 5) // genearte a password (add set 'rawPasswd' to it's value)
544     {
545         require_once 'Text/Password.php';
546         $this->rawPasswd = strtr(ucfirst(Text_Password::create($length)).ucfirst(Text_Password::create($length)), array(
547         "a"=>"4", "e"=>"3",  "i"=>"1",  "o"=>"0", "s"=>"5",  "t"=>"7"));
548         $this->setPassword($this->rawPasswd);
549         return $this->rawPasswd;
550     }
551     
552     function company()
553     {
554         $x = DB_DataObject::factory('core_company');
555         $x->autoJoin();
556         $x->get($this->company_id);
557         return $x;
558     }
559     function loadCompany()
560     {
561         $this->company = $this->company();
562     }
563     
564     function active()
565     { 
566         return $this->active;
567     }
568     function authUserName($n) // set username prior to acheck user exists query.
569     {
570         
571         $this->whereAdd('LENGTH(passwd) > 1'); 
572         $this->email = $n;
573     }
574     function lang()
575     {
576         if (!func_num_args()) {
577             return $this->lang;
578         }
579         $val = array_shift(func_get_args());
580         if ($val == $this->lang) {
581             return;
582         }
583         $uu = clone($this);
584         $this->lang = $val;
585         $this->update($uu);
586         return $this->lang;
587     }
588             
589     
590     function authUserArray()
591     {
592         
593         $aur = $this->toArray();
594         
595         if ($this->id < 1) {
596             return $aur;
597         }
598         
599         
600         //DB_DataObject::debugLevel(1);
601         $c = DB_Dataobject::factory('core_company');
602         $im = DB_Dataobject::factory('Images');
603         $c->joinAdd($im, 'LEFT');
604         $c->selectAdd();
605         $c->selectAs($c, 'company_id_%s');
606         $c->selectAs($im, 'company_id_logo_id_%s');
607         $c->id = $this->company_id;
608         $c->limit(1);
609         $c->find(true);
610         
611         $aur = array_merge( $c->toArray(),$aur);
612         
613         if (empty($c->company_id_logo_id_id))  {
614                  
615             $im = DB_Dataobject::factory('Images');
616             $im->ontable = DB_DataObject::factory('core_company')->tableName();
617             $im->onid = $c->id;
618             $im->imgtype = 'LOGO';
619             $im->limit(1);
620             $im->selectAdd();
621             $im->selectAs($im,  'company_id_logo_id_%s');
622             if ($im->find(true)) {
623                     
624                 foreach($im->toArray() as $k=>$v) {
625                     $aur[$k] = $v;
626                 }
627             }
628         }
629       
630         // perms + groups.
631         $aur['perms']  = $this->getPerms();
632         $g = DB_DataObject::Factory('core_group_member');
633         $aur['groups']  = $g->listGroupMembership($this, 'name');
634         
635         $aur['passwd'] = '';
636         $aur['dailykey'] = '';
637         
638         
639         
640         return $aur;
641     }
642     
643     //   ----------PERMS------  ----------------
644     function getPerms() 
645     {
646          //DB_DataObject::debugLevel(1);
647         // find out all the groups they are a member of.. + Default..
648         
649         // ------ INIITIALIZE IF NO GROUPS ARE SET UP.
650         
651         $g = DB_DataObject::Factory('core_group_right');
652         if (!$g->count()) {
653             $g->genDefault();
654         }
655         
656         if ($this->id < 0) {
657             return $g->adminRights(); // system is not set up - so they get full rights.
658         }
659         //DB_DataObject::debugLevel(1);
660         $g = DB_DataObject::Factory('core_group_member');
661         $g->whereAdd('group_id is NOT NULL AND user_id IS NOT NULL');
662         if (!$g->count()) {
663             // add the current user to the admin group..
664             $g = DB_DataObject::Factory('core_group');
665             if ($g->get('name', 'Administrators')) {
666                 $gm = DB_DataObject::Factory('core_group_member');
667                 $gm->group_id = $g->id;
668                 $gm->user_id = $this->id;
669                 $gm->insert();
670             }
671             
672         }
673         
674         // ------ STANDARD PERMISSION HANDLING.
675         $isOwner = $this->company()->comptype == 'OWNER';
676         $g = DB_DataObject::Factory('core_group_member');
677         $grps = $g->listGroupMembership($this);
678        //var_dump($grps);
679         $isAdmin = $g->inAdmin;   //???  what???
680         //echo '<PRE>'; print_r($grps);var_dump($isAdmin);
681         // the load all the perms for those groups, and add them all together..
682         // then load all those 
683         $g = DB_DataObject::Factory('core_group_right');
684         $ret =  $g->listPermsFromGroupIds($grps, $isAdmin, $isOwner);
685         //echo '<PRE>';print_r($ret);
686         return $ret;
687          
688         
689     }
690     /**
691      *Basic group fetching - probably needs to filter by type eventually.
692      *
693      *@param String $what - fetchall() argument - eg. 'name' returns names of all groups that they are members of.
694      */
695     
696     function groups($what=false)
697     {
698         $g = DB_DataObject::Factory('core_group_member');
699         $grps = $g->listGroupMembership($this);
700         $g = DB_DataObject::Factory('core_group');
701         $g->whereAddIn('id', $grps, 'int');
702         return $g->fetchAll($what);
703         
704     }
705     
706     
707     
708     function hasPerm($name, $lvl) 
709     {
710         static $pcache = array();
711         
712         if (!isset($pcache[$this->id])) {
713             $pcache[$this->id] = $this->getPerms();
714         }
715         
716        // echo "<PRE>";print_r($pcache[$au->id]);
717        // var_dump($pcache[$au->id]);
718         if (empty($pcache[$this->id][$name])) {
719             return false;
720         }
721         
722         return strpos($pcache[$this->id][$name], $lvl) > -1;
723         
724     }    
725     
726     //  ------------ROO HOOKS------------------------------------
727     function applyFilters($q, $au, $roo)
728     {
729         //DB_DataObject::DebugLevel(1);
730         
731         if (!empty($q['query']['is_owner'])) {
732             $this->whereAdd(" join_company_id_id.comptype = 'OWNER'");
733         }
734         
735         if (!empty($q['query']['person_not_internal'])) {
736             $this->whereAdd(" join_company_id_id.isOwner = 0 ");
737         }
738         
739         if (!empty($q['query']['person_internal_only_all'])) {
740             
741             
742             // must be internal and not current user (need for distribution list)
743             // user has a projectdirectory entry and role is not blank.
744             //DB_DataObject::DebugLevel(1);
745             $pd = DB_DataObject::factory('ProjectDirectory');
746             $pd->whereAdd("role != ''");
747             $pd->selectAdd();
748             $pd->selectAdd('distinct(person_id) as person_id');
749             $roled = $pd->fetchAll('person_id');
750             $rs = $roled  ? "  OR
751                     {$this->tableName()}.id IN (".implode(',', $roled) . ") 
752                     " : '';
753             $this->whereAdd(" join_company_id_id.comptype = 'OWNER' $rs ");
754             
755         }
756         // -- for distribution
757         if (!empty($q['query']['person_internal_only'])) {
758             // must be internal and not current user (need for distribution list)
759             $this->whereAdd(" join_company_id_id.comptype = 'OWNER'");
760             
761             //$this->whereAdd(($this->tableName() == 'Person' ? 'Person' : "join_person_id_id") .
762             //    ".id  != ".$au->id);
763             $this->whereAdd("{$this->tableName()}.id != {$au->id}");
764         } 
765         
766         if (!empty($q['query']['comptype_or_company_id'])) {
767            // DB_DataObject::debugLevel(1);
768             $bits = explode(',', $q['query']['comptype_or_company_id']);
769             $id = (int) array_pop($bits);
770             $ct = $this->escape($bits[0]);
771             
772             $this->whereAdd(" join_company_id_id.comptype = '$ct' OR {$this->tableName()}.company_id = $id");
773             
774         }
775         
776         
777         // staff list..
778         if (!empty($q['query']['person_inactive'])) {
779            // DB_Dataobject::debugLevel(1);
780             $this->active = 1;
781         }
782         $tn_p = $this->tableName();
783         $tn_gm = DB_DataObject::Factory('core_group_member')->tableName();
784         $tn_g = DB_DataObject::Factory('core_group')->tableName();
785
786         ///---------------- Group views --------
787         if (!empty($q['query']['in_group'])) {
788             // DB_DataObject::debugLevel(1);
789             $ing = (int) $q['query']['in_group'];
790             if ($q['query']['in_group'] == -1) {
791              
792                 // list all staff who are not in a group.
793                 $this->whereAdd("{$this->tableName()}.id NOT IN (
794                     SELECT distinct(user_id) FROM $tn_gm LEFT JOIN
795                         $tn_g ON $tn_g.id = $tn_gm.group_id
796                         WHERE $tn_g.type = ".$q['query']['type']."
797                     )");
798                 
799                 
800             } else {
801                 
802                 $this->whereAdd("$tn_p.id IN (
803                     SELECT distinct(user_id) FROM $tn_gm
804                         WHERE group_id = $ing
805                     )");
806                }
807             
808         }
809         
810         // #2307 Search Country!!
811         if (!empty($q['query']['in_country'])) {
812             // DB_DataObject::debugLevel(1);
813             $inc = $q['query']['in_country'];
814             $this->whereAdd("$tn_p.countries LIKE '%{$inc}%'");
815         }
816         
817         if (!empty($q['query']['not_in_directory'])) { 
818             // it's a Person list..
819             // DB_DATaobjecT::debugLevel(1);
820             
821             // specific to project directory which is single comp. login
822             //
823             $owncomp = DB_DataObject::Factory('core_company');
824             $owncomp->get('comptype', 'OWNER');
825             if ($q['company_id'] == $owncomp->id) {
826                 $this->active =1;
827             }
828             
829             
830
831             if ( $q['query']['not_in_directory'] > -1) {
832                 $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
833                 // can list current - so that it does not break!!!
834                 $this->whereAdd("$tn_p.id NOT IN 
835                     ( SELECT distinct person_id FROM $tn_pd WHERE
836                         project_id = " . $q['query']['not_in_directory'] . " AND 
837                         company_id = " . $this->company_id . ')');
838             }
839         }
840            
841         if (!empty($q['query']['role'])) { 
842             // it's a Person list..
843             // DB_DATaobjecT::debugLevel(1);
844             
845             // specific to project directory which is single comp. login
846             //
847             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
848                 // can list current - so that it does not break!!!
849             $this->whereAdd("$tn_p.id IN 
850                     ( SELECT distinct person_id FROM $tn_pd WHERE
851                         role = '". $this->escape($q['query']['role']) ."'
852             )");
853         
854         }
855         
856         
857         if (!empty($q['query']['project_member_of'])) {
858                // this is also a flag to return if they are a member..
859             //DB_DataObject::debugLevel(1);
860             $do = DB_DataObject::factory('ProjectDirectory');
861             $do->project_id = $q['query']['project_member_of'];
862             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
863             $this->joinAdd($do,array('joinType' => 'LEFT', 'useWhereAsOn' => true));
864             $this->selectAdd("IF($tn_pd.id IS NULL, 0,  $tn_pd.id )  as is_member");
865                 
866                 
867             if (!empty($q['query']['project_member_filter'])) {
868                 $this->having('is_member !=0');
869             
870             }
871             
872         }
873         
874         if(!empty($q['query']['name'])){
875             $this->whereAdd("
876                 {$this->tableName()}.name LIKE '%{$this->escape($q['query']['name'])}%'
877             ");
878         }
879          if(!empty($q['query']['name_starts'])){
880             $this->whereAdd("
881                 {$this->tableName()}.name LIKE '{$this->escape($q['query']['name_starts'])}%'
882             ");
883         }
884         
885         if (!empty($q['query']['search'])) {
886             
887             // use our magic search builder...
888             
889              require_once 'Text/SearchParser.php';
890             $x = new Text_SearchParser($q['query']['search']);
891             
892             $props = array(
893                     "$tn_p.name",
894                     "$tn_p.email",
895                     "$tn_p.role",
896                     "$tn_p.phone",
897                     "$tn_p.remarks",
898                     "join_company_id_id.name"
899             );
900             $tbcols = $this->table();
901             foreach(array('firstname','lastname') as $k) {
902                 if (isset($tbcols[$k])) {
903                     $props[] = "{$tn_p}.{$k}";
904                 }
905             }
906             
907             
908             
909             
910             $str =  $x->toSQL(array(
911                 'default' => $props,
912                 'map' => array(
913                     'company' => 'join_company_id_id.name',
914                     //'country' => 'Clipping.country',
915                     //  'media' => 'Clipping.media_name',
916                 ),
917                 'escape' => array($this->getDatabaseConnection(), 'escapeSimple'), /// pear db or mdb object..
918
919             ));
920             
921             
922             $this->whereAdd($str); /*
923                         $tn_p.name LIKE '%$s%'  OR
924                         $tn_p.email LIKE '%$s%'  OR
925                         $tn_p.role LIKE '%$s%'  OR
926                         $tn_p.phone LIKE '%$s%' OR
927                         $tn_p.remarks LIKE '%$s%' 
928                         
929                     ");*/
930         }
931         
932         // project directory rules -- this may distrupt things.
933         $p = DB_DataObject::factory('ProjectDirectory');
934         // if project directories are set up, then we can apply project query rules..
935         if ($p->count()) {
936             $p->autoJoin();
937             $pids = $p->projects($au);
938             if (isset($q['query']['project_id'])) {   
939                 $pid = (int)$q['query']['project_id'];
940                 if (!in_array($pid, $pids)) {
941                     $roo->jerr("Project not in users valid projects");
942                 }
943                 $pids = array($pid);
944             }
945             // project roles..
946             //if (empty($q['_anyrole'])) {  // should be project_directry_role
947             //    $p->whereAdd("{$p->tableName()}.role != ''");
948             // }
949             if (!empty($q['query']['role'])) {  // should be project_directry_role
950                 $role = $this->escape($q['query']['role']); 
951                
952                 $p->whereAdd("{$p->tableName()}.role LIKE '%{$role}%'");
953                  
954             }
955             
956             if (!$roo->hasPerm('Core.Projects_All', 'S')) {
957                 $peps = $p->people($pids);
958                 $this->whereAddIn("{$tn}.id", $peps, 'int');
959             }
960         }    
961         
962         // fixme - this needs a more generic fix - it was from the mtrack_person code...
963         if (isset($q['query']['ticket_id'])) {  
964             // find out what state the ticket is in.
965             $t = DB_DataObject::Factory('mtrack_ticket');
966             $t->autoJoin();
967             $t->get($q['query']['ticket_id']);
968             
969             if (!$this->checkPerm('S', $au)) {
970                 $roo->jerr("permssion denied to query state of ticket");
971             }
972             
973             $p = DB_DataObject::factory('ProjectDirectory');
974             $pids = array($t->project_id);
975            
976             $peps = $p->people($pids);
977             
978             $this->whereAddIn($this->tableName().'.id', $peps, 'int');
979             
980             //$this->whereAdd('join_prole != ''");
981             
982         }  
983     }
984     function setFromRoo($ar, $roo)
985     {
986          $this->setFrom($ar);
987         if (!empty($ar['passwd1'])) {
988             $this->setPassword($ar['passwd1']);
989         }
990         
991         if (    $this->id &&
992                 ($this->email == $roo->old->email)&&
993                 ($this->company_id == $roo->old->company_id)
994             ) {
995             return true;
996         }
997         if (empty($this->email)) {
998             return true;
999         }
1000         // this only applies to our owner company..
1001         $c = $this->company();
1002         if (empty($c->comptype_name) || $c->comptype_name != 'OWNER') {
1003             return true;
1004         }
1005         
1006         
1007         $xx = DB_Dataobject::factory($this->tableName());
1008         $xx->setFrom(array(
1009             'email' => $this->email,
1010            // 'company_id' => $x->company_id
1011         ));
1012         
1013         if ($xx->count()) {
1014             return "Duplicate Email found";
1015         }
1016         return true;
1017     }
1018     /**
1019      *
1020      * before Delete - delete significant dependancies..
1021      * this is called after checkPerm..
1022      */
1023     
1024     function beforeDelete()
1025     {
1026         
1027         $e = DB_DataObject::Factory('Events');
1028         $e->whereAdd('person_id = ' . $this->id);
1029         $e->delete(true);
1030         
1031         // anything else?  
1032         
1033     }
1034     
1035     
1036     /***
1037      * Check if the a user has access to modify this item.
1038      * @param String $lvl Level (eg. Core.Projects)
1039      * @param Pman_Core_DataObjects_Person $au The authenticated user.
1040      * @param boolean $changes alllow changes???
1041      *
1042      * @return false if no access..
1043      */
1044     function checkPerm($lvl, $au, $changes=false) //heck who is trying to access this. false == access denied..
1045     {
1046          
1047        // do we have an empty system..
1048         if ($au && $au->id == -1) {
1049             return true;
1050         }
1051         // if not authenticated... do not allow in???
1052         if (!$au ) {
1053             return false;
1054         }
1055         
1056         // determine if it's staff!!!
1057         $owncomp = DB_DataObject::Factory('core_company');
1058         $owncomp->get('comptype', 'OWNER');
1059         $isStaff = ($au->company_id ==  $owncomp->id);
1060        
1061        
1062         if (!$isStaff) {
1063             
1064             // - can not change company!!!
1065             if ($changes && 
1066                 isset($changes['company_id']) && 
1067                 $changes['company_id'] != $au->company_id) {
1068                 return false;
1069             }
1070             // can only set new emails..
1071             if ($changes && 
1072                     !empty($this->email) && 
1073                     isset($changes['email']) && 
1074                     $changes['email'] != $this->email) {
1075                 return false;
1076             }
1077             
1078             
1079             // mtrack had the idea that all 'S' should be allowed.. - but filtered later..
1080             // ???? do we want this?
1081             
1082             // edit self... - what about other staff members...
1083             
1084             //return $this->company_id == $au->company_id;
1085         }
1086         
1087          
1088         // yes, only owner company can mess with this...
1089         
1090         
1091         
1092     
1093         switch ($lvl) {
1094             // extra case change passwod?
1095             case 'P': //??? password
1096                 // standard perms -- for editing + if the user is dowing them selves..
1097                 $ret = $isStaff ? $au->hasPerm("Core.Staff", "E") : $au->hasPerm("Core.Person", "E");
1098                 return $ret || $au->id == $this->id;
1099             
1100             default:                
1101                 return $isStaff ? $au->hasPerm("Core.Staff", $lvl) : $au->hasPerm("Core.Person", $lvl);
1102         
1103         }
1104         return false;
1105     }
1106     
1107     function beforeInsert($req, $roo)
1108     {
1109         $p = DB_DataObject::factory('core_person');
1110         if ($roo->authUser->id > -1 ||  $p->count() > 1) {
1111             return;
1112         }
1113         $c = DB_DAtaObject::Factory('core_company');
1114         $tc =$c->count();
1115         if (!$tc || $tc> 1) {
1116             $roo->jerr("can not create initial user as multiple companies already exist");
1117         }
1118         $c->find(true);
1119         $this->company_id = $c->id;
1120         
1121     }
1122     
1123     function onInsert($req, $roo)
1124     {
1125          
1126         $p = DB_DataObject::factory('core_person');
1127         if ($roo->authUser->id < 0 && $p->count() == 1) {
1128             // this seems a bit risky...
1129             
1130             $g = DB_DataObject::factory('core_group');
1131             $g->initGroups();
1132             
1133             $g->type = 0;
1134             $g->get('name', 'Administrators');
1135             
1136             $p = DB_DataObject::factory('core_group_member');
1137             $p->group_id = $g->id;
1138             $p->user_id = $this->id;     
1139             if (!$p->count()) {
1140                 $p->insert();
1141                 $roo->addEvent("ADD", $p, $g->toEventString(). " Added " . $this->toEventString());
1142             }
1143             $this->login();
1144         }
1145         if (!empty($req['project_id_addto'])) {
1146             $pd = DB_DataObject::factory('ProjectDirectory');
1147             $pd->project_id = $req['project_id_addto'];
1148             $pd->person_id = $this->id; 
1149             $pd->ispm =0;
1150             $pd->office_id = $this->office_id;
1151             $pd->company_id = $this->company_id;
1152             $pd->insert();
1153         }
1154         
1155     }
1156     
1157     function importFromArray($roo, $persons, $opts)
1158     {
1159         if (empty($opts['prefix'])) {
1160             $roo->jerr("opts[prefix] is empty - you can not just create passwords based on the user names");
1161         }
1162         
1163         if (!is_array($persons) || empty($persons)) {
1164             $roo->jerr("error in the person data. - empty on not valid");
1165         }
1166         DB_DataObject::factory('core_group')->initGroups();
1167         
1168         foreach($persons as $person){
1169             $p = DB_DataObject::factory('core_person');
1170             if($p->get('name', $person['name'])){
1171                 continue;
1172             }
1173             $p->setFrom($person);
1174             
1175             $companies = DB_DataObject::factory('core_company');
1176             if(!$companies->get('comptype', 'OWNER')){
1177                 $roo->jerr("Missing OWNER companies!");
1178             }
1179             $p->company_id = $companies->pid();
1180             // strip the 'spaces etc.. make lowercase..
1181             $name = strtolower(str_replace(' ', '', $person['name']));
1182             $p->setPassword("{$opts['prefix']}{$name}");
1183             $p->insert();
1184             // set up groups
1185             // if $person->groups is set.. then
1186             // add this person to that group eg. groups : [ 'Administrator' ] 
1187             if(!empty($person['groups'])){
1188                 $groups = DB_DataObject::factory('core_group');
1189                 if(!$groups->get('name', $person['groups'])){
1190                     $roo->jerr("Missing groups : {$person['groups']}");
1191                 }
1192                 $gm = DB_DataObject::factory('core_group_member');
1193                 $gm->change($p, $groups, true);
1194             }
1195             
1196             $p->onInsert(array(), $roo);
1197         }
1198     }
1199     
1200     // this is for the To: "{getEmailName()}" <email@address>
1201     // not good for Dear XXXX, - use {person.firstname} for that.
1202     function getEmailName()
1203     {
1204         $name = array();
1205         
1206         if(!empty($this->honor)){
1207             array_push($name, $this->honor);
1208         }
1209         
1210         if(!empty($this->name)){
1211             array_push($name, $this->name);
1212             
1213             return implode(' ', $name);
1214         }
1215         
1216         if(!empty($this->firstname) || !empty($this->lastname)){
1217             array_push($name, $this->firstname);
1218             array_push($name, $this->lastname);
1219             
1220             $name = array_filter($name);
1221             
1222             return implode(' ', $name);
1223         }
1224         
1225         return $this->email;
1226     }
1227     
1228     function sesPrefix()
1229     {
1230         $ff= HTML_FlexyFramework::get();
1231         
1232         $appname = empty($ff->appNameShort) ? $ff->project : $ff->project . '-' . $ff->appNameShort;
1233         
1234         $dname = method_exists($this, 'getDatabaseConnection') ? $this->getDatabaseConnection()->dsn['database'] : $this->databaseNickname();
1235         
1236         $sesPrefix = $appname.'-' .get_class($this) .'-' . $dname;
1237
1238         return $sesPrefix;
1239     }
1240     
1241     function loginPublic()
1242     {
1243         $this->isAuth(); // force session start..
1244          
1245         $db = $this->getDatabaseConnection();
1246         
1247         $ff = HTML_FlexyFramework::get();
1248         
1249         if(empty($ff->Pman) || empty($ff->Pman['login_public'])){
1250             return false;
1251         }
1252         
1253         $sesPrefix = $ff->Pman['login_public'] . '-' .get_class($this) .'-'.$db->dsn['database'] ;
1254         
1255         $p = DB_DAtaObject::Factory($this->tableName());
1256         $p->get($this->pid());
1257         
1258         $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize((object)$p->toArray());
1259         
1260         return true;
1261     }
1262     
1263  }