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