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