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