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