2011-05-02 17:05:22 -07:00
|
|
|
<?php
|
|
|
|
|
|
2012-03-09 15:46:25 -08:00
|
|
|
final class PhabricatorDaemonLogListController
|
|
|
|
|
extends PhabricatorDaemonController {
|
2011-05-02 17:05:22 -07:00
|
|
|
|
2012-08-15 15:55:26 -07:00
|
|
|
private $running;
|
|
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
|
$this->running = !empty($data['running']);
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-02 17:05:22 -07:00
|
|
|
public function processRequest() {
|
|
|
|
|
$request = $this->getRequest();
|
|
|
|
|
|
|
|
|
|
$pager = new AphrontPagerView();
|
|
|
|
|
$pager->setOffset($request->getInt('page'));
|
|
|
|
|
|
2012-08-14 18:01:15 -07:00
|
|
|
$clause = '1 = 1';
|
2012-08-15 15:55:26 -07:00
|
|
|
if ($this->running) {
|
2012-08-14 18:01:15 -07:00
|
|
|
$clause = "`status` != 'exit'";
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-02 17:05:22 -07:00
|
|
|
$logs = id(new PhabricatorDaemonLog())->loadAllWhere(
|
2012-08-14 18:01:15 -07:00
|
|
|
'%Q ORDER BY id DESC LIMIT %d, %d',
|
|
|
|
|
$clause,
|
2011-05-02 17:05:22 -07:00
|
|
|
$pager->getOffset(),
|
|
|
|
|
$pager->getPageSize() + 1);
|
|
|
|
|
|
|
|
|
|
$logs = $pager->sliceResults($logs);
|
|
|
|
|
$pager->setURI($request->getRequestURI(), 'page');
|
|
|
|
|
|
|
|
|
|
$daemon_table = new PhabricatorDaemonLogListView();
|
Use phabricator_ time functions in more places
Summary:
Replace some more date() calls with locale-aware calls.
Also, at least on my system, the DateTimeZone / DateTime stuff didn't actually
work and always rendered in UTC. Fixed that.
Test Plan:
Viewed daemon console, differential revisions, files, and maniphest timestamps
in multiple timezones.
Reviewed By: toulouse
Reviewers: toulouse, fratrik, jungejason, aran, tuomaspelkonen
CC: aran, toulouse
Differential Revision: 530
2011-06-26 09:22:52 -07:00
|
|
|
$daemon_table->setUser($request->getUser());
|
2011-05-02 17:05:22 -07:00
|
|
|
$daemon_table->setDaemonLogs($logs);
|
|
|
|
|
|
|
|
|
|
$daemon_panel = new AphrontPanelView();
|
|
|
|
|
$daemon_panel->setHeader('Launched Daemons');
|
|
|
|
|
$daemon_panel->appendChild($daemon_table);
|
|
|
|
|
$daemon_panel->appendChild($pager);
|
|
|
|
|
|
2012-08-13 15:27:45 -07:00
|
|
|
$nav = $this->buildSideNavView();
|
2012-08-15 15:55:26 -07:00
|
|
|
$nav->selectFilter($this->running ? 'log/running' : 'log');
|
2012-08-13 15:27:45 -07:00
|
|
|
$nav->appendChild($daemon_panel);
|
|
|
|
|
|
|
|
|
|
return $this->buildApplicationPage(
|
|
|
|
|
$nav,
|
2011-05-02 17:05:22 -07:00
|
|
|
array(
|
2012-08-15 15:55:26 -07:00
|
|
|
'title' => $this->running ? 'Running Daemons' : 'All Daemons',
|
2011-05-02 17:05:22 -07:00
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|