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