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