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         
310         
311         $u = DB_DataObject::factory('Person');
312         $u->whereAdd(' LENGTH(passwd) > 0');
313         if (!$u->count()){
314             
315             // fake person - open system..
316             //$ce = DB_DataObject::factory('core_enum');
317             //$ce->initEnums();
318             
319             
320             $u = DB_DataObject::factory('Person');
321             $u->id = -1;
322             return $u;
323             
324         }
325         return false;
326     }     
327     function login()
328     {
329         $this->isAuth(); // force session start..
330         $this->verifyAuth();
331         $db = $this->getDatabaseConnection();
332         // refresh admin group if we are logged in as one..
333         //DB_DataObject::debugLevel(1);
334         $g = DB_DataObject::factory('Groups');
335         $g->type = 0;
336         $g->get('name', 'Administrators');
337         $gm = DB_DataObject::Factory('group_members');
338         if (in_array($g->id,$gm->listGroupMembership($this))) {
339             // refresh admin groups.
340             $gr = DB_DataObject::Factory('group_rights');
341             $gr->applyDefs($g, 0);
342         }
343              
344         $sesPrefix = get_class($this) .'-'.$db->dsn['database'] ;
345         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = serialize($this);
346         
347     }
348     function logout()
349     {
350         $this->isAuth(); // force session start..
351          $db = $this->getDatabaseConnection();
352         $sesPrefix = get_class($this) .'-'.$db->dsn['database'] ;
353         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = "";
354         
355     }    
356     function genPassKey ($t) 
357     {
358         return md5($this->email . $t. $this->passwd);
359     }
360     function simpleAuthKey($m = 0)
361     {
362         $month = $m > -1 ? date('Y-m') : date('Y-m', strtotime('LAST MONTH'));
363         
364         return md5(implode(',' ,  array($month, $this->email , $this->passwd, $this->id)));
365     } 
366     function checkPassword($val)
367     {
368         
369         if (substr($this->passwd,0,1) == '$') {
370             return crypt($val,$this->passwd) == $this->passwd ;
371         }
372         // old style md5 passwords...- cant be used with courier....
373         return md5($val) == $this->passwd;
374     }
375     function setPassword($value) 
376     {
377         $salt='';
378         while(strlen($salt)<9) {
379             $salt.=chr(rand(64,126));
380             //php -r var_dump(crypt('testpassword', '$1$'. (rand(64,126)). '$'));
381         }
382         $this->passwd = crypt($value, '$1$'. $salt. '$');
383        
384        
385     }      
386     
387     function generatePassword() // genearte a password (add set 'rawPasswd' to it's value)
388     {
389         require_once 'Text/Password.php';
390         $this->rawPasswd = strtr(ucfirst(Text_Password::create(5)).ucfirst(Text_Password::create(5)), array(
391         "a"=>"4", "e"=>"3",  "i"=>"1",  "o"=>"0", "s"=>"5",  "t"=>"7"));
392         $this->setPassword($this->rawPasswd);
393         return $this->rawPasswd;
394     }
395     
396     function company()
397     {
398         $x = DB_DataObject::factory('Companies');
399         $x->get($this->company_id);
400         return $x;
401     }
402     function loadCompany()
403     {
404         $this->company = $this->company();
405     }
406     
407     function active()
408     { 
409         return $this->active;
410     }
411     function authUserName($n) // set username prior to acheck user exists query.
412     {
413         
414         $this->whereAdd('LENGTH(passwd) > 1'); 
415         $this->email = $n;
416     }
417     function lang($val)
418     {
419         if ($val == $this->lang) {
420             return;
421         }
422         $uu = clone($this);
423         $this->lang = $val;
424         $this->update($uu);
425
426     }
427             
428     
429     function authUserArray()
430     {
431         
432         $aur = $this->toArray();
433         
434         if ($this->id < 1) {
435             return $aur;
436         }
437         
438         
439         //DB_DataObject::debugLevel(1);
440         $c = DB_Dataobject::factory('Companies');
441         $im = DB_Dataobject::factory('Images');
442         $c->joinAdd($im, 'LEFT');
443         $c->selectAdd();
444         $c->selectAs($c, 'company_id_%s');
445         $c->selectAs($im, 'company_id_logo_id_%s');
446         $c->id = $this->company_id;
447         $c->limit(1);
448         $c->find(true);
449         
450         $aur = array_merge( $c->toArray(),$aur);
451         
452         if (empty($c->company_id_logo_id_id))  {
453                  
454             $im = DB_Dataobject::factory('Images');
455             $im->ontable = 'Companies';
456             $im->onid = $c->id;
457             $im->imgtype = 'LOGO';
458             $im->limit(1);
459             $im->selectAdd();
460             $im->selectAs($im,  'company_id_logo_id_%s');
461             if ($im->find(true)) {
462                     
463                 foreach($im->toArray() as $k=>$v) {
464                     $aur[$k] = $v;
465                 }
466             }
467         }
468       
469         // perms + groups.
470         $aur['perms']  = $this->getPerms();
471         $g = DB_DataObject::Factory('group_members');
472         $aur['groups']  = $g->listGroupMembership($this, 'name');
473         
474         $aur['passwd'] = '';
475         $aur['dailykey'] = '';
476         
477         
478         
479         return $aur;
480     }
481     
482     //   ----------PERMS------  ----------------
483     function getPerms() 
484     {
485          //DB_DataObject::debugLevel(1);
486         // find out all the groups they are a member of.. + Default..
487         
488         // ------ INIITIALIZE IF NO GROUPS ARE SET UP.
489         
490         $g = DB_DataObject::Factory('group_rights');
491         if (!$g->count()) {
492             $g->genDefault();
493         }
494         
495         if ($this->id < 0) {
496             return $g->adminRights(); // system is not set up - so they get full rights.
497         }
498         //DB_DataObject::debugLevel(1);
499         $g = DB_DataObject::Factory('group_members');
500         $g->whereAdd('group_id is NOT NULL AND user_id IS NOT NULL');
501         if (!$g->count()) {
502             // add the current user to the admin group..
503             $g = DB_DataObject::Factory('Groups');
504             if ($g->get('name', 'Administrators')) {
505                 $gm = DB_DataObject::Factory('group_members');
506                 $gm->group_id = $g->id;
507                 $gm->user_id = $this->id;
508                 $gm->insert();
509             }
510             
511         }
512         
513         // ------ STANDARD PERMISSION HANDLING.
514         $isOwner = $this->company()->comptype == 'OWNER';
515         $g = DB_DataObject::Factory('group_members');
516         $grps = $g->listGroupMembership($this);
517        //var_dump($grps);
518         $isAdmin = $g->inAdmin;
519         //echo '<PRE>'; print_r($grps);var_dump($isAdmin);
520         // the load all the perms for those groups, and add them all together..
521         // then load all those 
522         $g = DB_DataObject::Factory('group_rights');
523         $ret =  $g->listPermsFromGroupIds($grps, $isAdmin, $isOwner);
524         //echo '<PRE>';print_r($ret);
525         return $ret;
526          
527         
528     }
529     /**
530      *Basic group fetching - probably needs to filter by type eventually.
531      *
532      *@param String $what - fetchall() argument - eg. 'name' returns names of all groups that they are members of.
533      */
534     
535     function groups($what=false)
536     {
537         $g = DB_DataObject::Factory('group_members');
538         $grps = $g->listGroupMembership($this);
539         $g = DB_DataObject::Factory('Groups');
540         $g->whereAddIn('id', $grps, 'int');
541         return $g->fetchAll($what);
542         
543     }
544     
545     
546     
547     function hasPerm($name, $lvl) 
548     {
549         static $pcache = array();
550         
551         if (!isset($pcache[$this->id])) {
552             $pcache[$this->id] = $this->getPerms();
553         }
554        // echo "<PRE>";print_r($pcache[$au->id]);
555        // var_dump($pcache[$au->id]);
556         if (empty($pcache[$this->id][$name])) {
557             return false;
558         }
559         
560         return strpos($pcache[$this->id][$name], $lvl) > -1;
561         
562     }    
563     
564     //  ------------ROO HOOKS------------------------------------
565     function applyFilters($q, $au, $roo)
566     {
567         //DB_DataObject::DebugLevel(1);
568         if (!empty($q['query']['person_not_internal'])) {
569             $this->whereAdd(" join_company_id_id.isOwner = 0 ");
570         }
571         
572         
573         if (!empty($q['query']['person_internal_only_all'])) {
574             
575             
576             // must be internal and not current user (need for distribution list)
577             // user has a projectdirectory entry and role is not blank.
578             //DB_DataObject::DebugLevel(1);
579             $pd = DB_DataObject::factory('ProjectDirectory');
580             $pd->whereAdd("role != ''");
581             $pd->selectAdd();
582             $pd->selectAdd('distinct(person_id) as person_id');
583             $roled = $pd->fetchAll('person_id');
584             $rs = $roled  ? "  OR
585                     {$this->tableName()}.id IN (".implode(',', $roled) . ") 
586                     " : '';
587             $this->whereAdd(" join_company_id_id.comptype = 'OWNER' $rs ");
588             
589         }
590         // -- for distribution
591         if (!empty($q['query']['person_internal_only'])) {
592             // must be internal and not current user (need for distribution list)
593             $this->whereAdd(" join_company_id_id.comptype = 'OWNER'");
594             
595             //$this->whereAdd(($this->tableName() == 'Person' ? 'Person' : "join_person_id_id") .
596             //    ".id  != ".$au->id);
597             $this->whereAdd("Person.id != {$au->id}");
598         } 
599         
600         if (!empty($q['query']['comptype_or_company_id'])) {
601            // DB_DataObject::debugLevel(1);
602             $bits = explode(',', $q['query']['comptype_or_company_id']);
603             $id = (int) array_pop($bits);
604             $ct = $this->escape($bits[0]);
605             
606             $this->whereAdd(" join_company_id_id.comptype = '$ct' OR Person.company_id = $id");
607             
608         }
609         
610         
611         // staff list..
612         if (!empty($q['query']['person_inactive'])) {
613            // DB_Dataobject::debugLevel(1);
614             $this->active = 1;
615         }
616         $tn_p = $this->tableName();
617         $tn_gm = DB_DataObject::Factory('group_members')->tableName();
618         $tn_g = DB_DataObject::Factory('Groups')->tableName();
619
620         ///---------------- Group views --------
621         if (!empty($q['query']['in_group'])) {
622             // DB_DataObject::debugLevel(1);
623             $ing = (int) $q['query']['in_group'];
624             if ($q['query']['in_group'] == -1) {
625              
626                 // list all staff who are not in a group.
627                 $this->whereAdd("Person.id NOT IN (
628                     SELECT distinct(user_id) FROM $tn_gm LEFT JOIN
629                         $tn_g ON $tn_g.id = $tn_gm.group_id
630                         WHERE $tn_g.type = ".$q['query']['type']."
631                     )");
632                 
633                 
634             } else {
635                 
636                 $this->whereAdd("$tn_p.id IN (
637                     SELECT distinct(user_id) FROM $tn_gm
638                         WHERE group_id = $ing
639                     )");
640                }
641             
642         }
643         
644         if (!empty($q['query']['not_in_directory'])) { 
645             // it's a Person list..
646             // DB_DATaobjecT::debugLevel(1);
647             
648             // specific to project directory which is single comp. login
649             //
650             $owncomp = DB_DataObject::Factory('Companies');
651             $owncomp->get('comptype', 'OWNER');
652             if ($q['company_id'] == $owncomp->id) {
653                 $this->active =1;
654             }
655             
656             
657
658             if ( $q['query']['not_in_directory'] > -1) {
659                 $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
660                 // can list current - so that it does not break!!!
661                 $this->whereAdd("$tn_p.id NOT IN 
662                     ( SELECT distinct person_id FROM $tn_pd WHERE
663                         project_id = " . $q['query']['not_in_directory'] . " AND 
664                         company_id = " . $this->company_id . ')');
665             }
666         }
667            
668         if (!empty($q['query']['role'])) { 
669             // it's a Person list..
670             // DB_DATaobjecT::debugLevel(1);
671             
672             // specific to project directory which is single comp. login
673             //
674             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
675                 // can list current - so that it does not break!!!
676             $this->whereAdd("$tn_p.id IN 
677                     ( SELECT distinct person_id FROM $tn_pd WHERE
678                         role = '". $this->escape($q['query']['role']) ."'
679             )");
680         
681         }
682         
683         
684         if (!empty($q['query']['project_member_of'])) {
685                // this is also a flag to return if they are a member..
686             //DB_DataObject::debugLevel(1);
687             $do = DB_DataObject::factory('ProjectDirectory');
688             $do->project_id = $q['query']['project_member_of'];
689             $tn_pd = DB_DataObject::Factory('ProjectDirectory')->tableName();
690             $this->joinAdd($do,array('joinType' => 'LEFT', 'useWhereAsOn' => true));
691             $this->selectAdd("IF($tn_pd.id IS NULL, 0,  $tn_pd.id )  as is_member");
692                 
693                 
694             if (!empty($q['query']['project_member_filter'])) {
695                 $this->having('is_member !=0');
696             
697             }
698             
699         }
700         
701         if (!empty($q['query']['search'])) {
702             $s = $this->escape($q['query']['search']);
703                     $this->whereAdd("
704                         $tn_p.name LIKE '%$s%'  OR
705                         $tn_p.email LIKE '%$s%'  OR
706                         $tn_p.role LIKE '%$s%'  OR
707                         $tn_p.phone LIKE '%$s%' OR
708                         $tn_p.remarks LIKE '%$s%' 
709                         
710                     ");
711         }
712         
713         //
714     }
715     function setFromRoo($ar, $roo)
716     {
717         $this->setFrom($ar);
718         if (!empty($ar['passwd1'])) {
719             $this->setPassword($ar['passwd1']);
720         }
721         
722         
723         if (    $this->id &&
724                 ($this->email == $roo->old->email)&&
725                 ($this->company_id == $roo->old->company_id)
726             ) {
727             return true;
728         }
729         if (empty($this->email)) {
730             return true;
731         }
732         $xx = DB_Dataobject::factory('Person');
733         $xx->setFrom(array(
734             'email' => $this->email,
735            // 'company_id' => $x->company_id
736         ));
737         
738         if ($xx->count()) {
739             return "Duplicate Email found";
740         }
741         return true;
742     }
743     /**
744      *
745      * before Delete - delete significant dependancies..
746      * this is called after checkPerm..
747      */
748     
749     function beforeDelete()
750     {
751         
752         $e = DB_DataObject::Factory('Events');
753         $e->whereAdd('person_id = ' . $this->id);
754         $e->delete(true);
755         
756         // anything else?  
757         
758     }
759     
760     
761     /***
762      * Check if the a user has access to modify this item.
763      * @param String $lvl Level (eg. Core.Projects)
764      * @param Pman_Core_DataObjects_Person $au The authenticated user.
765      * @param boolean $changes alllow changes???
766      *
767      * @return false if no access..
768      */
769     function checkPerm($lvl, $au, $changes=false) //heck who is trying to access this. false == access denied..
770     {
771          
772        // do we have an empty system..
773         if ($au && $au->id == -1) {
774             return true;
775         }
776         
777         // determine if it's staff!!!
778          
779         if ($au->company()->comptype != 'OWNER') {
780             
781             // - can not change company!!!
782             if ($changes && 
783                 isset($changes['company_id']) && 
784                 $changes['company_id'] != $au->company_id) {
785                 return false;
786             }
787             // can only set new emails..
788             if ($changes && 
789                     !empty($this->email) && 
790                     isset($changes['email']) && 
791                     $changes['email'] != $this->email) {
792                 return false;
793             }
794             
795             // edit self... - what about other staff members...
796             
797             return $this->company_id == $au->company_id;
798         }
799          
800          
801         // yes, only owner company can mess with this...
802         $owncomp = DB_DataObject::Factory('Companies');
803         $owncomp->get('comptype', 'OWNER');
804         
805         $isStaff = ($this->company_id ==  $owncomp->id);
806         
807     
808         switch ($lvl) {
809             // extra case change passwod?
810             case 'P': //??? password
811                 // standard perms -- for editing + if the user is dowing them selves..
812                 $ret = $isStaff ? $au->hasPerm("Core.Staff", "E") : $au->hasPerm("Core.Person", "E");
813                 return $ret || $au->id == $this->id;
814             
815             default:                
816                 return $isStaff ? $au->hasPerm("Core.Staff", $lvl) : $au->hasPerm("Core.Person", $lvl);
817         
818         }
819         return false;
820     }
821     function onInsert($req, $roo)  
822     {
823          
824         $p = DB_DataObject::factory('person');
825         if ($roo->authUser->id < 0 && $p->count() == 1) {
826             // this seems a bit risky...
827             
828             $g = DB_DataObject::factory('Groups');
829             $g->initGroups();
830             
831             $g->type = 0;
832             $g->get('name', 'Administrators');
833             
834             $p = DB_DataObject::factory('group_members');
835             $p->group_id = $g->id;
836             $p->user_id = $this->id;     
837             if (!$p->count()) {
838                 $p->insert();
839                 $roo->addEvent("ADD", $p, $g->toEventString(). " Added " . $this->toEventString());
840             }
841             $this->login();
842         }
843         if (!empty($req['project_id_addto'])) {
844             $pd = DB_DataObject::factory('ProjectDirectory');
845             $pd->project_id = $req['project_id_addto'];
846             $pd->person_id = $this->id; 
847             $pd->ispm =0;
848             $pd->office_id = $this->office_id;
849             $pd->company_id = $this->company_id;
850             $pd->insert();
851         }
852         
853     }
854  }