mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 04:02:43 +01:00
71 lines
1.7 KiB
PHP
71 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Copyright 2011 Facebook, Inc.
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
class PhabricatorDaemonConsoleController extends PhabricatorDaemonController {
|
||
|
|
||
|
public function processRequest() {
|
||
|
$request = $this->getRequest();
|
||
|
|
||
|
if ($request->getStr('new')) {
|
||
|
$task = new PhabricatorWorkerTask();
|
||
|
$task->setTaskClass('PhabricatorGoodForNothingWorker');
|
||
|
$task->setPriority(4);
|
||
|
$task->setFailureCount(0);
|
||
|
$task->save();
|
||
|
}
|
||
|
|
||
|
$tasks = id(new PhabricatorWorkerTask())
|
||
|
->loadAll();
|
||
|
|
||
|
$rows = array();
|
||
|
foreach ($tasks as $task) {
|
||
|
$rows[] = array(
|
||
|
$task->getID(),
|
||
|
$task->getTaskClass(),
|
||
|
$task->getLeaseOwner(),
|
||
|
$task->getLeaseExpires(),
|
||
|
$task->getPriority(),
|
||
|
$task->getFailureCount(),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
$table = new AphrontTableView($rows);
|
||
|
$table->setHeaders(
|
||
|
array(
|
||
|
'ID',
|
||
|
'Class',
|
||
|
'Owner',
|
||
|
'Expries',
|
||
|
'Priority',
|
||
|
'Count',
|
||
|
));
|
||
|
|
||
|
$panel = new AphrontPanelView();
|
||
|
$panel->setHeader('Tasks');
|
||
|
$panel->appendChild($table);
|
||
|
|
||
|
return $this->buildStandardPageResponse(
|
||
|
$panel,
|
||
|
array(
|
||
|
'title' => 'Console',
|
||
|
'tab' => 'console',
|
||
|
));
|
||
|
}
|
||
|
|
||
|
}
|