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