Skip to content

Commit cc36f0e

Browse files
authored
Merge pull request #121 from mlocati/extra_headers-v2
Allow specifying custom headers to be included in requests
2 parents 18715eb + 568ae5b commit cc36f0e

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/Client.php

+19
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ class Client
5757
const OPT_USE_CURL = 'use_curl';
5858
const OPT_VERIFY_HOST = 'verifyhost';
5959
const OPT_VERIFY_PEER = 'verifypeer';
60+
const OPT_EXTRA_HEADERS = 'extra_headers';
6061

6162
/** @var string */
6263
protected static $requestClass = '\\PhpXmlRpc\\Request';
@@ -258,6 +259,13 @@ class Client
258259
*/
259260
protected $user_agent;
260261

262+
/**
263+
* Additional headers to be included in the requests.
264+
*
265+
* @var string[]
266+
*/
267+
protected $extra_headers = array();
268+
261269
/**
262270
* CURL handle: used for keep-alive
263271
* @internal
@@ -299,6 +307,7 @@ class Client
299307
self::OPT_USERNAME,
300308
self::OPT_VERIFY_HOST,
301309
self::OPT_VERIFY_PEER,
310+
self::OPT_EXTRA_HEADERS,
302311
);
303312

304313
/**
@@ -999,6 +1008,11 @@ protected function sendViaSocket($req, $method, $server, $port, $path, $opts)
9991008
$cookieHeader = 'Cookie:' . $version . substr($cookieHeader, 0, -1) . "\r\n";
10001009
}
10011010

1011+
$extraHeaders = '';
1012+
if (!empty($this->extra_headers) && is_array($this->extra_headers)) {
1013+
$extraHeaders = implode("\r\n", $this->extra_headers) . "\r\n";
1014+
}
1015+
10021016
// omit port if default
10031017
if (($port == 80 && in_array($method, array('http', 'http10'))) || ($port == 443 && $method == 'https')) {
10041018
$port = '';
@@ -1015,6 +1029,7 @@ protected function sendViaSocket($req, $method, $server, $port, $path, $opts)
10151029
$encodingHdr .
10161030
'Accept-Charset: ' . implode(',', $opts['accepted_charset_encodings']) . "\r\n" .
10171031
$cookieHeader .
1032+
$extraHeaders .
10181033
'Content-Type: ' . $req->getContentType() . "\r\nContent-Length: " .
10191034
strlen($payload) . "\r\n\r\n" .
10201035
$payload;
@@ -1340,6 +1355,10 @@ protected function createCURLHandle($req, $method, $server, $port, $path, $opts)
13401355
$headers[] = $encodingHdr;
13411356
}
13421357

1358+
if (!empty($this->extra_headers) && is_array($this->extra_headers)) {
1359+
$headers = array_merge($headers, $this->extra_headers);
1360+
}
1361+
13431362
// Fix the HTTP/1.1 417 Expectation Failed Bug (curl by default adds a 'Expect: 100-continue' header when POST
13441363
// size exceeds 1025 bytes, apparently)
13451364
$headers[] = 'Expect:';

0 commit comments

Comments
 (0)