Skip to content

Commit 7cd461e

Browse files
committed
Add support for http proxy
1 parent 4ccd842 commit 7cd461e

File tree

6 files changed

+41
-4
lines changed

6 files changed

+41
-4
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
#Changelog
22
All Notable changes to `trello-php` will be documented in this file
33

4+
## 0.4.0 - 2016-09-23
5+
6+
### Added
7+
- Add support for HTTP proxy configuration.
8+
9+
### Deprecated
10+
- Nothing
11+
12+
### Fixed
13+
- Nothing
14+
15+
### Removed
16+
- Nothing
17+
18+
### Security
19+
- Nothing
20+
421
## 0.3.6 - 2015-10-26
522

623
### Added

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Setting | Description
4242
`callbackUrl` | Required when using package to help get access tokens.
4343
`expiration` | Required when using package to help get access tokens.
4444
`scope` | Required when using package to help get access tokens.
45+
`proxy` | Optional setting to declare a host to use for proxy; [Read more on the Guzzle Docs](http://docs.guzzlephp.org/en/latest/request-options.html#proxy).
4546

4647
#### Set configuration when creating client
4748

src/Client.php

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class Client
1818
protected static $defaultOptions = [
1919
'domain' => 'https://trello.com',
2020
'key' => null,
21+
'proxy' => null,
2122
'version' => '1',
2223
'secret' => null,
2324
];

src/Http.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@ protected function sendRequest(RequestInterface $request)
231231
{
232232
try {
233233
$response = $this->httpClient->send($request, [
234-
'multipart' => $this->multipartResources
234+
'multipart' => $this->multipartResources,
235+
'proxy' => Configuration::get('proxy')
235236
]);
236237

237238
$this->multipartResources = [];

tests/ApiTestTrait.php

-1
Original file line numberDiff line numberDiff line change
@@ -3888,5 +3888,4 @@ public function testUpdateWebhookIdModel()
38883888

38893889
$this->assertExpectedEqualsResult($payload, $result);
38903890
}
3891-
38923891
}

tests/ClientTest.php

+20-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ protected function getTestString()
7979
return uniqid();
8080
}
8181

82-
protected function prepareFor($method, $path, $query = "", $payload = [], $status = 200)
82+
protected function prepareFor($method, $path, $query = "", $payload = [], $status = 200, $proxy = null)
8383
{
8484
$path = $this->getFullPathFromPath($path);
8585
$domain = $this->getDomain();
@@ -95,7 +95,10 @@ protected function prepareFor($method, $path, $query = "", $payload = [], $statu
9595
&& strpos($uri->getQuery(), $authorizedQuery) > -1;
9696
});
9797

98-
$requestOptions = m::on(function ($options) {
98+
$requestOptions = m::on(function ($options) use ($proxy) {
99+
if ($proxy && (!isset($options['proxy']) || $options['proxy'] != $proxy)) {
100+
return false;
101+
}
99102
return is_array($options);
100103
});
101104

@@ -200,4 +203,19 @@ public function testBadMethodCallThrowsException()
200203

201204
$result = $this->client->$method();
202205
}
206+
207+
public function testGetCurrentUserWithProxy()
208+
{
209+
$proxy = $this->getTestString();
210+
$payload = $this->getSuccessPayload();
211+
$this->prepareFor("GET", "/members/me", "", $payload, 200, $proxy);
212+
213+
$this->client->addConfig('proxy', $proxy);
214+
215+
$result = $this->client->getCurrentUser();
216+
217+
$this->client->addConfig('proxy', null);
218+
219+
$this->assertExpectedEqualsResult($payload, $result);
220+
}
203221
}

0 commit comments

Comments
 (0)