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