DataObjects/Core_company.php
[Pman.Core] / DataObjects / Core_company.php
1 <?php
2 /**
3  * Table Definition for Companies
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Core_Company extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'core_company';                       // table name
13     public $code;                            // string(32)  not_null
14     public $name;                            // string(128)  
15     public $remarks;                         // blob(65535)  blob
16     public $owner_id;                        // int(11)  not_null
17     public $address;                         // blob(65535)  blob
18     public $tel;                             // string(32)  
19     public $fax;                             // string(32)  
20     public $email;                           // string(128)  
21     public $id;                              // int(11)  not_null primary_key auto_increment
22     public $isOwner;                         // int(11)  
23     public $logo_id;                         // int(11)  not_null
24     public $background_color;                // string(8)  not_null
25     public $comptype;                        // string(8)  not_null
26     public $url;                             // string(254)  not_null
27     public $main_office_id;                  // int(11)  not_null
28     public $created_by;                      // int(11)  not_null
29     public $created_dt;                      // datetime(19)  not_null binary
30     public $updated_by;                      // int(11)  not_null
31     public $updated_dt;                      // datetime(19)  not_null binary
32     public $passwd;                          // string(64)  not_null
33     public $dispatch_port;                   // string(255)  not_null
34     public $province;                        // string(255)  not_null
35     public $country;                         // string(4)  not_null
36     public $is_system;                       // int(2)
37     
38     /* the code above is auto generated do not remove the tag below */
39     ###END_AUTOCODE
40     
41     function applyFilters($q, $au)
42     {
43        $tn = $this->tableName();
44         $this->selectAdd("i18n_translate('c' , {$tn}.country, 'en') as country_display_name ");
45       
46         $tn = $this->tableName();
47         //DB_DataObject::debugLevel(1);
48         $x = DB_DataObject::factory('core_company');
49         $x->comptype= 'OWNER';
50         $x->find(true);
51         
52         if (!empty($q['query']['company_project_id'])) {
53             $add = '';
54             if (!empty($q['query']['company_include_self'])) {
55                 $add = " OR {$tn}.id = {$x->id}";
56             }
57             if (!empty($q['query']['company_not_self'])) {
58                 $add = " AND {$tn}.id != {$x->id}";
59             }
60             $pids = array();
61             $pid = $q['query']['company_project_id'];
62             if (strpos($pid, ',')) {
63                 $bits = explode(',', $pid);
64                 foreach($bits as $b) {
65                     $pids[] = (int)$b;
66                 }
67             } else {
68                 $pids = array($pid);
69             }
70             
71             
72             $pids = implode(',', $pids);
73             $this->whereAdd("{$tn}.id IN (
74                 SELECT distinct(company_id) FROM ProjectDirectory where project_id IN ($pids)
75             ) $add" );
76              
77         }
78         if (!empty($q['query']['comptype'])) {
79            
80             $this->whereAddIn('comptype', explode(',', $q['query']['comptype']), 'string');
81             
82         }
83         
84         // depricated - should be moved to module specific (texon afair)
85         
86          if (!empty($q['query']['province'])) {
87              $prov = $this->escape($q['query']['province']);
88             $this->whereAdd("province LIKE '$prov%'");
89             
90             
91         }
92         // ADD comptype_display name.. = for combos..
93         $this->selectAdd("
94             (SELECT display_name
95                 FROM
96                     core_enum
97                 WHERE
98                     etype='comptype'
99                     AND
100                     name={$tn}.comptype
101                 LIMIT 1
102                 ) as comptype_display_name
103         ");
104         
105         if(!empty($q['search']['name'])){
106             $s = $this->escape($q['search']['name']);
107             $this->whereAdd("
108                 {$tn}.name LIKE '%$s%'
109             ");
110         }
111         if(!empty($q['search']['name_starts'])){
112             $s = $this->escape($q['search']['name_starts']);
113             $this->whereAdd("
114                 {$tn}.name LIKE '$s%'
115             ");
116         }
117     }
118     
119     function toEventString() {
120         return $this->name;
121     }
122     
123     // ---------- AUTHENTICATION
124      function isAuth()
125     {
126         $db = $this->getDatabaseConnection();
127         $sesPrefix = $db->dsn['database'];
128         @session_start();
129         if (!empty($_SESSION[__CLASS__][$sesPrefix .'-auth'])) {
130             // in session...
131             $a = unserialize($_SESSION[__CLASS__][$sesPrefix .'-auth']);
132             $u = DB_DataObject::factory('core_company');
133             if ($u->get($a->id)) { //&& strlen($u->passwd)) {
134                 return true;
135             }
136             $_SESSION[__CLASS__][$sesPrefix .'-auth'] = '';
137             
138         }
139         // not in session or not matched...
140         
141         
142         return false;
143         
144     }
145     function getAuthUser()
146     {
147         if (!$this->isAuth()) {
148             return false;
149         }
150         $db = $this->getDatabaseConnection();
151         $sesPrefix = $db->dsn['database'];
152         if (!empty($_SESSION[__CLASS__][$sesPrefix .'-auth'])) {
153             $a = unserialize($_SESSION[__CLASS__][$sesPrefix .'-auth']);
154             
155             $u = DB_DataObject::factory('core_company');
156             if ($u->get($a->id)) { /// && strlen($u->passwd)) {
157                 return clone($u);
158             }
159              
160         }
161         
162         
163         return false;
164     }     
165     function login()
166     {
167         $this->isAuth(); // force session start..
168          $db = $this->getDatabaseConnection();
169         $sesPrefix = $db->dsn['database'];
170         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = serialize($this);
171         
172     }
173     function logout()
174     {
175         $this->isAuth(); // force session start..
176         $db = $this->getDatabaseConnection();
177         $sesPrefix = $db->dsn['database'];
178         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = "";
179         
180     }    
181     // ---------- AUTHENTICATION
182     function checkPassword($val)
183     {
184         //echo '<pre>'.$val .  print_R($this,true);
185         if (substr($this->passwd,0,1) == '$') {
186             return crypt($val,$this->passwd) == $this->passwd ;
187         }
188         // old style md5 passwords...- cant be used with courier....
189         return md5($val) == $this->passwd;
190     }
191     function setPassword($value) 
192     {
193         $salt='';
194         while(strlen($salt)<9) {
195             $salt.=chr(rand(64,126));
196             //php -r var_dump(crypt('testpassword', '$1$'. (rand(64,126)). '$'));
197         }
198         $this->passwd = crypt($value, '$1$'. $salt. '$');
199        
200     }      
201     function onUpload($controller)
202     {
203         $image = DB_DataObject::factory('Images');
204         return $image->onUploadWithTbl($this, 'logo_id');
205          
206     }
207     function  onUpdate($old, $req,$roo) 
208     {
209         if (!empty($req['password1'])) {
210             $this->setPassword($req['password1']);
211             $this->update();
212         }
213     }
214     function onInsert($req, $roo)
215     {
216         if (!empty($this->logo_id)) { // update images table to sycn with this..
217             $img = DB_DataObject::factory('Images');
218             if ($img->get($this->logo_id) && ($img->onid != $this->id)) {
219                 $img->onid = $this->id;
220                 $img->update();
221             }
222         }
223         if (!empty($req['password1'])) {
224             $this->setPassword($req['password1']);
225             $this->update();
226         }
227         $img = DB_DataObject::factory('Images');
228         $img->onid= 0;
229         
230         $img->ontable = $this->tableName();
231         $img->imgtype = 'LOGO';
232         // should check uploader!!!
233         if ($img->find()) {
234             while($img->fetch()) {
235                 $ii = clone($img);
236                 $ii->onid = $this->id;
237                 $ii->update();
238                 $this->logo_id = $ii->id;
239             }
240             $this->update();
241         }
242         
243         
244         
245         
246     }
247     
248     function beforeUpdate($old, $q,$roo)
249     {
250         if(!empty($this->is_system) && 
251             ($old->code != $this->code  ) // used to be not allowed to change name..
252         ){
253             $roo->jerr('This company is not allow to editing Ref. or Company Name...');
254         }
255     }
256     
257     function beforeDelete($req, $roo)
258     {
259         // should check for members....
260         if(!empty($this->is_system) && 
261             ($old->code != $this->code || $old->name != $this->name)
262         ){
263             $roo->jerr('This company is not allow to delete');
264         }
265         $img = DB_DataObject::factory('Images');
266         $img->ontable = $this->tableName();
267         $img->onid = $this->id;
268         $img->find();
269         while ($img->fetch()) {
270             $img->beforeDelete();
271             $img->delete();
272         }
273         return true;
274         
275          
276     }
277     /**
278      * check who is trying to access this. false == access denied..
279      */
280     function checkPerm($lvl, $au, $changes = false) 
281     {
282         
283         // do we have an empty system..
284         if ($au && $au->id == -1) {
285             return true;
286         }
287         
288         
289         
290         if ($au->company()->comptype != 'OWNER') {
291             
292             // hacking!
293             if ($changes && isset($changes['comptype']) && $changes['comptype'] != $this->comptype) {
294                 return false;
295             }
296             
297             return $this->id == $au->company_id;
298         }
299         
300         return $au->hasPerm("Core.Companies", $lvl);    
301     }
302     
303     function logoImageToHTML($size)
304     {
305         $i = DB_DataObject::factory('Images');
306         if (!$this->logo_id || !$i->get($this->logo_id)) {
307             return '';
308         }
309         return $i->toHTML($size);
310         
311     }
312      function firstImage($filter='image/%')
313     {
314         $i = DB_DataObject::factory('Images');
315         //DB_DataObject::debugLevel(1);
316         $im = $i->gather($this, $filter);
317         if (empty($im)) {
318             return false;
319         }
320         return $im[0];
321     }
322     
323     function firstImageTag($size =-1, $base="/Images/Thumb", $filter='image/%')
324     {
325         $fm = $this->firstImage($filter);
326          if (empty($fm)) {
327             return '';
328         }
329         return $fm->toHTML($size, $base);
330     }
331     
332     function toRooSingleArray($authUser, $request)
333     {
334         $ret = $this->toArray();
335        // DB_DataObject::debugLevel(1);
336         // get the comptype display
337         $e = DB_DataObject::Factory('core_enum')->lookupObject('COMPTYPE', $this->comptype);
338         
339         $ret['comptype_display'] = $ret['comptype'];
340         if ($e   && !empty($e->name_display)) {
341             $ret['comptype_display'] = $e->name_display;
342         }
343         
344         
345         return $ret;
346     }
347     
348     /**
349      * # 2028 
350      * create the suppliers...
351      * 
352      * @param object $roo
353      * @param array $data
354      * 
355      */
356     function initCompaniesArray($roo, $data)
357     {
358         $tn = $this->tableName();
359         
360         foreach($data as $d){
361             $com = DB_DataObject::factory($tn);
362             $com->setFrom($d);
363             if(!$com->find(true)){
364                 $com->created_dt = Date('Y-m-d H:i:s');
365                 $com->updated_dt = Date('Y-m-d H:i:s');
366                 $com->is_system = 1;// new column.. block the user changing the code and name..
367                 $com->insert();
368             }
369         }
370         
371         
372     }
373     
374     
375     function initCompanies($roo, $opts)
376     {
377         $companies = DB_DataObject::factory('core_company');
378         
379         $ctype = empty($opts['add-company-with-type']) ? 'OWNER' : $opts['add-company-with-type'];
380         
381         $enum = DB_DataObject::Factory('core_enum')->lookup('COMPTYPE', $ctype  );
382         
383         if (empty($enum)) {
384             $roo->jerr("invalid company type '$ctype'");
385         }
386         if ($ctype =='OWNER') {
387             $companies = DB_DataObject::factory('core_company');
388             $companies->comptype_id = $enum;
389             if ($companies->count()) {
390                 $roo->jerr("Owner  company already exists");
391             }
392         }
393         $companies = DB_DataObject::factory('core_company');
394         
395         // check that 
396         $companies->setFrom(array(
397             'name' => $opts['add-company'],
398             'comptype' => $ctype,
399             'comptype_id' => $enum,
400         ));
401         if ($companies->find(true)) {
402             $roo->jerr("company already exists");
403         }
404         $companies->setFrom(array(
405             'background_color' => '',
406             'created_dt' => $this->sqlValue('NOW()'),
407             'updated_dt' => $this->sqlValue('NOW()')
408         ));
409         
410         
411         $companies->insert();
412         $companies->onInsert(array(), $roo);
413     }
414     function lookupOwner()
415     {
416         $enum = DB_DataObject::Factory('core_enum')->lookup('COMPTYPE', 'OWNER'  );
417         $companies = DB_DataObject::factory('core_company');
418         $companies->comptype_id = $enum;
419         if ($companies->find(true)) {
420             return $companies;
421         }
422         return false;
423     }
424 }