aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/commerceguys/intl/src/NumberFormat/NumberFormatRepository.php
blob: 368eb7e2be403df6ef4ecf5909a0be24026b4e2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php

namespace CommerceGuys\Intl\NumberFormat;

use CommerceGuys\Intl\LocaleResolverTrait;

/**
 * Repository for number formats based on JSON definitions.
 */
class NumberFormatRepository implements NumberFormatRepositoryInterface
{
    use LocaleResolverTrait;

    /**
     * Number formats.
     *
     * @var array
     */
    protected $numberFormats = [];

    /**
     * Creates a NumberFormatRepository instance.
     *
     * @param string $definitionPath The path to the number format definitions.
     *                               Defaults to 'resources/number_format'.
     */
    public function __construct($definitionPath = null)
    {
        $this->definitionPath = $definitionPath ? $definitionPath : __DIR__ . '/../../resources/number_format/';
    }

    /**
     * {@inheritdoc}
     */
    public function get($locale, $fallbackLocale = null)
    {
        $locale = $this->resolveLocale($locale, $fallbackLocale);
        if (!isset($this->numberFormats[$locale])) {
            $filename = $this->definitionPath . $locale . '.json';
            $definition = json_decode(file_get_contents($filename), true);
            $this->numberFormats[$locale] = $this->createNumberFormatFromDefinition($definition, $locale);
        }

        return $this->numberFormats[$locale];
    }

    /**
     * Creates a number format object from the provided definition.
     *
     * @param array  $definition The number format definition.
     * @param string $locale     The locale of the number format definition.
     *
     * @return NumberFormat
     */
    protected function createNumberFormatFromDefinition(array $definition, $locale)
    {
        if (!isset($definition['decimal_separator'])) {
            $definition['decimal_separator'] = '.';
        }
        if (!isset($definition['grouping_separator'])) {
            $definition['grouping_separator'] = ',';
        }
        if (!isset($definition['plus_sign'])) {
            $definition['plus_sign'] = '+';
        }
        if (!isset($definition['minus_sign'])) {
            $definition['minus_sign'] = '-';
        }
        if (!isset($definition['percent_sign'])) {
            $definition['percent_sign'] = '%';
        }

        $numberFormat = new NumberFormat();
        $setValues = \Closure::bind(function ($definition, $locale) {
            $this->locale = $locale;
            $this->numberingSystem = $definition['numbering_system'];
            $this->decimalSeparator = $definition['decimal_separator'];
            $this->groupingSeparator = $definition['grouping_separator'];
            $this->plusSign = $definition['plus_sign'];
            $this->minusSign = $definition['minus_sign'];
            $this->percentSign = $definition['percent_sign'];
            $this->decimalPattern = $definition['decimal_pattern'];
            $this->percentPattern = $definition['percent_pattern'];
            $this->currencyPattern = $definition['currency_pattern'];
            $this->accountingCurrencyPattern = $definition['accounting_currency_pattern'];
        }, $numberFormat, '\CommerceGuys\Intl\NumberFormat\NumberFormat');
        $setValues($definition, $locale);

        return $numberFormat;
    }
}