Completed
Push — master ( ceb9a8...527314 )
by ARCANEDEV
14s
created

GeocodingService::getDefaultQueryParams()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 6
ccs 3
cts 3
cp 1
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 0
crap 1
1
<?php namespace Arcanedev\GeoLocation\Google\Geocoding;
2
3
use Arcanedev\GeoLocation\Contracts\Entities\Coordinates\Position as PositionContract;
4
use Arcanedev\GeoLocation\Entities\Coordinates\Position;
5
use Arcanedev\GeoLocation\Google\AbstractService;
6
use GuzzleHttp\ClientInterface;
7
use Psr\Http\Message\ResponseInterface;
8
9
/**
10
 * Class     GeocodingService
11
 *
12
 * @package  Arcanedev\GeoLocation\Google\Geocoding
13
 * @author   ARCANEDEV <[email protected]>
14
 *
15
 * @link     https://developers.google.com/maps/documentation/geocoding/intro
16
 */
17
class GeocodingService extends AbstractService
18
{
19
    /* -----------------------------------------------------------------
20
     |  Constants
21
     | -----------------------------------------------------------------
22
     */
23
24
    const BASE_URL = 'https://maps.googleapis.com/maps/api/geocode/json';
25
26
    /* -----------------------------------------------------------------
27
     |  Constructor
28
     | -----------------------------------------------------------------
29
     */
30
31
    /**
32
     * GoogleDistanceMatrix constructor.
33
     *
34
     * @param  \GuzzleHttp\ClientInterface  $client
35
     */
36 9
    public function __construct(ClientInterface $client)
37
    {
38 9
        parent::__construct($client);
39
40 9
        $this->setKey(getenv('GOOGLE_MAPS_GEOCODING_KEY'));
41 9
    }
42
43
    /* -----------------------------------------------------------------
44
     |  Main Methods
45
     | -----------------------------------------------------------------
46
     */
47
48
    /**
49
     * Get the geocoding response.
50
     *
51
     * @param  string  $address
52
     * @param  array   $options
53
     *
54
     * @return \Arcanedev\GeoLocation\Google\Geocoding\GeocodingResponse
55
     */
56 3
    public function geocode($address, array $options = [])
57
    {
58 3
        $url = static::BASE_URL.$this->prepareQuery([
59 3
            'address' => urlencode($address)
60 1
        ]);
61
62 3
        return $this->get($url, $options);
63
    }
64
65
    /**
66
     * Reverse geocoding (address lookup).
67
     *
68
     * @param  \Arcanedev\GeoLocation\Contracts\Entities\Coordinates\Position  $position
69
     * @param  array                                               $options
70
     *
71
     * @return \Arcanedev\GeoLocation\Google\Geocoding\GeocodingResponse
72
     */
73 3
    public function reverse(PositionContract $position, array $options = [])
74
    {
75 3
        $url = static::BASE_URL.$this->prepareQuery([
76 3
            'latlng' => $this->parsePosition($position),
77 1
        ]);
78
79 3
        return $this->get($url, $options);
80
    }
81
82
    /**
83
     * Reverse geocoding (address lookup & simplified).
84
     *
85
     * @param  float  $lat
86
     * @param  float  $long
87
     * @param  array  $options
88
     *
89
     * @return \Arcanedev\GeoLocation\Google\Geocoding\GeocodingResponse
90
     */
91 3
    public function reversePosition($lat, $long, array $options = [])
92
    {
93 3
        return $this->reverse(Position::create($lat, $long), $options);
94
    }
95
96
    /* -----------------------------------------------------------------
97
     |  Other Methods
98
     | -----------------------------------------------------------------
99
     */
100
101
    /**
102
     * Prepare the response.
103
     *
104
     * @param  \Psr\Http\Message\ResponseInterface  $response
105
     *
106
     * @return \Arcanedev\GeoLocation\Google\Geocoding\GeocodingResponse
107
     */
108 6
    protected function prepareResponse(ResponseInterface $response)
109
    {
110 6
        return new GeocodingResponse(
111 6
            json_decode($response->getBody(), true)
112 2
        );
113
    }
114
}
115