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