DataObjects/I18n.php
[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                 id as id,
131                 i18n_translate(ltype, lkey, 'en') as lval_en
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['query']['name_starts'])) {
145             $this->whereAdd("lval LIKE '". $this->escape($q['query']['name_starts']). "%'");
146         }
147         
148         if (!empty($q['_filtered']) && !empty($this->ltype)) {
149             $cfg = $this->cfg();
150             $filter = $cfg[$this->ltype];
151             if(is_array($filter)){
152                 $this->whereAddIn('lkey', $filter, 'string'); 
153             }
154             
155         }
156         
157         if(!empty($q['_with_geoip_count'])) {
158             
159             $this->selectAdd("
160                 (
161                     SELECT
162                             COUNT(geoip_division.id)
163                     FROM
164                             geoip_division
165                     WHERE
166                             geoip_division.country = i18n.lkey
167                 ) AS no_of_division,
168                 (
169                     SELECT
170                             COUNT(geoip_city.id)
171                     FROM
172                             geoip_city
173                     WHERE
174                             geoip_city.country = i18n.lkey
175                 ) AS no_of_city
176             ");
177         }
178         
179         if(!empty($q['_hide_unused'])) {
180             $this->whereAdd("
181                 (
182                     SELECT
183                             COUNT(geoip_division.id)
184                     FROM
185                             geoip_division
186                     WHERE
187                             geoip_division.country = i18n.lkey
188                 ) > 0
189             ");
190         }
191     }
192     
193     function lookupCode($inlang,$ltype,$name)
194     {
195         $x = DB_DataObject::factory('i18n');
196         $x->ltype = $ltype;
197         $x->lval = $name;
198         $x->inlang= $inlang;
199         
200         $x->limit(1);
201         if ($x->find(true) && !empty($x->lkey)) {
202             return $x->lkey;
203         }
204         return '';
205         
206         
207     }
208     
209     
210     function translate($inlang,$ltype,$kval)
211     {
212         
213         $x = DB_DataObject::factory('i18n');
214         $x->ltype = $ltype;
215         $x->lkey = $kval;
216         $x->inlang= $inlang;
217         $fallback = clone($x);
218         
219         $x->limit(1);
220         if ($x->find(true) && !empty($x->lval)) {
221             return $x->lval;
222         }
223         $fallback->inlang = 'en';
224         if ($fallback->find(true) && !empty($fallback->lval)) {
225            return $fallback->lval;
226         }
227         return $kval;
228     }
229     
230     
231     
232     function toTransList($ltype, $inlang)
233     {
234         
235         
236         $this->ltype = $ltype;
237         $this->inlang= $inlang;
238         $this->selectAdd();
239         $this->selectAdd('lkey as code, lval as title');
240         
241         $this->find();
242         $ret = array();
243         while ($this->fetch()) {
244             $ret[] = array(
245                 'code'  => $this->code,
246                 'title' => $this->title
247             );
248         }
249         return $ret;
250     }
251      
252     
253     
254     
255     // -------------- code to handle importing into database..
256     
257     
258     
259     
260     // returns a list of all countries/languages etc.. (with '*')
261     function availableCodes($t, $filtered = true)
262     {
263         $ret = array();
264         $cfg = $this->cfg();
265         //echo '<PRE>';print_r($cfg);
266         switch ($t) {
267             case 'c':
268                 require_once 'I18Nv2/Country.php';
269                 
270                 $c = new I18Nv2_Country('en');
271                 $ret =  array_keys($c->codes);
272                 if (!empty($cfg['add_c'])) {
273                     $ret = array_merge($ret, array_keys($cfg['add_c']));
274                 }
275                 
276                 
277                  
278                 
279                 $ret[] = '**';
280                 //echo '<PRE>';print_R($cfg); print_r($ret); exit;
281                 break;
282             
283             case 'l':
284                 require_once 'I18Nv2/Language.php';
285                 $c = new I18Nv2_Language('en');
286                 $ret =  array_keys($c->codes); // we need to make sure these are lowercase!!!
287                 
288                 
289                 foreach ($cfg['add_l'] as $k=>$v){
290                     // make sure that add_l is formated correctly.. (lower_UPPER?)
291                     $tolang = explode('_', $k);
292                     $tolang[0] = strtolower($tolang[0]);
293                     $tolang = implode('_', $tolang);
294                     
295                     unset($cfg['add_l'][$k]); // if they match..unset first.. then set
296                     
297                     $cfg['add_l'][$tolang] = $v;
298                 }
299                 if (!empty($cfg['add_l'])) {
300                     $ret = array_merge($ret, array_keys($cfg['add_l']));
301                 }
302
303                 $ret[] = '**';
304                 break;
305             case 'm':
306                 require_once 'I18Nv2/Currency.php';
307                 $c = new I18Nv2_Currency('en');
308                 $ret =  array_keys($c->codes);
309                 if (!empty($cfg['add_m'])) {
310                     $ret = array_merge($ret, array_keys($cfg['add_m']));
311                 }
312                 $ret[] = '**';
313                 break;
314             case 'p':
315                 require_once 'I18Nv2/PhonePrefix.php';
316                 $c = new I18Nv2_PhonePrefix('en');
317                 $ret =  array_keys($c->codes);
318                 if (!empty($cfg['add_p'])) {
319                     $ret = array_merge($ret, array_keys($cfg['add_p']));
320                 }
321                 $ret[] = '**';
322                 break;
323         }
324         
325         
326         
327         if ($filtered  && !empty($cfg[$t]) && is_array($cfg[$t])) {
328             // then there is a filter. - we should include all of them, even if they are not relivatn??
329             return $cfg[$t]; //array_intersect($cfg[$t], $ret);
330             
331         }
332         
333         // why upper case everyting?!?!?
334         
335         //foreach ($ret as $k=>$v) {
336         //    $ret[$k] = ($t=='l') ? $ret[$k] : strtoupper($v);
337         //}
338
339         return $ret;
340     }
341     
342     
343     function buildDB($ltype= false, $inlang= false )
344     {
345         $cfg = $this->cfg();
346         
347         if ($ltype === false) {
348             // trigger all builds.
349             //DB_DataObject::debugLevel(1);
350             $this->buildDB('c');
351             $this->buildDB('l');
352             $this->buildDB('m');
353             $this->buildDB('p', 'en');
354             return;
355         }
356         
357         if ($inlang == '**') {
358             return; // dont bother building generic..
359         }
360         
361         
362         if ($inlang === false) {
363             // do we want to add our 'configured ones..'
364             // We only build translatiosn for our configured ones..
365             //foreach( $this->availableCodes('l') as $l) {
366                 
367             foreach( $cfg['t'] as $l) {
368                 $this->buildDB($ltype, $l);
369             }
370             return;
371         }
372         
373         
374         //DB_DataObject::debugLevel(1);
375         $x = DB_DataObject::factory('I18n');
376         $x->inlang= $inlang;
377         $x->ltype = $ltype;
378         
379         $complete = $x->fetchAll('lkey');
380         
381         $list =  $this->availableCodes($ltype);
382         
383         foreach($list as $lkey) {
384             // skip ones we know we have done...
385             if (in_array($lkey, $complete)) {
386                 continue;
387             }
388             if (empty($lkey)) { // not sure why we get empty values here.
389                 continue;
390             }
391             $x = DB_DataObject::factory('I18n');
392             $x->ltype = $ltype;
393             $x->lkey = $lkey;  
394             $x->inlang= $inlang;
395             if ($x->find(true)) {
396                 $xx= clone($x);
397                 $x->lval = $this->defaultTranslate($inlang, $ltype, $lkey);
398                 $x->update($xx);
399                 continue;
400             }
401             $x->lval = $this->defaultTranslate($inlang, $ltype, $lkey);
402             $x->insert();
403             
404         }
405          
406         
407     }
408     
409     /**
410      * default translate  - use i18n classes to provide a value.
411      *
412      * 
413      */
414      
415     function defaultTranslate($lang, $type, $k) 
416     {
417       
418         static $cache;
419         
420         
421         $cfg = $this->cfg();
422         if (empty($k)) {
423             return '??';
424         }
425         
426         //$lbits = explode('_', strtoupper($lang));
427         $lbits = explode('_', $lang);
428         $orig_lang = $lang;
429         $lang = $lbits[0];
430         
431         if (!isset($cache[$lang])) {
432             require_once 'I18Nv2/Country.php';
433             require_once 'I18Nv2/Language.php';
434             require_once 'I18Nv2/Currency.php';
435             require_once 'I18Nv2/PhonePrefix.php';
436             $cache[$lang] = array(
437                 'l' =>  new I18Nv2_Language($lang, 'UTF-8'),
438                 'c' => new I18Nv2_Country($lang, 'UTF-8'),
439                 'm' => new I18Nv2_Currency($lang, 'UTF-8'),
440                 'p' => new I18Nv2_PhonePrefix($lang, 'UTF-8')
441             );
442             //echo '<PRE>';print_r(array($lang, $cache[$lang]['c']));
443         }
444         
445         if ($k == '**') {
446             return 'Other / Unknown';
447         }
448         
449         
450         // for languages if we get zh_HK then we write out Chinese ( HK )
451         
452         
453         if ($type == 'l' && strpos($k, '_') > -1) {
454             $tolang = explode('_', $k);
455             $ret = $cache[$lang][$type]->getName(strtolower($tolang[0])) .  '('.$tolang[1].')'; 
456             
457         } else {
458             $ret = $cache[$lang][$type]->getName($k);
459         }
460         
461         if ($orig_lang == 'zh_HK' || $orig_lang == 'zh_TW' ) {
462             // then translation is by default in simplified.
463             //print_r($ret);
464             $ret = @iconv("UTF-8", "GB2312//IGNORE", $ret);
465             //print_r($ret);
466             $ret = @iconv("GB2312", "BIG5//IGNORE", $ret);
467             //print_r($ret);
468             
469             $ret = @iconv("BIG5", "UTF-8//IGNORE", $ret);
470             //print_r($ret);
471          }
472         
473         
474         
475         // our wierd countries/langs etc..
476         if (isset($cfg['add_' . $type][$k])) {
477             return $cfg['add_' . $type][$k];
478             
479         }
480         
481         return $ret;
482         
483         
484     }
485     
486     
487 }