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