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 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         'add_l'=> array(), // key -> value additional languages... 
56         'add_c'=> array(), // additional countries...(eg. '-R' => 'Regional' )
57         'add_m'=> array(), // additional currencies...
58
59         
60     );
61     /**
62      * initalizie the cfg aray
63      *
64      */
65     function cfg()
66     {
67         static $loaded  = false;
68         if ($loaded) {
69             return self::$cfg;
70         }
71         $loaded =true;
72         $ff= HTML_FlexyFramework::get();
73          
74         // since our opts array changed alot..
75         $opts = empty($ff->Pman_Core_I18N) ? (empty($ff->Pman_I18N) ? array() : $ff->Pman_I18N)  : $ff->Pman_Core_I18N;
76         
77          
78        //  var_dump($opts);exit;
79         
80         $i = DB_DataObject::Factory('I18n');
81         // load the cofiguration
82         foreach($opts as $k=>$v) {
83             
84             if ($v == '*') { // everything..
85                 self::$cfg[$k] = $i->availableCodes($k);
86                 continue;
87             }
88             self::$cfg[$k] = is_array($v) ? $v  : explode(',', $v);
89         }
90         return self::$cfg;
91         
92         
93     }
94     
95     
96       // the default configuration.
97     
98     function applyFilters($q, $au)
99     {
100         $this->buildDB();
101         //DB_DataObject::debugLevel(1);
102         if (!empty($q['query']['_with_en'])) {
103             
104             $this->buildDB(); // ensure we have the full database...
105             
106             $this->selectAdd("
107                 i18n_translate(ltype, lkey, 'en') as lval_en
108                 
109             ");
110         }
111         if (!empty($q['query']['name'])) {
112             //DB_DAtaObject::debugLevel(1);
113         
114             $this->whereAdd("lval LIKE '". $this->escape($q['query']['name']). "%'");
115         }
116     }
117     
118     function translate($inlang,$ltype,$kval)
119     {
120         
121         $x = DB_DataObject::factory('i18n');
122         $x->ltype = $ltype;
123         $x->lkey = $kval;
124         $x->inlang= $inlang;
125         $fallback = clone($x);
126         
127         $x->limit(1);
128         if ($x->find(true) && !empty($x->lval)) {
129             return $x->lval;
130         }
131         $fallback->inlang = 'en';
132         if ($fallback->find(true) && !empty($fallback->lval)) {
133            return $fallback->lval;
134         }
135         return $kval;
136     }
137     
138     
139     
140     function toTransList($ltype, $inlang)
141     {
142         
143         
144         $this->ltype = $ltype;
145         $this->inlang= $inlang;
146         $this->selectAdd();
147         $this->selectAdd('lkey as code, lval as title');
148         
149         $this->find();
150         $ret = array();
151         while ($this->fetch()) {
152             $ret[] = array(
153                 'code'  => $this->code,
154                 'title' => $this->title
155             );
156         }
157         return $ret;
158     }
159      
160     
161     
162     
163     // -------------- code to handle importing into database..
164     
165     
166     
167     
168     // returns a list of all countries/languages etc.. (with '*')
169     function availableCodes($t, $filtered = true)
170     {
171         $ret = array();
172         $cfg = $this->cfg();
173
174         switch ($t) {
175             case 'c':
176                 require_once 'I18Nv2/Country.php';
177                 
178                 $c = new I18Nv2_Country('en');
179                 $ret =  array_keys($c->codes);
180                 if (!empty($cfg['add_c'])) {
181                     $ret = array_merge($ret, array_keys($cfg['add_c']));
182                 }
183                 
184                  
185                 
186                 $ret[] = '**';
187                 break;
188             
189             case 'l':
190                 require_once 'I18Nv2/Language.php';
191                 $c = new I18Nv2_Language('en');
192                 $ret =  array_keys($c->codes); // we need to make sure these are lowercase!!!
193                 
194                 
195                 foreach ($cfg['add_l'] as $k=>$v){
196                     // make sure that add_l is formated correctly.. (lower_UPPER?)
197                     $tolang = explode('_', $k);
198                     $tolang[0] = strtolower($tolang[0]);
199                     $tolang = implode('_', $tolang);
200                     
201                     unset($cfg['add_l'][$k]); // if they match..unset first.. then set
202                     
203                     $cfg['add_l'][$tolang] = $v;
204                 }
205                 if (!empty($cfg['add_l'])) {
206                     $ret = array_merge($ret, array_keys($cfg['add_l']));
207                 }
208
209                 $ret[] = '**';
210                 break;
211             case 'm':
212                 require_once 'I18Nv2/Currency.php';
213                 $c = new I18Nv2_Currency('en');
214                 $ret =  array_keys($c->codes);
215                 if (!empty($cfg['add_m'])) {
216                     $ret = array_merge($ret, array_keys($cfg['add_m']));
217                 }
218                 $ret[] = '**';
219                 break;
220         }
221         
222         
223         
224         if ($filtered  && !empty($cfg[$t]) && is_array($cfg[$t])) {
225             // then there is a filter. - we should include all of them, even if they are not relivatn??
226             return $cfg[$t]; //array_intersect($cfg[$t], $ret);
227             
228         }
229         
230         // why upper case everyting?!?!?
231         
232         //foreach ($ret as $k=>$v) {
233         //    $ret[$k] = ($t=='l') ? $ret[$k] : strtoupper($v);
234         //}
235
236         return $ret;
237     }
238     
239     
240     function buildDB($ltype= false, $inlang= false )
241     {
242         $cfg = $this->cfg();
243         
244         //print_r($cfg);
245         if ($ltype === false) {
246             // trigger all builds.
247             //DB_DataObject::debugLevel(1);
248             $this->buildDB('c');
249             $this->buildDB('l');
250             $this->buildDB('m');
251             return;
252         }
253         
254         if ($inlang == '**') {
255             return; // dont bother building generic..
256         }
257         
258         
259         if ($inlang === false) {
260             // do we want to add our 'configured ones..'
261             // We only build translatiosn for our configured ones..
262             //foreach( $this->availableCodes('l') as $l) {
263                 
264             foreach( $cfg['t'] as $l) {
265                 $this->buildDB($ltype, $l);
266             }
267             return;
268         }
269         
270         
271         //DB_DataObject::debugLevel(1);
272         $x = DB_DataObject::factory('I18n');
273         $x->inlang= $inlang;
274         $x->ltype = $ltype;
275         
276         $complete = $x->fetchAll('lkey');
277         
278         $list =  $this->availableCodes($ltype);
279         // echo '<PRE>'; print_r($list); 
280         
281         foreach($list as $lkey) {
282             // skip ones we know we have done...
283             if (in_array($lkey, $complete)) {
284                 continue;
285             }
286             if (empty($lkey)) { // not sure why we get empty values here.
287                 continue;
288             }
289             $x = DB_DataObject::factory('I18n');
290             $x->ltype = $ltype;
291             $x->lkey = $lkey;  
292             $x->inlang= $inlang;
293             if ($x->find(true)) {
294                 $xx= clone($x);
295                 $x->lval = $this->defaultTranslate($inlang, $ltype, $lkey);
296                 $x->update($xx);
297                 continue;
298             }
299             $x->lval = $this->defaultTranslate($inlang, $ltype, $lkey);
300             $x->insert();
301             
302         }
303          
304         
305     }
306     
307     /**
308      * default translate  - use i18n classes to provide a value.
309      *
310      * 
311      */
312      
313     function defaultTranslate($lang, $type, $k) 
314     {
315       
316         static $cache;
317         
318         
319         $cfg = $this->cfg();
320         if (empty($k)) {
321             return '??';
322         }
323         
324         //$lbits = explode('_', strtoupper($lang));
325         $lbits = explode('_', $lang);
326         $orig_lang = $lang;
327         $lang = $lbits[0];
328         
329         if (!isset($cache[$lang])) {
330             require_once 'I18Nv2/Country.php';
331             require_once 'I18Nv2/Language.php';
332             require_once 'I18Nv2/Currency.php';
333             $cache[$lang] = array(
334                 'l' =>  new I18Nv2_Language($lang, 'UTF-8'),
335                 'c' => new I18Nv2_Country($lang, 'UTF-8'),
336                 'm' => new I18Nv2_Currency($lang, 'UTF-8')
337             );
338             //echo '<PRE>';print_r(array($lang, $cache[$lang]['c']));
339         }
340         
341         if ($k == '**') {
342             return 'Other / Unknown';
343         }
344         
345         
346         // for languages if we get zh_HK then we write out Chinese ( HK )
347         
348         
349         if ($type == 'l' && strpos($k, '_') > -1) {
350             $tolang = explode('_', $k);
351             $ret = $cache[$lang][$type]->getName(strtolower($tolang[0])) .  '('.$tolang[1].')'; 
352             
353         } else {
354             $ret = $cache[$lang][$type]->getName($k);
355         }
356         
357         if ($orig_lang == 'zh_HK' || $orig_lang == 'zh_TW' ) {
358             // then translation is by default in simplified.
359             //print_r($ret);
360             $ret = @iconv("UTF-8", "GB2312//IGNORE", $ret);
361             //print_r($ret);
362             $ret = @iconv("GB2312", "BIG5//IGNORE", $ret);
363             //print_r($ret);
364             
365             $ret = @iconv("BIG5", "UTF-8//IGNORE", $ret);
366             //print_r($ret);
367          }
368         
369         
370         
371         // our wierd countries/langs etc..
372         if (isset($cfg['add_' . $type][$k])) {
373             return $cfg['add_' . $type][$k];
374             
375         }
376         
377         return $ret;
378         
379         
380     }
381     
382     
383 }