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         if(!empty($q['_check_name'])){
266             if($this->checkName()){
267                 $roo->jok('OK');
268             }
269             
270             $roo->jerr('EXIST');
271         }
272         
273         if(!empty($q['_merge_id'])){
274             $this->merge($q['_merge_id'], $roo);
275         }
276         
277         if(!empty($this->is_system) && 
278             ($old->code != $this->code  ) // used to be not allowed to change name..
279         ){
280             $roo->jerr('This company is not allow to editing Ref. or Company Name...');
281         }
282     }
283     
284     function beforeDelete($req, $roo)
285     {
286         if(!empty($req['_flag_delete']) && $req['_flag_delete'] * 1 == 1){
287             $delete_dt = date('Y-m-d H:i:s');
288             $this->query("UPDATE {$x->tableName()} SET deleted_by = {$this->getAuthUser()} , deleted_dt = {$delete_dt} WHERE id = {$req['_delete']}");
289             //$this->addEvent("UPDATE", false, "update core_company record");
290             $this->jok("Updated");
291         }echo "here"; exit;
292         // should check for members....
293         if(!empty($this->is_system) && 
294             ($old->code != $this->code || $old->name != $this->name)
295         ){
296             $roo->jerr('This company is not allow to delete');
297         }
298     }
299     function onDelete($req, $roo)
300     {   
301          
302         $img = DB_DataObject::factory('Images');
303         $img->ontable = $this->tableName();
304         $img->onid = $this->id;
305         $img->find();
306         while ($img->fetch()) {
307             $img->beforeDelete();
308             $img->delete();
309         }
310         return true;
311         
312          
313     }
314     /**
315      * check who is trying to access this. false == access denied..
316      */
317     function checkPerm($lvl, $au, $changes = false) 
318     {
319         
320         // do we have an empty system..
321         if ($au && $au->id == -1) {
322             return true;
323         }
324         
325         
326         
327         if ($au->company()->comptype != 'OWNER') {
328             
329             // hacking!
330             if ($changes && isset($changes['comptype']) && $changes['comptype'] != $this->comptype) {
331                 return false;
332             }
333             
334             return $this->id == $au->company_id;
335         }
336         
337         return $au->hasPerm("Core.Companies", $lvl);    
338     }
339     
340     function logoImageToHTML($size)
341     {
342         $i = DB_DataObject::factory('Images');
343         if (!$this->logo_id || !$i->get($this->logo_id)) {
344             return '';
345         }
346         return $i->toHTML($size);
347         
348     }
349      function firstImage($filter='image/%')
350     {
351         $i = DB_DataObject::factory('Images');
352         //DB_DataObject::debugLevel(1);
353         $im = $i->gather($this, $filter);
354         if (empty($im)) {
355             return false;
356         }
357         return $im[0];
358     }
359     
360     function firstImageTag($size =-1, $base="/Images/Thumb", $filter='image/%')
361     {
362         $fm = $this->firstImage($filter);
363          if (empty($fm)) {
364             return '';
365         }
366         return $fm->toHTML($size, $base);
367     }
368     
369     function toRooSingleArray($authUser, $request)
370     {
371         $ret = $this->toArray();
372        // DB_DataObject::debugLevel(1);
373         // get the comptype display
374         $e = DB_DataObject::Factory('core_enum')->lookupObject('COMPTYPE', $this->comptype);
375         
376         $ret['comptype_display'] = $ret['comptype'];
377         if ($e   && !empty($e->name_display)) {
378             $ret['comptype_display'] = $e->name_display;
379         }
380         
381         
382         return $ret;
383     }
384     
385     /**
386      * # 2028 
387      * create the suppliers...
388      * 
389      * @param object $roo
390      * @param array $data
391      * 
392      */
393     function initCompaniesArray($roo, $data)
394     {
395         $tn = $this->tableName();
396         
397         foreach($data as $d){
398             $com = DB_DataObject::factory($tn);
399             $com->setFrom($d);
400             if(!$com->find(true)){
401                 $com->created_dt = Date('Y-m-d H:i:s');
402                 $com->updated_dt = Date('Y-m-d H:i:s');
403                 $com->is_system = 1;// new column.. block the user changing the code and name..
404                 $com->insert();
405             }
406         }
407         
408         
409     }
410     
411     
412     function initCompanies($roo, $opts)
413     {
414         $companies = DB_DataObject::factory('core_company');
415         
416         $ctype = empty($opts['add-company-with-type']) ? 'OWNER' : $opts['add-company-with-type'];
417         
418         $enum = DB_DataObject::Factory('core_enum')->lookup('COMPTYPE', $ctype  );
419         
420         if (empty($enum)) {
421             $roo->jerr("invalid company type '$ctype'");
422         }
423         if ($ctype =='OWNER') {
424             $companies = DB_DataObject::factory('core_company');
425             $companies->comptype_id = $enum;
426             if ($companies->count()) {
427                 $roo->jerr("Owner  company already exists");
428             }
429         }
430         $companies = DB_DataObject::factory('core_company');
431         
432         // check that 
433         $companies->setFrom(array(
434             'name' => $opts['add-company'],
435             'comptype' => $ctype,
436             'comptype_id' => $enum,
437         ));
438         if ($companies->find(true)) {
439             $roo->jerr("company already exists");
440         }
441         $companies->setFrom(array(
442             'background_color' => '',
443             'created_dt' => $this->sqlValue('NOW()'),
444             'updated_dt' => $this->sqlValue('NOW()')
445         ));
446         
447         
448         $companies->insert();
449         $companies->onInsert(array(), $roo);
450     }
451     static function lookupOwner()
452     {
453         $enum = DB_DataObject::Factory('core_enum')->lookup('COMPTYPE', 'OWNER'  );
454         $companies = DB_DataObject::factory('core_company');
455         $companies->comptype_id = $enum;
456         if ($companies->find(true)) {
457             return $companies;
458         }
459         return false;
460     }
461     
462     function merge($merge_to, $roo)
463     {
464         $affects  = array();
465         
466         $all_links = $this->databaseLinks();
467         
468         foreach($all_links as $tbl => $links) {
469             foreach($links as $col => $totbl_col) {
470                 $to = explode(':', $totbl_col);
471                 if ($to[0] != $this->tableName()) {
472                     continue;
473                 }
474                 
475                 $affects[$tbl .'.' . $col] = true;
476             }
477         }
478         
479         foreach($affects as $k => $true) {
480             $ka = explode('.', $k);
481
482             $chk = DB_DataObject::factory($ka[0]);
483             
484             if (!is_a($chk,'DB_DataObject')) {
485                 $roo->jerr('Unable to load referenced table, check the links config: ' .$ka[0]);
486             }
487             
488             $chk->{$ka[1]} = $this->id;
489
490             foreach ($chk->fetchAll() as $c){
491                 $cc = clone ($c);
492                 $c->{$ka[1]} = $merge_to;
493                 $c->update($cc);
494             }
495         }
496         
497         $this->delete();
498         
499         $roo->jok('Merged');
500         
501     }
502     
503     function checkName()
504     {
505         $company = DB_DataObject::factory('core_company');
506         $company->setFrom(array(
507             'name' => $this->name
508         ));
509         
510         if(!empty($this->id)){
511             $company->whereAdd("id != {$this->id}");
512         }
513         
514         if(!$company->find(true)){
515             return true;
516         }
517         
518         return false;
519     }
520 }