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