DataObjects/Core_curr_rate.php
[Pman.Core] / UpdateCurrencyRate.php
index f2af69d..fc37c1f 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');
@@ -55,36 +53,63 @@ class Pman_Core_UpdateCurrencyRate extends Pman
             die('no any currency');
         }
         
-        foreach ($currency as $c){
-            $params = array(
-                'lang' => 'en',
-                'result' => 1,
-                'date1' => date('m/d/y', strtotime("-6 MONTH")),
-                'date'=> date('m/d/y'),
-                'date_fmt' => 'us',
-                'exch' => $c,
-                'expr' => 'USD',
-                'margin_fixed' => 0,
-                'format'=> 'HTML'
-            );
-        }
-        
-        $response = $this->curl($this->actionUrl, $params, 'POST');
-        
-        libxml_use_internal_errors (true);
-        
-        $doc = new DOMDocument();
-        $doc->loadHTML($response);
-        
-        libxml_use_internal_errors (false);
+        $fromDate = date('m/d/y', strtotime("-6 MONTH"));
+        $toDate = date('m/d/y');
         
-        $xpath = new DOMXpath($doc);
+        $total = count($currency);
         
-        $ts = $xpath->query("//td[@id='content_section']");
+        foreach ($currency as $k => $c){
+            
+            echo "\nProcessing Currency : $c        ($k / $total) \n";
+            
+            $params = array(
+                'lang'          => 'en',
+                'result'        => 1,
+                'date1'         => $fromDate,
+                'date'          => $toDate,
+                'date_fmt'      => 'us',
+                'exch'          => $c,
+                'expr'          => 'USD',
+                'margin_fixed'  => 0,
+                'format'        => 'HTML'
+            );
+            
+            $response = $this->curl($this->actionUrl, $params, 'POST');
         
-        $elements = $xpath->query("table/tr", $ts->item(0));
+            libxml_use_internal_errors (true);
+
+            $doc = new DOMDocument();
+            $doc->loadHTML($response);
+
+            libxml_use_internal_errors (false);
+
+            $xpath = new DOMXpath($doc);
+
+            $elements = $xpath->query("//td[@id='content_section']/table/tr[last()]/td/table/tr[1]/td[last()]");
+
+            $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($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))
+            ));
+
+            (empty($o)) ? $curr->insert() : $curr->update($o);
+            
+        }
         
-        print_r($elements);exit;
+        $this->jok("DONE");
         
     }