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