Merge pull request #15989 from seamuslee001/dev_core_523
[civicrm-core.git] / CRM / Utils / Money.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
19 * Money utilties
20 */
21class CRM_Utils_Money {
6714d8d2 22 public static $_currencySymbols = NULL;
6a488035
TO
23
24 /**
fe482240 25 * Format a monetary string.
6a488035
TO
26 *
27 * Format a monetary string basing on the amount provided,
28 * ISO currency code provided and a format string consisting of:
29 *
30 * %a - the formatted amount
31 * %C - the currency ISO code (e.g., 'USD') if provided
32 * %c - the currency symbol (e.g., '$') if available
33 *
77855840
TO
34 * @param float $amount
35 * The monetary amount to display (1234.56).
36 * @param string $currency
37 * The three-letter ISO currency code ('USD').
38 * @param string $format
39 * The desired currency format.
f4aaa82a 40 * @param bool $onlyNumber
77855840
TO
41 * @param string $valueFormat
42 * The desired monetary value display format (e.g. '%!i').
6a488035 43 *
a6c01b45
CW
44 * @return string
45 * formatted monetary string
6a488035 46 *
6a488035 47 */
00be9182 48 public static function format($amount, $currency = NULL, $format = NULL, $onlyNumber = FALSE, $valueFormat = NULL) {
6a488035
TO
49
50 if (CRM_Utils_System::isNull($amount)) {
51 return '';
52 }
53
54 $config = CRM_Core_Config::singleton();
55
56 if (!$format) {
57 $format = $config->moneyformat;
58 }
f4aaa82a 59
ec4da14d
DG
60 if (!$valueFormat) {
61 $valueFormat = $config->moneyvalueformat;
62 }
f4aaa82a 63
6a488035
TO
64 if ($onlyNumber) {
65 // money_format() exists only in certain PHP install (CRM-650)
66 if (is_numeric($amount) and function_exists('money_format')) {
ec4da14d 67 $amount = money_format($valueFormat, $amount);
6a488035
TO
68 }
69 return $amount;
70 }
71
72 if (!self::$_currencySymbols) {
be2fb01f 73 self::$_currencySymbols = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'currency', [
6714d8d2
SL
74 'keyColumn' => 'name',
75 'labelColumn' => 'symbol',
76 ]);
6a488035
TO
77 }
78
79 if (!$currency) {
80 $currency = $config->defaultCurrency;
81 }
5fb64d51
PF
82
83 // ensure $currency is a valid currency code
84 // for backwards-compatibility, also accept one space instead of a currency
85 if ($currency != ' ' && !array_key_exists($currency, self::$_currencySymbols)) {
86 throw new CRM_Core_Exception("Invalid currency \"{$currency}\"");
87 }
88
28c249a9 89 $amount = self::formatNumericByFormat($amount, $valueFormat);
6a488035
TO
90 // If it contains tags, means that HTML was passed and the
91 // amount is already converted properly,
92 // so don't mess with it again.
28c249a9 93 // @todo deprecate handling for the html tags because .... WTF
6a488035 94 if (strpos($amount, '<') === FALSE) {
28c249a9 95 $amount = self::replaceCurrencySeparators($amount);
6a488035
TO
96 }
97
be2fb01f 98 $replacements = [
6a488035
TO
99 '%a' => $amount,
100 '%C' => $currency,
101 '%c' => CRM_Utils_Array::value($currency, self::$_currencySymbols, $currency),
be2fb01f 102 ];
6a488035
TO
103 return strtr($format, $replacements);
104 }
96025800 105
31f5f5e4
ML
106 /**
107 * This is a placeholder function for calculating the number of decimal places for a currency.
108 *
109 * Currently code assumes 2 decimal places but some currencies (bitcoin, middle eastern) have
110 * more. By using this function we can signpost the locations where the number of decimal places is
111 * currency specific for future enhancement.
112 *
113 * @param string $currency
114 *
115 * @return int
116 * Number of decimal places.
117 */
118 public static function getCurrencyPrecision($currency = NULL) {
119 return 2;
120 }
121
c10c4749
EL
122 /**
123 * Subtract currencies using integers instead of floats, to preserve precision
124 *
125 * @return float
126 * Result of subtracting $rightOp from $leftOp to the precision of $currency
127 */
128 public static function subtractCurrencies($leftOp, $rightOp, $currency) {
129 if (is_numeric($leftOp) && is_numeric($rightOp)) {
130 $precision = pow(10, self::getCurrencyPrecision($currency));
131 return (($leftOp * $precision) - ($rightOp * $precision)) / $precision;
132 }
133 }
134
c16c6ad8
CR
135 /**
136 * Tests if two currency values are equal, taking into account the currency's
137 * precision, so that if the difference between the two values is less than
138 * one more order of magnitude for the precision, then the values are
139 * considered as equal. So, if the currency has precision of 2 decimal
140 * points, a difference of more than 0.001 will cause the values to be
141 * considered as different. Anything less than 0.001 will be considered as
142 * equal.
143 *
144 * Eg.
145 *
146 * 1.2312 == 1.2319 with a currency precision of 2 decimal points
147 * 1.2310 != 1.2320 with a currency precision of 2 decimal points
148 * 1.3000 != 1.2000 with a currency precision of 2 decimal points
149 *
150 * @param $value1
151 * @param $value2
152 * @param $currency
153 *
154 * @return bool
155 */
156 public static function equals($value1, $value2, $currency) {
157 $precision = 1 / pow(10, self::getCurrencyPrecision($currency) + 1);
158 $difference = self::subtractCurrencies($value1, $value2, $currency);
159
160 if (abs($difference) > $precision) {
161 return FALSE;
162 }
163
164 return TRUE;
165 }
166
28c249a9 167 /**
168 * Format money for display (just numeric part) according to the current locale.
169 *
170 * This calls the underlying system function but does not handle currency separators.
171 *
172 * It's not totally clear when it changes the $amount value but has historical usage.
173 *
174 * @param $amount
175 *
176 * @return string
177 */
178 protected static function formatLocaleNumeric($amount) {
179 return self::formatNumericByFormat($amount, CRM_Core_Config::singleton()->moneyvalueformat);
180 }
181
182 /**
183 * Format money for display (just numeric part) according to the current locale with rounding.
184 *
185 * At this stage this is conceived as an internal function with the currency wrapper
186 * functions determining the number of places.
187 *
188 * This calls the underlying system function but does not handle currency separators.
189 *
190 * It's not totally clear when it changes the $amount value but has historical usage.
191 *
192 * @param string $amount
193 * @param int $numberOfPlaces
194 *
195 * @return string
196 */
197 protected static function formatLocaleNumericRounded($amount, $numberOfPlaces) {
198 return self::formatLocaleNumeric(round($amount, $numberOfPlaces));
199 }
200
201 /**
202 * Format money for display (just numeric part) according to the current locale with rounding.
203 *
204 * This handles both rounding & replacement of the currency separators for the locale.
205 *
206 * @param string $amount
207 * @param string $currency
208 *
209 * @return string
210 * Formatted amount.
211 */
212 public static function formatLocaleNumericRoundedByCurrency($amount, $currency) {
213 $amount = self::formatLocaleNumericRounded($amount, self::getCurrencyPrecision($currency));
214 return self::replaceCurrencySeparators($amount);
215 }
216
217 /**
218 * Format money for display (just numeric part) according to the current locale with rounding based on the
219 * default currency for the site.
220 *
221 * @param $amount
222 * @return mixed
223 */
224 public static function formatLocaleNumericRoundedForDefaultCurrency($amount) {
225 return self::formatLocaleNumericRoundedByCurrency($amount, self::getCurrencyPrecision(CRM_Core_Config::singleton()->defaultCurrency));
226 }
227
228 /**
229 * Replace currency separators.
230 *
231 * @param string $amount
232 *
233 * @return string
234 */
235 protected static function replaceCurrencySeparators($amount) {
236 $config = CRM_Core_Config::singleton();
be2fb01f 237 $rep = [
28c249a9 238 ',' => $config->monetaryThousandSeparator,
239 '.' => $config->monetaryDecimalPoint,
be2fb01f 240 ];
28c249a9 241 return strtr($amount, $rep);
242 }
243
244 /**
245 * Format numeric part of currency by the passed in format.
246 *
247 * This is envisaged as an internal function, with wrapper functions defining valueFormat
248 * into easily understood functions / variables and handling separator conversions and
249 * rounding.
250 *
251 * @param string $amount
252 * @param string $valueFormat
253 *
254 * @return string
255 */
256 protected static function formatNumericByFormat($amount, $valueFormat) {
257 // money_format() exists only in certain PHP install (CRM-650)
258 // setlocale() affects native gettext (CRM-11054, CRM-9976)
259 if (is_numeric($amount) && function_exists('money_format')) {
260 $lc = setlocale(LC_MONETARY, 0);
261 setlocale(LC_MONETARY, 'en_US.utf8', 'en_US', 'en_US.utf8', 'en_US', 'C');
262 $amount = money_format($valueFormat, $amount);
263 setlocale(LC_MONETARY, $lc);
264 }
265 return $amount;
266 }
267
6a488035 268}