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