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($request['_merge_id'])){
251             $this->merge($request['_merge_id'], $roo);
252         }
253         
254         if(!empty($this->is_system) && 
255             ($old->code != $this->code  ) // used to be not allowed to change name..
256         ){
257             $roo->jerr('This company is not allow to editing Ref. or Company Name...');
258         }
259     }
260     
261     function beforeDelete($req, $roo)
262     {
263         // should check for members....
264         if(!empty($this->is_system) && 
265             ($old->code != $this->code || $old->name != $this->name)
266         ){
267             $roo->jerr('This company is not allow to delete');
268         }
269         $img = DB_DataObject::factory('Images');
270         $img->ontable = $this->tableName();
271         $img->onid = $this->id;
272         $img->find();
273         while ($img->fetch()) {
274             $img->beforeDelete();
275             $img->delete();
276         }
277         return true;
278         
279          
280     }
281     /**
282      * check who is trying to access this. false == access denied..
283      */
284     function checkPerm($lvl, $au, $changes = false) 
285     {
286         
287         // do we have an empty system..
288         if ($au && $au->id == -1) {
289             return true;
290         }
291         
292         
293         
294         if ($au->company()->comptype != 'OWNER') {
295             
296             // hacking!
297             if ($changes && isset($changes['comptype']) && $changes['comptype'] != $this->comptype) {
298                 return false;
299             }
300             
301             return $this->id == $au->company_id;
302         }
303         
304         return $au->hasPerm("Core.Companies", $lvl);    
305     }
306     
307     function logoImageToHTML($size)
308     {
309         $i = DB_DataObject::factory('Images');
310         if (!$this->logo_id || !$i->get($this->logo_id)) {
311             return '';
312         }
313         return $i->toHTML($size);
314         
315     }
316      function firstImage($filter='image/%')
317     {
318         $i = DB_DataObject::factory('Images');
319         //DB_DataObject::debugLevel(1);
320         $im = $i->gather($this, $filter);
321         if (empty($im)) {
322             return false;
323         }
324         return $im[0];
325     }
326     
327     function firstImageTag($size =-1, $base="/Images/Thumb", $filter='image/%')
328     {
329         $fm = $this->firstImage($filter);
330          if (empty($fm)) {
331             return '';
332         }
333         return $fm->toHTML($size, $base);
334     }
335     
336     function toRooSingleArray($authUser, $request)
337     {
338         $ret = $this->toArray();
339        // DB_DataObject::debugLevel(1);
340         // get the comptype display
341         $e = DB_DataObject::Factory('core_enum')->lookupObject('COMPTYPE', $this->comptype);
342         
343         $ret['comptype_display'] = $ret['comptype'];
344         if ($e   && !empty($e->name_display)) {
345             $ret['comptype_display'] = $e->name_display;
346         }
347         
348         
349         return $ret;
350     }
351     
352     /**
353      * # 2028 
354      * create the suppliers...
355      * 
356      * @param object $roo
357      * @param array $data
358      * 
359      */
360     function initCompaniesArray($roo, $data)
361     {
362         $tn = $this->tableName();
363         
364         foreach($data as $d){
365             $com = DB_DataObject::factory($tn);
366             $com->setFrom($d);
367             if(!$com->find(true)){
368                 $com->created_dt = Date('Y-m-d H:i:s');
369                 $com->updated_dt = Date('Y-m-d H:i:s');
370                 $com->is_system = 1;// new column.. block the user changing the code and name..
371                 $com->insert();
372             }
373         }
374         
375         
376     }
377     
378     
379     function initCompanies($roo, $opts)
380     {
381         $companies = DB_DataObject::factory('core_company');
382         
383         $ctype = empty($opts['add-company-with-type']) ? 'OWNER' : $opts['add-company-with-type'];
384         
385         $enum = DB_DataObject::Factory('core_enum')->lookup('COMPTYPE', $ctype  );
386         
387         if (empty($enum)) {
388             $roo->jerr("invalid company type '$ctype'");
389         }
390         if ($ctype =='OWNER') {
391             $companies = DB_DataObject::factory('core_company');
392             $companies->comptype_id = $enum;
393             if ($companies->count()) {
394                 $roo->jerr("Owner  company already exists");
395             }
396         }
397         $companies = DB_DataObject::factory('core_company');
398         
399         // check that 
400         $companies->setFrom(array(
401             'name' => $opts['add-company'],
402             'comptype' => $ctype,
403             'comptype_id' => $enum,
404         ));
405         if ($companies->find(true)) {
406             $roo->jerr("company already exists");
407         }
408         $companies->setFrom(array(
409             'background_color' => '',
410             'created_dt' => $this->sqlValue('NOW()'),
411             'updated_dt' => $this->sqlValue('NOW()')
412         ));
413         
414         
415         $companies->insert();
416         $companies->onInsert(array(), $roo);
417     }
418     function lookupOwner()
419     {
420         $enum = DB_DataObject::Factory('core_enum')->lookup('COMPTYPE', 'OWNER'  );
421         $companies = DB_DataObject::factory('core_company');
422         $companies->comptype_id = $enum;
423         if ($companies->find(true)) {
424             return $companies;
425         }
426         return false;
427     }
428 }