Fix #5773 - Product edit changes
[Pman.Core] / DataObjects / I18n.php
1 <?php
2 /**
3  * Table Definition for i18n
4  *
5  * This is heavily related to the Pman_I18n implementation..
6  *
7  * It should eventually replace most of that..
8  * 
9  */
10 class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php';
11
12 class Pman_Core_DataObjects_I18n extends DB_DataObject 
13 {
14     ###START_AUTOCODE
15     /* the code below is auto generated do not remove the above tag */
16
17     public $__table = 'i18n';                            // table name
18     public $id;                              // int(11)  not_null primary_key auto_increment
19     public $ltype;                           // string(1)  not_null multiple_key
20     public $lkey;                            // string(8)  not_null
21     public $inlang;                          // string(8)  not_null
22     public $lval;                            // string(64)  not_null
23
24     
25     /* the code above is auto generated do not remove the tag below */
26     ###END_AUTOCODE
27     
28     // we have a small default set of languages available..
29     // you can modify this by making this setting in the index.php loader.
30     // Pman_Core_i18n = array( 'c' => *, 'l' => '*', 'm' => '*')
31     
32     static $cfg = array(
33         // translated versions availalable
34         
35         't' => array(
36             'en', 'zh_CN',   'zh_HK', 
37         ),
38         // languages available
39         'l' => array(
40             
41             'en', 'zh_CN',   'zh_HK',  'zh_TW', //'th', 'ko', 'ja', 'ms', 
42             //'id', // indonesian
43            // 'tl', // tagalog
44            // 'vi', //vietnamise
45           //  'hi', // hindi
46           //  'ta', // tamil
47           //  '**', // other
48         ),
49         'c' => '*', // array(
50              //'AU', 'CN', 'HK', 'IN', 'ID', 'JP', 'MY', 'NZ', 'TW', 'SG', 'TH', 'KR', 'US', 'PH', 'VN','**'
51         //),
52         'm' => array(
53             'USD', 'HKD', 'GBP', 'CNY', 'SGD', 'JPY'
54         ),
55         'p' => '*',
56         'add_l'=> array(), // key -> value additional languages... 
57         'add_c'=> array(), // additional countries...(eg. '-R' => 'Regional' )
58         'add_m'=> array(), // additional currencies...
59         'add_p'=> array(), // additional currencies...
60
61         
62     );
63     /**
64      * initalizie the cfg aray
65      *
66      */
67     function cfg()
68     {
69         static $loaded  = false;
70         if ($loaded) {
71             return self::$cfg;
72         }
73          
74         $loaded =true;
75         $ff= HTML_FlexyFramework::get();
76         
77         // BC compatible.. if any of these are set, then we use them as the settings..
78         $opts = array();
79         foreach(array('Pman_Core_I18n', 'Pman_Core_I18N', 'Pman_I18N','Pman_I18n') as $pk) {
80             if (isset($ff->$pk)) {
81                 //var_dump($pk);
82                 $opts =  $ff->$pk;
83                 break;
84             }
85         }
86         //echo '<PRE>';print_R($opts);//exit;
87         
88          
89         // var_dump($opts);exit;
90         
91         $i = DB_DataObject::Factory('I18n');
92         // load the cofiguration
93         foreach($opts as $k=>$v) {
94             
95             if ($v == '*') { // everything..
96                // self::$cfg[$k] = $i->availableCodes($k, false);
97                 continue;
98             }
99              
100             self::$cfg[$k] = is_array($v) ? $v  : explode(',', $v);
101         }
102         // available codes recursively calls this... -- so the above has to be set first..
103         foreach($opts as $k=>$v) {
104             
105             if ($v == '*') { // everything..
106                 self::$cfg[$k] = '*'; //$i->availableCodes($k, false);
107                 continue;
108             }
109            
110         }
111         
112         
113         return self::$cfg;
114         
115         
116     }
117     
118     
119       // the default configuration.
120     
121     function applyFilters($q, $au)
122     {
123         $this->buildDB();
124         //DB_DataObject::debugLevel(1);
125         if (!empty($q['query']['_with_en'])) {
126             
127             $this->buildDB(); // ensure we have the full database...
128             
129             $this->selectAdd("
130                 i18n_translate(ltype, lkey, 'en') as lval_en
131                 
132             ");
133         }
134          
135         if (!empty($q['!code'])) {
136             $this->whereAddIn('!lkey', explode(',', $q['!code']), 'string'); 
137         }
138         if (!empty($q['query']['name'])) {
139             //DB_DAtaObject::debugLevel(1);
140             $v = strtoupper($this->escape($q['query']['name']));
141             $this->whereAdd("upper(lval) LIKE '%{$v}%'");
142         }
143         
144         if (!empty($q['_filtered']) && !empty($this->ltype)) {
145             $cfg = $this->cfg();
146             $filter = $cfg[$this->ltype];
147             if(is_array($filter)){
148                 $this->whereAddIn('lkey', $filter, 'string'); 
149             }
150             
151         }
152         
153         if(!empty($q['_with_geoip_count'])) {
154             
155             $this->selectAdd("
156                 (
157                     SELECT
158                             COUNT(geoip_division.id)
159                     FROM
160                             geoip_division
161                     WHERE
162                             geoip_division.country = i18n.lkey
163                 ) AS no_of_division,
164                 (
165                     SELECT
166                             COUNT(geoip_city.id)
167                     FROM
168                             geoip_city
169                     WHERE
170                             geoip_city.country = i18n.lkey
171                 ) AS no_of_city
172             ");
173         }
174         
175         if(!empty($q['_hide_unused'])) {
176             $this->whereAdd("
177                 (
178                     SELECT
179                             COUNT(geoip_division.id)
180                     FROM
181                             geoip_division
182                     WHERE
183                             geoip_division.country = i18n.lkey
184                 ) > 0
185             ");
186         }
187     }
188     
189     function lookupCode($inlang,$ltype,$name)
190     {
191         $x = DB_DataObject::factory('i18n');
192         $x->ltype = $ltype;
193         $x->lval = $name;
194         $x->inlang= $inlang;
195         
196         $x->limit(1);
197         if ($x->find(true) && !empty($x->lkey)) {
198             return $x->lkey;
199         }
200         return '';
201         
202         
203     }
204     
205     
206     function translate($inlang,$ltype,$kval)
207     {
208         
209         $x = DB_DataObject::factory('i18n');
210         $x->ltype = $ltype;
211         $x->lkey = $kval;
212         $x->inlang= $inlang;
213         $fallback = clone($x);
214         
215         $x->limit(1);
216         if ($x->find(true) && !empty($x->lval)) {
217             return $x->lval;
218         }
219         $fallback->inlang = 'en';
220         if ($fallback->find(true) && !empty($fallback->lval)) {
221            return $fallback->lval;
222         }
223         return $kval;
224     }
225     
226     
227     
228     function toTransList($ltype, $inlang)
229     {
230         
231         
232         $this->ltype = $ltype;
233         $this->inlang= $inlang;
234         $this->selectAdd();
235         $this->selectAdd('lkey as code, lval as title');
236         
237         $this->find();
238         $ret = array();
239         while ($this->fetch()) {
240             $ret[] = array(
241                 'code'  => $this->code,
242                 'title' => $this->title
243             );
244         }
245         return $ret;
246     }
247      
248     
249     
250     
251     // -------------- code to handle importing into database..
252     
253     
254     
255     
256     // returns a list of all countries/languages etc.. (with '*')
257     function availableCodes($t, $filtered = true)
258     {
259         $ret = array();
260         $cfg = $this->cfg();
261         //echo '<PRE>';print_r($cfg);
262         switch ($t) {
263             case 'c':
264                 require_once 'I18Nv2/Country.php';
265                 
266                 $c = new I18Nv2_Country('en');
267                 $ret =  array_keys($c->codes);
268                 if (!empty($cfg['add_c'])) {
269                     $ret = array_merge($ret, array_keys($cfg['add_c']));
270                 }
271                 
272                 
273                  
274                 
275                 $ret[] = '**';
276                 //echo '<PRE>';print_R($cfg); print_r($ret); exit;
277                 break;
278             
279             case 'l':
280                 require_once 'I18Nv2/Language.php';
281                 $c = new I18Nv2_Language('en');
282                 $ret =  array_keys($c->codes); // we need to make sure these are lowercase!!!
283                 
284                 
285                 foreach ($cfg['add_l'] as $k=>$v){
286                     // make sure that add_l is formated correctly.. (lower_UPPER?)
287                     $tolang = explode('_', $k);
288                     $tolang[0] = strtolower($tolang[0]);
289                     $tolang = implode('_', $tolang);
290                     
291                     unset($cfg['add_l'][$k]); // if they match..unset first.. then set
292                     
293                     $cfg['add_l'][$tolang] = $v;
294                 }
295                 if (!empty($cfg['add_l'])) {
296                     $ret = array_merge($ret, array_keys($cfg['add_l']));
297                 }
298
299                 $ret[] = '**';
300                 break;
301             case 'm':
302                 require_once 'I18Nv2/Currency.php';
303                 $c = new I18Nv2_Currency('en');
304                 $ret =  array_keys($c->codes);
305                 if (!empty($cfg['add_m'])) {
306                     $ret = array_merge($ret, array_keys($cfg['add_m']));
307                 }
308                 $ret[] = '**';
309                 break;
310             case 'p':
311                 require_once 'I18Nv2/PhonePrefix.php';
312                 $c = new I18Nv2_PhonePrefix('en');
313                 $ret =  array_keys($c->codes);
314                 if (!empty($cfg['add_p'])) {
315                     $ret = array_merge($ret, array_keys($cfg['add_p']));
316                 }
317                 $ret[] = '**';
318                 break;
319         }
320         
321         
322         
323         if ($filtered  && !empty($cfg[$t]) && is_array($cfg[$t])) {
324             // then there is a filter. - we should include all of them, even if they are not relivatn??
325             return $cfg[$t]; //array_intersect($cfg[$t], $ret);
326             
327         }
328         
329         // why upper case everyting?!?!?
330         
331         //foreach ($ret as $k=>$v) {
332         //    $ret[$k] = ($t=='l') ? $ret[$k] : strtoupper($v);
333         //}
334
335         return $ret;
336     }
337     
338     
339     function buildDB($ltype= false, $inlang= false )
340     {
341         $cfg = $this->cfg();
342         
343         if ($ltype === false) {
344             // trigger all builds.
345             //DB_DataObject::debugLevel(1);
346             $this->buildDB('c');
347             $this->buildDB('l');
348             $this->buildDB('m');
349             $this->buildDB('p', 'en');
350             return;
351         }
352         
353         if ($inlang == '**') {
354             return; // dont bother building generic..
355         }
356         
357         
358         if ($inlang === false) {
359             // do we want to add our 'configured ones..'
360             // We only build translatiosn for our configured ones..
361             //foreach( $this->availableCodes('l') as $l) {
362                 
363             foreach( $cfg['t'] as $l) {
364                 $this->buildDB($ltype, $l);
365             }
366             return;
367         }
368         
369         
370         //DB_DataObject::debugLevel(1);
371         $x = DB_DataObject::factory('I18n');
372         $x->inlang= $inlang;
373         $x->ltype = $ltype;
374         
375         $complete = $x->fetchAll('lkey');
376         
377         $list =  $this->availableCodes($ltype);
378         
379         foreach($list as $lkey) {
380             // skip ones we know we have done...
381             if (in_array($lkey, $complete)) {
382                 continue;
383             }
384             if (empty($lkey)) { // not sure why we get empty values here.
385                 continue;
386             }
387             $x = DB_DataObject::factory('I18n');
388             $x->ltype = $ltype;
389             $x->lkey = $lkey;  
390             $x->inlang= $inlang;
391             if ($x->find(true)) {
392                 $xx= clone($x);
393                 $x->lval = $this->defaultTranslate($inlang, $ltype, $lkey);
394                 $x->update($xx);
395                 continue;
396             }
397             $x->lval = $this->defaultTranslate($inlang, $ltype, $lkey);
398             $x->insert();
399             
400         }
401          
402         
403     }
404     
405     /**
406      * default translate  - use i18n classes to provide a value.
407      *
408      * 
409      */
410      
411     function defaultTranslate($lang, $type, $k) 
412     {
413       
414         static $cache;
415         
416         
417         $cfg = $this->cfg();
418         if (empty($k)) {
419             return '??';
420         }
421         
422         //$lbits = explode('_', strtoupper($lang));
423         $lbits = explode('_', $lang);
424         $orig_lang = $lang;
425         $lang = $lbits[0];
426         
427         if (!isset($cache[$lang])) {
428             require_once 'I18Nv2/Country.php';
429             require_once 'I18Nv2/Language.php';
430             require_once 'I18Nv2/Currency.php';
431             require_once 'I18Nv2/PhonePrefix.php';
432             $cache[$lang] = array(
433                 'l' =>  new I18Nv2_Language($lang, 'UTF-8'),
434                 'c' => new I18Nv2_Country($lang, 'UTF-8'),
435                 'm' => new I18Nv2_Currency($lang, 'UTF-8'),
436                 'p' => new I18Nv2_PhonePrefix($lang, 'UTF-8')
437             );
438             //echo '<PRE>';print_r(array($lang, $cache[$lang]['c']));
439         }
440         
441         if ($k == '**') {
442             return 'Other / Unknown';
443         }
444         
445         
446         // for languages if we get zh_HK then we write out Chinese ( HK )
447         
448         
449         if ($type == 'l' && strpos($k, '_') > -1) {
450             $tolang = explode('_', $k);
451             $ret = $cache[$lang][$type]->getName(strtolower($tolang[0])) .  '('.$tolang[1].')'; 
452             
453         } else {
454             $ret = $cache[$lang][$type]->getName($k);
455         }
456         
457         if ($orig_lang == 'zh_HK' || $orig_lang == 'zh_TW' ) {
458             // then translation is by default in simplified.
459             //print_r($ret);
460             $ret = @iconv("UTF-8", "GB2312//IGNORE", $ret);
461             //print_r($ret);
462             $ret = @iconv("GB2312", "BIG5//IGNORE", $ret);
463             //print_r($ret);
464             
465             $ret = @iconv("BIG5", "UTF-8//IGNORE", $ret);
466             //print_r($ret);
467          }
468         
469         
470         
471         // our wierd countries/langs etc..
472         if (isset($cfg['add_' . $type][$k])) {
473             return $cfg['add_' . $type][$k];
474             
475         }
476         
477         return $ret;
478         
479         
480     }
481     
482     
483 }