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