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