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