DataObjects/ProjectDirectory.php
[Pman.Core] / DataObjects / ProjectDirectory.php
1 <?php
2 /**
3  * Table Definition for ProjectDirectory
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_ProjectDirectory extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'ProjectDirectory';                // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $project_id;                      // int(11)  not_null
15     public $person_id;                       // int(11)  not_null
16     public $ispm;                            // int(11)  not_null
17     public $office_id;                       // int(11)  
18     public $company_id;                      // int(11)  
19     public $role;                            // string(16)  not_null
20
21     
22     /* the code above is auto generated do not remove the tag below */
23     ###END_AUTOCODE
24     
25     
26     function person()
27     {
28         $p = DB_DataObject::factory('Person');
29         $p->get($this->person_id);
30         return $p;
31     }
32     
33     function toEventString() {
34         $p = $this->person();
35         // this is weird... company is in the person.. - effieciency??
36         $c = DB_DataObject::factory('Companies');
37         $c->get($this->company_id);
38         $pr = DB_DataObject::factory('Projects');
39         $pr->get($this->project_id);
40         
41         return $pr->code . ' '. $p->name . '('. $c->name .')';
42     }
43     
44     function personMemberOf($pe, $pr) {
45         $this->person_id = $pe->id;
46         $this->project_id = $pr->id;
47         $this->limit(1);
48         if ($this->find(true)) {
49             return true;
50         }
51         return false;
52     }
53  
54     function ensureProjectMember($pr, $pe) // used where?
55     {
56         if ($this->personMemberOf($pe, $pr)) {
57            return;
58         }
59         $this->company_id = $pe->company_id;
60         $this->office_id = $pe->office_id;
61         $this->role = $pe->role;
62         $this->insert();
63         
64         
65         
66     }
67     function checkPerm($lvl, $au) 
68     {
69         return $au->hasPerm('Documents.Project_Directory', $lvl);
70     } 
71     function setFromRoo($ar,$roo)
72     {
73         $this->setFrom($ar);
74         
75         if ($this->id && 
76             ($this->project_id == $roo->old->project_id) &&
77             ($this->person_id == $roo->old->person_id) &&
78             ($this->company_id == $roo->old->company_id) )
79         {
80             return true;
81         }
82
83         $xx = DB_Dataobject::factory('ProjectDirectory');
84         $xx->setFrom(array(
85             'project_id' => $this->project_id,
86             'person_id' => $this->person_id,
87             'company_id' => $this->company_id,
88         ));
89         
90         if ($xx->count()) {
91             return "Duplicate entry found Project Directory entry";
92         }
93         return true;
94
95     }
96     function applyFilters($q, $au)
97     {
98         //DB_DAtaObject::debugLevel(1);  var_dump($q);
99        
100         // otherwise only the project they are involved with..
101          
102         // can  see - their projects + their personal mail...
103         if (!empty($q['project_id_ar'])) {
104             // can filter projects!
105             $this->whereAddIn('ProjectDirectory.project_id', explode(',',$q['project_id_ar']), 'int');
106         }
107         
108         
109          if (!empty($q['query']['company_ids'])) {
110              $this->whereAddIn('ProjectDirectory.company_id', explode(',',$q['query']['company_ids']), 'int');
111         }
112         
113         // whos should they see as far as personal contacts.!?!?
114         // their projects... and their mail or.. just their mail if no projects..
115         
116         
117         /// ------------ PERMISSION FILTERERIN!!!!!!
118         
119         if ($au->hasPerm('Core.Projects_All', 'S')) {
120             return; // can see it all!!!
121         }
122         
123         
124         $pr = DB_DataObject::factory('Projects');
125         $pr->whereAdd("Projects.type IN ('N','X')");
126         $prjs = $pr->fetchAll('id');
127         
128         
129         $pd = DB_DataObject::factory('ProjectDirectory');
130         $pd->joinAdd(DB_DataObject::factory('Projects'), 'LEFT');
131         $pd->whereAdd("Projects.type NOT IN ('N','X')");
132         $pd->person_id = $au->id;
133         
134         $prjs = array_merge($prjs, $pd->fetchAll('project_id'));
135         if (count($prjs)) {
136             $this->whereAdd("
137                     (ProjectDirectory.project_id IN (".implode(',', $prjs).")) 
138                   
139                 
140             ");
141         }  else {
142             $this->whereAdd("1=0"); // can see nothing!!!
143         }
144        
145         
146         
147          
148          
149         
150     }
151     
152     
153     
154 }