Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122100663
UploadArtifactBuildStepImplementation.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
Tue, Jul 15, 18:57
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Jul 17, 18:57 (2 d)
Engine
blob
Format
Raw Data
Handle
27383216
Attached To
rPH Phabricator
UploadArtifactBuildStepImplementation.php
View Options
<?php
final
class
UploadArtifactBuildStepImplementation
extends
BuildStepImplementation
{
public
function
getName
()
{
return
pht
(
'Upload Artifact'
);
}
public
function
getGenericDescription
()
{
return
pht
(
'Upload an artifact from a Drydock host to Phabricator.'
);
}
public
function
getDescription
()
{
$settings
=
$this
->
getSettings
();
return
pht
(
'Upload artifact located at
\'
%s
\'
on
\'
%s
\'
.'
,
$settings
[
'path'
],
$settings
[
'hostartifact'
]);
}
public
function
execute
(
HarbormasterBuild
$build
,
HarbormasterBuildTarget
$build_target
)
{
$settings
=
$this
->
getSettings
();
$variables
=
$build_target
->
getVariables
();
$path
=
$this
->
mergeVariables
(
'vsprintf'
,
$settings
[
'path'
],
$variables
);
$artifact
=
$build
->
loadArtifact
(
$settings
[
'hostartifact'
]);
$lease
=
$artifact
->
loadDrydockLease
();
$interface
=
$lease
->
getInterface
(
'filesystem'
);
// TODO: Handle exceptions.
$file
=
$interface
->
saveFile
(
$path
,
$settings
[
'name'
]);
// Insert the artifact record.
$artifact
=
$build
->
createArtifact
(
$build_target
,
$settings
[
'name'
],
HarbormasterBuildArtifact
::
TYPE_FILE
);
$artifact
->
setArtifactData
(
array
(
'filePHID'
=>
$file
->
getPHID
()));
$artifact
->
save
();
}
public
function
getArtifactInputs
()
{
return
array
(
array
(
'name'
=>
pht
(
'Upload From Host'
),
'key'
=>
$this
->
getSetting
(
'hostartifact'
),
'type'
=>
HarbormasterBuildArtifact
::
TYPE_HOST
,
),
);
}
public
function
getArtifactOutputs
()
{
return
array
(
array
(
'name'
=>
pht
(
'Uploaded File'
),
'key'
=>
$this
->
getSetting
(
'name'
),
'type'
=>
HarbormasterBuildArtifact
::
TYPE_FILE
,
),
);
}
public
function
getFieldSpecifications
()
{
return
array
(
'path'
=>
array
(
'name'
=>
pht
(
'Path'
),
'type'
=>
'text'
,
'required'
=>
true
,
),
'name'
=>
array
(
'name'
=>
pht
(
'Local Name'
),
'type'
=>
'text'
,
'required'
=>
true
,
),
'hostartifact'
=>
array
(
'name'
=>
pht
(
'Host Artifact'
),
'type'
=>
'text'
,
'required'
=>
true
,
),
);
}
}
Event Timeline
Log In to Comment