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