mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 12:42:43 +01:00
ef85f49adc
Summary: This commit doesn't change license of any file. It just makes the license implicit (inherited from LICENSE file in the root directory). We are removing the headers for these reasons: - It wastes space in editors, less code is visible in editor upon opening a file. - It brings noise to diff of the first change of any file every year. - It confuses Git file copy detection when creating small files. - We don't have an explicit license header in other files (JS, CSS, images, documentation). - Using license header in every file is not obligatory: http://www.apache.org/dev/apply-license.html#new. This change is approved by Alma Chao (Lead Open Source and IP Counsel at Facebook). Test Plan: Verified that the license survived only in LICENSE file and that it didn't modify externals. Reviewers: epriestley, davidrecordon Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2035 Differential Revision: https://secure.phabricator.com/D3886
121 lines
3.6 KiB
PHP
121 lines
3.6 KiB
PHP
<?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(
|
|
'<p>The task will be put back in the queue and executed '.
|
|
'again.</p>');
|
|
$dialog->addSubmitButton('Retry Task');
|
|
} else {
|
|
$dialog->setTitle('Can Not Retry');
|
|
$dialog->appendChild(
|
|
'<p>Only archived, unsuccessful tasks can be retried.</p>');
|
|
}
|
|
break;
|
|
case 'cancel':
|
|
if ($can_cancel) {
|
|
$dialog->setTitle('Really cancel task?');
|
|
$dialog->appendChild(
|
|
'<p>The work this task represents will never be performed if you '.
|
|
'cancel it. Are you sure you want to cancel it?</p>');
|
|
$dialog->addSubmitButton('Cancel Task');
|
|
} else {
|
|
$dialog->setTitle('Can Not Cancel');
|
|
$dialog->appendChild(
|
|
'<p>Only active tasks can be cancelled.</p>');
|
|
}
|
|
break;
|
|
case 'release':
|
|
if ($can_release) {
|
|
$dialog->setTitle('Really free task lease?');
|
|
$dialog->appendChild(
|
|
'<p>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?</p>');
|
|
$dialog->addSubmitButton('Free Lease');
|
|
} else {
|
|
$dialog->setTitle('Can Not Free Lease');
|
|
$dialog->appendChild(
|
|
'<p>Only active, leased tasks may have their leases freed.</p>');
|
|
}
|
|
break;
|
|
default:
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$dialog->addCancelButton($next_uri);
|
|
|
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
|
}
|
|
|
|
}
|