UpdateCurrencyRate.php
[Pman.Core] / UpdateCurrencyRate.php
index 834f368..5522615 100644 (file)
@@ -29,9 +29,7 @@ class Pman_Core_UpdateCurrencyRate extends Pman
     }
     
     function get()
-    {
-        echo "obtain the currency lists... \n";
-        
+    {   
         $currency = array();
         
         $response = $this->curl($this->actionUrl, array(), 'GET');
@@ -58,7 +56,12 @@ class Pman_Core_UpdateCurrencyRate extends Pman
         $fromDate = date('m/d/y', strtotime("-6 MONTH"));
         $toDate = date('m/d/y');
         
+        $total = count($currency);
+        
         foreach ($currency as $k => $c){
+            
+            echo "\nProcessing Currency : $c        ($k / $total) \n";
+            
             $params = array(
                 'lang'          => 'en',
                 'result'        => 1,
@@ -86,28 +89,56 @@ class Pman_Core_UpdateCurrencyRate extends Pman
 
             $rate = empty($elements->item(0)->nodeValue) ? 0 : $elements->item(0)->nodeValue * 1;
 
-            $curr = DB_DataObject::factory('core_curr_rate');
             
-            $curr->curr = $c;
             
-            $o = false;
+            if(array_key_exists($c, $this->mapping)){
+                
+                $curr = DB_DataObject::factory('core_curr_rate');
             
-            if($curr->find(true)){
-                $o = clone($curr);
-            }
-            
-            $curr->setFrom(array(
-                'rate'  => $rate,
-                'from'  => date('Y-m-d H:i:s', strtotime($fromDate)),
-                'to'    => date('Y-m-d H:i:s', strtotime($toDate))
-            ));
+                $curr->curr = $c;
+
+                $o = false;
+
+                if($curr->find(true)){
+                    $o = clone($curr);
+                }
+
+                $curr->setFrom(array(
+                    'rate'  => $rate,
+                    'from_dt'  => date('Y-m-d H:i:s', strtotime($fromDate)),
+                    'to_dt'    => date('Y-m-d H:i:s', strtotime($toDate))
+                ));
 
-            (empty($o)) ? $curr->insert() : $curr->update($o);
+                (empty($o)) ? $curr->insert() : $curr->update($o);
+            }
             
         }
         
+        $this->jok("DONE");
         
+    }
+    
+    function processCurrRate($currency, $rate, $from, $to)
+    {
+        $curr = DB_DataObject::factory('core_curr_rate');
+            
+        $curr->curr = $currency;
+
+        $o = false;
+
+        if($curr->find(true)){
+            $o = clone($curr);
+        }
+
+        $curr->setFrom(array(
+            'rate'  => $rate,
+            'from_dt'  => date('Y-m-d H:i:s', strtotime($from)),
+            'to_dt'    => date('Y-m-d H:i:s', strtotime($to))
+        ));
+
+        (empty($o)) ? $curr->insert() : $curr->update($o);
         
+        return;
     }
     
     function curl($url, $request = array(), $method = 'GET')