Completed
Push — master ( 11cbba...433ba8 )
by Nikola
02:35
created

Manager::today()   A

Complexity

Conditions 4
Paths 3

Size

Total Lines 17
Code Lines 10

Duplication

Lines 3
Ratio 17.65 %

Code Coverage

Tests 9
CRAP Score 4.016

Importance

Changes 0
Metric Value
dl 3
loc 17
ccs 9
cts 10
cp 0.9
rs 9.2
c 0
b 0
f 0
cc 4
eloc 10
nc 3
nop 3
crap 4.016
1
<?php
0 ignored issues
show
Coding Style Compatibility introduced by
For compatibility and reusability of your code, PSR1 recommends that a file should introduce either new symbols (like classes, functions, etc.) or have side-effects (like outputting something, or including other files), but not both at the same time. The first symbol is defined on line 31 and the first side effect is on line 80.

The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.

The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.

To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.

Loading history...
2
/*
3
 * This file is part of the Exchange Rate package, an RunOpenCode project.
4
 *
5
 * (c) 2017 RunOpenCode
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
namespace RunOpenCode\ExchangeRate;
11
12
use RunOpenCode\ExchangeRate\Contract\ManagerInterface;
13
use RunOpenCode\ExchangeRate\Contract\ProcessorInterface;
14
use RunOpenCode\ExchangeRate\Contract\ProcessorsRegistryInterface;
15
use RunOpenCode\ExchangeRate\Contract\RatesConfigurationRegistryInterface;
16
use RunOpenCode\ExchangeRate\Contract\RepositoryInterface;
17
use RunOpenCode\ExchangeRate\Contract\SourceInterface;
18
use RunOpenCode\ExchangeRate\Contract\SourcesRegistryInterface;
19
use RunOpenCode\ExchangeRate\Enum\RateType;
20
use RunOpenCode\ExchangeRate\Exception\ExchangeRateException;
21
use RunOpenCode\ExchangeRate\Log\LoggerAwareTrait;
22
use RunOpenCode\ExchangeRate\Utils\CurrencyCodeUtil;
23
24
/**
25
 * Class Manager
26
 *
27
 * Default implementation of manager.
28
 *
29
 * @package RunOpenCode\ExchangeRate
30
 */
31
class Manager implements ManagerInterface
32
{
33
    use LoggerAwareTrait;
34
35
    /**
36
     * @var string
37
     */
38
    protected $baseCurrency;
39
40
    /**
41
     * @var RepositoryInterface
42
     */
43
    protected $repository;
44
45
    /**
46
     * @var SourcesRegistryInterface
47
     */
48
    protected $sources;
49
50
    /**
51
     * @var ProcessorsRegistryInterface
52
     */
53
    protected $processors;
54
55
    /**
56
     * @var RatesConfigurationRegistryInterface
57
     */
58
    protected $configurations;
59
60 10
    public function __construct($baseCurrency, RepositoryInterface $repository, SourcesRegistryInterface $sources, ProcessorsRegistryInterface $processors, RatesConfigurationRegistryInterface $configurations)
61
    {
62 10
        $this->baseCurrency = CurrencyCodeUtil::clean($baseCurrency);
63 10
        $this->repository = $repository;
64 10
        $this->configurations = $configurations;
65 10
        $this->sources = $sources;
66 10
        $this->processors = $processors;
67 10
    }
68
69
    /**
70
     * {@inheritdoc}
71
     */
72 8
    public function has($sourceName, $currencyCode, \DateTime $date = null, $rateType = RateType::DEFAULT)
0 ignored issues
show
Coding Style introduced by
Possible parse error: non-abstract method defined as abstract
Loading history...
Coding Style introduced by
It is generally advisable to only define one property per statement.

Only declaring a single property per statement allows you to later on add doc comments more easily.

It is also recommended by PSR2, so it is a common style that many people expect.

Loading history...
73
    {
74 8
        return $this->repository->has($sourceName, CurrencyCodeUtil::clean($currencyCode), $date, $rateType);
75
    }
76
77
    /**
78
     * {@inheritdoc}
79
     */
80 6
    public function get($sourceName, $currencyCode, \DateTime $date = null, $rateType = RateType::DEFAULT)
81
    {
82 6
        return $this->repository->get($sourceName, CurrencyCodeUtil::clean($currencyCode), $date, $rateType);
83
    }
84
85
    /**
86
     * {@inheritdoc}
87
     */
88 2
    public function latest($sourceName, $currencyCode, $rateType = RateType::DEFAULT)
89
    {
90 2
        return $this->repository->latest($sourceName, CurrencyCodeUtil::clean($currencyCode), $rateType);
91
    }
92
93
    /**
94
     * {@inheritdoc}
95
     */
96 4
    public function today($sourceName, $currencyCode, $rateType = RateType::DEFAULT)
97
    {
98 4
        $currencyCode = CurrencyCodeUtil::clean($currencyCode);
99 4
        $today = new \DateTime('now');
100
101 4
        if ($this->has($sourceName, $currencyCode, $today, $rateType)) {
102 2
            return $this->get($sourceName, $currencyCode, $today, $rateType);
103
        }
104
105 2 View Code Duplication
        if ((int)$today->format('N') >= 6 && $this->has($sourceName, $currencyCode, $lastFriday = new \DateTime('last Friday'), $rateType)) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
106
            return $this->get($sourceName, $currencyCode, $lastFriday, $rateType);
107
        }
108
109 2
        $message = sprintf('Rate for currency code "%s" of type "%s" from source "%s" is not available for today "%s".', $currencyCode, $rateType, $sourceName, date('Y-m-d'));
110 2
        $this->getLogger()->critical($message);
111 2
        throw new ExchangeRateException($message);
112
    }
