Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F957211
PhabricatorWorkerTaskUpdateController.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
PhabricatorWorkerTaskUpdateController.php
View Options
<?php
final
class
PhabricatorWorkerTaskUpdateController
extends
PhabricatorDaemonController
{
private
$id
;
private
$action
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
$this
->
action
=
$data
[
'action'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$task
=
id
(
new
PhabricatorWorkerActiveTask
())->
load
(
$this
->
id
);
if
(!
$task
)
{
$task
=
id
(
new
PhabricatorWorkerArchiveTask
())->
load
(
$this
->
id
);
}
if
(!
$task
)
{
return
new
Aphront404Response
();
}
$result_success
=
PhabricatorWorkerArchiveTask
::
RESULT_SUCCESS
;
$can_retry
=
(
$task
->
isArchived
())
&&
(
$task
->
getResult
()
!=
$result_success
);
$can_cancel
=
!
$task
->
isArchived
();
$can_release
=
(!
$task
->
isArchived
())
&&
(
$task
->
getLeaseOwner
());
$next_uri
=
$this
->
getApplicationURI
(
'/task/'
.
$task
->
getID
().
'/'
);
if
(
$request
->
isFormPost
())
{
switch
(
$this
->
action
)
{
case
'retry'
:
if
(
$can_retry
)
{
$task
->
unarchiveTask
();
}
break
;
case
'cancel'
:
if
(
$can_cancel
)
{
// Forcibly break the lease if one exists, so we can archive the
// task.
$task
->
setLeaseOwner
(
null
);
$task
->
setLeaseExpires
(
time
());
$task
->
archiveTask
(
PhabricatorWorkerArchiveTask
::
RESULT_CANCELLED
,
0
);
}
break
;
case
'release'
:
if
(
$can_release
)
{
$task
->
setLeaseOwner
(
null
);
$task
->
setLeaseExpires
(
time
());
$task
->
save
();
}
break
;
}
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
$next_uri
);
}
$dialog
=
new
AphrontDialogView
();
$dialog
->
setUser
(
$user
);
switch
(
$this
->
action
)
{
case
'retry'
:
if
(
$can_retry
)
{
$dialog
->
setTitle
(
'Really retry task?'
);
$dialog
->
appendChild
(
phutil_tag
(
'p'
,
array
(),
pht
(
'The task will be put back in the queue and executed again.'
)));
$dialog
->
addSubmitButton
(
'Retry Task'
);
}
else
{
$dialog
->
setTitle
(
'Can Not Retry'
);
$dialog
->
appendChild
(
phutil_tag
(
'p'
,
array
(),
pht
(
'Only archived, unsuccessful tasks can be retried.'
)));
}
break
;
case
'cancel'
:
if
(
$can_cancel
)
{
$dialog
->
setTitle
(
'Really cancel task?'
);
$dialog
->
appendChild
(
phutil_tag
(
'p'
,
array
(),
pht
(
'The work this task represents will never be performed if you '
.
'cancel it. Are you sure you want to cancel it?'
)));
$dialog
->
addSubmitButton
(
'Cancel Task'
);
}
else
{
$dialog
->
setTitle
(
'Can Not Cancel'
);
$dialog
->
appendChild
(
phutil_tag
(
'p'
,
array
(),
pht
(
'Only active tasks can be cancelled.'
)));
}
break
;
case
'release'
:
if
(
$can_release
)
{
$dialog
->
setTitle
(
'Really free task lease?'
);
$dialog
->
appendChild
(
phutil_tag
(
'p'
,
array
(),
pht
(
'If the process which owns the task lease is still doing work '
.
'on it, the work may be performed twice. Are you sure you '
.
'want to free the lease?'
)));
$dialog
->
addSubmitButton
(
'Free Lease'
);
}
else
{
$dialog
->
setTitle
(
'Can Not Free Lease'
);
$dialog
->
appendChild
(
phutil_tag
(
'p'
,
array
(),
pht
(
'Only active, leased tasks may have their leases freed.'
)));
}
break
;
default
:
return
new
Aphront404Response
();
}
$dialog
->
addCancelButton
(
$next_uri
);
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 6:57 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
227064
Default Alt Text
PhabricatorWorkerTaskUpdateController.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment