DataObjects/Core_person_signup.php
[Pman.Core] / DataObjects / Companies.php
1 <?php
2 /**
3  * Table Definition for Companies
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Companies extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'Companies';                       // 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         //DB_DataObject::debugLevel(1);
45         $x = DB_DataObject::factory('Companies');
46         $x->comptype= 'OWNER';
47         $x->find(true);
48         
49         if (!empty($q['query']['company_project_id'])) {
50             $add = '';
51             if (!empty($q['query']['company_include_self'])) {
52                 $add = ' OR Companies.id = ' . $x->id;
53             }
54             if (!empty($q['query']['company_not_self'])) {
55                 $add = ' AND Companies.id != ' . $x->id;
56             }
57             $pids = array();
58             $pid = $q['query']['company_project_id'];
59             if (strpos($pid, ',')) {
60                 $bits = explode(',', $pid);
61                 foreach($bits as $b) {
62                     $pids[] = (int)$b;
63                 }
64             } else {
65                 $pids = array($pid);
66             }
67             
68             
69             $pids = implode(',', $pids);
70             $this->whereAdd("Companies.id IN (
71                 SELECT distinct(company_id) FROM ProjectDirectory where project_id IN ($pids)
72             ) $add" );
73              
74         }
75         if (!empty($q['query']['comptype'])) {
76            
77             $this->whereAddIn('comptype', explode(',', $q['query']['comptype']), 'string');
78             
79         }
80         
81         // depricated - should be moved to module specific (texon afair)
82         
83          if (!empty($q['query']['province'])) {
84              $prov = $this->escape($q['query']['province']);
85             $this->whereAdd("province LIKE '$prov%'");
86             
87             
88         }
89         // ADD comptype_display name.. = for combos..
90         $this->selectAdd("
91             (SELECT display_name
92                 FROM
93                     core_enum
94                 WHERE
95                     etype='comptype'
96                     AND
97                     name={$tn}.comptype
98                 LIMIT 1
99                 ) as comptype_display_name
100         ");
101         
102         if(!empty($q['query']['name'])){
103             $s = $this->escape($q['query']['name']);
104             $this->whereAdd("
105                 {$tn}.name LIKE '%$s%'
106             ");
107         }
108          
109     }
110     
111     function toEventString() {
112         return $this->name;
113     }
114     
115     // ---------- AUTHENTICATION
116      function isAuth()
117     {
118         $db = $this->getDatabaseConnection();
119         $sesPrefix = $db->dsn['database'];
120         @session_start();
121         if (!empty($_SESSION[__CLASS__][$sesPrefix .'-auth'])) {
122             // in session...
123             $a = unserialize($_SESSION[__CLASS__][$sesPrefix .'-auth']);
124             $u = DB_DataObject::factory('Companies');
125             if ($u->get($a->id)) { //&& strlen($u->passwd)) {
126                 return true;
127             }
128             $_SESSION[__CLASS__][$sesPrefix .'-auth'] = '';
129             
130         }
131         // not in session or not matched...
132         
133         
134         return false;
135         
136     }
137     function getAuthUser()
138     {
139         if (!$this->isAuth()) {
140             return false;
141         }
142         $db = $this->getDatabaseConnection();
143         $sesPrefix = $db->dsn['database'];
144         if (!empty($_SESSION[__CLASS__][$sesPrefix .'-auth'])) {
145             $a = unserialize($_SESSION[__CLASS__][$sesPrefix .'-auth']);
146             
147             $u = DB_DataObject::factory('Companies');
148             if ($u->get($a->id)) { /// && strlen($u->passwd)) {
149                 return clone($u);
150             }
151              
152         }
153         
154         
155         return false;
156     }     
157     function login()
158     {
159         $this->isAuth(); // force session start..
160          $db = $this->getDatabaseConnection();
161         $sesPrefix = $db->dsn['database'];
162         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = serialize($this);
163         
164     }
165     function logout()
166     {
167         $this->isAuth(); // force session start..
168         $db = $this->getDatabaseConnection();
169         $sesPrefix = $db->dsn['database'];
170         $_SESSION[__CLASS__][$sesPrefix .'-auth'] = "";
171         
172     }    
173     // ---------- AUTHENTICATION
174     function checkPassword($val)
175     {
176         //echo '<pre>'.$val .  print_R($this,true);
177         if (substr($this->passwd,0,1) == '$') {
178             return crypt($val,$this->passwd) == $this->passwd ;
179         }
180         // old style md5 passwords...- cant be used with courier....
181         return md5($val) == $this->passwd;
182     }
183     function setPassword($value) 
184     {
185         $salt='';
186         while(strlen($salt)<9) {
187             $salt.=chr(rand(64,126));
188             //php -r var_dump(crypt('testpassword', '$1$'. (rand(64,126)). '$'));
189         }
190         $this->passwd = crypt($value, '$1$'. $salt. '$');
191        
192     }      
193     function onUpload($controller)
194     {
195         $image = DB_DataObject::factory('Images');
196         return $image->onUploadWithTbl($this, 'logo_id');
197          
198     }
199     function  onUpdate($old, $req,$roo) 
200     {
201         if (!empty($req['password1'])) {
202             $this->setPassword($req['password1']);
203             $this->update();
204         }
205     }
206     function onInsert($req, $roo)
207     {
208         if (!empty($this->logo_id)) { // update images table to sycn with this..
209             $img = DB_DataObject::factory('Images');
210             if ($img->get($this->logo_id) && ($img->onid != $this->id)) {
211                 $img->onid = $this->id;
212                 $img->update();
213             }
214         }
215         if (!empty($req['password1'])) {
216             $this->setPassword($req['password1']);
217             $this->update();
218         }
219         $img = DB_DataObject::factory('Images');
220         $img->onid= 0;
221         
222         $img->ontable = 'Companies';
223         $img->imgtype = 'LOGO';
224         // should check uploader!!!
225         if ($img->find()) {
226             while($img->fetch()) {
227                 $ii = clone($img);
228                 $ii->onid = $this->id;
229                 $ii->update();
230                 $this->logo_id = $ii->id;
231             }
232             $this->update();
233         }
234         
235         
236         
237         
238     }
239     
240     function beforeUpdate($old, $q,$roo)
241     {
242         if(!empty($this->is_system) && 
243             ($old->code != $this->code || $old->name != $this->name)
244         ){
245             $roo->jerr('This company is not allow to editing Ref. or Company Name...');
246         }
247     }
248     
249     function beforeDelete($req, $roo)
250     {
251         // should check for members....
252         if(!empty($this->is_system) && 
253             ($old->code != $this->code || $old->name != $this->name)
254         ){
255             $roo->jerr('This company is not allow to delete');
256         }
257         $img = DB_DataObject::factory('Images');
258         $img->ontable = 'Companies';
259         $img->onid = $this->id;
260         $img->find();
261         while ($img->fetch()) {
262             $img->beforeDelete();
263             $img->delete();
264         }
265         return true;
266         
267          
268     }
269     /**
270      * check who is trying to access this. false == access denied..
271      */
272     function checkPerm($lvl, $au, $changes = false) 
273     {
274         
275         // do we have an empty system..
276         if ($au && $au->id == -1) {
277             return true;
278         }
279         
280         
281         
282         if ($au->company()->comptype != 'OWNER') {
283             
284             // hacking!
285             if ($changes && isset($changes['comptype']) && $changes['comptype'] != $this->comptype) {
286                 return false;
287             }
288             
289             return $this->id == $au->company_id;
290         }
291         
292         return $au->hasPerm("Core.Companies", $lvl);    
293     }
294     
295     function logoImageToHTML($size)
296     {
297         $i = DB_DataObject::factory('Images');
298         if (!$this->logo_id || !$i->get($this->logo_id)) {
299             return '';
300         }
301         return $i->toHTML($size);
302         
303     }
304      function firstImage($filter='image/%')
305     {
306         $i = DB_DataObject::factory('Images');
307         //DB_DataObject::debugLevel(1);
308         $im = $i->gather($this, $filter);
309         if (empty($im)) {
310             return false;
311         }
312         return $im[0];
313     }
314     
315     function firstImageTag($size =-1, $base="/Images/Thumb", $filter='image/%')
316     {
317         $fm = $this->firstImage($filter);
318          if (empty($fm)) {
319             return '';
320         }
321         return $fm->toHTML($size, $base);
322     }
323     
324     function toRooSingleArray($authUser, $request)
325     {
326         $ret = $this->toArray();
327        // DB_DataObject::debugLevel(1);
328         // get the comptype display
329         $e = DB_DataObject::Factory('core_enum')->lookupObject('COMPTYPE', $this->comptype);
330         
331         $ret['comptype_display'] = $ret['comptype'];
332         if ($e   && !empty($e->name_display)) {
333             $ret['comptype_display'] = $e->name_display;
334         }
335         
336         
337         return $ret;
338     }
339     
340     /**
341      * # 2028 
342      * create the suppliers...
343      * 
344      * @param object $roo
345      * @param array $data
346      * 
347      */
348     function initCompaniesArray($roo, $data)
349     {
350         $tn = $this->tableName();
351         
352         foreach($data as $d){
353             $com = DB_DataObject::factory($tn);
354             $com->setFrom($d);
355             if(!$com->find(true)){
356                 $com->created_dt = Date('Y-m-d H:i:s');
357                 $com->updated_dt = Date('Y-m-d H:i:s');
358                 $com->is_system = 1;// new column.. block the user changing the code and name..
359                 $com->insert();
360             }
361         }
362         
363         
364     }
365     
366     
367     function initCompanies($roo, $opts)
368     {
369         $companies = DB_DataObject::factory('companies');
370         
371         $ctype = empty($opts['add-company-with-type']) ? 'OWNER' : $opts['add-company-with-type'];
372         
373         $enum = DB_DataObject::Factory('core_enum')->lookup('COMPTYPE', $ctype  );
374         
375         if (empty($enum)) {
376             $roo->jerr("invalid company type '$ctype'");
377         }
378         if ($ctype =='OWNER') {
379             $companies = DB_DataObject::factory('companies');
380             $companies->comptype_id = $enum;
381             if ($companies->count()) {
382                 $roo->jerr("Owner  company already exists");
383             }
384         }
385         $companies = DB_DataObject::factory('companies');
386         
387         // check that 
388         $companies->setFrom(array(
389             'name' => $opts['add-company'],
390             'comptype' => $ctype,
391             'comptype_id' => $enum,
392         ));
393         if ($companies->find(true)) {
394             $roo->jerr("company already exists");
395         }
396         $companies->setFrom(array(
397             'background_color' => '',
398             'created_dt' => $this->sqlValue('NOW()'),
399             'updated_dt' => $this->sqlValue('NOW()')
400         ));
401         
402         
403         $companies->insert();
404         $companies->onInsert(array(), $roo);
405     }
406     function lookupOwner()
407     {
408         $enum = DB_DataObject::Factory('core_enum')->lookup('COMPTYPE', 'OWNER'  );
409         $companies = DB_DataObject::factory('companies');
410         $companies->comptype_id = $enum;
411         if ($companies->find(true)) {
412             return $companies;
413         }
414         return false;
415     }
416 }