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