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