UpdateCurrencyRate.php
[Pman.Core] / UpdateCurrencyRate.php
1 <?php
2
3 require_once 'Pman.php';
4
5 class Pman_Core_UpdateCurrencyRate extends Pman
6 {
7     
8     static $cli_desc = "Update Currency Exchange Rate";
9     
10     static $cli_opts = array();
11     
12     var $cli = false; 
13     
14     var $actionUrl = 'http://www.oanda.com/currency/historical-rates-classic';
15     
16     var $mapping = array(
17         'CNY' => 'RMB'
18     );
19     
20     function getAuth() 
21     {
22         $ff = HTML_FlexyFramework::get();
23         if (!empty($ff->cli)) {
24             $this->cli = true;
25             return true;
26         }
27         
28         die("NOT ALLOWED");
29     }
30     
31     function get()
32     {
33         echo "obtain the currency lists... \n";
34         
35         $currency = array();
36         
37         $response = $this->curl($this->actionUrl, array(), 'GET');
38         
39         libxml_use_internal_errors (true);
40         
41         $doc = new DOMDocument();
42         $doc->loadHTML($response);
43         
44         libxml_use_internal_errors (false);
45         
46         $xpath = new DOMXpath($doc);
47         
48         $elements = $xpath->query("//select[@name='exch']/option");
49         
50         foreach($elements as $el) {
51             $currency[] = $el->getAttribute('value');
52         }
53         
54         if(empty($currency)){
55             die('no any currency');
56         }
57         
58         foreach ($currency as $c){
59             $params = array(
60                 'lang' => 'en',
61                 'result' => 1,
62                 'date1' => date('m/d/y', strtotime("-6 MONTH")),
63                 'date'=> date('m/d/y'),
64                 'date_fmt' => 'us',
65                 'exch' => $c,
66                 'expr' => 'USD',
67                 'margin_fixed' => 0,
68                 'format'=> 'HTML'
69             );
70         }
71         
72         $response = $this->curl($this->actionUrl, $params, 'POST');
73         
74         libxml_use_internal_errors (true);
75         
76         $doc = new DOMDocument();
77         $doc->loadHTML($response);
78         
79         libxml_use_internal_errors (false);
80         
81         $xpath = new DOMXpath($doc);
82         
83         $elements = $xpath->query("//td[@id='content_section']/table/tr[last()]");
84         
85         print_r($elements);exit;
86         
87     }
88     
89     function curl($url, $request = array(), $method = 'GET') 
90     {
91          
92         if(is_array($request)){
93             $request = http_build_query($request);
94         }
95         
96         $url = $url . ($method == 'GET' ? "?" . $request : '');  
97         $ch = curl_init($url);
98         
99         if ($method == 'POST') {
100             curl_setopt($ch, CURLOPT_POST, 1);
101             curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
102             curl_setopt($ch, CURLOPT_HTTPHEADER,
103                     array("Content-Type: application/x-www-form-urlencoded", "Content-Length: " . strlen($request)));
104         }
105         
106         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
107         
108         curl_setopt($ch, CURLOPT_HEADER, false);
109         curl_setopt($ch, CURLOPT_VERBOSE, 1);
110         curl_setopt($ch, CURLOPT_TIMEOUT, 30);
111         curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
112
113         $response = curl_exec($ch);
114
115         curl_close($ch);
116         
117         return $response;
118     }
119     
120     /*
121     lang:en
122     result:1
123     date1:10/14/14
124     date:10/20/14
125     date_fmt:us
126     exch:USD
127     exch2:
128     expr:EUR
129     expr2:
130     margin_fixed:0
131     format:HTML
132     SUBMIT:Get Table
133     */
134 }