Skip to content

Commit 5ee6c1e

Browse files
committed
Make sure we do not have to use discovery
1 parent a84236a commit 5ee6c1e

File tree

5 files changed

+75
-10
lines changed

5 files changed

+75
-10
lines changed

Readme.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -43,25 +43,31 @@ composer require php-http/guzzle6-adapter
4343

4444
If you are updating form a previous version make sure to read [the upgrade documentation](Upgrade.md).
4545

46-
### Auto discovery with Puli
46+
### Finding the HTTP client.
4747

48-
This library has a dependency on `php-http/discovery` that will find a HTTP client and a library that can
49-
create PSR-7 messages that you already have installed. It uses [Puli](http://docs.puli.io/en/latest/) for the actual
50-
discovery. If you do not know about Puli yet you should check it out.
48+
The LinkedIn client need to know what library you are using to send HTTP messages. You could provide an instance of
49+
HttpClient and MessageFactory or you could fallback on auto discovery. Below is an example on where you provide a Guzzle6
50+
instance.
5151

52-
Puli is in currently under delveopment but they are aiming for a stable release in Mars 2016. To be able to use the beta
53-
version of Puli you need to add the following packages to your composer.json.
52+
```php
53+
$linkedIn=new Happyr\LinkedIn\LinkedIn('app_id', 'app_secret');
54+
$linkedIn->setHttpClient(new \Http\Adapter\Guzzle6\Client());
55+
$linkedIn->setHttpMessageFactory(new Http\Message\MessageFactory\GuzzleMessageFactory());
5456

57+
```
58+
59+
If you do not provide anything we will fallback on using auto discovery with [Puli](http://docs.puli.io/en/latest/). It will automatically find the
60+
client you have installed. In order to use Puli you need to add the following to your composer.json.
5561
```json
5662
"require": {
57-
// ...
5863
"puli/composer-plugin": "^1.0.0-beta9",
5964
"puli/repository": "^1.0-beta9",
6065
"puli/discovery": "^1.0-beta9",
6166
"puli/url-generator": "^1.0-beta4"
6267
},
6368
```
6469

70+
6571
## Usage
6672

6773
In order to use this API client (or any other LinkedIn clients) you have to [register your application][register-app]

composer.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@
1616
"php": ">=5.4",
1717
"php-http/client-implementation": "^1.0",
1818
"php-http/httplug": "^1.0",
19-
"php-http/discovery": "^0.7|^0.8"
19+
"php-http/message": "^1.0",
20+
"php-http/message-factory": "^1.0",
21+
"php-http/discovery": "^0.8"
2022
},
2123
"require-dev": {
22-
"php-http/guzzle5-adapter": "^0.4",
24+
"php-http/guzzle5-adapter": "^0.5",
2325
"guzzlehttp/psr7": "^1.2",
2426
"mockery/mockery": "^0.9",
2527
"illuminate/support": "^5.0"

src/Http/RequestManager.php

+37-1
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,31 @@
77
use Http\Client\HttpClient;
88
use Http\Discovery\HttpClientDiscovery;
99
use Http\Discovery\MessageFactoryDiscovery;
10+
use Http\Message\MessageFactory;
1011

12+
/**
13+
* A class to create HTTP requests and to send them.
14+
*
15+
* @author Tobias Nyholm <[email protected]>
16+
*/
1117
class RequestManager implements RequestManagerInterface
1218
{
1319
/**
1420
* @var \Http\Client\HttpClient
1521
*/
1622
private $httpClient;
1723

24+
/**
25+
* @var \Http\Message\MessageFactory
26+
*/
27+
private $messageFactory;
28+
1829
/**
1930
* {@inheritdoc}
2031
*/
2132
public function sendRequest($method, $uri, array $headers = [], $body = null, $protocolVersion = '1.1')
2233
{
23-
$request = MessageFactoryDiscovery::find()->createRequest($method, $uri, $headers, $body, $protocolVersion);
34+
$request = $this->getMessageFactory()->createRequest($method, $uri, $headers, $body, $protocolVersion);
2435

2536
try {
2637
return $this->getHttpClient()->sendRequest($request);
@@ -50,4 +61,29 @@ protected function getHttpClient()
5061

5162
return $this->httpClient;
5263
}
64+
65+
/**
66+
* @param MessageFactory $messageFactory
67+
*
68+
* @return RequestManager
69+
*/
70+
public function setMessageFactory(MessageFactory $messageFactory)
71+
{
72+
$this->messageFactory = $messageFactory;
73+
74+
return $this;
75+
}
76+
77+
/**
78+
*
79+
* @return \Http\Message\MessageFactory
80+
*/
81+
private function getMessageFactory()
82+
{
83+
if ($this->messageFactory === null) {
84+
$this->messageFactory = MessageFactoryDiscovery::find();
85+
}
86+
87+
return $this->messageFactory;
88+
}
5389
}

src/LinkedIn.php

+11
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
use Happyr\LinkedIn\Http\UrlGeneratorInterface;
1111
use Happyr\LinkedIn\Storage\DataStorageInterface;
1212
use Http\Client\HttpClient;
13+
use Http\Message\MessageFactory;
1314
use Psr\Http\Message\ResponseInterface;
1415

1516
/**
@@ -354,6 +355,16 @@ public function setHttpClient(HttpClient $client)
354355
return $this;
355356
}
356357

358+
/**
359+
* {@inheritdoc}
360+
*/
361+
public function setHttpMessageFactory(MessageFactory $factory)
362+
{
363+
$this->getRequestManager()->setMessageFactory($factory);
364+
365+
return $this;
366+
}
367+
357368
/**
358369
* @return RequestManager
359370
*/

src/LinkedInInterface.php

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use Happyr\LinkedIn\Http\UrlGeneratorInterface;
77
use Happyr\LinkedIn\Storage\DataStorageInterface;
88
use Http\Client\HttpClient;
9+
use Http\Message\MessageFactory;
910
use Psr\Http\Message\ResponseInterface;
1011

1112
/**
@@ -165,4 +166,13 @@ public function setStorage(DataStorageInterface $storage);
165166
* @return $this
166167
*/
167168
public function setHttpClient(HttpClient $client);
169+
170+
/**
171+
* Set a http message factory.
172+
*
173+
* @param MessageFactory $factory
174+
*
175+
* @return $this
176+
*/
177+
public function setHttpMessageFactory(MessageFactory $factory);
168178
}

0 commit comments

Comments
 (0)