Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15465638
D10960.id26326.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D10960.id26326.diff
View Options
diff --git a/src/conduit/ConduitClient.php b/src/conduit/ConduitClient.php
--- a/src/conduit/ConduitClient.php
+++ b/src/conduit/ConduitClient.php
@@ -3,6 +3,7 @@
final class ConduitClient {
private $uri;
+ private $host;
private $connectionID;
private $sessionKey;
private $timeout = 300.0;
@@ -24,6 +25,22 @@
if (!strlen($this->uri->getDomain())) {
throw new Exception("Conduit URI '{$uri}' must include a valid host.");
}
+ $this->host = $this->uri->getDomain();
+ }
+
+ /**
+ * Override the domain specified in the service URI and provide a specific
+ * host identity.
+ *
+ * This can be used to connect to a specific node in a cluster environment.
+ */
+ public function setHost($host) {
+ $this->host = $host;
+ return $this;
+ }
+
+ public function getHost() {
+ return $this->host;
}
public function callMethodSynchronous($method, array $params) {
@@ -102,6 +119,7 @@
// Always use the cURL-based HTTPSFuture, for proxy support and other
// protocol edge cases that HTTPFuture does not support.
$core_future = new HTTPSFuture($uri, $data);
+ $core_future->addHeader('Host', $this->getHost());
$core_future->setMethod('POST');
$core_future->setTimeout($this->timeout);
@@ -127,8 +145,9 @@
}
private function getHostString() {
+ $host = $this->getHost();
+
$uri = new PhutilURI($this->uri);
- $host = $uri->getDomain();
$port = $uri->getPort();
if (!$port) {
switch ($uri->getProtocol()) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Apr 3, 9:40 PM (1 d, 1 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7328568
Default Alt Text
D10960.id26326.diff (1 KB)
Attached To
Mode
D10960: Allow ConduitClient to specify an explicit Host
Attached
Detach File
Event Timeline
Log In to Comment