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