DataObjects/Core_watch.php
[Pman.Core] / I18n.php
index 644d449..cb23edc 100644 (file)
--- a/I18n.php
+++ b/I18n.php
@@ -47,7 +47,7 @@
  */
 require_once 'Pman.php';
 
-class Pman_Core_I18N extends Pman
+class Pman_Core_I18n extends Pman
 {
  
     
@@ -116,28 +116,59 @@ class Pman_Core_I18N extends Pman
         
         switch($s) {
             case 'Lang':
+                 
+                
                 $i->ltype = 'l';
                 $i->applyFilters($_REQUEST, $this->authUser, $this);
-                $this->jdata($i->toTransList('l',  $lbits[0]));
+                $this->jdata($i->toTransList('l',  implode('_',$lbits)));
                 break;
 
             case 'Country':
                 $i->ltype = 'c';
                 $i->applyFilters($_REQUEST, $this->authUser, $this);
-                $this->jdata($i->toTransList('c',  $lbits[0]));
-                
-                $ret = $this->getList('c', $lbits[0],empty($_REQUEST['filter']) ? false : $_REQUEST['filter']);
+                $this->jdata($i->toTransList('c',  implode('_',$lbits)));
+               
                 break;
                 
-             case 'Currency':
+            case 'Currency':
                 $i->ltype = 'm';
                 $i->applyFilters($_REQUEST, $this->authUser, $this);
-                $this->jdata($i->toTransList('m',  $lbits[0]));
+                $this->jdata($i->toTransList('m',  implode('_',$lbits)));
                 break;
+            
+            case 'Timezone':
+                $ar = DateTimeZone::listAbbreviations();
+                $ret = array();
+                $tza = array();
+                foreach($ar as $tl => $sar) {
+                    foreach($sar as $tz) {
+                        $tza[]  = $tz['timezone_id'];
+                    
+                    }
+                }
+                $tza= array_unique($tza);
+                sort($tza);
+                foreach($tza as $tz) {
+                    //filtering..
+                    if (empty($_REQUEST['q']) ||
+                            0 === strcasecmp(
+                                    substr($tz,0, strlen($_REQUEST['q'])),
+                                    $_REQUEST['q'])
+                    ) {
+                        $ret[] = array('tz' => $tz);
+                    }
+                    
+                }
+                $this->jdata($ret);
+                
+                
+                
              
                 
         }
-        
+        if (!empty($_REQUEST['debug'])) {
+            DB_DataObject::debugLevel(1);
+        }
         $i = DB_DataObject::Factory('I18n');
         $i->buildDb();
       
@@ -173,7 +204,7 @@ class Pman_Core_I18N extends Pman
      /**
      * translate (used by database building);
      * usage :
-     * require_once 'Pman/Core/I18N.php';
+     * require_once 'Pman/Core/I18n.php';
      * $x = new Pman_Core_I18N();
      * $x->translate($this->authuser, 'c', 'US');
      * @param au - auth User
@@ -217,6 +248,62 @@ class Pman_Core_I18N extends Pman
         }
         return implode(', ', $ret);
     }
+    /**
+     * convert rate:
+     * usage  : $i = new Pman_Core_I18n();
+     * $ret = $i->convertCurrency(100,"HKD","USD");
+     * if ($ret == false) {
+            /// something went wrong.
+     }
+     * 
+     * @param Pman_Core_DataObjects_Person $au Authenticated user
+     * @param String                      $type  c/l/m
+     * @param String                      $k     'comma' seperated list of keys to translate
+     */
+    
+    
+    function convertCurrency($val, $from, $to)
+    {
+        $r = $this->loadRates();
+        if ($r === false) {
+            return false;
+        }
+        if (!isset($this->rates[$from]) || !isset($this->rates[$to]) ) {
+            return false;
+        }
+        //echo '<PRE>';print_R($this->rates);
+        $base = (1.0 / $this->rates[$from]) * $val;
+  
+        return $this->rates[$to] * $base;
+    
+    }
+    var $rates = array();
+    function loadRates()
+    {
+        if (!empty($this->rates)) {
+            return true;
+        }
+        $target = ini_get('session.save_path').'/eurofxref-daily.xml';
+        if (!file_exists($target) || filemtime($target) < (time() - 60*60*24)) {
+            $f = file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
+            if (!strlen($f)) {
+                return false;
+            }
+            file_put_contents($target,$f);
+        } 
+        $dom = simplexml_load_file($target);
+        $this->rates['EUR'] = 1.0;
+        $this->rates['TWD'] = 46.7008412;
+        $this->rates['VND'] = 26405.3;
+       
+        foreach($dom->Cube->Cube->Cube as $c) {
+           //echo '<PRE>';print_r($c );
+            $this->rates[(string)$c['currency']] = (string)$c['rate'];
+        }
+         $this->rates['RMB'] = $this->rates['CNY'] ;
+    }
+    
+    
      
     
 }
\ No newline at end of file