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