DataObjects/core.sql
[Pman.Core] / DataObjects / Person.php
1 <?php
2 /**
3  * Table Definition for Person
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Person extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'Person';                          // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $email;                           // string(128)  not_null
15     
16     public $company_id;                      // int(11)  
17     public $office_id;                       // int(11)  
18     
19     public $name;                            // string(128)  not_null
20     public $firstname;                            // string(128)  not_null
21     public $lastname;                            // string(128)  not_null
22     public $phone;                           // string(32)  not_null
23     public $fax;                             // string(32)  not_null
24     
25     public $role;                            // string(32)  not_null
26     public $remarks;                         // blob(65535)  not_null blob
27     public $passwd;                          // string(64)  not_null
28     public $owner_id;                        // int(11)  not_null
29     public $lang;                            // string(8)  
30     public $no_reset_sent;                   // int(11)  
31     public $action_type;                     // string(32)  
32     public $project_id;                      // int(11)
33
34     
35     public $active;                          // int(11)  not_null
36     public $deleted_by;                      // int(11)  not_null
37     public $deleted_dt;                      // datetime(19)  binary
38
39     
40     /* the code above is auto generated do not remove the tag below */
41     ###END_AUTOCODE
42     /**
43      *
44      *
45      *
46      *
47      *  FIXME !!!! -- USE Pman_Core_Mailer !!!!!
48      *
49      *
50      *
51      *  
52      */
53     function buildMail($templateFile, $args)
54     {
55           
56         $args = (array) $args;
57         $content  = clone($this);
58         
59         foreach((array)$args as $k=>$v) {
60             $content->$k = $v;
61         }
62         
63         $ff = HTML_FlexyFramework::get();
64         
65         
66         //?? is this really the place for this???
67         if (
68                 !$ff->cli && 
69                 empty($args['no_auth']) &&
70                 !in_array($templateFile, array(
71                     // templates that can be sent without authentication.
72                      'password_reset' ,
73                      'password_welcome'
74                  ))
75             ) {
76             
77             $content->authUser = $this->getAuthUser();
78             if (!$content->authUser) {
79                 return PEAR::raiseError("Not authenticated");
80             }
81         }
82         
83         // should handle x-forwarded...
84         
85         $content->HTTP_HOST = isset($_SERVER["HTTP_HOST"]) ?
86             $_SERVER["HTTP_HOST"] :
87             (isset($ff->HTTP_HOST) ? $ff->HTTP_HOST : 'localhost');
88             
89         /* use the regex compiler, as it doesnt parse <tags */
90         
91         $tops = array(
92             'compiler'    => 'Flexy',
93             'nonHTML' => true,
94             'filters' => array('SimpleTags','Mail'),
95             //     'debug'=>1,
96         );
97         
98         
99         
100         if (!empty($args['templateDir'])) {
101             $tops['templateDir'] = $args['templateDir'];
102         }
103         
104         
105         
106         require_once 'HTML/Template/Flexy.php';
107         $template = new HTML_Template_Flexy( $tops );
108         $template->compile("mail/$templateFile.txt");
109         
110         /* use variables from this object to ouput data. */
111         $mailtext = $template->bufferedOutputObject($content);
112         
113         $htmlbody = false;
114         // if a html file with the same name exists, use that as the body
115         // I've no idea where this code went, it was here before..
116         if (false !== $template->resolvePath ( "mail/$templateFile.html" )) {
117             $tops['nonHTML'] = false;
118             $template = new HTML_Template_Flexy( $tops );
119             $template->compile("mail/$templateFile.html");
120             $htmlbody = $template->bufferedOutputObject($content);
121             
122         }
123         
124         
125         
126         //echo "<PRE>";print_R($mailtext);
127         //print_R($mailtext);exit;
128         /* With the output try and send an email, using a few tricks in Mail_MimeDecode. */
129         require_once 'Mail/mimeDecode.php';
130         require_once 'Mail.php';
131         
132         $decoder = new Mail_mimeDecode($mailtext);
133         $parts = $decoder->getSendArray();
134         
135         if (PEAR::isError($parts)) {
136             return $parts;
137             //echo "PROBLEM: {$parts->message}";
138             //exit;
139         } 
140         list($recipents,$headers,$body) = $parts;
141         $recipents = array($this->email);
142         if (!empty($content->bcc) && is_array($content->bcc)) {
143             $recipents =array_merge($recipents, $content->bcc);
144         }
145         $headers['Date'] = date('r');
146         
147         if ($htmlbody !== false) {
148             require_once 'Mail/mime.php';
149             $mime = new Mail_mime(array('eol' => "\n"));
150             $mime->setTXTBody($body);
151             $mime->setHTMLBody($htmlbody);
152             // I think there might be code in mediaoutreach toEmail somewhere
153             // h embeds images here..
154             $body = $mime->get();
155             $headers = $mime->headers($headers);
156             
157         }
158         
159          
160         
161         return array(
162             'recipients' => $recipents,
163             'headers'    => $headers,
164             'body'      => $body
165         );
166         
167         
168     }
169     
170     
171     /**
172      * send a template
173      * - user must be authenticate or args[no_auth] = true
174      *   or template = password_[reset|welcome]
175      * 
176      */
177     function sendTemplate($templateFile, $args)
178     {
179         
180         $ar = $this->buildMail($templateFile, $args);
181       
182         
183         //print_r($recipents);exit;
184         $mailOptions = PEAR::getStaticProperty('Mail','options');
185         $mail = Mail::factory("SMTP",$mailOptions);
186         
187         if (PEAR::isError($mail)) {
188             return $mail;
189         } 
190         $oe = error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);
191         $ret = $mail->send($ar['recipients'],$ar['headers'],$ar['body']);
192         error_reporting($oe);
193        
194         return $ret;
195     
196     }
197     
198   
199     
200     
201     function getEmailFrom()
202     {
203         return '"' . addslashes($this->name) . '" <' . $this->email . '>';
204     }
205     function toEventString() 
206     {
207         return empty($this->name) ? $this->email : $this->name;
208     } 
209     function verifyAuth()
210     { 
211         $ff= HTML_FlexyFramework::get();
212         if (!empty($ff->Pman['auth_comptype']) && $ff->Pman['auth_comptype'] != $this->company()->comptype) {
213             $ff->page->jerr("Login not permited to outside companies");
214         }
215         return true;
216         
217     }    
218    
219    
220     //   ---------------- authentication / passwords and keys stuff  ----------------
221     function isAuth()
222     {
223         $db = $this->getDatabaseConnection();
224         // we combine db + project names,
225         // otherwise if projects use different 'auth' objects
226         // then we get unserialize issues.
227         $sesPrefix = get_class($this) .'-'.$db->dsn['database'] ;
228         
229         
230         @session_start();
231         if (!empty($_SESSION[__CLASS__][$sesPrefix .'-auth'])) {
232             // in session...
233             $a = unserialize($_SESSION[__CLASS__][$sesPrefix .'-auth']);
234             
235             $u = DB_DataObject::factory('Person');
236             if ($u->get($a->id)) { //&& strlen($u->passwd)) {
237                 $u->verifyAuth();
238                 
239                 return true;
240             }
241             
242             $_SESSION[__CLASS__][$sesPrefix .'-auth'] = '';
243             
244         }
245         // local auth - 
246         $u = DB_DataObject::factory('Person');
247         $ff = HTML_FlexyFramework::get();
248         if (!empty($ff->Pman['local_autoauth']) && 
249             (!empty($_SERVER['SERVER_ADDR'])) &&
250             ($_SERVER['SERVER_ADDR'] == '127.0.0.1') &&
251             ($_SERVER['REMOTE_ADDR'] == '127.0.0.1') &&
252             $u->get('email', $ff->Pman['local_autoauth'])
253         ) {
254             $_SESSION[__CLASS__][$sesPrefix .'-auth'] = serialize($u);
255             return true;
256         }
257            
258         // http basic auth..
259         $u = DB_DataObject::factory('Person');
260
261         if (!empty($_SERVER['PHP_AUTH_USER']) 
262             &&
263             !empty($_SERVER['PHP_AUTH_PW'])
264             &&
265             $u->get('email', $_SERVER['PHP_AUTH_USER'])
266             &&
267             $u->checkPassword($_SERVER['PHP_AUTH_PW'])
268            ) {
269             $_SESSION[__CLASS__][$sesPrefix .'-auth'] = serialize($u);
270             return true; 
271         }
272         
273         
274         
275         
276         // not in session or not matched...
277         $u = DB_DataObject::factory('Person');
278         $u->whereAdd(' LENGTH(passwd) > 0');
279         $n = $u->count();
280         $error =  PEAR::getStaticProperty('DB_DataObject','lastError');
281         if ($error) {
282             die($error->toString()); // not really a good thing to do...
283         }
284         if (!$n){ // authenticated as there are no users in the system...
285             return true;
286         }
287         
288         return false;
289         
290     }
291     function getAuthUser()
292     {
293         if (!$this->isAuth()) {
294             return false;
295         }
296         $db = $this->getDatabaseConnection();
297         $sesPrefix = get_class($this) .'-'.$db->dsn['database'] ;
298         
299         if (!empty($_SESSION[__CLASS__][$sesPrefix .'-auth'])) {
300             $a = unserialize($_SESSION[__CLASS__][$sesPrefix .'-auth']);
301             
302             $u = DB_DataObject::factory('Person');
303             if ($u->get($a->id)) { /// && strlen($u->passwd)) {
304                 return clone($u);
305             }
306              
307         }
308         
309         $u = DB_DataObject::factory('Person');
310         $u->whereAdd(' LENGTH(passwd) > 0');
311         if (!$u->count()){
312             
313             // fake person - open system..
314             $ce = DB_DataObject::factory('core_enum');
315             $ce->initEnums();
316             
317             
318             $u = DB_DataObject::factory('Person');
319             $u->id = -1;
320             return $u;
321             
322         }
323         return false;
324     }     
325     function login()
326     {
327         $this->isAuth(); // force session start..
328         $this->verifyAuth();
329         $db = $this->getDatabaseConnection();
330         // refresh admin group if we are logged in as one..
331         //DB_DataObject::debugLevel(1);
332         $g = DB_DataObject::factory('Groups');
333         $g->type = 0;
334         $g->get('name', 'Administrators');
335         $gm = DB_DataObject::Factory('group_members');
336         if (in_array($g->id,$gm->listGroupMembership($this))) {
337             // refresh admin groups.
338             $gr = DB_DataObject::Factory('group_rights');
339             $gr->applyDefs($g, 0);
340         }
341              
342         $sesPrefix = get_class($this) .'-'.$db->dsn['database'] ;
343         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = serialize($this);
344         
345     }
346     function logout()
347     {
348         $this->isAuth(); // force session start..
349          $db = $this->getDatabaseConnection();
350         $sesPrefix = get_class($this) .'-'.$db->dsn['database'] ;
351         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = "";
352         
353     }    
354     function genPassKey ($t) 
355     {
356         return md5($this->email . $t. $this->passwd);
357     }
358     function simpleAuthKey($m = 0)
359     {
360         $month = $m > -1 ? date('Y-m') : date('Y-m', strtotime('LAST MONTH'));
361         
362         return md5(implode(',' ,  array($month, $this->email , $this->passwd, $this->id)));
363     } 
364     function checkPassword($val)
365     {
366         
367         if (substr($this->passwd,0,1) == '$') {
368             return crypt($val,$this->passwd) == $this->passwd ;
369         }
370         // old style md5 passwords...- cant be used with courier....
371         return md5($val) == $this->passwd;
372     }
373     function setPassword($value) 
374     {
375         $salt='';
376         while(strlen($salt)<9) {
377             $salt.=chr(rand(64,126));
378             //php -r var_dump(crypt('testpassword', '$1$'. (rand(64,126)). '$'));
379         }
380         $this->passwd = crypt($value, '$1$'. $salt. '$');
381        
382        
383     }      
384     
385     function company()
386     {
387         $x = DB_DataObject::factory('Companies');
388         $x->get($this->company_id);
389         return $x;
390     }
391     function loadCompany()
392     {
393         $this->company = $this->company();
394     }
395     
396     function active()
397     { 
398         return $this->active;
399     }
400     function authUserName($n) // set username prior to acheck user exists query.
401     {
402         
403         $this->whereAdd('LENGTH(passwd) > 1'); 
404         $this->email = $n;
405     }
406     function lang($val)
407     {
408         if ($val == $this->lang) {
409             return;
410         }
411         $uu = clone($this);
412         $this->lang = $val;
413         $this->update($uu);
414
415     }
416             
417     
418     function authUserArray()
419     {
420         
421         $aur = $this->toArray();
422         
423         if ($this->id < 1) {
424             return $aur;
425         }
426         
427         
428         //DB_DataObject::debugLevel(1);
429         $c = DB_Dataobject::factory('Companies');
430         $im = DB_Dataobject::factory('Images');
431         $c->joinAdd($im, 'LEFT');
432         $c->selectAdd();
433         $c->selectAs($c, 'company_id_%s');
434         $c->selectAs($im, 'company_id_logo_id_%s');
435         $c->id = $this->company_id;
436         $c->limit(1);
437         $c->find(true);
438         
439         $aur = array_merge( $c->toArray(),$aur);
440         
441         if (empty($c->company_id_logo_id_id))  {
442                  
443             $im = DB_Dataobject::factory('Images');
444             $im->ontable = 'Companies';
445             $im->onid = $c->id;
446             $im->imgtype = 'LOGO';
447             $im->limit(1);
448             $im->selectAdd();
449             $im->selectAs($im,  'company_id_logo_id_%s');
450             if ($im->find(true)) {
451                     
452                 foreach($im->toArray() as $k=>$v) {
453                     $aur[$k] = $v;
454                 }
455             }
456         }
457       
458         // perms + groups.
459         $aur['perms']  = $this->getPerms();
460         $g = DB_DataObject::Factory('group_members');
461         $aur['groups']  = $g->listGroupMembership($this, 'name');
462         
463         $aur['passwd'] = '';
464         $aur['dailykey'] = '';
465         
466         
467         
468         return $aur;
469     }
470     
471     //   ----------PERMS------  ----------------
472     function getPerms() 
473     {
474          //DB_DataObject::debugLevel(1);
475         // find out all the groups they are a member of.. + Default..
476         
477         // ------ INIITIALIZE IF NO GROUPS ARE SET UP.
478         
479         $g = DB_DataObject::Factory('group_rights');
480         if (!$g->count()) {
481             $g->genDefault();
482         }
483         
484         if ($this->id < 0) {
485             return $g->adminRights(); // system is not set up - so they get full rights.
486         }
487         //DB_DataObject::debugLevel(1);
488         $g = DB_DataObject::Factory('group_members');
489         $g->whereAdd('group_id is NOT NULL AND user_id IS NOT NULL');
490         if (!$g->count()) {
491             // add the current user to the admin group..
492             $g = DB_DataObject::Factory('Groups');
493             if ($g->get('name', 'Administrators')) {
494                 $gm = DB_DataObject::Factory('group_members');
495                 $gm->group_id = $g->id;
496                 $gm->user_id = $this->id;
497                 $gm->insert();
498             }
499             
500         }
501         
502         // ------ STANDARD PERMISSION HANDLING.
503         $isOwner = $this->company()->comptype == 'OWNER';
504         $g = DB_DataObject::Factory('group_members');
505         $grps = $g->listGroupMembership($this);
506        //var_dump($grps);
507         $isAdmin = $g->inAdmin;
508         //echo '<PRE>'; print_r($grps);var_dump($isAdmin);
509         // the load all the perms for those groups, and add them all together..
510         // then load all those 
511         $g = DB_DataObject::Factory('group_rights');
512         $ret =  $g->listPermsFromGroupIds($grps, $isAdmin, $isOwner);
513         //echo '<PRE>';print_r($ret);
514         return $ret;
515          
516         
517     }
518     /**
519      *Basic group fetching - probably needs to filter by type eventually.
520      *
521      *@param String $what - fetchall() argument - eg. 'name' returns names of all groups that they are members of.
522      */
523     
524     function groups($what=false)
525     {
526         $g = DB_DataObject::Factory('group_members');
527         $grps = $g->listGroupMembership($this);
528         $g = DB_DataObject::Factory('Groups');
529         $g->whereAddIn('id', $grps, 'int');
530         return $g->fetchAll($what);
531         
532     }
533     
534     
535     
536     function hasPerm($name, $lvl) 
537     {
538         static $pcache = array();
539         
540         if (!isset($pcache[$this->id])) {
541             $pcache[$this->id] = $this->getPerms();
542         }
543        // echo "<PRE>";print_r($pcache[$au->id]);
544        // var_dump($pcache[$au->id]);
545         if (empty($pcache[$this->id][$name])) {
546             return false;
547         }
548         
549         return strpos($pcache[$this->id][$name], $lvl) > -1;
550         
551     }    
552     
553     //  ------------ROO HOOKS------------------------------------
554     function applyFilters($q, $au, $roo)
555     {
556         //DB_DataObject::DebugLevel(1);
557         if (!empty($q['query']['person_not_internal'])) {
558             $this->whereAdd(" join_company_id_id.isOwner = 0 ");
559         }
560         
561         
562         if (!empty($q['query']['person_internal_only_all'])) {
563             
564             
565             // must be internal and not current user (need for distribution list)
566             // user has a projectdirectory entry and role is not blank.
567             //DB_DataObject::DebugLevel(1);
568             $pd = DB_DataObject::factory('ProjectDirectory');
569             $pd->whereAdd("role != ''");
570             $pd->selectAdd();
571             $pd->selectAdd('distinct(person_id) as person_id');
572             $roled = $pd->fetchAll('person_id');
573             $rs = $roled  ? "  OR
574                     {$this->tableName()}.id IN (".implode(',', $roled) . ") 
575                     " : '';
576             $this->whereAdd(" join_company_id_id.comptype = 'OWNER' $rs ");
577             
578         }
579         // -- for distribution
580         if (!empty($q['query']['person_internal_only'])) {
581             // must be internal and not current user (need for distribution list)
582             $this->whereAdd(" join_company_id_id.comptype = 'OWNER'");
583             
584             //$this->whereAdd(($this->tableName() == 'Person' ? 'Person' : "join_person_id_id") .
585             //    ".id  != ".$au->id);
586             $this->whereAdd("Person.id != {$au->id}");
587         } 
588         
589         if (!empty($q['query']['comptype_or_company_id'])) {
590            // DB_DataObject::debugLevel(1);
591             $bits = explode(',', $q['query']['comptype_or_company_id']);
592             $id = (int) array_pop($bits);
593             $ct = $this->escape($bits[0]);
594             
595             $this->whereAdd(" join_company_id_id.comptype = '$ct' OR Person.company_id = $id");
596             
597         }
598         
599         
600         // staff list..
601         if (!empty($q['query']['person_inactive'])) {
602            // DB_Dataobject::debugLevel(1);
603             $this->active = 1;
604         }
605         $tn_p = $this->tableName();
606         $tn_gm = DB_DataObject::Factory('group_members')->tableName();
607         $tn_g = DB_DataObject::Factory('Groups')->tableName();
608
609         ///---------------- Group views --------
610         if (!empty($q['query']['in_group'])) {
611             // DB_DataObject::debugLevel(1);
612             $ing = (int) $q['query']['in_group'];
613             if ($q['query']['in_group'] == -1) {
614              
615                 // list all staff who are not in a group.
616                 $this->whereAdd("Person.id NOT IN (
617                     SELECT distinct(user_id) FROM $tn_gm LEFT JOIN
618                         $tn_g ON $tn_g.id = $tn_gm.group_id
619                         WHERE $tn_g.type = ".$q['query']['type']."
620                     )");
621                 
622                 
623             } else {
624                 
625                 $this->whereAdd("$tn_p.id IN (
626                     SELECT distinct(user_id) FROM $tn_gm
627                         WHERE group_id = $ing
628                     )");
629                }
630             
631         }
632         
633         if (!empty($q['query']['not_in_directory'])) { 
634             // it's a Person list..
635             // DB_DATaobjecT::debugLevel(1);
636             
637             // specific to project directory which is single comp. login
638             //
639             $owncomp = DB_DataObject::Factory('Companies');
640             $owncomp->get('comptype', 'OWNER');
641             if ($q['company_id'] == $owncomp->id) {
642                 $this->active =1;
643             }
644             
645             
646
647             if ( $q['query']['not_in_directory'] > -1) {
648                 $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
649                 // can list current - so that it does not break!!!
650                 $this->whereAdd("$tn_p.id NOT IN 
651                     ( SELECT distinct person_id FROM $tn_pd WHERE
652                         project_id = " . $q['query']['not_in_directory'] . " AND 
653                         company_id = " . $this->company_id . ')');
654             }
655         }
656            
657         if (!empty($q['query']['role'])) { 
658             // it's a Person list..
659             // DB_DATaobjecT::debugLevel(1);
660             
661             // specific to project directory which is single comp. login
662             //
663             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
664                 // can list current - so that it does not break!!!
665             $this->whereAdd("$tn_p.id IN 
666                     ( SELECT distinct person_id FROM $tn_pd WHERE
667                         role = '". $this->escape($q['query']['role']) ."'
668             )");
669         
670         }
671         
672         
673         if (!empty($q['query']['project_member_of'])) {
674                // this is also a flag to return if they are a member..
675             //DB_DataObject::debugLevel(1);
676             $do = DB_DataObject::factory('ProjectDirectory');
677             $do->project_id = $q['query']['project_member_of'];
678             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
679             $this->joinAdd($do,array('joinType' => 'LEFT', 'useWhereAsOn' => true));
680             $this->selectAdd("IF($tn_pd.id IS NULL, 0,  $tn_pd.id )  as is_member");
681                 
682                 
683             if (!empty($q['query']['project_member_filter'])) {
684                 $this->having('is_member !=0');
685             
686             }
687             
688         }
689         
690         if (!empty($q['query']['search'])) {
691             $s = $this->escape($q['query']['search']);
692                     $this->whereAdd("
693                         $tn_p.name LIKE '%$s%'  OR
694                         $tn_p.email LIKE '%$s%'  OR
695                         $tn_p.role LIKE '%$s%'  OR
696                         $tn_p.phone LIKE '%$s%' OR
697                         $tn_p.remarks LIKE '%$s%' 
698                         
699                     ");
700         }
701         
702         //
703     }
704     function setFromRoo($ar, $roo)
705     {
706         $this->setFrom($ar);
707         if (!empty($ar['passwd1'])) {
708             $this->setPassword($ar['passwd1']);
709         }
710         
711         
712         if (    $this->id &&
713                 ($this->email == $roo->old->email)&&
714                 ($this->company_id == $roo->old->company_id)
715             ) {
716             return true;
717         }
718         if (empty($this->email)) {
719             return true;
720         }
721         $xx = DB_Dataobject::factory('Person');
722         $xx->setFrom(array(
723             'email' => $this->email,
724            // 'company_id' => $x->company_id
725         ));
726         
727         if ($xx->count()) {
728             return "Duplicate Email found";
729         }
730         return true;
731     }
732     /**
733      *
734      * before Delete - delete significant dependancies..
735      * this is called after checkPerm..
736      */
737     
738     function beforeDelete()
739     {
740         
741         $e = DB_DataObject::Factory('Events');
742         $e->whereAdd('person_id = ' . $this->id);
743         $e->delete(true);
744         
745         // anything else?  
746         
747     }
748     
749     
750     /***
751      * Check if the a user has access to modify this item.
752      * @param String $lvl Level (eg. Core.Projects)
753      * @param Pman_Core_DataObjects_Person $au The authenticated user.
754      * @param boolean $changes alllow changes???
755      *
756      * @return false if no access..
757      */
758     function checkPerm($lvl, $au, $changes=false) //heck who is trying to access this. false == access denied..
759     {
760          
761        // do we have an empty system..
762         if ($au && $au->id == -1) {
763             return true;
764         }
765         
766         // determine if it's staff!!!
767          
768         if ($au->company()->comptype != 'OWNER') {
769             
770             // - can not change company!!!
771             if ($changes && 
772                 isset($changes['company_id']) && 
773                 $changes['company_id'] != $au->company_id) {
774                 return false;
775             }
776             // can only set new emails..
777             if ($changes && 
778                     !empty($this->email) && 
779                     isset($changes['email']) && 
780                     $changes['email'] != $this->email) {
781                 return false;
782             }
783             
784             // edit self... - what about other staff members...
785             
786             return $this->company_id == $au->company_id;
787         }
788          
789          
790         // yes, only owner company can mess with this...
791         $owncomp = DB_DataObject::Factory('Companies');
792         $owncomp->get('comptype', 'OWNER');
793         
794         $isStaff = ($this->company_id ==  $owncomp->id);
795         
796     
797         switch ($lvl) {
798             // extra case change passwod?
799             case 'P': //??? password
800                 // standard perms -- for editing + if the user is dowing them selves..
801                 $ret = $isStaff ? $au->hasPerm("Core.Staff", "E") : $au->hasPerm("Core.Person", "E");
802                 return $ret || $au->id == $this->id;
803             
804             default:                
805                 return $isStaff ? $au->hasPerm("Core.Staff", $lvl) : $au->hasPerm("Core.Person", $lvl);
806         
807         }
808         return false;
809     }
810     function onInsert($req, $roo)  
811     {
812          
813         $p = DB_DataObject::factory('person');
814         if ($roo->authUser->id < 0 && $p->count() == 1) {
815             // this seems a bit risky...
816             
817             $g = DB_DataObject::factory('Groups');
818             $g->initGroups();
819             
820             $g->type = 0;
821             $g->get('name', 'Administrators');
822             
823             $p = DB_DataObject::factory('group_members');
824             $p->group_id = $g->id;
825             $p->user_id = $this->id;     
826             if (!$p->count()) {
827                 $p->insert();
828                 $roo->addEvent("ADD", $p, $g->toEventString(). " Added " . $this->toEventString());
829             }
830             $this->login();
831         }
832         if (!empty($req['project_id_addto'])) {
833             $pd = DB_DataObject::factory('ProjectDirectory');
834             $pd->project_id = $req['project_id_addto'];
835             $pd->person_id = $this->id; 
836             $pd->ispm =0;
837             $pd->office_id = $this->office_id;
838             $pd->company_id = $this->company_id;
839             $pd->insert();
840         }
841         
842     }
843  }