init
[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         // this is clipping related..  -- we should have an API for addons like this.. (and docs)
147         
148         if ($au->company()->comptype == 'SUPPLIER') {
149             $pr = DB_DataObject::factory('CampaignAssign');
150             $pr->supplier_id = $au->company_id;
151             $prjs = $pr->fetchAll('project_id');
152              if (count($prjs)) {
153                 $this->whereAdd("
154                      (Projects.id IN (".implode(',', $prjs).")) 
155                 ");
156             }  else {
157                 $this->whereAdd("1=0"); // can see nothing!!!
158             }
159         }
160         if ($au->company()->comptype == 'CLIENT') {
161             $this->client_id = $au->company()->id; // can see nothing!!!
162             
163         }
164                  
165         
166         
167         
168     }
169     function whereAddIn($key, $list, $type) {
170         $ar = array();
171         foreach($list as $k) {
172             $ar[] = $type =='int' ? (int)$k : $this->escape($k);
173         }
174         if (!$ar) {
175             return;
176         }
177         $this->whereAdd("$key IN (". implode(',', $ar). ')');
178     }
179     function onInsert()
180     {
181         $oo = clone($this);
182         if (empty($this->code)) {
183             $this->code = 'C' + $this->client_id + '-P' + $this->id;
184             $this->update($oo);
185         }
186     }
187     
188     function onUpdate($old)
189     {
190         $oo = clone($this);
191         if (empty($this->code)) {
192             $this->code = 'C' + $this->client_id + '-P' + $this->id;
193             $this->update($oo);
194         }
195         
196         if ($old->code == $this->code) {
197             return;
198         }
199         
200         
201         $opts = PEAR::getStaticProperty('Pman', 'options');
202         
203         $olddir =  $opts['storedir'] . '/' . $old->code;
204         $newdir =  $opts['storedir'] . '/' . $this->code;
205         if ( file_exists($olddir)) {
206             move ($olddir, $newdir);
207         }
208          
209         
210     }
211     
212     function prune()
213     {
214         if (!$this->prune) { // non-expiring..
215             return;
216         }
217         
218         $d = DB_DataObject::factory('Document');
219         $d->whereAdd("date_rec < NOW - INTERVAL {$this->expires} DAYS"); 
220         $d->find();
221         while ($d->fetch()) {
222             $d->prune();
223         }
224         
225         
226         
227         
228         
229         
230         
231     }
232     /**
233      * our camp interface uses the format Cxxx-Pyyyyyy to refer to the project.
234      */
235     function getByCodeRef($str)
236     {
237         $bits = explode('-', $str);
238         if ((count($bits) != 2) || $bits[0][0] != 'C' ||  $bits[1][0] != 'P' ) {
239             return false;
240         }
241         $comp = substr($bits[0], 1);
242         $id = (int) substr($bits[1], 1);
243         return $id && $this->get($id);
244         
245     }
246     
247     
248     function i18toArray($type, $str) 
249     {
250         if (empty($str)) {
251             return array();
252         }
253         static $au;
254         static $langs;
255         static $cts;
256         
257         if (!$au) {
258             $u = DB_DataObject::factory('Person');
259             $au =$u->getAuthUser();
260             $lang = empty($au->lang ) ? 'en' : $au->lang;
261             $lbits = explode('_', strtoupper($lang));
262             // no validation here!!!!
263             require_once 'I18Nv2/Language.php';
264             require_once 'I18Nv2/Country.php';
265             $langs = new I18Nv2_Language($lbits[0]); // locale support not there??
266             $cts = new I18Nv2_Country($lbits[0]); // lo
267             
268         }
269         $lk = $type == 'c' ? $cts : $langs;
270         $ar  =explode(',', $str);
271         $ret = array();
272         foreach($ar as $k) {
273             $ret[] = array('code'=>$k, 'title' => $lk->getName($k));
274         }
275         return $ret;
276         // work out locale...
277         
278         
279         
280         
281     }
282     
283     
284     function toRooArray($f='%s') {
285         $ret = parent::toArray($f);
286         // sor tout 
287         $ret['countrylist'] = $this->I18toArray('c',$ret['countries']);
288         $ret['languagelist'] = $this->I18toArray('l',$ret['languages']);
289         return $ret;
290     }
291     function setFromRoo($q) 
292     {
293         $this->setFrom($q);
294         if (isset($q['open_date'])) {
295             $this->open_date = date('Y-m-d', strtotime(
296                 implode('-', array_reverse(explode('/', $q['open_date'])))
297             ));
298         }
299         return true;
300     }
301     
302     function fetchAll($k= false) {
303         if ($k !== false) {
304             $this->selectAdd();
305             $this->selectAdd($k);
306         }
307         
308         $this->find();
309         $ret = array();
310         while ($this->fetch()) {
311             $ret[] = $k === false ? clone($this) : $this->$k;
312         }
313         return $ret;
314          
315     }
316     
317     /**
318      * fetch a list of user projects.
319      * if you need to filter open/closed.. then add whereAdds before calling
320      */
321     function getUserProjects($au, $data='id') // COMPANY BASED!!!!
322     {
323         $id = (int) $au->company_id;
324         $this->whereAdd("
325             (client_id= $id) OR (agency_id= $id)
326         ");
327         if (!empty($data)) {
328             $this->selectAdd();
329             $this->selectAdd($data);
330         }
331         $this->find();
332         $ret = array();
333         while ($this->fetch()) {
334             $ret[] = empty($data) ? clone($this) : $this->$data;
335         }
336         return $ret;
337             
338     }
339     
340     
341     /**
342      * check who is trying to access this. false == access denied..
343      */
344     function checkPerm($lvl, $au) 
345     {
346         return $au->hasPerm("Core.Projects_Member_Of",$lvl) || $au->hasPerm("Core.Projects_All",$lvl);
347     }
348 }