Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102814636
HarbormasterBuildableActionController.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
Mon, Feb 24, 11:22
Size
6 KB
Mime Type
text/x-php
Expires
Wed, Feb 26, 11:22 (2 d)
Engine
blob
Format
Raw Data
Handle
24431519
Attached To
rPH Phabricator
HarbormasterBuildableActionController.php
View Options
<?php
final
class
HarbormasterBuildableActionController
extends
HarbormasterController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$action
=
$request
->
getURIData
(
'action'
);
$buildable
=
id
(
new
HarbormasterBuildableQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$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
(
$action
)
{
case
HarbormasterBuildCommand
::
COMMAND_RESTART
:
if
(
$build
->
canRestartBuild
())
{
$issuable
[]
=
$build
;
}
break
;
case
HarbormasterBuildCommand
::
COMMAND_PAUSE
:
if
(
$build
->
canPauseBuild
())
{
$issuable
[]
=
$build
;
}
break
;
case
HarbormasterBuildCommand
::
COMMAND_RESUME
:
if
(
$build
->
canResumeBuild
())
{
$issuable
[]
=
$build
;
}
break
;
case
HarbormasterBuildCommand
::
COMMAND_ABORT
:
if
(
$build
->
canAbortBuild
())
{
$issuable
[]
=
$build
;
}
break
;
default
:
return
new
Aphront400Response
();
}
}
$restricted
=
false
;
foreach
(
$issuable
as
$key
=>
$build
)
{
if
(!
$build
->
canIssueCommand
(
$viewer
,
$action
))
{
$restricted
=
true
;
unset
(
$issuable
[
$key
]);
}
}
$return_uri
=
'/'
.
$buildable
->
getMonogram
();
if
(
$request
->
isDialogFormPost
()
&&
$issuable
)
{
$editor
=
id
(
new
HarbormasterBuildableTransactionEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromRequest
(
$request
)
->
setContinueOnNoEffect
(
true
)
->
setContinueOnMissingFields
(
true
);
$xaction
=
id
(
new
HarbormasterBuildableTransaction
())
->
setTransactionType
(
HarbormasterBuildableTransaction
::
TYPE_COMMAND
)
->
setNewValue
(
$action
);
$editor
->
applyTransactions
(
$buildable
,
array
(
$xaction
));
$build_editor
=
id
(
new
HarbormasterBuildTransactionEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromRequest
(
$request
)
->
setContinueOnNoEffect
(
true
)
->
setContinueOnMissingFields
(
true
);
foreach
(
$issuable
as
$build
)
{
$xaction
=
id
(
new
HarbormasterBuildTransaction
())
->
setTransactionType
(
HarbormasterBuildTransaction
::
TYPE_COMMAND
)
->
setNewValue
(
$action
);
$build_editor
->
applyTransactions
(
$build
,
array
(
$xaction
));
}
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$return_uri
);
}
switch
(
$action
)
{
case
HarbormasterBuildCommand
::
COMMAND_RESTART
:
if
(
$issuable
)
{
$title
=
pht
(
'Really restart builds?'
);
if
(
$restricted
)
{
$body
=
pht
(
'You only have permission to restart some builds. Progress '
.
'on builds you have permission to restart will be discarded '
.
'and they will restart. Side effects of these builds will '
.
'occur again. Really restart all builds?'
);
}
else
{
$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 Builds'
);
}
else
{
$title
=
pht
(
'Unable to Restart Builds'
);
if
(
$restricted
)
{
$body
=
pht
(
'You do not have permission to restart any builds.'
);
}
else
{
$body
=
pht
(
'No builds can be restarted.'
);
}
}
break
;
case
HarbormasterBuildCommand
::
COMMAND_PAUSE
:
if
(
$issuable
)
{
$title
=
pht
(
'Really pause builds?'
);
if
(
$restricted
)
{
$body
=
pht
(
'You only have permission to pause some builds. Once the '
.
'current steps complete, work will halt on builds you have '
.
'permission to pause. You can resume the builds later.'
);
}
else
{
$body
=
pht
(
'If you pause all builds, work will halt once the current steps '
.
'complete. You can resume the builds later.'
);
}
$submit
=
pht
(
'Pause Builds'
);
}
else
{
$title
=
pht
(
'Unable to Pause Builds'
);
if
(
$restricted
)
{
$body
=
pht
(
'You do not have permission to pause any builds.'
);
}
else
{
$body
=
pht
(
'No builds can be paused.'
);
}
}
break
;
case
HarbormasterBuildCommand
::
COMMAND_ABORT
:
if
(
$issuable
)
{
$title
=
pht
(
'Really abort builds?'
);
if
(
$restricted
)
{
$body
=
pht
(
'You only have permission to abort some builds. Work will '
.
'halt immediately on builds you have permission to abort. '
.
'Progress will be discarded, and builds must be completely '
.
'restarted if you want them to complete.'
);
}
else
{
$body
=
pht
(
'If you abort all builds, work will halt immediately. Work '
.
'will be discarded, and builds must be completely restarted.'
);
}
$submit
=
pht
(
'Abort Builds'
);
}
else
{
$title
=
pht
(
'Unable to Abort Builds'
);
if
(
$restricted
)
{
$body
=
pht
(
'You do not have permission to abort any builds.'
);
}
else
{
$body
=
pht
(
'No builds can be aborted.'
);
}
}
break
;
case
HarbormasterBuildCommand
::
COMMAND_RESUME
:
if
(
$issuable
)
{
$title
=
pht
(
'Really resume builds?'
);
if
(
$restricted
)
{
$body
=
pht
(
'You only have permission to resume some builds. Work will '
.
'continue on builds you have permission to resume.'
);
}
else
{
$body
=
pht
(
'Work will continue on all builds. Really resume?'
);
}
$submit
=
pht
(
'Resume Builds'
);
}
else
{
$title
=
pht
(
'Unable to Resume Builds'
);
if
(
$restricted
)
{
$body
=
pht
(
'You do not have permission to resume any builds.'
);
}
else
{
$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
);
}
}
Event Timeline
Log In to Comment