Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122362694
FileDeletionWorker.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
Thu, Jul 17, 10:17
Size
757 B
Mime Type
text/x-php
Expires
Sat, Jul 19, 10:17 (2 d)
Engine
blob
Format
Raw Data
Handle
27472217
Attached To
rPH Phabricator
FileDeletionWorker.php
View Options
<?php
final
class
FileDeletionWorker
extends
PhabricatorWorker
{
private
function
loadFile
()
{
$phid
=
idx
(
$this
->
getTaskData
(),
'objectPHID'
);
if
(!
$phid
)
{
throw
new
PhabricatorWorkerPermanentFailureException
(
pht
(
'No "%s" in task data.'
,
'objectPHID'
));
}
$file
=
id
(
new
PhabricatorFileQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withPHIDs
(
array
(
$phid
))
->
executeOne
();
if
(!
$file
)
{
throw
new
PhabricatorWorkerPermanentFailureException
(
pht
(
'File "%s" does not exist.'
,
$phid
));
}
return
$file
;
}
protected
function
doWork
()
{
$file
=
$this
->
loadFile
();
$engine
=
new
PhabricatorDestructionEngine
();
$engine
->
destroyObject
(
$file
);
}
}
Event Timeline
Log In to Comment