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