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