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