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