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