2011-05-02 17:05:22 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
2012-03-09 15:46:25 -08:00
|
|
|
* Copyright 2012 Facebook, Inc.
|
2011-05-02 17:05:22 -07:00
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2012-03-09 15:46:25 -08:00
|
|
|
final class PhabricatorDaemonLogListController
|
|
|
|
|
extends PhabricatorDaemonController {
|
2011-05-02 17:05:22 -07:00
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
|
$request = $this->getRequest();
|
|
|
|
|
|
|
|
|
|
$pager = new AphrontPagerView();
|
|
|
|
|
$pager->setOffset($request->getInt('page'));
|
|
|
|
|
|
|
|
|
|
$logs = id(new PhabricatorDaemonLog())->loadAllWhere(
|
|
|
|
|
'1 = 1 ORDER BY id DESC LIMIT %d, %d',
|
|
|
|
|
$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);
|
|
|
|
|
|
|
|
|
|
return $this->buildStandardPageResponse(
|
|
|
|
|
$daemon_panel,
|
|
|
|
|
array(
|
|
|
|
|
'title' => 'All Daemons',
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|