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