2012-07-27 13:46:01 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2012 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
final class PhabricatorFactHomeController extends PhabricatorFactController {
|
|
|
|
|
|
|
|
public function processRequest() {
|
2012-07-27 17:29:44 -07:00
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
$types = array(
|
|
|
|
'+N:*',
|
|
|
|
'+N:DREV',
|
|
|
|
'updated',
|
|
|
|
);
|
|
|
|
|
|
|
|
$engines = PhabricatorFactEngine::loadAllEngines();
|
|
|
|
$specs = PhabricatorFactSpec::newSpecsForFactTypes($engines, $types);
|
2012-07-27 13:46:01 -07:00
|
|
|
|
|
|
|
$facts = id(new PhabricatorFactAggregate())->loadAllWhere(
|
2012-07-27 17:29:44 -07:00
|
|
|
'factType IN (%Ls)',
|
|
|
|
$types);
|
2012-07-27 13:46:01 -07:00
|
|
|
|
|
|
|
$rows = array();
|
|
|
|
foreach ($facts as $fact) {
|
2012-07-27 17:29:44 -07:00
|
|
|
$spec = $specs[$fact->getFactType()];
|
|
|
|
|
|
|
|
$name = $spec->getName();
|
|
|
|
$value = $spec->formatValueForDisplay($user, $fact->getValueX());
|
|
|
|
|
2012-07-27 13:46:01 -07:00
|
|
|
$rows[] = array(
|
2012-07-27 17:29:44 -07:00
|
|
|
phutil_escape_html($name),
|
|
|
|
phutil_escape_html($value),
|
2012-07-27 13:46:01 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$table = new AphrontTableView($rows);
|
|
|
|
$table->setHeaders(
|
|
|
|
array(
|
|
|
|
'Fact',
|
|
|
|
'Value',
|
|
|
|
));
|
|
|
|
$table->setColumnClasses(
|
|
|
|
array(
|
|
|
|
'wide',
|
|
|
|
'n',
|
|
|
|
));
|
|
|
|
|
|
|
|
$panel = new AphrontPanelView();
|
|
|
|
$panel->setHeader('Facts!');
|
|
|
|
$panel->appendChild($table);
|
|
|
|
|
|
|
|
return $this->buildStandardPageResponse(
|
|
|
|
$panel,
|
|
|
|
array(
|
|
|
|
'title' => 'Facts!',
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|