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