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