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