Merge pull request #17345 from eileenmcnaughton/ev_batch
[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 *
5ab2fd4f
MWMC
125 * @param string|float $leftOp
126 * @param string|float $rightOp
127 * @param string $currency
128 *
c10c4749
EL
129 * @return float
130 * Result of subtracting $rightOp from $leftOp to the precision of $currency
131 */
132 public static function subtractCurrencies($leftOp, $rightOp, $currency) {
133 if (is_numeric($leftOp) && is_numeric($rightOp)) {
134 $precision = pow(10, self::getCurrencyPrecision($currency));
135 return (($leftOp * $precision) - ($rightOp * $precision)) / $precision;
136 }
137 }
138
c16c6ad8
CR
139 /**
140 * Tests if two currency values are equal, taking into account the currency's
ecaa5b43 141 * precision, so that the two values are compared as integers after rounding.
c16c6ad8
CR
142 *
143 * Eg.
144 *
ecaa5b43
FW
145 * 1.231 == 1.232 with a currency precision of 2 decimal points
146 * 1.234 != 1.236 with a currency precision of 2 decimal points
147 * 1.300 != 1.200 with a currency precision of 2 decimal points
c16c6ad8
CR
148 *
149 * @param $value1
150 * @param $value2
151 * @param $currency
152 *
153 * @return bool
154 */
155 public static function equals($value1, $value2, $currency) {
ecaa5b43 156 $precision = pow(10, self::getCurrencyPrecision($currency));
c16c6ad8 157
ecaa5b43 158 return (int) round($value1 * $precision) == (int) round($value2 * $precision);
c16c6ad8
CR
159 }
160
28c249a9 161 /**
162 * Format money for display (just numeric part) according to the current locale.
163 *
164 * This calls the underlying system function but does not handle currency separators.
165 *
166 * It's not totally clear when it changes the $amount value but has historical usage.
167 *
168 * @param $amount
169 *
170 * @return string
171 */
172 protected static function formatLocaleNumeric($amount) {
173 return self::formatNumericByFormat($amount, CRM_Core_Config::singleton()->moneyvalueformat);
174 }
175
176 /**
177 * Format money for display (just numeric part) according to the current locale with rounding.
178 *
179 * At this stage this is conceived as an internal function with the currency wrapper
180 * functions determining the number of places.
181 *
182 * This calls the underlying system function but does not handle currency separators.
183 *
184 * It's not totally clear when it changes the $amount value but has historical usage.
185 *
186 * @param string $amount
187 * @param int $numberOfPlaces
188 *
189 * @return string
190 */
191 protected static function formatLocaleNumericRounded($amount, $numberOfPlaces) {
192 return self::formatLocaleNumeric(round($amount, $numberOfPlaces));
193 }
194
195 /**
196 * Format money for display (just numeric part) according to the current locale with rounding.
197 *
198 * This handles both rounding & replacement of the currency separators for the locale.
199 *
200 * @param string $amount
201 * @param string $currency
202 *
203 * @return string
204 * Formatted amount.
205 */
206 public static function formatLocaleNumericRoundedByCurrency($amount, $currency) {
207 $amount = self::formatLocaleNumericRounded($amount, self::getCurrencyPrecision($currency));
208 return self::replaceCurrencySeparators($amount);
209 }
210
211 /**
212 * Format money for display (just numeric part) according to the current locale with rounding based on the
213 * default currency for the site.
214 *
215 * @param $amount
216 * @return mixed
217 */
218 public static function formatLocaleNumericRoundedForDefaultCurrency($amount) {
219 return self::formatLocaleNumericRoundedByCurrency($amount, self::getCurrencyPrecision(CRM_Core_Config::singleton()->defaultCurrency));
220 }
221
222 /**
223 * Replace currency separators.
224 *
225 * @param string $amount
226 *
227 * @return string
228 */
229 protected static function replaceCurrencySeparators($amount) {
230 $config = CRM_Core_Config::singleton();
be2fb01f 231 $rep = [
28c249a9 232 ',' => $config->monetaryThousandSeparator,
233 '.' => $config->monetaryDecimalPoint,
be2fb01f 234 ];
28c249a9 235 return strtr($amount, $rep);
236 }
237
238 /**
239 * Format numeric part of currency by the passed in format.
240 *
241 * This is envisaged as an internal function, with wrapper functions defining valueFormat
242 * into easily understood functions / variables and handling separator conversions and
243 * rounding.
244 *
245 * @param string $amount
246 * @param string $valueFormat
247 *
248 * @return string
249 */
250 protected static function formatNumericByFormat($amount, $valueFormat) {
251 // money_format() exists only in certain PHP install (CRM-650)
252 // setlocale() affects native gettext (CRM-11054, CRM-9976)
253 if (is_numeric($amount) && function_exists('money_format')) {
254 $lc = setlocale(LC_MONETARY, 0);
255 setlocale(LC_MONETARY, 'en_US.utf8', 'en_US', 'en_US.utf8', 'en_US', 'C');
256 $amount = money_format($valueFormat, $amount);
257 setlocale(LC_MONETARY, $lc);
258 }
259 return $amount;
260 }
261
6a488035 262}