mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 04:20:55 +01:00
Update Daemons for handleRequest
Summary: Updates the Daemon application calls Test Plan: Click on various things in the Daemon app Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D13835
This commit is contained in:
parent
7e7e38e9c0
commit
384cae4942
4 changed files with 16 additions and 35 deletions
|
@ -3,16 +3,10 @@
|
|||
final class PhabricatorDaemonLogEventViewController
|
||||
extends PhabricatorDaemonController {
|
||||
|
||||
private $id;
|
||||
public function handleRequest(AphrontRequest $request) {
|
||||
$id = $request->getURIData('id');
|
||||
|
||||
public function willProcessRequest(array $data) {
|
||||
$this->id = $data['id'];
|
||||
}
|
||||
|
||||
public function processRequest() {
|
||||
$request = $this->getRequest();
|
||||
|
||||
$event = id(new PhabricatorDaemonLogEvent())->load($this->id);
|
||||
$event = id(new PhabricatorDaemonLogEvent())->load($id);
|
||||
if (!$event) {
|
||||
return new Aphront404Response();
|
||||
}
|
||||
|
|
|
@ -3,9 +3,8 @@
|
|||
final class PhabricatorDaemonLogListController
|
||||
extends PhabricatorDaemonController {
|
||||
|
||||
public function processRequest() {
|
||||
$request = $this->getRequest();
|
||||
$viewer = $request->getUser();
|
||||
public function handleRequest(AphrontRequest $request) {
|
||||
$viewer = $request->getViewer();
|
||||
|
||||
$pager = new AphrontCursorPagerView();
|
||||
$pager->readFromRequest($request);
|
||||
|
|
|
@ -3,19 +3,13 @@
|
|||
final class PhabricatorDaemonLogViewController
|
||||
extends PhabricatorDaemonController {
|
||||
|
||||
private $id;
|
||||
|
||||
public function willProcessRequest(array $data) {
|
||||
$this->id = $data['id'];
|
||||
}
|
||||
|
||||
public function processRequest() {
|
||||
$request = $this->getRequest();
|
||||
$user = $request->getUser();
|
||||
public function handleRequest(AphrontRequest $request) {
|
||||
$viewer = $request->getViewer();
|
||||
$id = $request->getURIData('id');
|
||||
|
||||
$log = id(new PhabricatorDaemonLogQuery())
|
||||
->setViewer($user)
|
||||
->withIDs(array($this->id))
|
||||
->setViewer($viewer)
|
||||
->withIDs(array($id))
|
||||
->setAllowStatusWrites(true)
|
||||
->executeOne();
|
||||
if (!$log) {
|
||||
|
@ -76,7 +70,7 @@ final class PhabricatorDaemonLogViewController
|
|||
$properties = $this->buildPropertyListView($log);
|
||||
|
||||
$event_view = id(new PhabricatorDaemonLogEventsView())
|
||||
->setUser($user)
|
||||
->setUser($viewer)
|
||||
->setEvents($events);
|
||||
|
||||
$event_panel = new PHUIObjectBoxView();
|
||||
|
|
|
@ -3,20 +3,14 @@
|
|||
final class PhabricatorWorkerTaskDetailController
|
||||
extends PhabricatorDaemonController {
|
||||
|
||||
private $id;
|
||||
public function handleRequest(AphrontRequest $request) {
|
||||
$viewer = $request->getViewer();
|
||||
$id = $request->getURIData('id');
|
||||
|
||||
public function willProcessRequest(array $data) {
|
||||
$this->id = $data['id'];
|
||||
}
|
||||
|
||||
public function processRequest() {
|
||||
$request = $this->getRequest();
|
||||
$user = $request->getUser();
|
||||
|
||||
$task = id(new PhabricatorWorkerActiveTask())->load($this->id);
|
||||
$task = id(new PhabricatorWorkerActiveTask())->load($id);
|
||||
if (!$task) {
|
||||
$tasks = id(new PhabricatorWorkerArchiveTaskQuery())
|
||||
->withIDs(array($this->id))
|
||||
->withIDs(array($id))
|
||||
->execute();
|
||||
$task = reset($tasks);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue