Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93630673
PhabricatorFileDeleteController.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
Sat, Nov 30, 07:10
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Dec 2, 07:10 (2 d)
Engine
blob
Format
Raw Data
Handle
22656872
Attached To
rPH Phabricator
PhabricatorFileDeleteController.php
View Options
<?php
final
class
PhabricatorFileDeleteController
extends
PhabricatorFileController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$file
=
id
(
new
PhabricatorFileQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$this
->
id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$file
)
{
return
new
Aphront404Response
();
}
if
((
$user
->
getPHID
()
!=
$file
->
getAuthorPHID
())
&&
(!
$user
->
getIsAdmin
()))
{
return
new
Aphront403Response
();
}
if
(
$request
->
isFormPost
())
{
$file
->
delete
();
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
'/file/'
);
}
$dialog
=
new
AphrontDialogView
();
$dialog
->
setUser
(
$user
);
$dialog
->
setTitle
(
pht
(
'Really delete file?'
));
$dialog
->
appendChild
(
hsprintf
(
'<p>%s</p>'
,
pht
(
"Permanently delete '%s'? This action can not be undone."
,
$file
->
getName
())));
$dialog
->
addSubmitButton
(
pht
(
'Delete'
));
$dialog
->
addCancelButton
(
$file
->
getInfoURI
());
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment