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