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