mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-14 00:31:05 +01:00
19d67b778d
Summary: Prior to D5140, "PhabricatorAuditCommitQuery::STATUS_OPEN" was defined as "concern only". This didn't really make sense; we redefined it to "concern or audit required". However, a couple of queries needed to be updated since they really meant "concern" even though they said "open". I also switch the order of problem commits / audit required on the Audit homepage to be consistent with the bubbles on home. Test Plan: Looked at home, /audit/. Reviewers: chad Reviewed By: chad CC: aran Differential Revision: https://secure.phabricator.com/D5162
81 lines
2 KiB
PHP
81 lines
2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorApplicationAudit extends PhabricatorApplication {
|
|
|
|
public function getShortDescription() {
|
|
return pht('Audit Code');
|
|
}
|
|
|
|
public function getBaseURI() {
|
|
return '/audit/';
|
|
}
|
|
|
|
public function getIconName() {
|
|
return 'audit';
|
|
}
|
|
|
|
public function getHelpURI() {
|
|
return PhabricatorEnv::getDoclink('article/Audit_User_Guide.html');
|
|
}
|
|
|
|
public function getEventListeners() {
|
|
return array(
|
|
new AuditPeopleMenuEventListener()
|
|
);
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/audit/' => array(
|
|
'' => 'PhabricatorAuditListController',
|
|
'view/(?P<filter>[^/]+)/(?:(?P<name>[^/]+)/)?'
|
|
=> 'PhabricatorAuditListController',
|
|
'addcomment/' => 'PhabricatorAuditAddCommentController',
|
|
'preview/(?P<id>[1-9]\d*)/' => 'PhabricatorAuditPreviewController',
|
|
),
|
|
);
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_CORE;
|
|
}
|
|
|
|
public function getApplicationOrder() {
|
|
return 0.130;
|
|
}
|
|
|
|
public function loadStatus(PhabricatorUser $user) {
|
|
$status = array();
|
|
|
|
$phids = PhabricatorAuditCommentEditor::loadAuditPHIDsForUser($user);
|
|
|
|
$commits = id(new PhabricatorAuditCommitQuery())
|
|
->withAuthorPHIDs($phids)
|
|
->withStatus(PhabricatorAuditCommitQuery::STATUS_CONCERN)
|
|
->execute();
|
|
|
|
$count = count($commits);
|
|
$type = PhabricatorApplicationStatusView::TYPE_NEEDS_ATTENTION;
|
|
$status[] = id(new PhabricatorApplicationStatusView())
|
|
->setType($type)
|
|
->setText(pht('%d Problem Commit(s)', $count))
|
|
->setCount($count);
|
|
|
|
$audits = id(new PhabricatorAuditQuery())
|
|
->withAuditorPHIDs($phids)
|
|
->withStatus(PhabricatorAuditQuery::STATUS_OPEN)
|
|
->withAwaitingUser($user)
|
|
->execute();
|
|
|
|
$count = count($audits);
|
|
$type = PhabricatorApplicationStatusView::TYPE_WARNING;
|
|
$status[] = id(new PhabricatorApplicationStatusView())
|
|
->setType($type)
|
|
->setText(pht('%d Commit(s) Awaiting Audit', $count))
|
|
->setCount($count);
|
|
|
|
return $status;
|
|
}
|
|
|
|
}
|
|
|