GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 98364d...4f9955 )
by Eric
09:20 queued 03:56
created

DistanceMatrixService   A

Complexity

Total Complexity 16

Size/Duplication

Total Lines 152
Duplicated Lines 9.21 %

Coupling/Cohesion

Components 1
Dependencies 10

Importance

Changes 2
Bugs 0 Features 1
Metric Value
wmc 16
c 2
b 0
f 1
lcom 1
cbo 10
dl 14
loc 152
rs 10

10 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A process() 14 14 1
A buildResponse() 0 10 1
A buildRows() 0 10 2
A buildRow() 0 7 1
A buildElements() 0 10 2
B buildElement() 0 23 5
A buildDistance() 0 4 1
A buildDuration() 0 4 1
A buildFare() 0 4 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
/*
4
 * This file is part of the Ivory Google Map package.
5
 *
6
 * (c) Eric GELOEN <[email protected]>
7
 *
8
 * For the full copyright and license information, please read the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Ivory\GoogleMap\Service\DistanceMatrix;
13
14
use Http\Client\HttpClient;
15
use Http\Message\MessageFactory;
16
use Ivory\GoogleMap\Service\AbstractService;
17
use Ivory\GoogleMap\Service\Base\Distance;
18
use Ivory\GoogleMap\Service\Base\Duration;
19
use Ivory\GoogleMap\Service\Base\Fare;
20
use Ivory\GoogleMap\Service\DistanceMatrix\Request\DistanceMatrixRequestInterface;
21
use Ivory\GoogleMap\Service\DistanceMatrix\Response\DistanceMatrixElement;
22
use Ivory\GoogleMap\Service\DistanceMatrix\Response\DistanceMatrixResponse;
23
use Ivory\GoogleMap\Service\DistanceMatrix\Response\DistanceMatrixRow;
24
use Ivory\GoogleMap\Service\Utility\Parser;
25
26
/**
27
 * @author GeLo <[email protected]>
28
 */
29
class DistanceMatrixService extends AbstractService
30
{
31
    /**
32
     * @param HttpClient     $client
33
     * @param MessageFactory $messageFactory
34
     * @param Parser|null    $parser
35
     */
36
    public function __construct(HttpClient $client, MessageFactory $messageFactory, Parser $parser = null)
37
    {
38
        parent::__construct($client, $messageFactory, 'http://maps.googleapis.com/maps/api/distancematrix', $parser);
39
    }
40
41
    /**
42
     * @param DistanceMatrixRequestInterface $request
43
     *
44
     * @return DistanceMatrixResponse
45
     */
46 View Code Duplication
    public function process(DistanceMatrixRequestInterface $request)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in 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...
47
    {
48
        $response = $this->getClient()->sendRequest($this->createRequest($request->build()));
49
        $data = $this->parse((string) $response->getBody(), [
50
            'pluralization_rules' => [
51
                'destination_address' => 'destination_addresses',
52
                'element'             => 'elements',
53
                'origin_address'      => 'origin_addresses',
54
                'row'                 => 'rows',
55
            ],
56
        ]);
57
58
        return $this->buildResponse($data);
59
    }
60
61
    /**
62
     * @param mixed[] $data
63
     *
64
     * @return DistanceMatrixResponse
65
     */
66
    private function buildResponse(array $data)
67
    {
68
        $response = new DistanceMatrixResponse();
69
        $response->setStatus($data['status']);
70
        $response->setDestinations($data['destination_addresses']);
71
        $response->setOrigins($data['origin_addresses']);
72
        $response->setRows($this->buildRows($data['rows']));
73
74
        return $response;
75
    }
76
77
    /**
78
     * @param mixed[] $data
79
     *
80
     * @return DistanceMatrixRow[]
81
     */
82
    private function buildRows($data)
83
    {
84
        $rows = [];
85
86
        foreach ($data as $row) {
87
            $rows[] = $this->buildRow($row);
88
        }
89
90
        return $rows;
91
    }
92
93
    /**
94
     * @param mixed[] $data
95
     *
96
     * @return DistanceMatrixRow
97
     */
98
    private function buildRow($data)
99
    {
100
        $row = new DistanceMatrixRow();
101
        $row->setElements($this->buildElements($data['elements']));
102
103
        return $row;
104
    }
105
106
    /**
107
     * @param mixed[] $data
108
     *
109
     * @return DistanceMatrixElement[]
110
     */
111
    private function buildElements(array $data)
112
    {
113
        $elements = [];
114
115
        foreach ($data as $element) {
116
            $elements[] = $this->buildElement($element);
117
        }
118
119
        return $elements;
120
    }
121
122
    /**
123
     * @param mixed[] $data
124
     *
125
     * @return DistanceMatrixElement
126
     */
127
    private function buildElement(array $data)
128
    {
129
        $element = new DistanceMatrixElement();
130
        $element->setStatus($data['status']);
131
132
        if (isset($data['distance'])) {
133
            $element->setDistance($this->buildDistance($data['distance']));
134
        }
135
136
        if (isset($data['duration'])) {
137
            $element->setDuration($this->buildDuration($data['duration']));
138
        }
139
140
        if (isset($data['duration_in_traffic'])) {
141
            $element->setDurationInTraffic($this->buildDuration($data['duration_in_traffic']));
142
        }
143
144
        if (isset($data['fare'])) {
145
            $element->setFare($this->buildFare($data['fare']));
146
        }
147
148
        return $element;
149
    }
150
151
    /**
152
     * @param mixed[] $data
153
     *
154
     * @return Distance
155
     */
156
    private function buildDistance(array $data)
157
    {
158
        return new Distance($data['value'], $data['text']);
159
    }
160
161
    /**
162
     * @param mixed[] $data
163
     *
164
     * @return Duration
165
     */
166
    private function buildDuration(array $data)
167
    {
168
        return new Duration($data['value'], $data['text']);
169
    }
170
171
    /**
172
     * @param mixed[] $data
173
     *
174
     * @return Fare
175
     */
176
    private function buildFare(array $data)
177
    {
178
        return new Fare($data['value'], $data['currency'], $data['text']);
179
    }
180
}
181