Fixed FA2.4.2 error getting exchange rate from Google
[fa-stable.git] / gl / includes / db / gl_db_rates.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 include_once($path_to_root . "/includes/remote_url.inc");
13 //---------------------------------------------------------------------------------------------
14 function get_exchange_rate($rate_id)
15 {
16         $sql = "SELECT * FROM ".TB_PREF."exchange_rates WHERE id=".db_escape($rate_id);
17         $result = db_query($sql, "could not get exchange rate for $rate_id");
18
19         return db_fetch($result);
20 }
21
22 // Retrieves buy exchange rate for given currency/date, zero if no result
23 function get_date_exchange_rate($curr_code, $date_)
24 {
25         $date = date2sql($date_);
26         $sql = "SELECT rate_buy
27                         FROM ".TB_PREF."exchange_rates
28                         WHERE curr_code=".db_escape($curr_code)
29                                 ." AND date_='$date'";
30         $result = db_query($sql, "could not get exchange rate for $curr_code - $date_");
31
32         if(db_num_rows($result) == 0) 
33                 return 0;
34         $row = db_fetch($result);
35                 return $row[0];
36 }
37
38 /*
39         Return last exchange rate of $currency not later than $date.
40 */
41 function get_last_exchange_rate($curr_code, $date_)
42 {
43         $date = date2sql($date_);
44
45         $sql = "SELECT rate_buy, max(date_) as date_
46                         FROM ".TB_PREF."exchange_rates
47                         WHERE curr_code = ".db_escape($curr_code)."
48                                 AND date_ <= '$date' GROUP BY rate_buy ORDER BY date_ Desc LIMIT 1";
49
50         $result = db_query($sql, "could not query exchange rates");
51
52
53         if (db_num_rows($result) == 0)
54                 return false;
55
56         return db_fetch_assoc($result);
57 }
58
59 //---------------------------------------------------------------------------------------------
60
61 function update_exchange_rate($curr_code, $date_, $buy_rate, $sell_rate)
62 {
63         if (is_company_currency($curr_code))
64                 display_db_error("Exchange rates cannot be set for company currency", "", true);
65                         
66         $date = date2sql($date_);
67                 
68         $sql = "UPDATE ".TB_PREF."exchange_rates SET rate_buy=$buy_rate, rate_sell=".db_escape($sell_rate)
69         ." WHERE curr_code=".db_escape($curr_code)." AND date_='$date'";
70                                 
71         db_query($sql, "could not add exchange rate for $curr_code");
72 }
73
74 //---------------------------------------------------------------------------------------------
75
76 function add_exchange_rate($curr_code, $date_, $buy_rate, $sell_rate)
77 {
78         if (is_company_currency($curr_code))
79                 display_db_error("Exchange rates cannot be set for company currency", "", true);
80
81         $date = date2sql($date_);
82                 
83         $sql = "INSERT INTO ".TB_PREF."exchange_rates (curr_code, date_, rate_buy, rate_sell)
84                 VALUES (".db_escape($curr_code).", '$date', ".db_escape($buy_rate)
85                 .", ".db_escape($sell_rate).")";
86         db_query($sql, "could not add exchange rate for $curr_code");
87 }
88
89 //---------------------------------------------------------------------------------------------
90
91 function add_new_exchange_rate($curr_code, $date_, $ex_rate)
92 {
93         if (is_company_currency($curr_code) || !$ex_rate)
94                 return;
95
96         if (!get_date_exchange_rate($curr_code, $date_))
97                 add_exchange_rate($curr_code, $date_, $ex_rate, $ex_rate);
98 }
99
100 //---------------------------------------------------------------------------------------------
101
102 function delete_exchange_rate($rate_id)
103 {
104         $sql = "DELETE FROM ".TB_PREF."exchange_rates WHERE id=".db_escape($rate_id);
105         db_query($sql, "could not delete exchange rate $rate_id");
106 }
107
108 //-----------------------------------------------------------------------------
109 //      Retrieve exchange rate as of date $date from external source (usually inet)
110 //
111 //      Exchange rate for currency revaluation purposes is defined in FA as home_currency/curr_b ratio i.e.
112 //
113 //      amount [home] = amount [curr] * ex_rate
114 //
115 function retrieve_exrate($curr_b, $date)
116 {
117         global $SysPrefs;
118
119         $xchg_rate_provider = ((isset($SysPrefs->xr_providers) && isset($SysPrefs->dflt_xr_provider)) 
120                 ? $SysPrefs->xr_providers[$SysPrefs->dflt_xr_provider] : 'ECB');
121
122         $rate = hook_retrieve_exrate($curr_b, $date);
123         if (is_numeric($rate))
124                 return $rate;
125         return get_extern_rate($curr_b, $xchg_rate_provider, $date);
126 }
127 //-----------------------------------------------------------------------------
128
129 function get_extern_rate($curr_b, $provider = 'ECB', $date) 
130 {
131         global  $path_to_root;
132
133         if ($date != Today())   // no historical rates available
134                 return 0;
135
136         $curr_a = get_company_pref('curr_default');
137         if ($provider == 'ECB')
138         {
139                 $filename = "/stats/eurofxref/eurofxref-daily.xml";
140                 $site = "www.ecb.europa.eu";
141                 $site_ip="172.230.157.137";
142         }
143         elseif ($provider == 'YAHOO')
144         {
145                 $filename = "/d/quotes.csv?s={$curr_a}{$curr_b}=X&f=sl1d1t1ba&e=.csv"; // new URL's for YAHOO
146                 $site = "download.finance.yahoo.com";
147                 $site_ip="203.84.220.151";
148         }
149         elseif ($provider == 'GOOGLE')
150         {
151                 $filename = "/finance/converter?a=1&from={$curr_a}&to={$curr_b}";
152                 $site = "finance.google.com";
153         }
154         elseif ($provider == 'BLOOMBERG')
155         {
156                 $filename = "/quote/{$curr_b}{$curr_a}:CUR";
157                 $site = "www.bloomberg.com";
158                 $site_ip = "23.35.88.72";
159         }
160         $contents = '';
161         if (function_exists('curl_init'))
162         {       // first check with curl as we can set short timeout;
163                 $retry = 1;
164                 do {
165                 $ch = curl_init();
166                 curl_setopt ($ch, CURLOPT_URL, 'http://'.$site.$filename);
167                 curl_setopt ($ch, CURLOPT_COOKIEJAR, "$path_to_root/tmp/cookie.txt");
168                 curl_setopt ($ch, CURLOPT_HEADER, 0);
169                 curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
170                 // prevent warning while safe_mode/open_basedir on (redireciton doesn't occur at least on ECB page)
171                         if (!ini_get('safe_mode') && !ini_get('open_basedir'))
172                         curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
173                 curl_setopt ($ch, CURLOPT_TIMEOUT, 3);
174                 $contents = curl_exec ($ch);
175                 curl_close($ch);
176                         // due to resolver bug in some curl versions (e.g. 7.15.5) 
177                         // try again for constant IP.
178                         if (isset($site_ip))
179                                 $site=$site_ip;
180            } while( ($contents == '') && $retry--);
181            
182         } else {
183                 $contents = url_get_contents("http://".$site.$filename);
184         }
185         if ($provider == 'ECB')
186         {
187                 $contents = str_replace ("<Cube currency='USD'", " <Cube currency='EUR' rate='1'/> <Cube currency='USD'", $contents);
188                 $from_mask = "|<Cube\s*currency=\'" . $curr_a . "\'\s*rate=\'([\d.,]*)\'\s*/>|i";
189                 preg_match ( $from_mask, $contents, $out );
190                 $val_a = isset($out[1]) ? $out[1] : 0;
191                 $val_a = str_replace ( ',', '', $val_a );
192                 $to_mask = "|<Cube\s*currency=\'" . $curr_b . "\'\s*rate=\'([\d.,]*)\'\s*/>|i";
193                 preg_match ( $to_mask, $contents, $out );
194                 $val_b = isset($out[1]) ? $out[1] : 0;
195                 $val_b = str_replace ( ',', '', $val_b );
196                 if ($val_b) 
197                 {
198                         $val = $val_a / $val_b;
199                 } 
200                 else 
201                 {
202                         $val = 0;
203                 }
204         }
205         elseif ($provider == 'YAHOO')
206         {
207                 $val = ''; 
208                 $array = explode(',',$contents); // New operations for YAHOO. Safer.
209                 $val = $array[1];
210                 if ($val != 0)
211                         $val = 1 / $val;
212         }
213         elseif ($provider == 'GOOGLE')
214         {
215                 $val = '';
216                 
217                 $regexp = "%([\d|.]+)\s+{$curr_a}\s+=\s+<span\sclass=(.*)>([\d|.]+)\s+{$curr_b}\s*</span>%s";
218                 if (preg_match($regexp, $contents, $matches)) 
219                 {
220                         $val = $matches[3];
221                         $val = str_replace(',', '', $val);
222                         if ($val != 0)
223                                 $val = 1 / $val;
224                 }
225     }    
226         elseif ($provider == 'BLOOMBERG')
227         {
228                 $val = '';
229                 $stmask = '<div class="price">';
230                 $val = strstr($contents, $stmask);
231                 $val = trim($val);
232                 $val = substr($val, strlen($stmask));
233                 $stmask = '</div>';
234                 $val = strtok($val, $stmask); 
235                 $val = trim($val);
236     }    
237         return $val;
238 }  /* end function get_extern_rate */
239
240 //-----------------------------------------------------------------------------
241
242 function get_sql_for_exchange_rates($curr)
243 {
244         $sql = "SELECT date_, rate_buy, id
245                 FROM ".TB_PREF."exchange_rates "
246                 ."WHERE curr_code=".db_escape($curr)."
247                  ORDER BY date_ DESC";
248         return $sql;     
249 }