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