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