9ea60f7a288afe78ada1e4449388c03f33c0ba9c
[Pman.Core] / DataObjects / Core_person.php
1 <?php
2 /**
3  * Table Definition for Person
4  */
5 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 (PEAR::isError($parts)) {
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             
268             $u = DB_DataObject::factory($this->tableName());
269             if ($a->id && $u->get($a->id)) { //&& strlen($u->passwd)) {
270               
271                 return $u->verifyAuth();  // got authentication...
272                 
273     
274             }
275             
276             unset($_SESSION[get_class($this)][$sesPrefix .'-auth']);
277             unset($_SESSION[get_class($this)][$sesPrefix .'-timeout']);
278             setcookie('Pman.timeout', -1, time() + (30*60), '/');
279             
280         }
281         
282         // http basic auth..
283         $u = DB_DataObject::factory($this->tableName());
284         
285         if (!empty($_SERVER['PHP_AUTH_USER']) 
286             &&
287             !empty($_SERVER['PHP_AUTH_PW'])
288             &&
289             $u->get('email', $_SERVER['PHP_AUTH_USER'])
290             &&
291             $u->checkPassword($_SERVER['PHP_AUTH_PW'])
292            ) {
293             $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize($u);
294             return true; 
295         }
296         //die("test init");
297         if (!$this->canInitializeSystem()) {
298           //  die("can not init");
299             return false;
300         }
301         
302         
303         // local auth - 
304         $default_admin = false;
305         if (!empty($ff->Pman['local_autoauth']) && 
306             ($ff->Pman['local_autoauth'] === true) &&
307             (!empty($_SERVER['SERVER_ADDR'])) &&
308             ($_SERVER['SERVER_ADDR'] == '127.0.0.1') &&
309             ($_SERVER['REMOTE_ADDR'] == '127.0.0.1')  
310         ) {
311             $group = DB_DataObject::factory('core_group');
312             $group->get('name', 'Administrators');
313             
314             $member = DB_DataObject::factory('core_group_member');
315             $member->autoJoin();
316             $member->group_id = $group->id;
317             $member->whereAdd("
318                 join_user_id_id.id IS NOT NULL
319             ");
320             if($member->find(true)){
321                 $default_admin = DB_DataObject::factory($this->tableName());
322                 if(!$default_admin->get($member->user_id)){
323                     $default_admin = false;
324                 }
325             }
326         }
327         
328         //var_dump($ff->Pman['local_autoauth']);         var_dump($_SERVER); exit;
329         $u = DB_DataObject::factory($this->tableName());
330         $ff = HTML_FlexyFramework::get();
331         
332         if (!empty($ff->Pman['local_autoauth']) && 
333             (!empty($_SERVER['SERVER_ADDR'])) &&
334             ($_SERVER['SERVER_ADDR'] == '127.0.0.1') &&
335             ($_SERVER['REMOTE_ADDR'] == '127.0.0.1')  &&
336             ($default_admin ||  $u->get('email', $ff->Pman['local_autoauth']))
337         ) {
338             $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize($default_admin ? $default_admin : $u);
339             return true;
340         }
341         
342         //var_dump(session_id());
343         //var_dump($_SESSION[__CLASS__]);
344         
345         //if (!empty(   $_SESSION[__CLASS__][$sesPrefix .'-empty'] )) {
346         //    return false;
347         //}
348         //die("got this far?");
349         // not in session or not matched...
350         $u = DB_DataObject::factory($this->tableName());
351         $u->whereAdd(' LENGTH(passwd) > 0');
352         $n = $u->count();
353         $_SESSION[get_class($this)][$sesPrefix .'-empty']  = $n;
354         $error =  PEAR::getStaticProperty('DB_DataObject','lastError');
355         if ($error) {
356             die($error->toString()); // not really a good thing to do...
357         }
358         if (!$n){ // authenticated as there are no users in the system...
359             return true;
360         }
361         
362         return false;
363         
364     }
365     
366     function canInitializeSystem()
367     {
368         
369         return !strcasecmp(get_class($this) , __CLASS__);
370     }
371     
372     function getAuthUser()
373     {
374         if (!$this->isAuth()) {
375             return false;
376         }
377         
378         $ff= HTML_FlexyFramework::get();
379         
380         $sesPrefix = $this->sesPrefix();
381         
382         //var_dump(array(get_class($this),$sesPrefix .'-auth'));
383        
384         if (!empty($_SESSION[get_class($this)][$sesPrefix .'-auth'])) {
385             $a = unserialize($_SESSION[get_class($this)][$sesPrefix .'-auth']);
386             
387             $u = DB_DataObject::factory($this->tableName()); // allow extending this ...
388             $u->autoJoin();
389             if ($u->get($a->id)) { /// && strlen($u->passwd)) {  // should work out the pid .. really..
390                 
391                 $_SESSION[get_class($this)][$sesPrefix .'-auth-timeout'] = time() + (30*60); // eg. 30 minutes
392                 setcookie('Pman.timeout', time() + (30*60), time() + (30*60), '/');
393                 
394                 $user = clone ($u);
395                 return clone($user);
396             
397             }
398             unset($_SESSION[get_class($this)][$sesPrefix .'-auth']);
399             unset($_SESSION[get_class($this)][$sesPrefix .'-timeout']);
400             setcookie('Pman.timeout', -1, time() + (30*60), '/');
401             
402         }
403         
404         
405         
406         if (!$this->canInitializeSystem()) {
407             return false;
408         }
409         
410         
411         
412         if (empty(   $_SESSION[get_class($this)][$sesPrefix .'-empty'] )) {
413             $u = DB_DataObject::factory($this->tableName());
414             $u->whereAdd(' LENGTH(passwd) > 0');
415             $_SESSION[get_class($this)][$sesPrefix .'-empty']  = $u->count();
416         }
417                 
418              
419         if (isset(   $_SESSION[get_class($this)][$sesPrefix .'-empty'] ) && $_SESSION[get_class($this)][$sesPrefix .'-empty']  < 1) {
420             
421             // fake person - open system..
422             //$ce = DB_DataObject::factory('core_enum');
423             //$ce->initEnums();
424             
425             
426             $u = DB_DataObject::factory($this->tableName());
427             $u->id = -1;
428             
429             // if a company has been created fill that in in company_id_id
430             $c = DB_DAtaObject::factory('core_company')->lookupOwner();
431             if ($c) {
432                 $u->company_id_id = $c->pid();
433                 $u->company_id = $c->pid();
434             }
435             
436             return $u;
437             
438         }
439         return false;
440     }     
441     function login()
442     {
443         $this->isAuth(); // force session start..
444         if (!$this->verifyAuth()) { // check for company valid..
445             return false;
446         }
447         
448         // open up iptables at login..
449         $dbname = $this->database();
450         touch( '/tmp/run_pman_admin_iptables-'.$dbname);
451          
452         // refresh admin group if we are logged in as one..
453         //DB_DataObject::debugLevel(1);
454         $g = DB_DataObject::factory('core_group');
455         $g->type = 0;
456         $g->get('name', 'Administrators');
457         $gm = DB_DataObject::Factory('core_group_member');
458         if (in_array($g->id,$gm->listGroupMembership($this))) {
459             // refresh admin groups.
460             $gr = DB_DataObject::Factory('core_group_right');
461             $gr->applyDefs($g, 0);
462         }
463         
464         $sesPrefix = $this->sesPrefix();
465         
466         // we should not store the whole data in the session - otherwise it get's huge.
467         $p = DB_DAtaObject::Factory($this->tableName());
468         $p->get($this->pid());
469         
470         $d = $p->toArray();
471         
472         $_SESSION[get_class($this)][$sesPrefix .'-auth-timeout'] = time() + (30*60); // eg. 30 minutes
473         setcookie('Pman.timeout', time() + (30*60), time() + (30*60), '/');
474         
475         //var_dump(array(get_class($this),$sesPrefix .'-auth'));
476         $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize((object)$d);
477         // ensure it's written so that ajax calls can fetch it..
478         
479         
480         
481     }
482     function logout()
483     {
484         $this->isAuth(); // force session start..
485         
486         $sesPrefix = $this->sesPrefix();
487         
488         $_SESSION[get_class($this)][$sesPrefix .'-auth-timeout'] = -1;
489         
490         $_SESSION[get_class($this)][$sesPrefix .'-auth'] = "";
491         
492     }    
493     function genPassKey ($t) 
494     {
495         return md5($this->email . $t. $this->passwd);
496     }
497     function simpleAuthKey($m = 0)
498     {
499         $month = $m > -1 ? date('Y-m') : date('Y-m', strtotime('LAST MONTH'));
500         
501         return md5(implode(',' ,  array($month, $this->email , $this->passwd, $this->id)));
502     } 
503     function checkPassword($val)
504     {
505         
506         if (substr($this->passwd,0,1) == '$') {
507             
508             return crypt($val,$this->passwd) == $this->passwd ;
509         }
510         // old style md5 passwords...- cant be used with courier....
511         return md5($val) == $this->passwd;
512     }
513     
514     function setPassword($value) 
515     {
516         $salt='';
517         while(strlen($salt)<9) {
518             $salt.=chr(rand(64,126));
519             //php -r var_dump(crypt('testpassword', '$1$'. (rand(64,126)). '$'));
520         }
521         $this->passwd = crypt($value, '$1$'. $salt. '$');
522        
523        
524     }      
525     
526     function generatePassword($length = 5) // genearte a password (add set 'rawPasswd' to it's value)
527     {
528         require_once 'Text/Password.php';
529         $this->rawPasswd = strtr(ucfirst(Text_Password::create($length)).ucfirst(Text_Password::create($length)), array(
530         "a"=>"4", "e"=>"3",  "i"=>"1",  "o"=>"0", "s"=>"5",  "t"=>"7"));
531         $this->setPassword($this->rawPasswd);
532         return $this->rawPasswd;
533     }
534     
535     function company()
536     {
537         $x = DB_DataObject::factory('core_company');
538         $x->autoJoin();
539         $x->get($this->company_id);
540         return $x;
541     }
542     function loadCompany()
543     {
544         $this->company = $this->company();
545     }
546     
547     function active()
548     { 
549         return $this->active;
550     }
551     function authUserName($n) // set username prior to acheck user exists query.
552     {
553         
554         $this->whereAdd('LENGTH(passwd) > 1'); 
555         $this->email = $n;
556     }
557     function lang()
558     {
559         if (!func_num_args()) {
560             return $this->lang;
561         }
562         $val = array_shift(func_get_args());
563         if ($val == $this->lang) {
564             return;
565         }
566         $uu = clone($this);
567         $this->lang = $val;
568         $this->update($uu);
569         return $this->lang;
570     }
571             
572     
573     function authUserArray()
574     {
575         
576         $aur = $this->toArray();
577         
578         if ($this->id < 1) {
579             return $aur;
580         }
581         
582         
583         //DB_DataObject::debugLevel(1);
584         $c = DB_Dataobject::factory('core_company');
585         $im = DB_Dataobject::factory('Images');
586         $c->joinAdd($im, 'LEFT');
587         $c->selectAdd();
588         $c->selectAs($c, 'company_id_%s');
589         $c->selectAs($im, 'company_id_logo_id_%s');
590         $c->id = $this->company_id;
591         $c->limit(1);
592         $c->find(true);
593         
594         $aur = array_merge( $c->toArray(),$aur);
595         
596         if (empty($c->company_id_logo_id_id))  {
597                  
598             $im = DB_Dataobject::factory('Images');
599             $im->ontable = DB_DataObject::factory('core_company')->tableName();
600             $im->onid = $c->id;
601             $im->imgtype = 'LOGO';
602             $im->limit(1);
603             $im->selectAdd();
604             $im->selectAs($im,  'company_id_logo_id_%s');
605             if ($im->find(true)) {
606                     
607                 foreach($im->toArray() as $k=>$v) {
608                     $aur[$k] = $v;
609                 }
610             }
611         }
612       
613         // perms + groups.
614         $aur['perms']  = $this->getPerms();
615         $g = DB_DataObject::Factory('core_group_member');
616         $aur['groups']  = $g->listGroupMembership($this, 'name');
617         
618         $aur['passwd'] = '';
619         $aur['dailykey'] = '';
620         
621         
622         
623         return $aur;
624     }
625     
626     //   ----------PERMS------  ----------------
627     function getPerms() 
628     {
629          //DB_DataObject::debugLevel(1);
630         // find out all the groups they are a member of.. + Default..
631         
632         // ------ INIITIALIZE IF NO GROUPS ARE SET UP.
633         
634         $g = DB_DataObject::Factory('core_group_right');
635         if (!$g->count()) {
636             $g->genDefault();
637         }
638         
639         if ($this->id < 0) {
640             return $g->adminRights(); // system is not set up - so they get full rights.
641         }
642         //DB_DataObject::debugLevel(1);
643         $g = DB_DataObject::Factory('core_group_member');
644         $g->whereAdd('group_id is NOT NULL AND user_id IS NOT NULL');
645         if (!$g->count()) {
646             // add the current user to the admin group..
647             $g = DB_DataObject::Factory('core_group');
648             if ($g->get('name', 'Administrators')) {
649                 $gm = DB_DataObject::Factory('core_group_member');
650                 $gm->group_id = $g->id;
651                 $gm->user_id = $this->id;
652                 $gm->insert();
653             }
654             
655         }
656         
657         // ------ STANDARD PERMISSION HANDLING.
658         $isOwner = $this->company()->comptype == 'OWNER';
659         $g = DB_DataObject::Factory('core_group_member');
660         $grps = $g->listGroupMembership($this);
661        //var_dump($grps);
662         $isAdmin = $g->inAdmin;   //???  what???
663         //echo '<PRE>'; print_r($grps);var_dump($isAdmin);
664         // the load all the perms for those groups, and add them all together..
665         // then load all those 
666         $g = DB_DataObject::Factory('core_group_right');
667         $ret =  $g->listPermsFromGroupIds($grps, $isAdmin, $isOwner);
668         //echo '<PRE>';print_r($ret);
669         return $ret;
670          
671         
672     }
673     /**
674      *Basic group fetching - probably needs to filter by type eventually.
675      *
676      *@param String $what - fetchall() argument - eg. 'name' returns names of all groups that they are members of.
677      */
678     
679     function groups($what=false)
680     {
681         $g = DB_DataObject::Factory('core_group_member');
682         $grps = $g->listGroupMembership($this);
683         $g = DB_DataObject::Factory('core_group');
684         $g->whereAddIn('id', $grps, 'int');
685         return $g->fetchAll($what);
686         
687     }
688     
689     
690     
691     function hasPerm($name, $lvl) 
692     {
693         static $pcache = array();
694         
695         if (!isset($pcache[$this->id])) {
696             $pcache[$this->id] = $this->getPerms();
697         }
698         
699        // echo "<PRE>";print_r($pcache[$au->id]);
700        // var_dump($pcache[$au->id]);
701         if (empty($pcache[$this->id][$name])) {
702             return false;
703         }
704         
705         return strpos($pcache[$this->id][$name], $lvl) > -1;
706         
707     }    
708     
709     //  ------------ROO HOOKS------------------------------------
710     function applyFilters($q, $au, $roo)
711     {
712         //DB_DataObject::DebugLevel(1);
713         
714         if (!empty($q['query']['is_owner'])) {
715             $this->whereAdd(" join_company_id_id.comptype = 'OWNER'");
716         }
717         
718         if (!empty($q['query']['person_not_internal'])) {
719             $this->whereAdd(" join_company_id_id.isOwner = 0 ");
720         }
721         
722         if (!empty($q['query']['person_internal_only_all'])) {
723             
724             
725             // must be internal and not current user (need for distribution list)
726             // user has a projectdirectory entry and role is not blank.
727             //DB_DataObject::DebugLevel(1);
728             $pd = DB_DataObject::factory('ProjectDirectory');
729             $pd->whereAdd("role != ''");
730             $pd->selectAdd();
731             $pd->selectAdd('distinct(person_id) as person_id');
732             $roled = $pd->fetchAll('person_id');
733             $rs = $roled  ? "  OR
734                     {$this->tableName()}.id IN (".implode(',', $roled) . ") 
735                     " : '';
736             $this->whereAdd(" join_company_id_id.comptype = 'OWNER' $rs ");
737             
738         }
739         // -- for distribution
740         if (!empty($q['query']['person_internal_only'])) {
741             // must be internal and not current user (need for distribution list)
742             $this->whereAdd(" join_company_id_id.comptype = 'OWNER'");
743             
744             //$this->whereAdd(($this->tableName() == 'Person' ? 'Person' : "join_person_id_id") .
745             //    ".id  != ".$au->id);
746             $this->whereAdd("{$this->tableName()}.id != {$au->id}");
747         } 
748         
749         if (!empty($q['query']['comptype_or_company_id'])) {
750            // DB_DataObject::debugLevel(1);
751             $bits = explode(',', $q['query']['comptype_or_company_id']);
752             $id = (int) array_pop($bits);
753             $ct = $this->escape($bits[0]);
754             
755             $this->whereAdd(" join_company_id_id.comptype = '$ct' OR {$this->tableName()}.company_id = $id");
756             
757         }
758         
759         
760         // staff list..
761         if (!empty($q['query']['person_inactive'])) {
762            // DB_Dataobject::debugLevel(1);
763             $this->active = 1;
764         }
765         $tn_p = $this->tableName();
766         $tn_gm = DB_DataObject::Factory('core_group_member')->tableName();
767         $tn_g = DB_DataObject::Factory('core_group')->tableName();
768
769         ///---------------- Group views --------
770         if (!empty($q['query']['in_group'])) {
771             // DB_DataObject::debugLevel(1);
772             $ing = (int) $q['query']['in_group'];
773             if ($q['query']['in_group'] == -1) {
774              
775                 // list all staff who are not in a group.
776                 $this->whereAdd("{$this->tableName()}.id NOT IN (
777                     SELECT distinct(user_id) FROM $tn_gm LEFT JOIN
778                         $tn_g ON $tn_g.id = $tn_gm.group_id
779                         WHERE $tn_g.type = ".$q['query']['type']."
780                     )");
781                 
782                 
783             } else {
784                 
785                 $this->whereAdd("$tn_p.id IN (
786                     SELECT distinct(user_id) FROM $tn_gm
787                         WHERE group_id = $ing
788                     )");
789                }
790             
791         }
792         
793         // #2307 Search Country!!
794         if (!empty($q['query']['in_country'])) {
795             // DB_DataObject::debugLevel(1);
796             $inc = $q['query']['in_country'];
797             $this->whereAdd("$tn_p.countries LIKE '%{$inc}%'");
798         }
799         
800         if (!empty($q['query']['not_in_directory'])) { 
801             // it's a Person list..
802             // DB_DATaobjecT::debugLevel(1);
803             
804             // specific to project directory which is single comp. login
805             //
806             $owncomp = DB_DataObject::Factory('core_company');
807             $owncomp->get('comptype', 'OWNER');
808             if ($q['company_id'] == $owncomp->id) {
809                 $this->active =1;
810             }
811             
812             
813
814             if ( $q['query']['not_in_directory'] > -1) {
815                 $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
816                 // can list current - so that it does not break!!!
817                 $this->whereAdd("$tn_p.id NOT IN 
818                     ( SELECT distinct person_id FROM $tn_pd WHERE
819                         project_id = " . $q['query']['not_in_directory'] . " AND 
820                         company_id = " . $this->company_id . ')');
821             }
822         }
823            
824         if (!empty($q['query']['role'])) { 
825             // it's a Person list..
826             // DB_DATaobjecT::debugLevel(1);
827             
828             // specific to project directory which is single comp. login
829             //
830             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
831                 // can list current - so that it does not break!!!
832             $this->whereAdd("$tn_p.id IN 
833                     ( SELECT distinct person_id FROM $tn_pd WHERE
834                         role = '". $this->escape($q['query']['role']) ."'
835             )");
836         
837         }
838         
839         
840         if (!empty($q['query']['project_member_of'])) {
841                // this is also a flag to return if they are a member..
842             //DB_DataObject::debugLevel(1);
843             $do = DB_DataObject::factory('ProjectDirectory');
844             $do->project_id = $q['query']['project_member_of'];
845             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
846             $this->joinAdd($do,array('joinType' => 'LEFT', 'useWhereAsOn' => true));
847             $this->selectAdd("IF($tn_pd.id IS NULL, 0,  $tn_pd.id )  as is_member");
848                 
849                 
850             if (!empty($q['query']['project_member_filter'])) {
851                 $this->having('is_member !=0');
852             
853             }
854             
855         }
856         
857         if(!empty($q['query']['name'])){
858             $this->whereAdd("
859                 {$this->tableName()}.name LIKE '%{$this->escape($q['query']['name'])}%'
860             ");
861         }
862          if(!empty($q['query']['name_starts'])){
863             $this->whereAdd("
864                 {$this->tableName()}.name LIKE '{$this->escape($q['query']['name_starts'])}%'
865             ");
866         }
867         
868         if (!empty($q['query']['search'])) {
869             
870             // use our magic search builder...
871             
872              require_once 'Text/SearchParser.php';
873             $x = new Text_SearchParser($q['query']['search']);
874             
875             $props = array(
876                     "$tn_p.name",
877                     "$tn_p.email",
878                     "$tn_p.role",
879                     "$tn_p.phone",
880                     "$tn_p.remarks",
881                     "join_company_id_id.name"
882             );
883             $tbcols = $this->table();
884             foreach(array('firstname','lastname') as $k) {
885                 if (isset($tbcols[$k])) {
886                     $props[] = "{$tn_p}.{$k}";
887                 }
888             }
889             
890             
891             
892             
893             $str =  $x->toSQL(array(
894                 'default' => $props,
895                 'map' => array(
896                     'company' => 'join_company_id_id.name',
897                     //'country' => 'Clipping.country',
898                     //  'media' => 'Clipping.media_name',
899                 ),
900                 'escape' => array($this->getDatabaseConnection(), 'escapeSimple'), /// pear db or mdb object..
901
902             ));
903             
904             
905             $this->whereAdd($str); /*
906                         $tn_p.name LIKE '%$s%'  OR
907                         $tn_p.email LIKE '%$s%'  OR
908                         $tn_p.role LIKE '%$s%'  OR
909                         $tn_p.phone LIKE '%$s%' OR
910                         $tn_p.remarks LIKE '%$s%' 
911                         
912                     ");*/
913         }
914         
915         // project directory rules -- this may distrupt things.
916         $p = DB_DataObject::factory('ProjectDirectory');
917         // if project directories are set up, then we can apply project query rules..
918         if ($p->count()) {
919             $p->autoJoin();
920             $pids = $p->projects($au);
921             if (isset($q['query']['project_id'])) {   
922                 $pid = (int)$q['query']['project_id'];
923                 if (!in_array($pid, $pids)) {
924                     $roo->jerr("Project not in users valid projects");
925                 }
926                 $pids = array($pid);
927             }
928             // project roles..
929             //if (empty($q['_anyrole'])) {  // should be project_directry_role
930             //    $p->whereAdd("{$p->tableName()}.role != ''");
931             // }
932             if (!empty($q['query']['role'])) {  // should be project_directry_role
933                 $role = $this->escape($q['query']['role']); 
934                
935                 $p->whereAdd("{$p->tableName()}.role LIKE '%{$role}%'");
936                  
937             }
938             
939             if (!$roo->hasPerm('Core.Projects_All', 'S')) {
940                 $peps = $p->people($pids);
941                 $this->whereAddIn("{$tn}.id", $peps, 'int');
942             }
943         }    
944         
945         // fixme - this needs a more generic fix - it was from the mtrack_person code...
946         if (isset($q['query']['ticket_id'])) {  
947             // find out what state the ticket is in.
948             $t = DB_DataObject::Factory('mtrack_ticket');
949             $t->autoJoin();
950             $t->get($q['query']['ticket_id']);
951             
952             if (!$this->checkPerm('S', $au)) {
953                 $roo->jerr("permssion denied to query state of ticket");
954             }
955             
956             $p = DB_DataObject::factory('ProjectDirectory');
957             $pids = array($t->project_id);
958            
959             $peps = $p->people($pids);
960             
961             $this->whereAddIn($this->tableName().'.id', $peps, 'int');
962             
963             //$this->whereAdd('join_prole != ''");
964             
965         }  
966     }
967     function setFromRoo($ar, $roo)
968     {
969          $this->setFrom($ar);
970         if (!empty($ar['passwd1'])) {
971             $this->setPassword($ar['passwd1']);
972         }
973         
974         
975         if (    $this->id &&
976                 ($this->email == $roo->old->email)&&
977                 ($this->company_id == $roo->old->company_id)
978             ) {
979             return true;
980         }
981         if (empty($this->email)) {
982             return true;
983         }
984         $xx = DB_Dataobject::factory($this->tableName());
985         $xx->setFrom(array(
986             'email' => $this->email,
987            // 'company_id' => $x->company_id
988         ));
989         
990         if ($xx->count()) {
991             return "Duplicate Email found";
992         }
993         return true;
994     }
995     /**
996      *
997      * before Delete - delete significant dependancies..
998      * this is called after checkPerm..
999      */
1000     
1001     function beforeDelete()
1002     {
1003         
1004         $e = DB_DataObject::Factory('Events');
1005         $e->whereAdd('person_id = ' . $this->id);
1006         $e->delete(true);
1007         
1008         // anything else?  
1009         
1010     }
1011     
1012     
1013     /***
1014      * Check if the a user has access to modify this item.
1015      * @param String $lvl Level (eg. Core.Projects)
1016      * @param Pman_Core_DataObjects_Person $au The authenticated user.
1017      * @param boolean $changes alllow changes???
1018      *
1019      * @return false if no access..
1020      */
1021     function checkPerm($lvl, $au, $changes=false) //heck who is trying to access this. false == access denied..
1022     {
1023          
1024        // do we have an empty system..
1025         if ($au && $au->id == -1) {
1026             return true;
1027         }
1028         // if not authenticated... do not allow in???
1029         if (!$au ) {
1030             return false;
1031         }
1032         
1033         // determine if it's staff!!!
1034         $owncomp = DB_DataObject::Factory('core_company');
1035         $owncomp->get('comptype', 'OWNER');
1036         $isStaff = ($au->company_id ==  $owncomp->id);
1037        
1038        
1039         if (!$isStaff) {
1040             
1041             // - can not change company!!!
1042             if ($changes && 
1043                 isset($changes['company_id']) && 
1044                 $changes['company_id'] != $au->company_id) {
1045                 return false;
1046             }
1047             // can only set new emails..
1048             if ($changes && 
1049                     !empty($this->email) && 
1050                     isset($changes['email']) && 
1051                     $changes['email'] != $this->email) {
1052                 return false;
1053             }
1054             
1055             
1056             // mtrack had the idea that all 'S' should be allowed.. - but filtered later..
1057             // ???? do we want this?
1058             
1059             // edit self... - what about other staff members...
1060             
1061             //return $this->company_id == $au->company_id;
1062         }
1063         
1064          
1065         // yes, only owner company can mess with this...
1066         
1067         
1068         
1069     
1070         switch ($lvl) {
1071             // extra case change passwod?
1072             case 'P': //??? password
1073                 // standard perms -- for editing + if the user is dowing them selves..
1074                 $ret = $isStaff ? $au->hasPerm("Core.Staff", "E") : $au->hasPerm("Core.Person", "E");
1075                 return $ret || $au->id == $this->id;
1076             
1077             default:                
1078                 return $isStaff ? $au->hasPerm("Core.Staff", $lvl) : $au->hasPerm("Core.Person", $lvl);
1079         
1080         }
1081         return false;
1082     }
1083     
1084     function beforeInsert($req, $roo)
1085     {
1086         $p = DB_DataObject::factory('core_person');
1087         if ($roo->authUser->id > -1 ||  $p->count() > 1) {
1088             return;
1089         }
1090         $c = DB_DAtaObject::Factory('core_company');
1091         $tc =$c->count();
1092         if (!$tc || $tc> 1) {
1093             $roo->jerr("can not create initial user as multiple companies already exist");
1094         }
1095         $c->find(true);
1096         $this->company_id = $c->id;
1097         
1098     }
1099     
1100     function onInsert($req, $roo)
1101     {
1102          
1103         $p = DB_DataObject::factory('core_person');
1104         if ($roo->authUser->id < 0 && $p->count() == 1) {
1105             // this seems a bit risky...
1106             
1107             $g = DB_DataObject::factory('core_group');
1108             $g->initGroups();
1109             
1110             $g->type = 0;
1111             $g->get('name', 'Administrators');
1112             
1113             $p = DB_DataObject::factory('core_group_member');
1114             $p->group_id = $g->id;
1115             $p->user_id = $this->id;     
1116             if (!$p->count()) {
1117                 $p->insert();
1118                 $roo->addEvent("ADD", $p, $g->toEventString(). " Added " . $this->toEventString());
1119             }
1120             $this->login();
1121         }
1122         if (!empty($req['project_id_addto'])) {
1123             $pd = DB_DataObject::factory('ProjectDirectory');
1124             $pd->project_id = $req['project_id_addto'];
1125             $pd->person_id = $this->id; 
1126             $pd->ispm =0;
1127             $pd->office_id = $this->office_id;
1128             $pd->company_id = $this->company_id;
1129             $pd->insert();
1130         }
1131         
1132     }
1133     
1134     function importFromArray($roo, $persons, $opts)
1135     {
1136         if (empty($opts['prefix'])) {
1137             $roo->jerr("opts[prefix] is empty - you can not just create passwords based on the user names");
1138         }
1139         
1140         if (!is_array($persons) || empty($persons)) {
1141             $roo->jerr("error in the person data. - empty on not valid");
1142         }
1143         DB_DataObject::factory('core_group')->initGroups();
1144         
1145         foreach($persons as $person){
1146             $p = DB_DataObject::factory('core_person');
1147             if($p->get('name', $person['name'])){
1148                 continue;
1149             }
1150             $p->setFrom($person);
1151             
1152             $companies = DB_DataObject::factory('core_company');
1153             if(!$companies->get('comptype', 'OWNER')){
1154                 $roo->jerr("Missing OWNER companies!");
1155             }
1156             $p->company_id = $companies->pid();
1157             // strip the 'spaces etc.. make lowercase..
1158             $name = strtolower(str_replace(' ', '', $person['name']));
1159             $p->setPassword("{$opts['prefix']}{$name}");
1160             $p->insert();
1161             // set up groups
1162             // if $person->groups is set.. then
1163             // add this person to that group eg. groups : [ 'Administrator' ] 
1164             if(!empty($person['groups'])){
1165                 $groups = DB_DataObject::factory('core_group');
1166                 if(!$groups->get('name', $person['groups'])){
1167                     $roo->jerr("Missing groups : {$person['groups']}");
1168                 }
1169                 $gm = DB_DataObject::factory('core_group_member');
1170                 $gm->change($p, $groups, true);
1171             }
1172             
1173             $p->onInsert(array(), $roo);
1174         }
1175     }
1176     
1177     // this is for the To: "{getEmailName()}" <email@address>
1178     // not good for Dear XXXX, - use {person.firstname} for that.
1179     function getEmailName()
1180     {
1181         $name = array();
1182         
1183         if(!empty($this->honor)){
1184             array_push($name, $this->honor);
1185         }
1186         
1187         if(!empty($this->name)){
1188             array_push($name, $this->name);
1189             
1190             return implode(' ', $name);
1191         }
1192         
1193         if(!empty($this->firstname) || !empty($this->lastname)){
1194             array_push($name, $this->firstname);
1195             array_push($name, $this->lastname);
1196             
1197             $name = array_filter($name);
1198             
1199             return implode(' ', $name);
1200         }
1201         
1202         return $this->email;
1203     }
1204     
1205     function sesPrefix()
1206     {
1207         $ff= HTML_FlexyFramework::get();
1208         
1209         $appname = empty($ff->appNameShort) ? $ff->project : $ff->project . '-' . $ff->appNameShort;
1210         
1211         $db = $this->getDatabaseConnection();
1212         
1213         $sesPrefix = $appname.'-' .get_class($this) .'-'.$db->dsn['database'] ;
1214
1215         return $sesPrefix;
1216     }
1217     
1218     function loginPublic()
1219     {
1220         $this->isAuth(); // force session start..
1221          
1222         $db = $this->getDatabaseConnection();
1223         
1224         $ff = HTML_FlexyFramework::get();
1225         
1226         if(empty($ff->Pman) || empty($ff->Pman['login_public'])){
1227             return false;
1228         }
1229         
1230         $sesPrefix = $ff->Pman['login_public'] . '-' .get_class($this) .'-'.$db->dsn['database'] ;
1231         
1232         $p = DB_DAtaObject::Factory($this->tableName());
1233         $p->get($this->pid());
1234         
1235         $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize((object)$p->toArray());
1236         
1237         return true;
1238     }
1239     
1240  }