DataObjects/Core_notify.php
[Pman.Core] / DataObjects / Core_person.php
1 <?php
2 /**
3  * Table Definition for Person
4  */
5 class_exists('DB_DataObject') ? '' : 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 (is_a($parts,'PEAR_Error')) {
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             $u = DB_DataObject::factory($this->tableName());
268             if ($a->id && $u->get($a->id)) { //&& strlen($u->passwd)) {
269               
270                 return $u->verifyAuth();  // got authentication...
271                 
272     
273             }
274             
275             unset($_SESSION[get_class($this)][$sesPrefix .'-auth']);
276             unset($_SESSION[get_class($this)][$sesPrefix .'-timeout']);
277             setcookie('Pman.timeout', -1, time() + (30*60), '/');
278             
279         }
280         
281         // http basic auth..
282         $u = DB_DataObject::factory($this->tableName());
283         
284         if (!empty($_SERVER['PHP_AUTH_USER']) 
285             &&
286             !empty($_SERVER['PHP_AUTH_PW'])
287             &&
288             $u->get('email', $_SERVER['PHP_AUTH_USER'])
289             &&
290             $u->checkPassword($_SERVER['PHP_AUTH_PW'])
291            ) {
292             $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize($u);
293             return true; 
294         }
295         //die("test init");
296         if (!$this->canInitializeSystem()) {
297           //  die("can not init");
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             (
308                 (
309                     $_SERVER['SERVER_ADDR'] == '127.0.0.1' &&
310                     $_SERVER['REMOTE_ADDR'] == '127.0.0.1'
311                 )
312                 ||
313                 (
314                     $_SERVER['SERVER_ADDR'] == '::1' &&
315                     $_SERVER['REMOTE_ADDR'] == '::1'
316                 )
317             )
318         ) {
319             $group = DB_DataObject::factory('core_group');
320             $group->get('name', 'Administrators');
321             
322             $member = DB_DataObject::factory('core_group_member');
323             $member->autoJoin();
324             $member->group_id = $group->id;
325             $member->whereAdd("
326                 join_user_id_id.id IS NOT NULL
327             ");
328             if($member->find(true)){
329                 $default_admin = DB_DataObject::factory($this->tableName());
330                 if(!$default_admin->get($member->user_id)){
331                     $default_admin = false;
332                 }
333             }
334         }
335         
336         //var_dump($ff->Pman['local_autoauth']);         var_dump($_SERVER); exit;
337         $u = DB_DataObject::factory($this->tableName());
338         $ff = HTML_FlexyFramework::get();
339         
340         if (!empty($ff->Pman['local_autoauth']) && 
341             (!empty($_SERVER['SERVER_ADDR'])) &&
342             (
343                 (
344                     $_SERVER['SERVER_ADDR'] == '127.0.0.1' &&
345                     $_SERVER['REMOTE_ADDR'] == '127.0.0.1'
346                 )
347                 ||
348                 (
349                     $_SERVER['SERVER_ADDR'] == '::1' &&
350                     $_SERVER['REMOTE_ADDR'] == '::1'
351                 )
352             ) &&
353             ($default_admin ||  $u->get('email', $ff->Pman['local_autoauth']))
354         ) {
355             $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize($default_admin ? $default_admin : $u);
356             return true;
357         }
358         
359         //var_dump(session_id());
360         //var_dump($_SESSION[__CLASS__]);
361         
362         //if (!empty(   $_SESSION[__CLASS__][$sesPrefix .'-empty'] )) {
363         //    return false;
364         //}
365         //die("got this far?");
366         // not in session or not matched...
367         $u = DB_DataObject::factory($this->tableName());
368         $u->whereAdd(' LENGTH(passwd) > 0');
369         $n = $u->count();
370         $_SESSION[get_class($this)][$sesPrefix .'-empty']  = $n;
371         if (class_exists('PEAR')) {
372             $error =  PEAR::getStaticProperty('DB_DataObject','lastError');
373             if ($error) {
374                 die($error->toString()); // not really a good thing to do...
375             }
376         }
377         if (!$n){ // authenticated as there are no users in the system...
378             return true;
379         }
380         
381         return false;
382         
383     }
384     
385     function canInitializeSystem()
386     {
387         
388         return !strcasecmp(get_class($this) , __CLASS__);
389     }
390     
391     function getAuthUser()
392     {
393         if (!$this->isAuth()) {
394             return false;
395         }
396         
397         $ff= HTML_FlexyFramework::get();
398         
399         $sesPrefix = $this->sesPrefix();
400         
401         //var_dump(array(get_class($this),$sesPrefix .'-auth'));
402        
403         if (!empty($_SESSION[get_class($this)][$sesPrefix .'-auth'])) {
404             $a = unserialize($_SESSION[get_class($this)][$sesPrefix .'-auth']);
405             
406             $u = DB_DataObject::factory($this->tableName()); // allow extending this ...
407             $u->autoJoin();
408             if ($u->get($a->id)) { /// && strlen($u->passwd)) {  // should work out the pid .. really..
409                 
410                 $_SESSION[get_class($this)][$sesPrefix .'-auth-timeout'] = time() + (30*60); // eg. 30 minutes
411                 setcookie('Pman.timeout', time() + (30*60), time() + (30*60), '/');
412                 
413                 $user = clone ($u);
414                 return clone($user);
415             
416             }
417             unset($_SESSION[get_class($this)][$sesPrefix .'-auth']);
418             unset($_SESSION[get_class($this)][$sesPrefix .'-timeout']);
419             setcookie('Pman.timeout', -1, time() + (30*60), '/');
420             
421         }
422         
423         
424         
425         if (!$this->canInitializeSystem()) {
426             return false;
427         }
428         
429         
430         
431         if (empty(   $_SESSION[get_class($this)][$sesPrefix .'-empty'] )) {
432             $u = DB_DataObject::factory($this->tableName());
433             $u->whereAdd(' LENGTH(passwd) > 0');
434             $_SESSION[get_class($this)][$sesPrefix .'-empty']  = $u->count();
435         }
436                 
437              
438         if (isset(   $_SESSION[get_class($this)][$sesPrefix .'-empty'] ) && $_SESSION[get_class($this)][$sesPrefix .'-empty']  < 1) {
439             
440             // fake person - open system..
441             //$ce = DB_DataObject::factory('core_enum');
442             //$ce->initEnums();
443             
444             
445             $u = DB_DataObject::factory($this->tableName());
446             $u->id = -1;
447             
448             // if a company has been created fill that in in company_id_id
449             $c = DB_DAtaObject::factory('core_company')->lookupOwner();
450             if ($c) {
451                 $u->company_id_id = $c->pid();
452                 $u->company_id = $c->pid();
453             }
454             
455             return $u;
456             
457         }
458         return false;
459     }     
460     function login()
461     {
462         $this->isAuth(); // force session start..
463         if (!$this->verifyAuth()) { // check for company valid..
464             return false;
465         }
466         
467         // open up iptables at login..
468         $dbname = $this->databaseNickname();
469         touch( '/tmp/run_pman_admin_iptables-'.$dbname);
470          
471         // refresh admin group if we are logged in as one..
472         //DB_DataObject::debugLevel(1);
473         $g = DB_DataObject::factory('core_group');
474         $g->type = 0;
475         $g->get('name', 'Administrators');
476         $gm = DB_DataObject::Factory('core_group_member');
477         if (in_array($g->id,$gm->listGroupMembership($this))) {
478             // refresh admin groups.
479             $gr = DB_DataObject::Factory('core_group_right');
480             $gr->applyDefs($g, 0);
481         }
482         
483         $sesPrefix = $this->sesPrefix();
484         
485         // we should not store the whole data in the session - otherwise it get's huge.
486         $p = DB_DAtaObject::Factory($this->tableName());
487         $p->get($this->pid());
488         
489         $d = $p->toArray();
490         
491         $_SESSION[get_class($this)][$sesPrefix .'-auth-timeout'] = time() + (30*60); // eg. 30 minutes
492         setcookie('Pman.timeout', time() + (30*60), time() + (30*60), '/');
493         
494         //var_dump(array(get_class($this),$sesPrefix .'-auth'));
495         $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize((object)$d);
496         // ensure it's written so that ajax calls can fetch it..
497         
498         
499         
500     }
501     function logout()
502     {
503         $this->isAuth(); // force session start..
504         
505         $sesPrefix = $this->sesPrefix();
506         
507         $_SESSION[get_class($this)][$sesPrefix .'-auth-timeout'] = -1;
508         
509         $_SESSION[get_class($this)][$sesPrefix .'-auth'] = "";
510         
511     }    
512     function genPassKey ($t) 
513     {
514         return md5($this->email . $t. $this->passwd);
515     }
516     function simpleAuthKey($m = 0)
517     {
518         $month = $m > -1 ? date('Y-m') : date('Y-m', strtotime('LAST MONTH'));
519         
520         return md5(implode(',' ,  array($month, $this->email , $this->passwd, $this->id)));
521     } 
522     function checkPassword($val)
523     {
524         
525         
526         if (substr($this->passwd,0,1) == '$') {
527             if (function_exists('pasword_verify')) {
528                 return password_verify($val, $this->passwd);
529             }
530             return crypt($val,$this->passwd) == $this->passwd ;
531         }
532         // old style md5 passwords...- cant be used with courier....
533         return md5($val) == $this->passwd;
534     }
535     
536     function setPassword($value) 
537     {
538         if (function_exists('pasword_hash')) {
539             return password_hash($value);
540         }
541         
542         $salt='';
543         while(strlen($salt)<9) {
544             $salt.=chr(rand(64,126));
545             //php -r var_dump(crypt('testpassword', '$1$'. (rand(64,126)). '$'));
546         }
547         $this->passwd = crypt($value, '$1$'. $salt. '$');
548        
549        
550     }      
551     
552     function generatePassword($length = 5) // genearte a password (add set 'rawPasswd' to it's value)
553     {
554         require_once 'Text/Password.php';
555         $this->rawPasswd = strtr(ucfirst(Text_Password::create($length)).ucfirst(Text_Password::create($length)), array(
556         "a"=>"4", "e"=>"3",  "i"=>"1",  "o"=>"0", "s"=>"5",  "t"=>"7"));
557         $this->setPassword($this->rawPasswd);
558         return $this->rawPasswd;
559     }
560     
561     function company()
562     {
563         $x = DB_DataObject::factory('core_company');
564         $x->autoJoin();
565         $x->get($this->company_id);
566         return $x;
567     }
568     function loadCompany()
569     {
570         $this->company = $this->company();
571     }
572     
573     function active()
574     { 
575         return $this->active;
576     }
577     function authUserName($n) // set username prior to acheck user exists query.
578     {
579         
580         $this->whereAdd('LENGTH(passwd) > 1'); 
581         $this->email = $n;
582     }
583     function lang()
584     {
585         if (!func_num_args()) {
586             return $this->lang;
587         }
588         $val = array_shift(func_get_args());
589         if ($val == $this->lang) {
590             return;
591         }
592         $uu = clone($this);
593         $this->lang = $val;
594         $this->update($uu);
595         return $this->lang;
596     }
597             
598     
599     function authUserArray()
600     {
601         
602         $aur = $this->toArray();
603         
604         if ($this->id < 1) {
605             return $aur;
606         }
607         
608         
609         //DB_DataObject::debugLevel(1);
610         $c = DB_Dataobject::factory('core_company');
611         $im = DB_Dataobject::factory('Images');
612         $c->joinAdd($im, 'LEFT');
613         $c->selectAdd();
614         $c->selectAs($c, 'company_id_%s');
615         $c->selectAs($im, 'company_id_logo_id_%s');
616         $c->id = $this->company_id;
617         $c->limit(1);
618         $c->find(true);
619         
620         $aur = array_merge( $c->toArray(),$aur);
621         
622         if (empty($c->company_id_logo_id_id))  {
623                  
624             $im = DB_Dataobject::factory('Images');
625             $im->ontable = DB_DataObject::factory('core_company')->tableName();
626             $im->onid = $c->id;
627             $im->imgtype = 'LOGO';
628             $im->limit(1);
629             $im->selectAdd();
630             $im->selectAs($im,  'company_id_logo_id_%s');
631             if ($im->find(true)) {
632                     
633                 foreach($im->toArray() as $k=>$v) {
634                     $aur[$k] = $v;
635                 }
636             }
637         }
638       
639         // perms + groups.
640         $aur['perms']  = $this->getPerms();
641         $g = DB_DataObject::Factory('core_group_member');
642         $aur['groups']  = $g->listGroupMembership($this, 'name');
643         
644         $aur['passwd'] = '';
645         $aur['dailykey'] = '';
646         
647         
648         
649         return $aur;
650     }
651     
652     //   ----------PERMS------  ----------------
653     function getPerms() 
654     {
655          //DB_DataObject::debugLevel(1);
656         // find out all the groups they are a member of.. + Default..
657         
658         // ------ INIITIALIZE IF NO GROUPS ARE SET UP.
659         
660         $g = DB_DataObject::Factory('core_group_right');
661         if (!$g->count()) {
662             $g->genDefault();
663         }
664         
665         if ($this->id < 0) {
666             return $g->adminRights(); // system is not set up - so they get full rights.
667         }
668         //DB_DataObject::debugLevel(1);
669         $g = DB_DataObject::Factory('core_group_member');
670         $g->whereAdd('group_id is NOT NULL AND user_id IS NOT NULL');
671         if (!$g->count()) {
672             // add the current user to the admin group..
673             $g = DB_DataObject::Factory('core_group');
674             if ($g->get('name', 'Administrators')) {
675                 $gm = DB_DataObject::Factory('core_group_member');
676                 $gm->group_id = $g->id;
677                 $gm->user_id = $this->id;
678                 $gm->insert();
679             }
680             
681         }
682         
683         // ------ STANDARD PERMISSION HANDLING.
684         $isOwner = $this->company()->comptype == 'OWNER';
685         $g = DB_DataObject::Factory('core_group_member');
686         $grps = $g->listGroupMembership($this);
687        //var_dump($grps);
688         $isAdmin = $g->inAdmin;   //???  what???
689         //echo '<PRE>'; print_r($grps);var_dump($isAdmin);
690         // the load all the perms for those groups, and add them all together..
691         // then load all those 
692         $g = DB_DataObject::Factory('core_group_right');
693         $ret =  $g->listPermsFromGroupIds($grps, $isAdmin, $isOwner);
694         //echo '<PRE>';print_r($ret);
695         return $ret;
696          
697         
698     }
699     /**
700      *Basic group fetching - probably needs to filter by type eventually.
701      *
702      *@param String $what - fetchall() argument - eg. 'name' returns names of all groups that they are members of.
703      */
704     
705     function groups($what=false)
706     {
707         $g = DB_DataObject::Factory('core_group_member');
708         $grps = $g->listGroupMembership($this);
709         $g = DB_DataObject::Factory('core_group');
710         $g->whereAddIn('id', $grps, 'int');
711         return $g->fetchAll($what);
712         
713     }
714     
715     
716     
717     function hasPerm($name, $lvl) 
718     {
719         static $pcache = array();
720         
721         if (!isset($pcache[$this->id])) {
722             $pcache[$this->id] = $this->getPerms();
723         }
724         
725        // echo "<PRE>";print_r($pcache[$au->id]);
726        // var_dump($pcache[$au->id]);
727         if (empty($pcache[$this->id][$name])) {
728             return false;
729         }
730         
731         return strpos($pcache[$this->id][$name], $lvl) > -1;
732         
733     }    
734     
735     //  ------------ROO HOOKS------------------------------------
736     function applyFilters($q, $au, $roo)
737     {
738         //DB_DataObject::DebugLevel(1);
739         
740         if (!empty($q['query']['is_owner'])) {
741             $this->whereAdd(" join_company_id_id.comptype = 'OWNER'");
742         }
743         
744         if (!empty($q['query']['person_not_internal'])) {
745             $this->whereAdd(" join_company_id_id.isOwner = 0 ");
746         }
747         
748         if (!empty($q['query']['person_internal_only_all'])) {
749             
750             
751             // must be internal and not current user (need for distribution list)
752             // user has a projectdirectory entry and role is not blank.
753             //DB_DataObject::DebugLevel(1);
754             $pd = DB_DataObject::factory('ProjectDirectory');
755             $pd->whereAdd("role != ''");
756             $pd->selectAdd();
757             $pd->selectAdd('distinct(person_id) as person_id');
758             $roled = $pd->fetchAll('person_id');
759             $rs = $roled  ? "  OR
760                     {$this->tableName()}.id IN (".implode(',', $roled) . ") 
761                     " : '';
762             $this->whereAdd(" join_company_id_id.comptype = 'OWNER' $rs ");
763             
764         }
765         // -- for distribution
766         if (!empty($q['query']['person_internal_only'])) {
767             // must be internal and not current user (need for distribution list)
768             $this->whereAdd(" join_company_id_id.comptype = 'OWNER'");
769             
770             //$this->whereAdd(($this->tableName() == 'Person' ? 'Person' : "join_person_id_id") .
771             //    ".id  != ".$au->id);
772             $this->whereAdd("{$this->tableName()}.id != {$au->id}");
773         } 
774         
775         if (!empty($q['query']['comptype_or_company_id'])) {
776            // DB_DataObject::debugLevel(1);
777             $bits = explode(',', $q['query']['comptype_or_company_id']);
778             $id = (int) array_pop($bits);
779             $ct = $this->escape($bits[0]);
780             
781             $this->whereAdd(" join_company_id_id.comptype = '$ct' OR {$this->tableName()}.company_id = $id");
782             
783         }
784         
785         
786         // staff list..
787         if (!empty($q['query']['person_inactive'])) {
788            // DB_Dataobject::debugLevel(1);
789             $this->active = 1;
790         }
791         $tn_p = $this->tableName();
792         $tn_gm = DB_DataObject::Factory('core_group_member')->tableName();
793         $tn_g = DB_DataObject::Factory('core_group')->tableName();
794
795         ///---------------- Group views --------
796         if (!empty($q['query']['in_group'])) {
797             // DB_DataObject::debugLevel(1);
798             $ing = (int) $q['query']['in_group'];
799             if ($q['query']['in_group'] == -1) {
800              
801                 // list all staff who are not in a group.
802                 $this->whereAdd("{$this->tableName()}.id NOT IN (
803                     SELECT distinct(user_id) FROM $tn_gm LEFT JOIN
804                         $tn_g ON $tn_g.id = $tn_gm.group_id
805                         WHERE $tn_g.type = ".$q['query']['type']."
806                     )");
807                 
808                 
809             } else {
810                 
811                 $this->whereAdd("$tn_p.id IN (
812                     SELECT distinct(user_id) FROM $tn_gm
813                         WHERE group_id = $ing
814                     )");
815                }
816             
817         }
818         
819         // #2307 Search Country!!
820         if (!empty($q['query']['in_country'])) {
821             // DB_DataObject::debugLevel(1);
822             $inc = $q['query']['in_country'];
823             $this->whereAdd("$tn_p.countries LIKE '%{$inc}%'");
824         }
825         
826         if (!empty($q['query']['not_in_directory'])) { 
827             // it's a Person list..
828             // DB_DATaobjecT::debugLevel(1);
829             
830             // specific to project directory which is single comp. login
831             //
832             $owncomp = DB_DataObject::Factory('core_company');
833             $owncomp->get('comptype', 'OWNER');
834             if ($q['company_id'] == $owncomp->id) {
835                 $this->active =1;
836             }
837             
838             
839
840             if ( $q['query']['not_in_directory'] > -1) {
841                 $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
842                 // can list current - so that it does not break!!!
843                 $this->whereAdd("$tn_p.id NOT IN 
844                     ( SELECT distinct person_id FROM $tn_pd WHERE
845                         project_id = " . $q['query']['not_in_directory'] . " AND 
846                         company_id = " . $this->company_id . ')');
847             }
848         }
849            
850         if (!empty($q['query']['role'])) { 
851             // it's a Person list..
852             // DB_DATaobjecT::debugLevel(1);
853             
854             // specific to project directory which is single comp. login
855             //
856             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
857                 // can list current - so that it does not break!!!
858             $this->whereAdd("$tn_p.id IN 
859                     ( SELECT distinct person_id FROM $tn_pd WHERE
860                         role = '". $this->escape($q['query']['role']) ."'
861             )");
862         
863         }
864         
865         
866         if (!empty($q['query']['project_member_of'])) {
867                // this is also a flag to return if they are a member..
868             //DB_DataObject::debugLevel(1);
869             $do = DB_DataObject::factory('ProjectDirectory');
870             $do->project_id = $q['query']['project_member_of'];
871             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
872             $this->joinAdd($do,array('joinType' => 'LEFT', 'useWhereAsOn' => true));
873             $this->selectAdd("IF($tn_pd.id IS NULL, 0,  $tn_pd.id )  as is_member");
874                 
875                 
876             if (!empty($q['query']['project_member_filter'])) {
877                 $this->having('is_member !=0');
878             
879             }
880             
881         }
882         
883         if(!empty($q['query']['name'])){
884             $this->whereAdd("
885                 {$this->tableName()}.name LIKE '%{$this->escape($q['query']['name'])}%'
886             ");
887         }
888          if(!empty($q['query']['name_starts'])){
889             $this->whereAdd("
890                 {$this->tableName()}.name LIKE '{$this->escape($q['query']['name_starts'])}%'
891             ");
892         }
893         
894         if (!empty($q['query']['search'])) {
895             
896             // use our magic search builder...
897             
898              require_once 'Text/SearchParser.php';
899             $x = new Text_SearchParser($q['query']['search']);
900             
901             $props = array(
902                     "$tn_p.name",
903                     "$tn_p.email",
904                     "$tn_p.role",
905                     "$tn_p.phone",
906                     "$tn_p.remarks",
907                     "join_company_id_id.name"
908             );
909             $tbcols = $this->table();
910             foreach(array('firstname','lastname') as $k) {
911                 if (isset($tbcols[$k])) {
912                     $props[] = "{$tn_p}.{$k}";
913                 }
914             }
915             
916             
917             
918             
919             $str =  $x->toSQL(array(
920                 'default' => $props,
921                 'map' => array(
922                     'company' => 'join_company_id_id.name',
923                     //'country' => 'Clipping.country',
924                     //  'media' => 'Clipping.media_name',
925                 ),
926                 'escape' => array($this->getDatabaseConnection(), 'escapeSimple'), /// pear db or mdb object..
927
928             ));
929             
930             
931             $this->whereAdd($str); /*
932                         $tn_p.name LIKE '%$s%'  OR
933                         $tn_p.email LIKE '%$s%'  OR
934                         $tn_p.role LIKE '%$s%'  OR
935                         $tn_p.phone LIKE '%$s%' OR
936                         $tn_p.remarks LIKE '%$s%' 
937                         
938                     ");*/
939         }
940         
941         // project directory rules -- this may distrupt things.
942         $p = DB_DataObject::factory('ProjectDirectory');
943         // if project directories are set up, then we can apply project query rules..
944         if ($p->count()) {
945             $p->autoJoin();
946             $pids = $p->projects($au);
947             if (isset($q['query']['project_id'])) {   
948                 $pid = (int)$q['query']['project_id'];
949                 if (!in_array($pid, $pids)) {
950                     $roo->jerr("Project not in users valid projects");
951                 }
952                 $pids = array($pid);
953             }
954             // project roles..
955             //if (empty($q['_anyrole'])) {  // should be project_directry_role
956             //    $p->whereAdd("{$p->tableName()}.role != ''");
957             // }
958             if (!empty($q['query']['role'])) {  // should be project_directry_role
959                 $role = $this->escape($q['query']['role']); 
960                
961                 $p->whereAdd("{$p->tableName()}.role LIKE '%{$role}%'");
962                  
963             }
964             
965             if (!$roo->hasPerm('Core.Projects_All', 'S')) {
966                 $peps = $p->people($pids);
967                 $this->whereAddIn("{$tn}.id", $peps, 'int');
968             }
969         }    
970         
971         // fixme - this needs a more generic fix - it was from the mtrack_person code...
972         if (isset($q['query']['ticket_id'])) {  
973             // find out what state the ticket is in.
974             $t = DB_DataObject::Factory('mtrack_ticket');
975             $t->autoJoin();
976             $t->get($q['query']['ticket_id']);
977             
978             if (!$this->checkPerm('S', $au)) {
979                 $roo->jerr("permssion denied to query state of ticket");
980             }
981             
982             $p = DB_DataObject::factory('ProjectDirectory');
983             $pids = array($t->project_id);
984            
985             $peps = $p->people($pids);
986             
987             $this->whereAddIn($this->tableName().'.id', $peps, 'int');
988             
989             //$this->whereAdd('join_prole != ''");
990             
991         }  
992     }
993     function setFromRoo($ar, $roo)
994     {
995          $this->setFrom($ar);
996         if (!empty($ar['passwd1'])) {
997             $this->setPassword($ar['passwd1']);
998         }
999         
1000         if (    $this->id &&
1001                 ($this->email == $roo->old->email)&&
1002                 ($this->company_id == $roo->old->company_id)
1003             ) {
1004             return true;
1005         }
1006         if (empty($this->email)) {
1007             return true;
1008         }
1009         // this only applies to our owner company..
1010         $c = $this->company();
1011         if (empty($c->comptype_name) || $c->comptype_name != 'OWNER') {
1012             return true;
1013         }
1014         
1015         
1016         $xx = DB_Dataobject::factory($this->tableName());
1017         $xx->setFrom(array(
1018             'email' => $this->email,
1019            // 'company_id' => $x->company_id
1020         ));
1021         
1022         if ($xx->count()) {
1023             return "Duplicate Email found";
1024         }
1025         return true;
1026     }
1027     /**
1028      *
1029      * before Delete - delete significant dependancies..
1030      * this is called after checkPerm..
1031      */
1032     
1033     function beforeDelete()
1034     {
1035         
1036         $e = DB_DataObject::Factory('Events');
1037         $e->whereAdd('person_id = ' . $this->id);
1038         $e->delete(true);
1039         
1040         // anything else?  
1041         
1042     }
1043     
1044     
1045     /***
1046      * Check if the a user has access to modify this item.
1047      * @param String $lvl Level (eg. Core.Projects)
1048      * @param Pman_Core_DataObjects_Person $au The authenticated user.
1049      * @param boolean $changes alllow changes???
1050      *
1051      * @return false if no access..
1052      */
1053     function checkPerm($lvl, $au, $changes=false) //heck who is trying to access this. false == access denied..
1054     {
1055          
1056        // do we have an empty system..
1057         if ($au && $au->id == -1) {
1058             return true;
1059         }
1060         // if not authenticated... do not allow in???
1061         if (!$au ) {
1062             return false;
1063         }
1064         
1065         // determine if it's staff!!!
1066         $owncomp = DB_DataObject::Factory('core_company');
1067         $owncomp->get('comptype', 'OWNER');
1068         $isStaff = ($au->company_id ==  $owncomp->id);
1069        
1070        
1071         if (!$isStaff) {
1072             
1073             // - can not change company!!!
1074             if ($changes && 
1075                 isset($changes['company_id']) && 
1076                 $changes['company_id'] != $au->company_id) {
1077                 return false;
1078             }
1079             // can only set new emails..
1080             if ($changes && 
1081                     !empty($this->email) && 
1082                     isset($changes['email']) && 
1083                     $changes['email'] != $this->email) {
1084                 return false;
1085             }
1086             
1087             
1088             // mtrack had the idea that all 'S' should be allowed.. - but filtered later..
1089             // ???? do we want this?
1090             
1091             // edit self... - what about other staff members...
1092             
1093             //return $this->company_id == $au->company_id;
1094         }
1095         
1096          
1097         // yes, only owner company can mess with this...
1098         
1099         
1100         
1101     
1102         switch ($lvl) {
1103             // extra case change passwod?
1104             case 'P': //??? password
1105                 // standard perms -- for editing + if the user is dowing them selves..
1106                 $ret = $isStaff ? $au->hasPerm("Core.Staff", "E") : $au->hasPerm("Core.Person", "E");
1107                 return $ret || $au->id == $this->id;
1108             
1109             default:                
1110                 return $isStaff ? $au->hasPerm("Core.Staff", $lvl) : $au->hasPerm("Core.Person", $lvl);
1111         
1112         }
1113         return false;
1114     }
1115     
1116     function beforeInsert($req, $roo)
1117     {
1118         $p = DB_DataObject::factory('core_person');
1119         if ($roo->authUser->id > -1 ||  $p->count() > 1) {
1120             return;
1121         }
1122         $c = DB_DAtaObject::Factory('core_company');
1123         $tc =$c->count();
1124         if (!$tc || $tc> 1) {
1125             $roo->jerr("can not create initial user as multiple companies already exist");
1126         }
1127         $c->find(true);
1128         $this->company_id = $c->id;
1129         
1130     }
1131     
1132     function onInsert($req, $roo)
1133     {
1134          
1135         $p = DB_DataObject::factory('core_person');
1136         if ($roo->authUser->id < 0 && $p->count() == 1) {
1137             // this seems a bit risky...
1138             
1139             $g = DB_DataObject::factory('core_group');
1140             $g->initGroups();
1141             
1142             $g->type = 0;
1143             $g->get('name', 'Administrators');
1144             
1145             $p = DB_DataObject::factory('core_group_member');
1146             $p->group_id = $g->id;
1147             $p->user_id = $this->id;     
1148             if (!$p->count()) {
1149                 $p->insert();
1150                 $roo->addEvent("ADD", $p, $g->toEventString(). " Added " . $this->toEventString());
1151             }
1152             $this->login();
1153         }
1154         if (!empty($req['project_id_addto'])) {
1155             $pd = DB_DataObject::factory('ProjectDirectory');
1156             $pd->project_id = $req['project_id_addto'];
1157             $pd->person_id = $this->id; 
1158             $pd->ispm =0;
1159             $pd->office_id = $this->office_id;
1160             $pd->company_id = $this->company_id;
1161             $pd->insert();
1162         }
1163         
1164     }
1165     
1166     function importFromArray($roo, $persons, $opts)
1167     {
1168         if (empty($opts['prefix'])) {
1169             $roo->jerr("opts[prefix] is empty - you can not just create passwords based on the user names");
1170         }
1171         
1172         if (!is_array($persons) || empty($persons)) {
1173             $roo->jerr("error in the person data. - empty on not valid");
1174         }
1175         DB_DataObject::factory('core_group')->initGroups();
1176         
1177         foreach($persons as $person){
1178             $p = DB_DataObject::factory('core_person');
1179             if($p->get('name', $person['name'])){
1180                 continue;
1181             }
1182             $p->setFrom($person);
1183             
1184             $companies = DB_DataObject::factory('core_company');
1185             if(!$companies->get('comptype', 'OWNER')){
1186                 $roo->jerr("Missing OWNER companies!");
1187             }
1188             $p->company_id = $companies->pid();
1189             // strip the 'spaces etc.. make lowercase..
1190             $name = strtolower(str_replace(' ', '', $person['name']));
1191             $p->setPassword("{$opts['prefix']}{$name}");
1192             $p->insert();
1193             // set up groups
1194             // if $person->groups is set.. then
1195             // add this person to that group eg. groups : [ 'Administrator' ] 
1196             if(!empty($person['groups'])){
1197                 $groups = DB_DataObject::factory('core_group');
1198                 if(!$groups->get('name', $person['groups'])){
1199                     $roo->jerr("Missing groups : {$person['groups']}");
1200                 }
1201                 $gm = DB_DataObject::factory('core_group_member');
1202                 $gm->change($p, $groups, true);
1203             }
1204             
1205             $p->onInsert(array(), $roo);
1206         }
1207     }
1208     
1209     // this is for the To: "{getEmailName()}" <email@address>
1210     // not good for Dear XXXX, - use {person.firstname} for that.
1211     function getEmailName()
1212     {
1213         $name = array();
1214         
1215         if(!empty($this->honor)){
1216             array_push($name, $this->honor);
1217         }
1218         
1219         if(!empty($this->name)){
1220             array_push($name, $this->name);
1221             
1222             return implode(' ', $name);
1223         }
1224         
1225         if(!empty($this->firstname) || !empty($this->lastname)){
1226             array_push($name, $this->firstname);
1227             array_push($name, $this->lastname);
1228             
1229             $name = array_filter($name);
1230             
1231             return implode(' ', $name);
1232         }
1233         
1234         return $this->email;
1235     }
1236     
1237     function sesPrefix()
1238     {
1239         $ff= HTML_FlexyFramework::get();
1240         
1241         $appname = empty($ff->appNameShort) ? $ff->project : $ff->project . '-' . $ff->appNameShort;
1242         
1243         $dname = method_exists($this, 'getDatabaseConnection') ? $this->getDatabaseConnection()->dsn['database'] : $this->databaseNickname();
1244         
1245         $sesPrefix = $appname.'-' .get_class($this) .'-' . $dname;
1246
1247         return $sesPrefix;
1248     }
1249     
1250     function loginPublic()
1251     {
1252         $this->isAuth(); // force session start..
1253          
1254         $db = $this->getDatabaseConnection();
1255         
1256         $ff = HTML_FlexyFramework::get();
1257         
1258         if(empty($ff->Pman) || empty($ff->Pman['login_public'])){
1259             return false;
1260         }
1261         
1262         $sesPrefix = $ff->Pman['login_public'] . '-' .get_class($this) .'-'.$db->dsn['database'] ;
1263         
1264         $p = DB_DAtaObject::Factory($this->tableName());
1265         $p->get($this->pid());
1266         
1267         $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize((object)$p->toArray());
1268         
1269         return true;
1270     }
1271     
1272  }