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