Removed CCA, (currencyconverterapi.com) is no longer working. Updated url 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         $contents = '';
137         $proto = 'http://';
138         $curr_a = get_company_pref('curr_default');
139         if ($provider == 'ECB')
140     {
141         $filename = "/stats/eurofxref/eurofxref-daily.xml";
142         $site = "www.ecb.europa.eu";
143         $proto = 'https://';
144         $site_ip="172.230.157.137";
145         $contents=file_get_contents($proto.$site.$filename);
146     }
147         elseif ($provider == 'YAHOO')
148         {
149                 $filename = "/d/quotes.csv?s={$curr_a}{$curr_b}=X&f=sl1d1t1ba&e=.csv"; // new URL's for YAHOO
150                 $site = "download.finance.yahoo.com";
151                 $site_ip="203.84.220.151";
152         }
153         elseif ($provider == 'GOOGLE')
154         {
155                 $filename = "/search?q={$curr_b}+to+{$curr_a}";
156                 $site = "https://www.google.com";
157                 $contents = file_get_contents($site.$filename);
158         }
159         elseif ($provider == 'BLOOMBERG')
160         {
161                 $filename = "/quote/{$curr_b}{$curr_a}:CUR";
162                 $site = "www.bloomberg.com";
163                 $proto = 'https://';
164                 $contents=file_get_contents($proto.$site.$filename);
165         }
166         elseif ($provider == 'EXCHANGE-RATES.ORG')
167         {
168                 $filename = "/converter/{$curr_b}/{$curr_a}/1";
169                 $site = "exchange-rates.org";
170                 $proto = 'https://';
171                 $contents=file_get_contents($proto.$site.$filename);
172         }
173         if (empty($contents)) {
174                 if (function_exists('curl_init'))
175                 {       // first check with curl as we can set short timeout;
176                         $retry = 1;
177                         do {
178                         $ch = curl_init();
179                         curl_setopt ($ch, CURLOPT_URL, $proto.$site.$filename);
180                         curl_setopt ($ch, CURLOPT_COOKIEJAR, VARLIB_PATH."/cookie.txt");
181                         curl_setopt ($ch, CURLOPT_HEADER, 0);
182                         curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
183                         // prevent warning while safe_mode/open_basedir on (redirection doesn't occur at least on ECB page)
184                                 if (!ini_get('safe_mode') && !ini_get('open_basedir'))
185                                 curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
186                         curl_setopt ($ch, CURLOPT_TIMEOUT, 3);
187                         $contents = curl_exec ($ch);
188                         curl_close($ch);
189                                 // due to resolver bug in some curl versions (e.g. 7.15.5) 
190                                 // try again for constant IP.
191                                 if (isset($site_ip))
192                                         $site=$site_ip;
193                         } while( ($contents == '') && $retry--);
194                 } else {
195                         $contents = url_get_contents($proto.$site.$filename);
196                 }
197         }
198         $val = '';
199         if ($provider == 'ECB')
200         {
201                 $contents = str_replace ("<Cube currency='USD'", " <Cube currency='EUR' rate='1'/> <Cube currency='USD'", $contents);
202                 $from_mask = "|<Cube\s*currency=\'" . $curr_a . "\'\s*rate=\'([\d.,]*)\'\s*/>|i";
203                 preg_match ( $from_mask, $contents, $out );
204                 $val_a = isset($out[1]) ? $out[1] : 0;
205                 $val_a = str_replace ( ',', '', $val_a );
206                 $to_mask = "|<Cube\s*currency=\'" . $curr_b . "\'\s*rate=\'([\d.,]*)\'\s*/>|i";
207                 preg_match ( $to_mask, $contents, $out );
208                 $val_b = isset($out[1]) ? $out[1] : 0;
209                 $val_b = str_replace ( ',', '', $val_b );
210                 if ($val_b) 
211                 {
212                         $val = $val_a / $val_b;
213                 } 
214                 else 
215                 {
216                         $val = 0;
217                 }
218         }
219         elseif ($provider == 'YAHOO')
220         {
221                 $array = explode(',',$contents); // New operations for YAHOO. Safer.
222                 $val = $array[1];
223                 if ($val != 0)
224                         $val = 1 / $val;
225         }
226         elseif ($provider == 'GOOGLE')
227         {
228                 $data = preg_split('/\D\s(.*?)\s=\s/', $contents);
229                 $array = explode(" ", $data[1]);
230                 $exRate = $array[0];
231
232                 $val = str_replace (',', '', $exRate);
233     }
234         elseif ($provider == 'BLOOMBERG')
235         {
236                 $val = getInnerStr($contents, ',"price":', ',"');
237     }    
238     elseif ($provider == 'EXCHANGE-RATES.ORG')
239         {
240                 $val = getInnerStr($contents, '<span id="ctl00_M_lblToAmount">', '<');
241                 $val = str_replace (',', '', $val);
242     }
243         return $val;
244 }  /* end function get_extern_rate */
245
246 //-----------------------------------------------------------------------------
247
248 function get_sql_for_exchange_rates($curr)
249 {
250         $sql = "SELECT date_, rate_buy, id
251                 FROM ".TB_PREF."exchange_rates "
252                 ."WHERE curr_code=".db_escape($curr)."
253                  ORDER BY date_ DESC";
254         return $sql;     
255 }
256
257 function getInnerStr($str, $start, $end) 
258 {
259         // $start must be the first occurrence
260         // $start must not be part of $end
261         $val = '';
262         $val = strstr($str, $start);
263         $val = trim($val);
264         $val = substr($val, strlen($start));
265         $val = strtok($val, $end);
266         return trim($val);
267 }