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