DataObjects/Core_company.php
[Pman.Core] / DataObjects / Core_company.php
1 <?php
2 /**
3  * Table Definition for Companies
4  */
5 class_exists('DB_DataObject') ? '' : 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         
44         $tn = $this->tableName();
45         $this->selectAdd("i18n_translate('c' , {$tn}.country, 'en') as country_display_name ");
46       
47         $tn = $this->tableName();
48         //DB_DataObject::debugLevel(1);
49         $x = DB_DataObject::factory('core_company');
50         $x->comptype= 'OWNER';
51         $x->find(true);
52
53         if (!empty($q['query']['company_project_id'])) {
54             $add = '';
55             if (!empty($q['query']['company_include_self'])) {
56                 $add = " OR {$tn}.id = {$x->id}";
57             }
58             if (!empty($q['query']['company_not_self'])) {
59                 $add = " AND {$tn}.id != {$x->id}";
60             }
61             
62             $pids = array();
63             $pid = $q['query']['company_project_id'];
64             if (strpos($pid, ',')) {
65                 $bits = explode(',', $pid);
66                 foreach($bits as $b) {
67                     $pids[] = (int)$b;
68                 }
69             } else {
70                 $pids = array($pid);
71             }
72             
73             
74             $pids = implode(',', $pids);
75             $this->whereAdd("{$tn}.id IN (
76                 SELECT distinct(company_id) FROM ProjectDirectory where project_id IN ($pids)
77             ) $add" );
78              
79         }
80         if (!empty($q['query']['comptype'])) {
81            
82             $this->whereAddIn('comptype', explode(',', $q['query']['comptype']), 'string');
83             
84         }
85         
86         // depricated - should be moved to module specific (texon afair)
87         
88          if (!empty($q['query']['province'])) {
89              $prov = $this->escape($q['query']['province']);
90             $this->whereAdd("province LIKE '$prov%'");
91             
92             
93         }
94         // ADD comptype_display name.. = for combos..
95         $this->selectAdd("
96             (SELECT display_name
97                 FROM
98                     core_enum
99                 WHERE
100                     etype='comptype'
101                     AND
102                     name={$tn}.comptype
103                 LIMIT 1
104                 ) as comptype_display_name
105         ");
106         
107         if(!empty($q['query']['name']) || !empty($q['search']['name'])){
108             
109             $s = (!empty($q['query']['name'])) ? $this->escape($q['query']['name']) : $this->escape($q['search']['name']);
110             $this->whereAdd("
111                 {$tn}.name LIKE '%$s%'
112             ");
113         }
114         if(){ 
115             $s = $this->escape($q['search']['name']);
116             $this->whereAdd("
117                 {$tn}.name LIKE '%$s%'
118             ");
119         }
120         if(!empty($q['search']['name_starts'])){
121             $s = $this->escape($q['search']['name_starts']);
122             $this->whereAdd("
123                 {$tn}.name LIKE '$s%'
124             ");
125         }
126     }
127     
128     function toEventString() {
129         return $this->name;
130     }
131     
132     // ---------- AUTHENTICATION
133     // not sure where authetnication via company is used?? posibly media-outreach
134     
135     function isAuth()
136     {
137         $db = $this->getDatabaseConnection();
138         $sesPrefix = $db->dsn['database'];
139         @session_start();
140         if (!empty($_SESSION[__CLASS__][$sesPrefix .'-auth'])) {
141             // in session...
142             $a = unserialize($_SESSION[__CLASS__][$sesPrefix .'-auth']);
143             $u = DB_DataObject::factory('core_company');
144             if ($u->get($a->id)) { //&& strlen($u->passwd)) {
145                 return true;
146             }
147             $_SESSION[__CLASS__][$sesPrefix .'-auth'] = '';
148             
149         }
150         // not in session or not matched...
151         
152         
153         return false;
154         
155     }
156     function getAuthUser()
157     {
158         if (!$this->isAuth()) {
159             return false;
160         }
161         $db = $this->getDatabaseConnection();
162         $sesPrefix = $db->dsn['database'];
163         if (!empty($_SESSION[__CLASS__][$sesPrefix .'-auth'])) {
164             $a = unserialize($_SESSION[__CLASS__][$sesPrefix .'-auth']);
165             
166             $u = DB_DataObject::factory('core_company');
167             if ($u->get($a->id)) { /// && strlen($u->passwd)) {
168                 return clone($u);
169             }
170              
171         }
172         
173         
174         return false;
175     }     
176     function login()
177     {
178         $this->isAuth(); // force session start..
179          $db = $this->getDatabaseConnection();
180         $sesPrefix = $db->dsn['database'];
181         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = serialize($this);
182         
183     }
184     function logout()
185     {
186         $this->isAuth(); // force session start..
187         $db = $this->getDatabaseConnection();
188         $sesPrefix = $db->dsn['database'];
189         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = "";
190         
191     }    
192     // ---------- AUTHENTICATION
193     function checkPassword($val)
194     {
195         //echo '<pre>'.$val .  print_R($this,true);
196         if (substr($this->passwd,0,1) == '$') {
197             return crypt($val,$this->passwd) == $this->passwd ;
198         }
199         // old style md5 passwords...- cant be used with courier....
200         return md5($val) == $this->passwd;
201     }
202     function setPassword($value) 
203     {
204         $salt='';
205         while(strlen($salt)<9) {
206             $salt.=chr(rand(64,126));
207             //php -r var_dump(crypt('testpassword', '$1$'. (rand(64,126)). '$'));
208         }
209         $this->passwd = crypt($value, '$1$'. $salt. '$');
210        
211     }      
212     function onUpload($controller)
213     {
214         $image = DB_DataObject::factory('Images');
215         return $image->onUploadWithTbl($this, 'logo_id');
216          
217     }
218     function  onUpdate($old, $req,$roo) 
219     {
220         if (!empty($req['password1'])) {
221             $this->setPassword($req['password1']);
222             $this->update();
223         }
224     }
225     function onInsert($req, $roo)
226     {
227         if (!empty($this->logo_id)) { // update images table to sycn with this..
228             $img = DB_DataObject::factory('Images');
229             if ($img->get($this->logo_id) && ($img->onid != $this->id)) {
230                 $img->onid = $this->id;
231                 $img->update();
232             }
233         }
234         if (!empty($req['password1'])) {
235             $this->setPassword($req['password1']);
236             $this->update();
237         }
238         $img = DB_DataObject::factory('Images');
239         $img->onid= 0;
240         
241         $img->ontable = $this->tableName();
242         $img->imgtype = 'LOGO';
243         // should check uploader!!!
244         if ($img->find()) {
245             while($img->fetch()) {
246                 $ii = clone($img);
247                 $ii->onid = $this->id;
248                 $ii->update();
249                 $this->logo_id = $ii->id;
250             }
251             $this->update();
252         }
253         
254     }
255     
256     function beforeInsert($q, $roo)
257     {
258         // we still use comptype in some old systems...
259         
260         if (!empty($q['comptype_id'])) {
261             $en = DB_DataObject::Factory('core_enum');
262             $en->get($q['comptype_id']);
263             $this->comptype = $en->name;
264         }
265         
266         if(!empty($q['_check_name'])){
267             if($this->checkName()){
268                 $roo->jok('OK');
269             }
270             
271             $roo->jerr('EXIST');
272         }
273     }
274     
275     function beforeUpdate($old, $q,$roo)
276     {
277         // we still use comptype in some old systems...
278         
279         if (!empty($q['comptype_id'])) {
280             $en = DB_DataObject::Factory('core_enum');
281             $en->get($q['comptype_id']);
282             $this->comptype = $en->name;
283         }
284         
285         
286         if(!empty($q['_flag_delete'])){
287             $this->deleted_dt = $this->sqlValue("NOW()");
288             $this->deleted_by = $roo->getAuthUser()->id;
289         }
290         
291         if(!empty($q['_flag_undelete'])){
292             $this->deleted_dt = "";
293             $this->deleted_by = 0;
294         }
295         if(!empty($q['_check_name'])){
296             if($this->checkName()){
297                 $roo->jok('OK');
298             }
299             
300             $roo->jerr('EXIST');
301         }
302         
303         if(!empty($q['_merge_id'])){
304             $this->merge($q['_merge_id'], $roo);
305         }
306         
307         if(!empty($this->is_system) && 
308             ($old->code != $this->code  ) // used to be not allowed to change name..
309         ){
310             $roo->jerr('This company is not allow to editing Ref. or Company Name...');
311         }
312     }
313     
314     function beforeDelete($req, $roo)
315     {
316         
317         // should check for members....
318         if(!empty($this->is_system) && 
319             ($old->code != $this->code || $old->name != $this->name)
320         ){
321             $roo->jerr('This company is not allow to delete');
322         }
323         
324         
325     }
326     function onDelete($req, $roo)
327     {   
328         $img = DB_DataObject::factory('Images');
329         $img->ontable = $this->tableName();
330         $img->onid = $this->id;
331         $img->find();
332         while ($img->fetch()) {
333             $img->beforeDelete();
334             $img->delete();
335         }
336         return true;
337         
338          
339     }
340     /**
341      * check who is trying to access this. false == access denied..
342      */
343     function checkPerm($lvl, $au, $changes = false) 
344     {
345         
346         // do we have an empty system..
347         if ($au && $au->id == -1) {
348             return true;
349         }
350         
351         
352         
353         if ($au->company()->comptype != 'OWNER') {
354             
355             // hacking!
356             if ($changes && isset($changes['comptype']) && $changes['comptype'] != $this->comptype) {
357                 return false;
358             }
359             
360             return $this->id == $au->company_id;
361         }
362         
363         return $au->hasPerm("Core.Companies", $lvl);    
364     }
365     
366     function logoImageToHTML($size)
367     {
368         $i = DB_DataObject::factory('Images');
369         if (!$this->logo_id || !$i->get($this->logo_id)) {
370             return '';
371         }
372         return $i->toHTML($size);
373         
374     }
375      function firstImage($filter='image/%')
376     {
377         $i = DB_DataObject::factory('Images');
378         //DB_DataObject::debugLevel(1);
379         $im = $i->gather($this, $filter);
380         if (empty($im)) {
381             return false;
382         }
383         return $im[0];
384     }
385     
386     function firstImageTag($size =-1, $base="/Images/Thumb", $filter='image/%')
387     {
388         $fm = $this->firstImage($filter);
389          if (empty($fm)) {
390             return '';
391         }
392         return $fm->toHTML($size, $base);
393     }
394     
395     function toRooSingleArray($authUser, $request)
396     {
397         $ret = $this->toArray();
398        // DB_DataObject::debugLevel(1);
399         // get the comptype display
400         $e = DB_DataObject::Factory('core_enum')->lookupObject('COMPTYPE', $this->comptype);
401         
402         $ret['comptype_display'] = $ret['comptype'];
403         if ($e   && !empty($e->name_display)) {
404             $ret['comptype_display'] = $e->name_display;
405         }
406         
407         
408         return $ret;
409     }
410     
411     /**
412      * # 2028 
413      * create the suppliers...
414      * 
415      * @param object $roo
416      * @param array $data
417      * 
418      */
419     function initCompaniesArray($roo, $data)
420     {
421         $tn = $this->tableName();
422         
423         foreach($data as $d){
424             $com = DB_DataObject::factory($tn);
425             $com->setFrom($d);
426             if(!$com->find(true)){
427                 $com->created_dt = Date('Y-m-d H:i:s');
428                 $com->updated_dt = Date('Y-m-d H:i:s');
429                 $com->is_system = 1;// new column.. block the user changing the code and name..
430                 $com->insert();
431             }
432         }
433         
434         
435     }
436     
437     
438     function initCompanies($roo, $opts)
439     {
440         $companies = DB_DataObject::factory('core_company');
441         
442         $ctype = empty($opts['add-company-with-type']) ? 'OWNER' : $opts['add-company-with-type'];
443         
444         $enum = DB_DataObject::Factory('core_enum')->lookup('COMPTYPE', $ctype  );
445         
446         if (empty($enum)) {
447             $roo->jerr("invalid company type '$ctype'");
448         }
449         if ($ctype =='OWNER') {
450             $companies = DB_DataObject::factory('core_company');
451             $companies->comptype_id = $enum;
452             if ($companies->count()) {
453                 $roo->jerr("Owner  company already exists");
454             }
455         }
456         $companies = DB_DataObject::factory('core_company');
457         
458         // check that 
459         $companies->setFrom(array(
460             'name' => $opts['add-company'],
461             'comptype' => $ctype,
462             'comptype_id' => $enum,
463         ));
464         if ($companies->find(true)) {
465             $roo->jerr("company already exists");
466         }
467         $companies->setFrom(array(
468             'background_color' => '',
469             'created_dt' => $this->sqlValue('NOW()'),
470             'updated_dt' => $this->sqlValue('NOW()')
471         ));
472         
473         
474         $companies->insert();
475         $companies->onInsert(array(), $roo);
476     }
477     static function lookupOwner()
478     {
479         $enum = DB_DataObject::Factory('core_enum')->lookup('COMPTYPE', 'OWNER'  );
480         $companies = DB_DataObject::factory('core_company');
481         $companies->comptype_id = $enum;
482         if ($companies->find(true)) {
483             return $companies;
484         }
485         return false;
486     }
487     
488     function merge($merge_to, $roo)
489     {
490         $affects  = array();
491         
492         $all_links = $this->databaseLinks();
493         
494         foreach($all_links as $tbl => $links) {
495             foreach($links as $col => $totbl_col) {
496                 $to = explode(':', $totbl_col);
497                 if ($to[0] != $this->tableName()) {
498                     continue;
499                 }
500                 
501                 $affects[$tbl .'.' . $col] = true;
502             }
503         }
504         
505         foreach($affects as $k => $true) {
506             $ka = explode('.', $k);
507
508             $chk = DB_DataObject::factory($ka[0]);
509             
510             if (!is_a($chk,'DB_DataObject')) {
511                 $roo->jerr('Unable to load referenced table, check the links config: ' .$ka[0]);
512             }
513             
514             $chk->{$ka[1]} = $this->id;
515
516             foreach ($chk->fetchAll() as $c){
517                 $cc = clone ($c);
518                 $c->{$ka[1]} = $merge_to;
519                 $c->update($cc);
520             }
521         }
522         
523         $this->delete();
524         
525         $roo->jok('Merged');
526         
527     }
528     
529     function checkName()
530     {
531         $company = DB_DataObject::factory('core_company');
532         $company->setFrom(array(
533             'name' => $this->name
534         ));
535         
536         if(!empty($this->id)){
537             $company->whereAdd("id != {$this->id}");
538         }
539         
540         if(!$company->find(true)){
541             return true;
542         }
543         
544         return false;
545     }
546 }