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