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