X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_curr_rate.php;h=edc1a82be275b62c2e93e00c757ee1644fa69324;hb=78ea1d81456f62768bd7ff924c27a713160b0e1d;hp=a3b6b6f74db639ac379208b1013b8cd2a59bcc24;hpb=5102aed15c57bdc5a355045bc1523b767775852a;p=Pman.Core diff --git a/DataObjects/Core_curr_rate.php b/DataObjects/Core_curr_rate.php index a3b6b6f7..edc1a82b 100644 --- a/DataObjects/Core_curr_rate.php +++ b/DataObjects/Core_curr_rate.php @@ -41,50 +41,86 @@ class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject // how often do we need to know this..? // let's assume we do it once a week.. $x = DB_DataObject::Factory('core_curr_rate'); - $x->whereAdd('from_date > NOW() - INTERVAL 7 DAY'); + $x->whereAdd('to_date > NOW()'); if ($x->count()) { + // got some data for beyond today.. return; } - - - - if (!empty($this->rates)) { - return true; - } // load our default rates to start with.. - $dom = simplexml_load_file(dirname(__FILE__).'/eurofxref-daily.xml'); - $this->rates['EUR'] = 1.0; - $this->rates['TWD'] = 46.7008412; - $this->rates['VND'] = 26405.3; + $dom = simplexml_load_file(dirname(__FILE__).'/../eurofxref-daily.xml'); + $rates['EUR'] = 1.0; + $rates['TWD'] = 46.7008412; // taiwan dorlar + $rates['VND'] = 25282.24; // veitnam dong? foreach($dom->Cube->Cube->Cube as $c) { //echo '
';print_r($c );
-            $this->rates[(string)$c['currency']] = (string)$c['rate'];
+            $rates[(string)$c['currency']] = (string)$c['rate'];
         }
-        $this->rates['RMB'] = $this->rates['CNY'] ;
-        // now try loading from latest..
-        $target = ini_get('session.save_path').'/eurofxref-daily.xml';
+        $rates['RMB'] = $rates['CNY'] ;
         
-        if (!file_exists($target) || filemtime($target) < (time() - 60*60*24)) {
-            // this may fail...
-            $f = @file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
-            if (!strlen($f)) {
-                return;
-            } 
-            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;
+        
+        // now try loading from latest..
        
+             // this may fail...
+        $f = @file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
+        if (!strlen($f)) {
+            return false;
+        }
+        
+        $dom = simplexml_load_file($target);
+        $rates['EUR'] = 1.0;
+        
         foreach($dom->Cube->Cube->Cube as $c) {
            //echo '
';print_r($c );
-            $this->rates[(string)$c['currency']] = (string)$c['rate'];
+            $rates[(string)$c['currency']] = (string)$c['rate'];
+        }
+        $rates['RMB'] = $rates['CNY'] ;
+        
+        foreach($rates as $cur=>$rate) {
+            
+            $ov = DB_DataObject::Factory('core_curr_rate');
+            $ov->curr = $cur;
+            $nl = clone($x);
+            $ov->orderBy('to_date DESC');
+            $ov->limit(1);
+            
+            
+            $nl->from_dt = DB_DataObject::sqlValue("NOW()");
+            
+            if ($ov->find(true)) {
+                if (strtotime($ov->to_date) > time()) {
+                    continue;
+                }
+                $nl->from_dt = $ov->to_date;
+            
+            
+            
+                if ($ov->rate == $rate) {
+                    // modify the old one to expire
+                    $oo = clone($ov);
+                    $ov->to_date = $nv->to_from_dt;
+                    $ov->update($oo);
+                    continue;
+                }
+            }
+            // create a new row.
+            
+            
+            
+            
+            
+            
+            
         }
-        $this->rates['RMB'] = $this->rates['CNY'] ;
+        
+        
+        
+        
+        
+        
+        
     }
 }