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