Page MenuHomePhabricator

D10960.id26316.diff
No OneTemporary

D10960.id26316.diff

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

Mime Type
text/plain
Expires
Fri, Mar 7, 8:42 AM (3 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7328568
Default Alt Text
D10960.id26316.diff (1 KB)

Event Timeline