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