firefly-iii/app/Support/Amount.php

246 lines
7.7 KiB
PHP
Raw Normal View History

2015-02-06 23:49:24 -06:00
<?php
/**
* Amount.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
declare(strict_types=1);
2015-02-06 23:49:24 -06:00
namespace FireflyIII\Support;
2017-03-15 14:09:36 -05:00
use FireflyIII\Exceptions\FireflyException;
2015-02-06 23:49:24 -06:00
use FireflyIII\Models\Transaction;
use FireflyIII\Models\TransactionCurrency;
2015-03-15 03:34:57 -05:00
use FireflyIII\Models\TransactionJournal;
use FireflyIII\Models\TransactionType;
use Illuminate\Support\Collection;
use Preferences as Prefs;
2015-02-06 23:49:24 -06:00
/**
* Class Amount
*
* @package FireflyIII\Support
*/
class Amount
{
/**
* bool $sepBySpace is $localeconv['n_sep_by_space']
* int $signPosn = $localeconv['n_sign_posn']
* string $sign = $localeconv['negative_sign']
* bool $csPrecedes = $localeconv['n_cs_precedes']
*
* @param bool $sepBySpace
* @param int $signPosn
* @param string $sign
* @param bool $csPrecedes
*
* @return string
*/
public static function getAmountJsConfig(bool $sepBySpace, int $signPosn, string $sign, bool $csPrecedes): string
{
// negative first:
$space = ' ';
// require space between symbol and amount?
if (!$sepBySpace) {
$space = ''; // no
}
// there are five possible positions for the "+" or "-" sign (if it is even used)
// pos_a and pos_e could be the ( and ) symbol.
$pos_a = ''; // before everything
$pos_b = ''; // before currency symbol
$pos_c = ''; // after currency symbol
$pos_d = ''; // before amount
$pos_e = ''; // after everything
// format would be (currency before amount)
// AB%sC_D%vE
// or:
// AD%v_B%sCE (amount before currency)
// the _ is the optional space
// switch on how to display amount:
switch ($signPosn) {
default:
case 0:
// ( and ) around the whole thing
$pos_a = '(';
$pos_e = ')';
break;
case 1:
// The sign string precedes the quantity and currency_symbol
$pos_a = $sign;
break;
case 2:
// The sign string succeeds the quantity and currency_symbol
$pos_e = $sign;
break;
case 3:
// The sign string immediately precedes the currency_symbol
$pos_b = $sign;
break;
case 4:
// The sign string immediately succeeds the currency_symbol
$pos_c = $sign;
}
2017-01-14 12:43:33 -06:00
// default is amount before currency
$format = $pos_a . $pos_d . '%v' . $space . $pos_b . '%s' . $pos_c . $pos_e;
if ($csPrecedes) {
2017-01-14 12:43:33 -06:00
// alternative is currency before amount
$format = $pos_a . $pos_b . '%s' . $pos_c . $space . $pos_d . '%v' . $pos_e;
}
return $format;
}
2016-01-09 11:02:36 -06:00
/**
2016-01-09 11:02:36 -06:00
* This method will properly format the given number, in color or "black and white",
* as a currency, given two things: the currency required and the current locale.
*
* @param \FireflyIII\Models\TransactionCurrency $format
* @param string $amount
* @param bool $coloured
*
* @return string
*/
2016-02-06 03:17:41 -06:00
public function formatAnything(TransactionCurrency $format, string $amount, bool $coloured = true): string
{
$locale = explode(',', trans('config.locale'));
$locale = array_map('trim', $locale);
setlocale(LC_MONETARY, $locale);
$float = round($amount, 12);
$info = localeconv();
2017-03-16 11:52:13 -05:00
$formatted = number_format($float, intval($format->decimal_places), $info['mon_decimal_point'], $info['mon_thousands_sep']);
// some complicated switches to format the amount correctly:
$precedes = $amount < 0 ? $info['n_cs_precedes'] : $info['p_cs_precedes'];
$separated = $amount < 0 ? $info['n_sep_by_space'] : $info['p_sep_by_space'];
$space = $separated ? ' ' : '';
$result = $format->symbol . $space . $formatted;
if (!$precedes) {
$result = $space . $formatted . $format->symbol;
}
2016-01-09 11:02:36 -06:00
if ($coloured === true) {
2016-03-21 13:28:22 -05:00
2016-01-09 11:02:36 -06:00
if ($amount > 0) {
return sprintf('<span class="text-success">%s</span>', $result);
2016-03-21 13:28:22 -05:00
} else {
if ($amount < 0) {
return sprintf('<span class="text-danger">%s</span>', $result);
2016-03-21 13:28:22 -05:00
}
2016-01-09 11:02:36 -06:00
}
return sprintf('<span style="color:#999">%s</span>', $result);
2016-03-21 13:28:22 -05:00
2016-01-09 11:02:36 -06:00
}
return $result;
}
/**
* @return Collection
*/
2016-04-05 15:00:03 -05:00
public function getAllCurrencies(): Collection
{
return TransactionCurrency::orderBy('code', 'ASC')->get();
}
/**
* @return string
*/
2016-04-05 15:00:03 -05:00
public function getCurrencyCode(): string
{
2015-07-10 00:39:59 -05:00
$cache = new CacheProperties;
$cache->addProperty('getCurrencyCode');
if ($cache->has()) {
2017-03-04 04:19:44 -06:00
return $cache->get(); // @codeCoverageIgnore
2015-07-10 00:39:59 -05:00
} else {
2016-09-18 12:57:21 -05:00
$currencyPreference = Prefs::get('currencyPreference', config('firefly.default_currency', 'EUR'));
2017-03-15 14:09:36 -05:00
$currency = TransactionCurrency::where('code', $currencyPreference->data)->first();
2015-07-10 00:39:59 -05:00
if ($currency) {
2015-07-10 00:39:59 -05:00
$cache->store($currency->code);
return $currency->code;
}
2016-09-18 12:57:21 -05:00
$cache->store(config('firefly.default_currency', 'EUR'));
2016-09-18 12:57:21 -05:00
return config('firefly.default_currency', 'EUR');
2015-07-10 00:39:59 -05:00
}
}
2016-01-20 08:23:36 -06:00
/**
* @return string
*/
2016-04-05 15:00:03 -05:00
public function getCurrencySymbol(): string
2016-01-20 08:23:36 -06:00
{
$cache = new CacheProperties;
$cache->addProperty('getCurrencySymbol');
if ($cache->has()) {
2017-03-04 04:19:44 -06:00
return $cache->get(); // @codeCoverageIgnore
2016-01-20 08:23:36 -06:00
} else {
2016-09-18 12:57:21 -05:00
$currencyPreference = Prefs::get('currencyPreference', config('firefly.default_currency', 'EUR'));
2017-03-15 14:09:36 -05:00
$currency = TransactionCurrency::where('code', $currencyPreference->data)->first();
2016-01-20 08:23:36 -06:00
$cache->store($currency->symbol);
return $currency->symbol;
}
}
2015-05-05 03:23:01 -05:00
/**
2017-03-18 01:45:40 -05:00
* @return TransactionCurrency
* @throws FireflyException
2015-05-05 03:23:01 -05:00
*/
2016-04-05 15:00:03 -05:00
public function getDefaultCurrency(): TransactionCurrency
{
2015-07-10 00:39:59 -05:00
$cache = new CacheProperties;
$cache->addProperty('getDefaultCurrency');
if ($cache->has()) {
2017-03-04 04:19:44 -06:00
return $cache->get(); // @codeCoverageIgnore
2015-07-10 00:39:59 -05:00
}
2016-09-18 12:57:21 -05:00
$currencyPreference = Prefs::get('currencyPreference', config('firefly.default_currency', 'EUR'));
2017-03-18 01:45:40 -05:00
$currency = TransactionCurrency::where('code', $currencyPreference->data)->first();
2017-03-15 14:09:36 -05:00
if (is_null($currency)) {
throw new FireflyException(sprintf('No currency found with code "%s"', $currencyPreference->data));
}
2015-07-10 00:39:59 -05:00
$cache->store($currency);
return $currency;
}
/**
* This method returns the correct format rules required by accounting.js,
* the library used to format amounts in charts.
*
* @param array $config
*
* @return array
*/
public function getJsConfig(array $config): array
{
$negative = self::getAmountJsConfig($config['n_sep_by_space'] === 1, $config['n_sign_posn'], $config['negative_sign'], $config['n_cs_precedes'] === 1);
$positive = self::getAmountJsConfig($config['p_sep_by_space'] === 1, $config['p_sign_posn'], $config['positive_sign'], $config['p_cs_precedes'] === 1);
return [
'pos' => $positive,
'neg' => $negative,
'zero' => $positive,
];
}
2015-03-29 01:14:32 -05:00
}