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