Page MenuHomePhabricator

D8520.diff
No OneTemporary

D8520.diff

diff --git a/src/applications/harbormaster/step/HarbormasterHTTPRequestBuildStepImplementation.php b/src/applications/harbormaster/step/HarbormasterHTTPRequestBuildStepImplementation.php
--- a/src/applications/harbormaster/step/HarbormasterHTTPRequestBuildStepImplementation.php
+++ b/src/applications/harbormaster/step/HarbormasterHTTPRequestBuildStepImplementation.php
@@ -16,7 +16,7 @@
$uri = new PhutilURI($settings['uri']);
$domain = $uri->getDomain();
- return pht('Make an HTTP request to %s', $domain);
+ return pht('Make an HTTP %s request to %s', $settings['method'], $domain);
}
public function execute(
@@ -34,8 +34,13 @@
$log_body = $build->createLog($build_target, $uri, 'http-body');
$start = $log_body->start();
+ $method = 'POST';
+ if ($settings['method'] !== '') {
+ $method = $settings['method'];
+ }
+
list($status, $body, $headers) = id(new HTTPSFuture($uri))
- ->setMethod('POST')
+ ->setMethod($method)
->setTimeout(60)
->resolve();
@@ -54,6 +59,12 @@
return false;
}
+ if ($settings['method'] === null || $settings['method'] != '' &&
+ !in_array ($settings['method'],
+ array('GET', 'PUT', 'DELETE', 'POST'))) {
+ return false;
+ }
+
return true;
}
@@ -64,6 +75,12 @@
'description' => pht('The URI to request.'),
'type' => BuildStepImplementation::SETTING_TYPE_STRING,
),
+ 'method' => array(
+ 'name' => 'Method',
+ 'description' =>
+ pht('Request type. Should be GET, POST, PUT, or DELETE.'),
+ 'type' => BuildStepImplementation::SETTING_TYPE_STRING,
+ ),
);
}

File Metadata

Mime Type
text/plain
Expires
Fri, May 10, 11:25 PM (3 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6284264
Default Alt Text
D8520.diff (1 KB)

Event Timeline