113
114
    /**
115
     * {@inheritdoc}
116
     */
117 2
    public function historical($sourceName, $currencyCode, \DateTime $date, $rateType = RateType::DEFAULT)
118
    {
119 2
        $currencyCode = CurrencyCodeUtil::clean($currencyCode);
120
121 2
        if ($this->has($sourceName, $currencyCode, $date, $rateType)) {
122 2
            return $this->get($sourceName, $currencyCode, $date, $rateType);
123
        }
124
125
        if ((int)$date->format('N') === 6 && $this->has($sourceName, $currencyCode, $lastFriday = $date->sub(new \DateInterval('P1D')), $rateType)) {
126
            return $this->get($sourceName, $currencyCode, $lastFriday, $rateType);
127 View Code Duplication
        } elseif ((int)$date->format('N') === 7 && $this->has($sourceName, $currencyCode, $lastFriday = $date->sub(new \DateInterval('P2D')), $rateType)) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
128
            return $this->get($sourceName, $currencyCode, $lastFriday, $rateType);
129
        }
130
131
        $message = sprintf('Rate for currency code "%s" of type "%s" from source "%s" is not available for historical date "%s".', $currencyCode, $rateType, $sourceName, $date->format('Y-m-d'));
132
        $this->getLogger()->critical($message);
133
        throw new ExchangeRateException($message);
134
    }
135
136
    /**
137
     * {@inheritdoc}
138
     */
139 2
    public function fetch($sourceName = null, \DateTime $date = null)
140
    {
141 2
        $rates = array();
142
143 2
        $filteredSourceNames = ($sourceName === null) ? array_map(function(SourceInterface $source) {
144
            return $source->getName();
145 2
        }, $this->sources->all()) : (array) $sourceName;
146
147 2
        foreach ($filteredSourceNames as $name) {
148
149 2
            $source = $this->sources->get($name);
150
151 2
            $filteredConfigurations = $this->configurations->all(array(
152 2
                'sourceName' => $name
153
            ));
154
155
            /**
156
             * @var Configuration $configuration
157
             */
158 2
            foreach ($filteredConfigurations as $configuration) {
159 2
                $rates[] = $source->fetch($configuration->getCurrencyCode(), $configuration->getRateType(), $date);
160
            }
161
        }
162
163
        /**
164
         * @var ProcessorInterface $processor
165
         */
166 2
        foreach ($this->processors->all() as $processor) {
167 2
            $rates = $processor->process($this->baseCurrency, $this->configurations, $rates);
168
        }
169
170 2
        $this->repository->save($rates);
171
172 2
        return $rates;
173
    }
174
}
175