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