Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93821480
DrydockResourceCloseController.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
Sun, Dec 1, 19:03
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Dec 3, 19:03 (2 d)
Engine
blob
Format
Raw Data
Handle
22710310
Attached To
rPH Phabricator
DrydockResourceCloseController.php
View Options
<?php
final
class
DrydockResourceCloseController
extends
DrydockController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$resource
=
id
(
new
DrydockResource
())->
load
(
$this
->
id
);
if
(!
$resource
)
{
return
new
Aphront404Response
();
}
$resource_uri
=
'/resource/'
.
$resource
->
getID
().
'/'
;
$resource_uri
=
$this
->
getApplicationURI
(
$resource_uri
);
if
(
$resource
->
getStatus
()
!=
DrydockResourceStatus
::
STATUS_OPEN
)
{
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$user
)
->
setTitle
(
pht
(
'Resource Not Open'
))
->
appendChild
(
phutil_tag
(
'p'
,
array
(),
pht
(
'You can only close "open" resources.'
)))
->
addCancelButton
(
$resource_uri
);
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
if
(!
$request
->
isDialogFormPost
())
{
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$user
)
->
setTitle
(
pht
(
'Really close resource?'
))
->
appendChild
(
phutil_tag
(
'p'
,
array
(),
pht
(
'Closing a resource releases all leases and destroys the '
.
'resource. It can not be undone. Continue?'
)))
->
addSubmitButton
(
pht
(
'Close Resource'
))
->
addCancelButton
(
$resource_uri
);
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
$resource
->
closeResource
();
return
id
(
new
AphrontReloadResponse
())->
setURI
(
$resource_uri
);
}
}
Event Timeline
Log In to Comment