DataObjects/core.sql
[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     }
109     
110     
111     function translate($inlang,$ltype,$kval)
112     {
113         
114         $x = DB_DataObject::factory('i18n');
115         $x->ltype = $ltype;
116         $x->inlang= $inlang;
117         $x->lkey = $kval;
118         $x->limit(1);
119         $x->find(true);
120         return $x->lval;
121         
122     }
123     
124     
125     
126     function toTransList($ltype, $inlang)
127     {
128         
129         
130         $this->ltype = $ltype;
131         $this->inlang= $inlang;
132         $this->selectAdd();
133         $this->selectAdd('lkey as code, lval as title');
134         
135         $this->find();
136         $ret = array();
137         while ($this->fetch()) {
138             $ret[] = array(
139                 'code'  => $this->code,
140                 'title' => $this->title
141             );
142         }
143         return $ret;
144     }
145      
146     
147     
148     
149     // -------------- code to handle importing into database..
150     
151     
152     
153     
154     // returns a list of all countries/languages etc.. (with '*')
155     function availableCodes($t)
156     {
157         $ret = array();
158         $cfg = $this->cfg();
159         
160         switch ($t) {
161             case 'c':
162                 require_once 'I18Nv2/Country.php';
163                 
164                 $c = new I18Nv2_Country('en');
165                 $ret =  array_keys($c->codes);
166                 if (!empty($cfg['add_c'])) {
167                     $ret = array_merge($ret, array_keys($cfg['add_c']));
168                 }
169                 $ret[] = '**';
170                 break;
171             
172             case 'l':
173                 require_once 'I18Nv2/Language.php';
174                 $c = new I18Nv2_Language('en');
175                 $ret =  array_keys($c->codes);
176                 if (!empty($cfg['add_l'])) {
177                     $ret = array_merge($ret, array_keys($cfg['add_l']));
178                 }
179                 $ret[] = '**';
180                 break;
181             case 'm':
182                 require_once 'I18Nv2/Currency.php';
183                 $c = new I18Nv2_Currency('en');
184                 $ret =  array_keys($c->codes);
185                 if (!empty($cfg['add_m'])) {
186                     $ret = array_merge($ret, array_keys($cfg['add_m']));
187                 }
188                 $ret[] = '**';
189                 break;
190         }
191         
192         foreach ($ret as $k=>$v) {
193             $ret[$k] = strtoupper($v);
194         }
195         
196         
197         return $ret;
198     }
199     
200     
201     function buildDB($ltype= false, $inlang= false )
202     {
203         $cfg = $this->cfg();
204         if ($ltype === false) {
205             // trigger all builds.
206             //DB_DataObject::debugLevel(1);
207             $this->buildDB('c');
208             $this->buildDB('l');
209             $this->buildDB('m');
210             return;
211         }
212         if ($inlang == '**') {
213             return; // dont bother building generic..
214         }
215         
216         
217         if ($inlang === false) {
218             // do we want to add our 'configured ones..'
219             // We only build translatiosn for our configured ones..
220             //foreach( $this->availableCodes('l') as $l) {
221                 
222             foreach( $cfg['t'] as $l) {
223                 $this->buildDB($ltype, $l);
224             }
225             return;
226         }
227         
228         
229         //DB_DataObject::debugLevel(1);
230         $x = DB_DataObject::factory('i18n');
231         $x->inlang= $inlang;
232         $x->ltype = $ltype;
233         
234         $complete = $x->fetchAll('lkey');
235         
236         $list =  $this->availableCodes($ltype);
237         
238         
239         foreach($list as $lkey) {
240             // skip ones we know we have done...
241             if (in_array($lkey, $complete)) {
242                 continue;
243             }
244             $x = DB_DataObject::factory('i18n');
245             $x->ltype = $ltype;
246             $x->lkey = $lkey;
247             $x->inlang= $inlang;
248             if ($x->find(true)) {
249                 $xx= clone($x);
250                 $x->lval = $this->defaultTranslate($inlang, $ltype, $lkey);
251                 $x->update($xx);
252                 continue;
253             }
254             $x->lval = $this->defaultTranslate($inlang, $ltype, $lkey);
255             $x->insert();
256             
257         }
258          
259         
260     }
261     
262     /**
263      * default translate  - use i18n classes to provide a value.
264      *
265      * 
266      */
267      
268     function defaultTranslate($lang, $type, $k) 
269     {
270       
271         static $cache;
272         $cfg = $this->cfg();
273         if (empty($k)) {
274             return '??';
275         }
276
277         $lbits = explode('_', strtoupper($lang));
278         $lang = $lbits[0];
279         
280         if (!isset($cache[$lang])) {
281             require_once 'I18Nv2/Country.php';
282             require_once 'I18Nv2/Language.php';
283             require_once 'I18Nv2/Currency.php';
284             $cache[$lang] = array(
285                 'l' =>  new I18Nv2_Language($lang, 'UTF-8'),
286                 'c' => new I18Nv2_Country($lang, 'UTF-8'),
287                 'm' => new I18Nv2_Currency($lang, 'UTF-8')
288             );
289             //echo '<PRE>';print_r(array($lang, $cache[$lang]['c']));
290         }
291         
292         if ($k == '**') {
293             return 'Other / Unknown';
294         }
295         $ret = $cache[$lang][$type]->getName($k);
296         
297         if ($type == 'l') {
298             $tolang = explode('_', $k);
299          
300             $ret = $cache[$lang][$type]->getName($tolang[0]);
301             if (count($tolang) > 1) {
302                 $ret.= '('.$tolang[1].')'; 
303             }
304              
305         }
306         // our wierd countries/langs etc..
307         if (isset($cfg['add_' . $type][$k])) {
308             return $cfg['add_' . $type][$k];
309             
310         }
311         
312         //print_r(array($k, $ret));
313         return $ret;
314         
315         
316     }
317     
318     
319 }