1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the Concise package. |
5
|
|
|
* |
6
|
|
|
* (c) Antoine Corcy <[email protected]> |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace Concise\Provider; |
13
|
|
|
|
14
|
|
|
use Concise\Provider; |
15
|
|
|
use Http\Client\HttpClient; |
16
|
|
|
use Http\Message\RequestFactory; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* @author Antoine Corcy <[email protected]> |
20
|
|
|
*/ |
21
|
|
|
class Google implements Provider |
22
|
|
|
{ |
23
|
|
|
/** |
24
|
|
|
* @var string |
25
|
|
|
*/ |
26
|
|
|
const ENDPOINT = 'https://www.googleapis.com/urlshortener/v1/url'; |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* @var HttpClient |
30
|
|
|
*/ |
31
|
|
|
private $httpClient; |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* @var RequestFactory |
35
|
|
|
*/ |
36
|
|
|
private $requestFactory; |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* @var string|null |
40
|
|
|
*/ |
41
|
|
|
private $apiKey; |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* @param HttpClient $httpClient |
45
|
|
|
* @param RequestFactory $requestFactory |
46
|
|
|
* @param string|null $apiKey |
47
|
|
|
*/ |
48
|
4 |
|
public function __construct(HttpClient $httpClient, RequestFactory $requestFactory, $apiKey = null) |
49
|
|
|
{ |
50
|
4 |
|
$this->httpClient = $httpClient; |
51
|
4 |
|
$this->requestFactory = $requestFactory; |
52
|
4 |
|
$this->apiKey = $apiKey; |
53
|
4 |
|
} |
54
|
|
|
|
55
|
|
|
/** |
56
|
|
|
* {@inheritdoc} |
57
|
|
|
*/ |
58
|
1 |
|
public function shorten($url) |
59
|
|
|
{ |
60
|
1 |
|
$headers = ['Content-Type' => 'application/json']; |
61
|
|
|
|
62
|
1 |
|
$body = json_encode([ |
63
|
1 |
|
'key' => $this->apiKey, |
64
|
1 |
|
'longUrl' => $url, |
65
|
1 |
|
]); |
66
|
|
|
|
67
|
1 |
|
$request = $this->requestFactory->createRequest('POST', self::ENDPOINT, $headers, $body); |
68
|
|
|
|
69
|
1 |
|
$response = $this->httpClient->sendRequest($request); |
70
|
|
|
|
71
|
1 |
|
$response = json_decode((string) $response->getBody()); |
72
|
|
|
|
73
|
1 |
|
return $response->id; |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
/** |
77
|
|
|
* {@inheritdoc} |
78
|
|
|
*/ |
79
|
1 |
|
public function expand($url) |
80
|
|
|
{ |
81
|
1 |
|
$url = sprintf('%s?%s', self::ENDPOINT, http_build_query([ |
82
|
1 |
|
'key' => $this->apiKey, |
83
|
1 |
|
'shortUrl' => $url, |
84
|
1 |
|
])); |
85
|
|
|
|
86
|
1 |
|
$request = $this->requestFactory->createRequest('GET', $url); |
87
|
|
|
|
88
|
1 |
|
$response = $this->httpClient->sendRequest($request); |
89
|
|
|
|
90
|
1 |
|
$response = json_decode((string) $response->getBody()); |
91
|
|
|
|
92
|
1 |
|
return $response->longUrl; |
93
|
|
|
} |
94
|
|
|
} |
95
|
|
|
|