Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2364302
HarbormasterBuildableActionController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
HarbormasterBuildableActionController.php
View Options
<?php
final
class
HarbormasterBuildableActionController
extends
HarbormasterController
{
private
$id
;
private
$action
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
$this
->
action
=
$data
[
'action'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$command
=
$this
->
action
;
$buildable
=
id
(
new
HarbormasterBuildableQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$this
->
id
))
->
needBuilds
(
true
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$buildable
)
{
return
new
Aphront404Response
();
}
$issuable
=
array
();
foreach
(
$buildable
->
getBuilds
()
as
$build
)
{
switch
(
$command
)
{
case
HarbormasterBuildCommand
::
COMMAND_RESTART
:
if
(
$build
->
canRestartBuild
())
{
$issuable
[]
=
$build
;
}
break
;
case
HarbormasterBuildCommand
::
COMMAND_STOP
:
if
(
$build
->
canStopBuild
())
{
$issuable
[]
=
$build
;
}
break
;
case
HarbormasterBuildCommand
::
COMMAND_RESUME
:
if
(
$build
->
canResumeBuild
())
{
$issuable
[]
=
$build
;
}
break
;
default
:
return
new
Aphront400Response
();
}
}
$return_uri
=
$buildable
->
getMonogram
();
if
(
$request
->
isDialogFormPost
()
&&
$issuable
)
{
foreach
(
$issuable
as
$build
)
{
id
(
new
HarbormasterBuildCommand
())
->
setAuthorPHID
(
$viewer
->
getPHID
())
->
setTargetPHID
(
$build
->
getPHID
())
->
setCommand
(
$command
)
->
save
();
PhabricatorWorker
::
scheduleTask
(
'HarbormasterBuildWorker'
,
array
(
'buildID'
=>
$build
->
getID
()
));
}
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$return_uri
);
}
switch
(
$command
)
{
case
HarbormasterBuildCommand
::
COMMAND_RESTART
:
if
(
$issuable
)
{
$title
=
pht
(
'Really restart all builds?'
);
$body
=
pht
(
'Progress on all builds will be discarded, and all builds will '
.
'restart. Side effects of the builds will occur again. Really '
.
'restart all builds?'
);
$submit
=
pht
(
'Restart All Builds'
);
}
else
{
$title
=
pht
(
'Unable to Restart Build'
);
$body
=
pht
(
'No builds can be restarted.'
);
}
break
;
case
HarbormasterBuildCommand
::
COMMAND_STOP
:
if
(
$issuable
)
{
$title
=
pht
(
'Really stop all builds?'
);
$body
=
pht
(
'If you stop all build, work will halt once the current steps '
.
'complete. You can resume the builds later.'
);
$submit
=
pht
(
'Stop All Builds'
);
}
else
{
$title
=
pht
(
'Unable to Stop Build'
);
$body
=
pht
(
'No builds can be stopped.'
);
}
break
;
case
HarbormasterBuildCommand
::
COMMAND_RESUME
:
if
(
$issuable
)
{
$title
=
pht
(
'Really resume all builds?'
);
$body
=
pht
(
'Work will continue on all builds. Really resume?'
);
$submit
=
pht
(
'Resume All Builds'
);
}
else
{
$title
=
pht
(
'Unable to Resume Build'
);
$body
=
pht
(
'No builds can be resumed.'
);
}
break
;
}
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$viewer
)
->
setTitle
(
$title
)
->
appendChild
(
$body
)
->
addCancelButton
(
$return_uri
);
if
(
$issuable
)
{
$dialog
->
addSubmitButton
(
$submit
);
}
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Sep 16, 5:23 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
450682
Default Alt Text
HarbormasterBuildableActionController.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment