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