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