DataObjects/Core_curr_rate.php
[Pman.Core] / DataObjects / Person.php
1 <?php
2 /**
3  * Table Definition for Person
4  */
5 require_once 'DB/DataObject.php';
6
7
8 class Pman_Core_DataObjects_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 = '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 (PEAR::isError($parts)) {
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             
268             $u = DB_DataObject::factory($this->tableName());
269             if ($a->id && $u->get($a->id)) { //&& strlen($u->passwd)) {
270               
271                 return $u->verifyAuth();
272                 
273     
274             }
275             
276             unset($_SESSION[get_class($this)][$sesPrefix .'-auth']);
277             
278         }
279         if (!$this->canInitializeSystem()) {
280             return false;
281         }
282         
283         
284         // local auth - 
285         $default_admin = false;
286         if (!empty($ff->Pman['local_autoauth']) && 
287             ($ff->Pman['local_autoauth'] === true) &&
288             (!empty($_SERVER['SERVER_ADDR'])) &&
289             ($_SERVER['SERVER_ADDR'] == '127.0.0.1') &&
290             ($_SERVER['REMOTE_ADDR'] == '127.0.0.1')  
291         ) {
292             $group = DB_DataObject::factory('Groups');
293             $group->get('name', 'Administrators');
294             
295             $member = DB_DataObject::factory('group_members');
296             $member->autoJoin();
297             $member->group_id = $group->id;
298             $member->whereAdd("
299                 join_user_id_id.id IS NOT NULL
300             ");
301             if($member->find(true)){
302                 $default_admin = DB_DataObject::factory($this->tableName());
303                 if(!$default_admin->get($member->user_id)){
304                     $default_admin = false;
305                 }
306             }
307         }
308         
309         //var_dump($ff->Pman['local_autoauth']);         var_dump($_SERVER); exit;
310         $u = DB_DataObject::factory($this->tableName());
311         $ff = HTML_FlexyFramework::get();
312         if (!empty($ff->Pman['local_autoauth']) && 
313             (!empty($_SERVER['SERVER_ADDR'])) &&
314             ($_SERVER['SERVER_ADDR'] == '127.0.0.1') &&
315             ($_SERVER['REMOTE_ADDR'] == '127.0.0.1')  &&
316             ($default_admin ||  $u->get('email', $ff->Pman['local_autoauth']))
317         ) {
318             $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize($default_admin ? $default_admin : $u);
319             return true;
320         }
321            
322         // http basic auth..
323         $u = DB_DataObject::factory($this->tableName());
324
325         if (!empty($_SERVER['PHP_AUTH_USER']) 
326             &&
327             !empty($_SERVER['PHP_AUTH_PW'])
328             &&
329             $u->get('email', $_SERVER['PHP_AUTH_USER'])
330             &&
331             $u->checkPassword($_SERVER['PHP_AUTH_PW'])
332            ) {
333             $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize($u);
334             return true; 
335         }
336         //var_dump(session_id());
337         //var_dump($_SESSION[__CLASS__]);
338         
339         //if (!empty(   $_SESSION[__CLASS__][$sesPrefix .'-empty'] )) {
340         //    return false;
341         //}
342         //die("got this far?");
343         // not in session or not matched...
344         $u = DB_DataObject::factory($this->tableName());
345         $u->whereAdd(' LENGTH(passwd) > 0');
346         $n = $u->count();
347         $_SESSION[get_class($this)][$sesPrefix .'-empty']  = $n;
348         $error =  PEAR::getStaticProperty('DB_DataObject','lastError');
349         if ($error) {
350             die($error->toString()); // not really a good thing to do...
351         }
352         if (!$n){ // authenticated as there are no users in the system...
353             return true;
354         }
355         
356         return false;
357         
358     }
359     
360     function canInitializeSystem()
361     {
362         return !strcasecmp(get_class($this) , __CLASS__);
363     }
364     
365     function getAuthUser()
366     {
367         if (!$this->isAuth()) {
368             return false;
369         }
370         
371         $ff= HTML_FlexyFramework::get();
372         
373         $sesPrefix = $this->sesPrefix();
374         
375         //var_dump(array(get_class($this),$sesPrefix .'-auth'));
376        
377         if (!empty($_SESSION[get_class($this)][$sesPrefix .'-auth'])) {
378             $a = unserialize($_SESSION[get_class($this)][$sesPrefix .'-auth']);
379             
380             $u = DB_DataObject::factory($this->tableName()); // allow extending this ...
381             $u->autoJoin();
382             if ($u->get($a->id)) { /// && strlen($u->passwd)) {  // should work out the pid .. really..
383                 $user = clone ($u);
384                 
385                 return clone($user);
386             }
387             unset($_SESSION[get_class($this)][$sesPrefix .'-auth']);
388         }
389         
390         
391         
392         if (!$this->canInitializeSystem()) {
393             return false;
394         }
395         
396         
397         
398         if (empty(   $_SESSION[get_class($this)][$sesPrefix .'-empty'] )) {
399             $u = DB_DataObject::factory($this->tableName());
400             $u->whereAdd(' LENGTH(passwd) > 0');
401             $_SESSION[get_class($this)][$sesPrefix .'-empty']  = $u->count();
402         }
403                 
404              
405         if (isset(   $_SESSION[get_class($this)][$sesPrefix .'-empty'] ) && $_SESSION[get_class($this)][$sesPrefix .'-empty']  < 1) {
406             
407             // fake person - open system..
408             //$ce = DB_DataObject::factory('core_enum');
409             //$ce->initEnums();
410             
411             
412             $u = DB_DataObject::factory($this->tableName());
413             $u->id = -1;
414             
415             // if a company has been created fill that in in company_id_id
416             $c = DB_DAtaObject::factory('Companies')->lookupOwner();
417             if ($c) {
418                 $u->company_id_id = $c->pid();
419                 $u->company_id = $c->pid();
420             }
421             
422             return $u;
423             
424         }
425         return false;
426     }     
427     function login()
428     {
429         $this->isAuth(); // force session start..
430         if (!$this->verifyAuth()) { // check for company valid..
431             return false;
432         }
433         
434         // open up iptables at login..
435         $dbname = $this->database();
436         touch( '/tmp/run_pman_admin_iptables-'.$dbname);
437          
438         // refresh admin group if we are logged in as one..
439         //DB_DataObject::debugLevel(1);
440         $g = DB_DataObject::factory('Groups');
441         $g->type = 0;
442         $g->get('name', 'Administrators');
443         $gm = DB_DataObject::Factory('group_members');
444         if (in_array($g->id,$gm->listGroupMembership($this))) {
445             // refresh admin groups.
446             $gr = DB_DataObject::Factory('group_rights');
447             $gr->applyDefs($g, 0);
448         }
449         
450         $sesPrefix = $this->sesPrefix();
451         
452         // we should not store the whole data in the session - otherwise it get's huge.
453         $p = DB_DAtaObject::Factory($this->tableName());
454         $p->get($this->pid());
455         
456         $d = $p->toArray();
457         
458         //var_dump(array(get_class($this),$sesPrefix .'-auth'));
459         $_SESSION[get_class($this)][$sesPrefix .'-auth'] = serialize((object)$d);
460         // ensure it's written so that ajax calls can fetch it..
461         
462         
463         
464     }
465     function logout()
466     {
467         $this->isAuth(); // force session start..
468         
469         $sesPrefix = $this->sesPrefix();
470         
471         $_SESSION[get_class($this)][$sesPrefix .'-auth'] = "";
472         
473     }    
474     function genPassKey ($t) 
475     {
476         return md5($this->email . $t. $this->passwd);
477     }
478     function simpleAuthKey($m = 0)
479     {
480         $month = $m > -1 ? date('Y-m') : date('Y-m', strtotime('LAST MONTH'));
481         
482         return md5(implode(',' ,  array($month, $this->email , $this->passwd, $this->id)));
483     } 
484     function checkPassword($val)
485     {
486         
487         if (substr($this->passwd,0,1) == '$') {
488             
489             return crypt($val,$this->passwd) == $this->passwd ;
490         }
491         // old style md5 passwords...- cant be used with courier....
492         return md5($val) == $this->passwd;
493     }
494     
495     function setPassword($value) 
496     {
497         $salt='';
498         while(strlen($salt)<9) {
499             $salt.=chr(rand(64,126));
500             //php -r var_dump(crypt('testpassword', '$1$'. (rand(64,126)). '$'));
501         }
502         $this->passwd = crypt($value, '$1$'. $salt. '$');
503        
504        
505     }      
506     
507     function generatePassword() // genearte a password (add set 'rawPasswd' to it's value)
508     {
509         require_once 'Text/Password.php';
510         $this->rawPasswd = strtr(ucfirst(Text_Password::create(5)).ucfirst(Text_Password::create(5)), array(
511         "a"=>"4", "e"=>"3",  "i"=>"1",  "o"=>"0", "s"=>"5",  "t"=>"7"));
512         $this->setPassword($this->rawPasswd);
513         return $this->rawPasswd;
514     }
515     
516     function company()
517     {
518         $x = DB_DataObject::factory('Companies');
519         $x->autoJoin();
520         $x->get($this->company_id);
521         return $x;
522     }
523     function loadCompany()
524     {
525         $this->company = $this->company();
526     }
527     
528     function active()
529     { 
530         return $this->active;
531     }
532     function authUserName($n) // set username prior to acheck user exists query.
533     {
534         
535         $this->whereAdd('LENGTH(passwd) > 1'); 
536         $this->email = $n;
537     }
538     function lang()
539     {
540         if (!func_num_args()) {
541             return $this->lang;
542         }
543         $val = array_shift(func_get_args());
544         if ($val == $this->lang) {
545             return;
546         }
547         $uu = clone($this);
548         $this->lang = $val;
549         $this->update($uu);
550         return $this->lang;
551     }
552             
553     
554     function authUserArray()
555     {
556         
557         $aur = $this->toArray();
558         
559         if ($this->id < 1) {
560             return $aur;
561         }
562         
563         
564         //DB_DataObject::debugLevel(1);
565         $c = DB_Dataobject::factory('Companies');
566         $im = DB_Dataobject::factory('Images');
567         $c->joinAdd($im, 'LEFT');
568         $c->selectAdd();
569         $c->selectAs($c, 'company_id_%s');
570         $c->selectAs($im, 'company_id_logo_id_%s');
571         $c->id = $this->company_id;
572         $c->limit(1);
573         $c->find(true);
574         
575         $aur = array_merge( $c->toArray(),$aur);
576         
577         if (empty($c->company_id_logo_id_id))  {
578                  
579             $im = DB_Dataobject::factory('Images');
580             $im->ontable = 'Companies';
581             $im->onid = $c->id;
582             $im->imgtype = 'LOGO';
583             $im->limit(1);
584             $im->selectAdd();
585             $im->selectAs($im,  'company_id_logo_id_%s');
586             if ($im->find(true)) {
587                     
588                 foreach($im->toArray() as $k=>$v) {
589                     $aur[$k] = $v;
590                 }
591             }
592         }
593       
594         // perms + groups.
595         $aur['perms']  = $this->getPerms();
596         $g = DB_DataObject::Factory('group_members');
597         $aur['groups']  = $g->listGroupMembership($this, 'name');
598         
599         $aur['passwd'] = '';
600         $aur['dailykey'] = '';
601         
602         
603         
604         return $aur;
605     }
606     
607     //   ----------PERMS------  ----------------
608     function getPerms() 
609     {
610          //DB_DataObject::debugLevel(1);
611         // find out all the groups they are a member of.. + Default..
612         
613         // ------ INIITIALIZE IF NO GROUPS ARE SET UP.
614         
615         $g = DB_DataObject::Factory('group_rights');
616         if (!$g->count()) {
617             $g->genDefault();
618         }
619         
620         if ($this->id < 0) {
621             return $g->adminRights(); // system is not set up - so they get full rights.
622         }
623         //DB_DataObject::debugLevel(1);
624         $g = DB_DataObject::Factory('group_members');
625         $g->whereAdd('group_id is NOT NULL AND user_id IS NOT NULL');
626         if (!$g->count()) {
627             // add the current user to the admin group..
628             $g = DB_DataObject::Factory('Groups');
629             if ($g->get('name', 'Administrators')) {
630                 $gm = DB_DataObject::Factory('group_members');
631                 $gm->group_id = $g->id;
632                 $gm->user_id = $this->id;
633                 $gm->insert();
634             }
635             
636         }
637         
638         // ------ STANDARD PERMISSION HANDLING.
639         $isOwner = $this->company()->comptype == 'OWNER';
640         $g = DB_DataObject::Factory('group_members');
641         $grps = $g->listGroupMembership($this);
642        //var_dump($grps);
643         $isAdmin = $g->inAdmin;
644         //echo '<PRE>'; print_r($grps);var_dump($isAdmin);
645         // the load all the perms for those groups, and add them all together..
646         // then load all those 
647         $g = DB_DataObject::Factory('group_rights');
648         $ret =  $g->listPermsFromGroupIds($grps, $isAdmin, $isOwner);
649         //echo '<PRE>';print_r($ret);
650         return $ret;
651          
652         
653     }
654     /**
655      *Basic group fetching - probably needs to filter by type eventually.
656      *
657      *@param String $what - fetchall() argument - eg. 'name' returns names of all groups that they are members of.
658      */
659     
660     function groups($what=false)
661     {
662         $g = DB_DataObject::Factory('group_members');
663         $grps = $g->listGroupMembership($this);
664         $g = DB_DataObject::Factory('Groups');
665         $g->whereAddIn('id', $grps, 'int');
666         return $g->fetchAll($what);
667         
668     }
669     
670     
671     
672     function hasPerm($name, $lvl) 
673     {
674         static $pcache = array();
675         
676         if (!isset($pcache[$this->id])) {
677             $pcache[$this->id] = $this->getPerms();
678         }
679        // echo "<PRE>";print_r($pcache[$au->id]);
680        // var_dump($pcache[$au->id]);
681         if (empty($pcache[$this->id][$name])) {
682             return false;
683         }
684         
685         return strpos($pcache[$this->id][$name], $lvl) > -1;
686         
687     }    
688     
689     //  ------------ROO HOOKS------------------------------------
690     function applyFilters($q, $au, $roo)
691     {
692         //DB_DataObject::DebugLevel(1);
693         
694         if (!empty($q['query']['is_owner'])) {
695             $this->whereAdd(" join_company_id_id.comptype = 'OWNER'");
696         }
697         
698         if (!empty($q['query']['person_not_internal'])) {
699             $this->whereAdd(" join_company_id_id.isOwner = 0 ");
700         }
701         
702         if (!empty($q['query']['person_internal_only_all'])) {
703             
704             
705             // must be internal and not current user (need for distribution list)
706             // user has a projectdirectory entry and role is not blank.
707             //DB_DataObject::DebugLevel(1);
708             $pd = DB_DataObject::factory('ProjectDirectory');
709             $pd->whereAdd("role != ''");
710             $pd->selectAdd();
711             $pd->selectAdd('distinct(person_id) as person_id');
712             $roled = $pd->fetchAll('person_id');
713             $rs = $roled  ? "  OR
714                     {$this->tableName()}.id IN (".implode(',', $roled) . ") 
715                     " : '';
716             $this->whereAdd(" join_company_id_id.comptype = 'OWNER' $rs ");
717             
718         }
719         // -- for distribution
720         if (!empty($q['query']['person_internal_only'])) {
721             // must be internal and not current user (need for distribution list)
722             $this->whereAdd(" join_company_id_id.comptype = 'OWNER'");
723             
724             //$this->whereAdd(($this->tableName() == 'Person' ? 'Person' : "join_person_id_id") .
725             //    ".id  != ".$au->id);
726             $this->whereAdd("{$this->tableName()}.id != {$au->id}");
727         } 
728         
729         if (!empty($q['query']['comptype_or_company_id'])) {
730            // DB_DataObject::debugLevel(1);
731             $bits = explode(',', $q['query']['comptype_or_company_id']);
732             $id = (int) array_pop($bits);
733             $ct = $this->escape($bits[0]);
734             
735             $this->whereAdd(" join_company_id_id.comptype = '$ct' OR {$this->tableName()}.company_id = $id");
736             
737         }
738         
739         
740         // staff list..
741         if (!empty($q['query']['person_inactive'])) {
742            // DB_Dataobject::debugLevel(1);
743             $this->active = 1;
744         }
745         $tn_p = $this->tableName();
746         $tn_gm = DB_DataObject::Factory('group_members')->tableName();
747         $tn_g = DB_DataObject::Factory('Groups')->tableName();
748
749         ///---------------- Group views --------
750         if (!empty($q['query']['in_group'])) {
751             // DB_DataObject::debugLevel(1);
752             $ing = (int) $q['query']['in_group'];
753             if ($q['query']['in_group'] == -1) {
754              
755                 // list all staff who are not in a group.
756                 $this->whereAdd("{$this->tableName()}.id NOT IN (
757                     SELECT distinct(user_id) FROM $tn_gm LEFT JOIN
758                         $tn_g ON $tn_g.id = $tn_gm.group_id
759                         WHERE $tn_g.type = ".$q['query']['type']."
760                     )");
761                 
762                 
763             } else {
764                 
765                 $this->whereAdd("$tn_p.id IN (
766                     SELECT distinct(user_id) FROM $tn_gm
767                         WHERE group_id = $ing
768                     )");
769                }
770             
771         }
772         
773         // #2307 Search Country!!
774         if (!empty($q['query']['in_country'])) {
775             // DB_DataObject::debugLevel(1);
776             $inc = $q['query']['in_country'];
777             $this->whereAdd("$tn_p.countries LIKE '%{$inc}%'");
778         }
779         
780         if (!empty($q['query']['not_in_directory'])) { 
781             // it's a Person list..
782             // DB_DATaobjecT::debugLevel(1);
783             
784             // specific to project directory which is single comp. login
785             //
786             $owncomp = DB_DataObject::Factory('Companies');
787             $owncomp->get('comptype', 'OWNER');
788             if ($q['company_id'] == $owncomp->id) {
789                 $this->active =1;
790             }
791             
792             
793
794             if ( $q['query']['not_in_directory'] > -1) {
795                 $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
796                 // can list current - so that it does not break!!!
797                 $this->whereAdd("$tn_p.id NOT IN 
798                     ( SELECT distinct person_id FROM $tn_pd WHERE
799                         project_id = " . $q['query']['not_in_directory'] . " AND 
800                         company_id = " . $this->company_id . ')');
801             }
802         }
803            
804         if (!empty($q['query']['role'])) { 
805             // it's a Person list..
806             // DB_DATaobjecT::debugLevel(1);
807             
808             // specific to project directory which is single comp. login
809             //
810             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
811                 // can list current - so that it does not break!!!
812             $this->whereAdd("$tn_p.id IN 
813                     ( SELECT distinct person_id FROM $tn_pd WHERE
814                         role = '". $this->escape($q['query']['role']) ."'
815             )");
816         
817         }
818         
819         
820         if (!empty($q['query']['project_member_of'])) {
821                // this is also a flag to return if they are a member..
822             //DB_DataObject::debugLevel(1);
823             $do = DB_DataObject::factory('ProjectDirectory');
824             $do->project_id = $q['query']['project_member_of'];
825             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
826             $this->joinAdd($do,array('joinType' => 'LEFT', 'useWhereAsOn' => true));
827             $this->selectAdd("IF($tn_pd.id IS NULL, 0,  $tn_pd.id )  as is_member");
828                 
829                 
830             if (!empty($q['query']['project_member_filter'])) {
831                 $this->having('is_member !=0');
832             
833             }
834             
835         }
836         
837         if(!empty($q['query']['name'])){
838             $this->whereAdd("
839                 {$this->tableName()}.name LIKE '%{$this->escape($q['query']['name'])}%'
840             ");
841         }
842         
843         if (!empty($q['query']['search'])) {
844             
845             // use our magic search builder...
846             
847              require_once 'Text/SearchParser.php';
848             $x = new Text_SearchParser($q['query']['search']);
849             
850             $props = array(
851                     "$tn_p.name",
852                     "$tn_p.email",
853                     "$tn_p.role",
854                     "$tn_p.phone",
855                     "$tn_p.remarks",
856                     "join_company_id_id.name"
857             );
858             $tbcols = $this->table();
859             foreach(array('firstname','lastname') as $k) {
860                 if (isset($tbcols[$k])) {
861                     $props[] = "{$tn_p}.{$k}";
862                 }
863             }
864             
865             
866             
867             
868             $str =  $x->toSQL(array(
869                 'default' => $props,
870                 'map' => array(
871                     'company' => 'join_company_id_id.name',
872                     //'country' => 'Clipping.country',
873                     //  'media' => 'Clipping.media_name',
874                 ),
875                 'escape' => array($this->getDatabaseConnection(), 'escapeSimple'), /// pear db or mdb object..
876
877             ));
878             
879             
880             $this->whereAdd($str); /*
881                         $tn_p.name LIKE '%$s%'  OR
882                         $tn_p.email LIKE '%$s%'  OR
883                         $tn_p.role LIKE '%$s%'  OR
884                         $tn_p.phone LIKE '%$s%' OR
885                         $tn_p.remarks LIKE '%$s%' 
886                         
887                     ");*/
888         }
889         
890         // project directory rules -- this may distrupt things.
891         $p = DB_DataObject::factory('ProjectDirectory');
892         // if project directories are set up, then we can apply project query rules..
893         if ($p->count()) {
894             $p->autoJoin();
895             $pids = $p->projects($au);
896             if (isset($q['query']['project_id'])) {   
897                 $pid = (int)$q['query']['project_id'];
898                 if (!in_array($pid, $pids)) {
899                     $roo->jerr("Project not in users valid projects");
900                 }
901                 $pids = array($pid);
902             }
903             // project roles..
904             //if (empty($q['_anyrole'])) {  // should be project_directry_role
905             //    $p->whereAdd("{$p->tableName()}.role != ''");
906             // }
907             if (!empty($q['query']['role'])) {  // should be project_directry_role
908                 $role = $this->escape($q['query']['role']); 
909                
910                 $p->whereAdd("{$p->tableName()}.role LIKE '%{$role}%'");
911                  
912             }
913             
914             if (!$roo->hasPerm('Core.Projects_All', 'S')) {
915                 $peps = $p->people($pids);
916                 $this->whereAddIn("{$tn}.id", $peps, 'int');
917             }
918         }    
919         
920         // fixme - this needs a more generic fix - it was from the mtrack_person code...
921         if (isset($q['query']['ticket_id'])) {  
922             // find out what state the ticket is in.
923             $t = DB_DataObject::Factory('mtrack_ticket');
924             $t->autoJoin();
925             $t->get($q['query']['ticket_id']);
926             
927             if (!$this->checkPerm('S', $au)) {
928                 $roo->jerr("permssion denied to query state of ticket");
929             }
930             
931             $p = DB_DataObject::factory('ProjectDirectory');
932             $pids = array($t->project_id);
933            
934             $peps = $p->people($pids);
935             
936             $this->whereAddIn($this->tableName().'.id', $peps, 'int');
937             
938             //$this->whereAdd('join_prole != ''");
939             
940         }  
941     }
942     function setFromRoo($ar, $roo)
943     {
944         $this->setFrom($ar);
945         if (!empty($ar['passwd1'])) {
946             $this->setPassword($ar['passwd1']);
947         }
948         
949         
950         if (    $this->id &&
951                 ($this->email == $roo->old->email)&&
952                 ($this->company_id == $roo->old->company_id)
953             ) {
954             return true;
955         }
956         if (empty($this->email)) {
957             return true;
958         }
959         $xx = DB_Dataobject::factory($this->tableName());
960         $xx->setFrom(array(
961             'email' => $this->email,
962            // 'company_id' => $x->company_id
963         ));
964         
965         if ($xx->count()) {
966             return "Duplicate Email found";
967         }
968         return true;
969     }
970     /**
971      *
972      * before Delete - delete significant dependancies..
973      * this is called after checkPerm..
974      */
975     
976     function beforeDelete()
977     {
978         
979         $e = DB_DataObject::Factory('Events');
980         $e->whereAdd('person_id = ' . $this->id);
981         $e->delete(true);
982         
983         // anything else?  
984         
985     }
986     
987     
988     /***
989      * Check if the a user has access to modify this item.
990      * @param String $lvl Level (eg. Core.Projects)
991      * @param Pman_Core_DataObjects_Person $au The authenticated user.
992      * @param boolean $changes alllow changes???
993      *
994      * @return false if no access..
995      */
996     function checkPerm($lvl, $au, $changes=false) //heck who is trying to access this. false == access denied..
997     {
998          
999        // do we have an empty system..
1000         if ($au && $au->id == -1) {
1001             return true;
1002         }
1003         // if not authenticated... do not allow in???
1004         if (!$au ) {
1005             return false;
1006         }
1007         
1008         // determine if it's staff!!!
1009         $owncomp = DB_DataObject::Factory('Companies');
1010         $owncomp->get('comptype', 'OWNER');
1011         $isStaff = ($au->company_id ==  $owncomp->id);
1012        
1013        
1014         if (!$isStaff) {
1015             
1016             // - can not change company!!!
1017             if ($changes && 
1018                 isset($changes['company_id']) && 
1019                 $changes['company_id'] != $au->company_id) {
1020                 return false;
1021             }
1022             // can only set new emails..
1023             if ($changes && 
1024                     !empty($this->email) && 
1025                     isset($changes['email']) && 
1026                     $changes['email'] != $this->email) {
1027                 return false;
1028             }
1029             
1030             
1031             // mtrack had the idea that all 'S' should be allowed.. - but filtered later..
1032             // ???? do we want this?
1033             
1034             // edit self... - what about other staff members...
1035             
1036             //return $this->company_id == $au->company_id;
1037         }
1038         
1039          
1040         // yes, only owner company can mess with this...
1041         
1042         
1043         
1044     
1045         switch ($lvl) {
1046             // extra case change passwod?
1047             case 'P': //??? password
1048                 // standard perms -- for editing + if the user is dowing them selves..
1049                 $ret = $isStaff ? $au->hasPerm("Core.Staff", "E") : $au->hasPerm("Core.Person", "E");
1050                 return $ret || $au->id == $this->id;
1051             
1052             default:                
1053                 return $isStaff ? $au->hasPerm("Core.Staff", $lvl) : $au->hasPerm("Core.Person", $lvl);
1054         
1055         }
1056         return false;
1057     }
1058     
1059     function beforeInsert($req, $roo)
1060     {
1061         $p = DB_DataObject::factory('person');
1062         if ($roo->authUser->id > -1 ||  $p->count() > 1) {
1063             return;
1064         }
1065         $c = DB_DAtaObject::Factory('Companies');
1066         $tc =$c->count();
1067         if (!$tc || $tc> 1) {
1068             $roo->jerr("can not create initial user as multiple companies already exist");
1069         }
1070         $c->find(true);
1071         $this->company_id = $c->id;
1072         
1073     }
1074     
1075     function onInsert($req, $roo)
1076     {
1077          
1078         $p = DB_DataObject::factory('person');
1079         if ($roo->authUser->id < 0 && $p->count() == 1) {
1080             // this seems a bit risky...
1081             
1082             $g = DB_DataObject::factory('Groups');
1083             $g->initGroups();
1084             
1085             $g->type = 0;
1086             $g->get('name', 'Administrators');
1087             
1088             $p = DB_DataObject::factory('group_members');
1089             $p->group_id = $g->id;
1090             $p->user_id = $this->id;     
1091             if (!$p->count()) {
1092                 $p->insert();
1093                 $roo->addEvent("ADD", $p, $g->toEventString(). " Added " . $this->toEventString());
1094             }
1095             $this->login();
1096         }
1097         if (!empty($req['project_id_addto'])) {
1098             $pd = DB_DataObject::factory('ProjectDirectory');
1099             $pd->project_id = $req['project_id_addto'];
1100             $pd->person_id = $this->id; 
1101             $pd->ispm =0;
1102             $pd->office_id = $this->office_id;
1103             $pd->company_id = $this->company_id;
1104             $pd->insert();
1105         }
1106         
1107     }
1108     
1109     function importFromArray($roo, $persons, $opts)
1110     {
1111         if (empty($opts['prefix'])) {
1112             $roo->jerr("opts[prefix] is empty - you can not just create passwords based on the user names");
1113         }
1114         
1115         if (!is_array($persons) || empty($persons)) {
1116             $roo->jerr("error in the person data. - empty on not valid");
1117         }
1118         DB_DataObject::factory('groups')->initGroups();
1119         
1120         foreach($persons as $person){
1121             $p = DB_DataObject::factory('person');
1122             if($p->get('name', $person['name'])){
1123                 continue;
1124             }
1125             $p->setFrom($person);
1126             
1127             $companies = DB_DataObject::factory('companies');
1128             if(!$companies->get('comptype', 'OWNER')){
1129                 $roo->jerr("Missing OWNER companies!");
1130             }
1131             $p->company_id = $companies->pid();
1132             // strip the 'spaces etc.. make lowercase..
1133             $name = strtolower(str_replace(' ', '', $person['name']));
1134             $p->setPassword("{$opts['prefix']}{$name}");
1135             $p->insert();
1136             // set up groups
1137             // if $person->groups is set.. then
1138             // add this person to that group eg. groups : [ 'Administrator' ] 
1139             if(!empty($person['groups'])){
1140                 $groups = DB_DataObject::factory('groups');
1141                 if(!$groups->get('name', $person['groups'])){
1142                     $roo->jerr("Missing groups : {$person['groups']}");
1143                 }
1144                 $gm = DB_DataObject::factory('group_members');
1145                 $gm->change($p, $groups, true);
1146             }
1147             
1148             $p->onInsert(array(), $roo);
1149         }
1150     }
1151     
1152     function getEmailName()
1153     {
1154         $name = array();
1155         
1156         if(!empty($this->honor)){
1157             array_push($name, $this->honor);
1158         }
1159         
1160         if(!empty($this->name)){
1161             array_push($name, $this->name);
1162             
1163             return implode(' ', $name);
1164         }
1165         
1166         if(!empty($this->firstname) || !empty($this->lastname)){
1167             array_push($name, $this->firstname);
1168             array_push($name, $this->lastname);
1169             
1170             $name = array_filter($name);
1171             
1172             return $name;
1173         }
1174         
1175         return $this->email;
1176     }
1177     
1178     function sesPrefix()
1179     {
1180         $ff= HTML_FlexyFramework::get();
1181         
1182         $appname = empty($ff->appNameShort) ? $ff->project : $ff->project . '-' . $ff->appNameShort;
1183         
1184         $db = $this->getDatabaseConnection();
1185         
1186         $sesPrefix = $appname.'-' .get_class($this) .'-'.$db->dsn['database'] ;
1187
1188         return $sesPrefix;
1189     }
1190     
1191  }