Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111276324
HarbormasterHTTPRequestBuildStepImplementation.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Apr 30, 12:53
Size
1 KB
Mime Type
text/x-php
Expires
Fri, May 2, 12:53 (2 d)
Engine
blob
Format
Raw Data
Handle
25863819
Attached To
rPH Phabricator
HarbormasterHTTPRequestBuildStepImplementation.php
View Options
<?php
final
class
HarbormasterHTTPRequestBuildStepImplementation
extends
VariableBuildStepImplementation
{
public
function
getName
()
{
return
pht
(
'Make HTTP Request'
);
}
public
function
getGenericDescription
()
{
return
pht
(
'Make an HTTP request.'
);
}
public
function
getDescription
()
{
$settings
=
$this
->
getSettings
();
$uri
=
new
PhutilURI
(
$settings
[
'uri'
]);
$domain
=
$uri
->
getDomain
();
return
pht
(
'Make an HTTP request to %s'
,
$domain
);
}
public
function
execute
(
HarbormasterBuild
$build
,
HarbormasterBuildStep
$build_step
)
{
$settings
=
$this
->
getSettings
();
$variables
=
$this
->
retrieveVariablesFromBuild
(
$build
);
$uri
=
$this
->
mergeVariables
(
'vurisprintf'
,
$settings
[
'uri'
],
$variables
);
$log_body
=
$build
->
createLog
(
$build_step
,
$uri
,
'http-body'
);
$start
=
$log_body
->
start
();
list
(
$status
,
$body
,
$headers
)
=
id
(
new
HTTPSFuture
(
$uri
))
->
setMethod
(
'POST'
)
->
setTimeout
(
60
)
->
resolve
();
$log_body
->
append
(
$body
);
$log_body
->
finalize
(
$start
);
if
(
$status
->
getStatusCode
()
!=
200
)
{
$build
->
setBuildStatus
(
HarbormasterBuild
::
STATUS_FAILED
);
}
}
public
function
validateSettings
()
{
$settings
=
$this
->
getSettings
();
if
(
$settings
[
'uri'
]
===
null
||
!
is_string
(
$settings
[
'uri'
]))
{
return
false
;
}
return
true
;
}
public
function
getSettingDefinitions
()
{
return
array
(
'uri'
=>
array
(
'name'
=>
'URI'
,
'description'
=>
pht
(
'The URI to request.'
),
'type'
=>
BuildStepImplementation
::
SETTING_TYPE_STRING
,
),
);
}
}
Event Timeline
Log In to Comment