DataObjects/Projects.php
[Pman.Core] / DataObjects / Projects.php
1 <?php
2 /**
3  * Table Definition for Projects
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Projects extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'Projects';                        // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $name;                            // string(254)  not_null
15     public $remarks;                         // blob(65535)  not_null blob
16     public $owner_id;                        // int(11)  
17     public $code;                            // string(32)  not_null multiple_key
18     public $active;                          // int(11)  
19     public $type;                            // string(1)  not_null
20     public $client_id;                       // int(11)  not_null
21     public $team_id;                         // int(11)  not_null
22     public $file_location;                   // string(254)  not_null
23     public $open_date;                       // date(10)  binary
24     public $open_by;                         // int(11)  not_null
25     public $countries;                       // string(128)  not_null
26     public $languages;                       // string(128)  not_null
27     public $close_date;                      // date(10)  binary
28     public $agency_id;                       // int(11)  not_null
29
30     
31     /* the code above is auto generated do not remove the tag below */
32     ###END_AUTOCODE
33     function getProjectManagers()
34     {
35         $c = DB_DataObject::factory('Companies');
36         $c->isOwner = 1;
37         if (!$c->find(true)) {
38             return array();
39         }
40         
41         
42         $pmids = array();
43         $pd = DB_DataObject::factory('ProjectDirectory');
44         $pd->project_id = $this->id;
45         $pd->company_id = $c->id;
46         $pd->ispm = 1;
47         if (!$pd->count()) {
48             return array();
49         }
50         $pd->selectAdd();
51         $pd->selectAdd('distinct (person_id)');
52         
53         $pd->find();
54         while ($pd->fetch()) {
55             $pmids[] = $pd->person_id;
56             
57         }
58         $ret = array();
59         $p =  DB_DataObject::factory('Person');
60         $p->whereAdd('id IN ('. implode(',', $pmids) .')');
61         $p->find();
62         while ($p->fetch()) {
63             $ret[] = clone($p);
64         }
65         return $ret;
66         
67     }
68
69     function toEventString() {
70         return $this->name;
71     }
72     
73     /**
74      * apply filter arguemnts
75      * @param $query - see below
76      * @param $authUser  - authenticated user
77      * 
78      * Query specs:
79      *   [query]
80      *       project_search = text string.
81      *       project_indaterange - a/c/o 
82      *       project_filter = ALL || P,N,U ....
83      * 
84      * // to get a users valid project list - just use array('query' => array('project_filter'=> 'ALL'));
85      * 
86      */
87     
88     function applyFilters($q, $au)
89     {
90          
91         if (!empty($q['query']['project_search'])) {
92             $s = $this->escape($q['query']['project_search']);
93             $this->whereAdd(" (Projects.code LIKE '$s%') OR (Projects.name LIKE '%$s%')");
94         }
95         // types of project to list ... - default is only the open ones...
96         if (!empty($q['query']['project_indaterange'])) {
97             switch($q['query']['project_indaterange']) {
98                 case 'A': // all
99                     break; 
100                 case 'C': // current
101                      $this->whereAdd('Projects.close_date >= NOW()');
102                     break;
103                 case 'O': // old
104                     $this->whereAdd('Projects.close_date < NOW()');
105                     break;
106                }
107         }
108         
109         if (empty($q['query']['project_filter'])  || $q['query']['project_filter'] != 'ALL') {
110             
111                
112             $pf = empty($q['query']['project_filter']) ? 'P,N,U' : $q['query']['project_filter'];
113             $bits= explode(',' ,$pf);
114             foreach($bits as $i=>$k) {
115                 $bits[$i] = $this->escape($k);
116             }
117             $this->whereAdd("Projects.type in ('". implode("','", $bits) . "')");
118         }
119          // user projects!!!! - make sure they can only see project they are suppsed to..
120          // only applies to document stuff..
121           
122         if (!$au->hasPerm('Core.Projects_All','S') &&
123             $au->hasPerm('Documents.Documents','S')) {
124             
125             
126             
127             $pr = DB_DataObject::factory('Projects');
128             $pr->whereAdd("Projects.type IN ('N','X')");
129             $prjs = $pr->fetchAll('id');
130             
131             
132             $pd = DB_DataObject::factory('ProjectDirectory');
133             $pd->joinAdd(DB_DataObject::factory('Projects'), 'LEFT');
134             $pd->whereAdd("Projects.type NOT IN ('N','X')");
135             $pd->person_id = $au->id;
136             
137             $prjs = array_merge($prjs, $pd->fetchAll('project_id'));
138             if (count($prjs)) {
139                 $this->whereAdd("
140                      (Projects.id IN (".implode(',', $prjs).")) 
141                 ");
142             }  else {
143                 $this->whereAdd("1=0"); // can see nothing!!!
144             }
145         }
146         
147         if (!empty($q['query']['distinct_client_id'])) {
148             $this->selectAdd();
149             $this->selectAdd('distinct(client_id)');
150             
151         }
152         
153         // this is clipping related..  -- we should have an API for addons like this.. (and docs)
154         
155         if ($au->company()->comptype == 'SUPPLIER') {
156             $pr = DB_DataObject::factory('CampaignAssign');
157             $pr->supplier_id = $au->company_id;
158             $prjs = $pr->fetchAll('project_id');
159              if (count($prjs)) {
160                 $this->whereAdd("
161                      (Projects.id IN (".implode(',', $prjs).")) 
162                 ");
163             }  else {
164                 $this->whereAdd("1=0"); // can see nothing!!!
165             }
166         }
167         if ($au->company()->comptype == 'CLIENT') {
168             $this->client_id = $au->company()->id; // can see nothing!!!
169             
170         }
171                  
172         
173         
174         
175     }
176     function whereAddIn($key, $list, $type) {
177         $ar = array();
178         foreach($list as $k) {
179             $ar[] = $type =='int' ? (int)$k : $this->escape($k);
180         }
181         if (!$ar) {
182             return;
183         }
184         $this->whereAdd("$key IN (". implode(',', $ar). ')');
185     }
186     function onInsert()
187     {
188         $oo = clone($this);
189         if (empty($this->code)) {
190             $this->code = 'C' + $this->client_id + '-P' + $this->id;
191             $this->update($oo);
192         }
193     }
194     
195     function onUpdate($old)
196     {
197         $oo = clone($this);
198         if (empty($this->code)) {
199             $this->code = 'C' + $this->client_id + '-P' + $this->id;
200             $this->update($oo);
201         }
202         
203         if ($old->code == $this->code) {
204             return;
205         }
206         
207         
208         $opts = PEAR::getStaticProperty('Pman', 'options');
209         
210         $olddir =  $opts['storedir'] . '/' . $old->code;
211         $newdir =  $opts['storedir'] . '/' . $this->code;
212         if ( file_exists($olddir)) {
213             move ($olddir, $newdir);
214         }
215          
216         
217     }
218     
219     function prune()
220     {
221         if (!$this->prune) { // non-expiring..
222             return;
223         }
224         
225         $d = DB_DataObject::factory('Document');
226         $d->whereAdd("date_rec < NOW - INTERVAL {$this->expires} DAYS"); 
227         $d->find();
228         while ($d->fetch()) {
229             $d->prune();
230         }
231         
232         
233         
234         
235         
236         
237         
238     }
239     /**
240      * our camp interface uses the format Cxxx-Pyyyyyy to refer to the project.
241      */
242     function getByCodeRef($str)
243     {
244         $bits = explode('-', $str);
245         if ((count($bits) != 2) || $bits[0][0] != 'C' ||  $bits[1][0] != 'P' ) {
246             return false;
247         }
248         $comp = substr($bits[0], 1);
249         $id = (int) substr($bits[1], 1);
250         return $id && $this->get($id);
251         
252     }
253     
254     
255     function i18toArray($type, $str) 
256     {
257         if (empty($str)) {
258             return array();
259         }
260         static $au;
261         static $langs;
262         static $cts;
263         
264         if (!$au) {
265             $u = DB_DataObject::factory('Person');
266             $au =$u->getAuthUser();
267             $lang = empty($au->lang ) ? 'en' : $au->lang;
268             $lbits = explode('_', strtoupper($lang));
269             // no validation here!!!!
270             require_once 'I18Nv2/Language.php';
271             require_once 'I18Nv2/Country.php';
272             $langs = new I18Nv2_Language($lbits[0]); // locale support not there??
273             $cts = new I18Nv2_Country($lbits[0]); // lo
274             
275         }
276         $lk = $type == 'c' ? $cts : $langs;
277         $ar  =explode(',', $str);
278         $ret = array();
279         foreach($ar as $k) {
280             $ret[] = array('code'=>$k, 'title' => $lk->getName($k));
281         }
282         return $ret;
283         // work out locale...
284         
285         
286         
287         
288     }
289     
290     
291     function toRooArray($f='%s') {
292         $ret = parent::toArray($f);
293         // sor tout 
294         $ret['countrylist'] = $this->I18toArray('c',$ret['countries']);
295         $ret['languagelist'] = $this->I18toArray('l',$ret['languages']);
296         return $ret;
297     }
298     function setFromRoo($q) 
299     {
300         $this->setFrom($q);
301         if (isset($q['open_date'])) {
302             $this->open_date = date('Y-m-d', strtotime(
303                 implode('-', array_reverse(explode('/', $q['open_date'])))
304             ));
305         }
306         return true;
307     }
308     
309     function fetchAll($k= false) {
310         if ($k !== false) {
311             $this->selectAdd();
312             $this->selectAdd($k);
313         }
314         
315         $this->find();
316         $ret = array();
317         while ($this->fetch()) {
318             $ret[] = $k === false ? clone($this) : $this->$k;
319         }
320         return $ret;
321          
322     }
323     
324     /**
325      * fetch a list of user projects.
326      * if you need to filter open/closed.. then add whereAdds before calling
327      */
328     function getUserProjects($au, $data='id') // COMPANY BASED!!!!
329     {
330         $id = (int) $au->company_id;
331         $this->whereAdd("
332             (client_id= $id) OR (agency_id= $id)
333         ");
334         if (!empty($data)) {
335             $this->selectAdd();
336             $this->selectAdd($data);
337         }
338         $this->find();
339         $ret = array();
340         while ($this->fetch()) {
341             $ret[] = empty($data) ? clone($this) : $this->$data;
342         }
343         return $ret;
344             
345     }
346     
347     
348     /**
349      * check who is trying to access this. false == access denied..
350      */
351     function checkPerm($lvl, $au) 
352     {
353         return $au->hasPerm("Core.Projects_Member_Of",$lvl) || $au->hasPerm("Core.Projects_All",$lvl);
354     }
355 }