mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 19:52:44 +01:00
86c399b657
Summary: Ref T5655. Some discussion in D9839. Generally speaking, `Phabricator{$name}Application` is clearer than `PhabricatorApplication{$name}`. Test Plan: # Pinned and uninstalled some applications. # Applied patch and performed migrations. # Verified that the pinned applications were still pinned and that the uninstalled applications were still uninstalled. # Performed a sanity check on the database contents. Reviewers: btrahan, epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: hach-que, epriestley, Korvin Maniphest Tasks: T5655 Differential Revision: https://secure.phabricator.com/D9982
80 lines
2.1 KiB
PHP
80 lines
2.1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorAuditApplication extends PhabricatorApplication {
|
|
|
|
public function getBaseURI() {
|
|
return '/audit/';
|
|
}
|
|
|
|
public function getIconName() {
|
|
return 'audit';
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('Browse and Audit Commits');
|
|
}
|
|
|
|
public function isPinnedByDefault(PhabricatorUser $viewer) {
|
|
return true;
|
|
}
|
|
|
|
public function getHelpURI() {
|
|
return PhabricatorEnv::getDoclink('Audit User Guide');
|
|
}
|
|
|
|
public function getEventListeners() {
|
|
return array(
|
|
new AuditActionMenuEventListener(),
|
|
);
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/audit/' => array(
|
|
'(?:query/(?P<queryKey>[^/]+)/)?' => 'PhabricatorAuditListController',
|
|
'addcomment/' => 'PhabricatorAuditAddCommentController',
|
|
'preview/(?P<id>[1-9]\d*)/' => 'PhabricatorAuditPreviewController',
|
|
),
|
|
);
|
|
}
|
|
|
|
public function getApplicationOrder() {
|
|
return 0.130;
|
|
}
|
|
|
|
public function loadStatus(PhabricatorUser $user) {
|
|
$status = array();
|
|
|
|
$phids = PhabricatorAuditCommentEditor::loadAuditPHIDsForUser($user);
|
|
|
|
$query = id(new DiffusionCommitQuery())
|
|
->setViewer($user)
|
|
->withAuthorPHIDs(array($user->getPHID()))
|
|
->withAuditStatus(DiffusionCommitQuery::AUDIT_STATUS_CONCERN);
|
|
$commits = $query->execute();
|
|
|
|
$count = count($commits);
|
|
$type = PhabricatorApplicationStatusView::TYPE_NEEDS_ATTENTION;
|
|
$status[] = id(new PhabricatorApplicationStatusView())
|
|
->setType($type)
|
|
->setText(pht('%d Problem Commit(s)', $count))
|
|
->setCount($count);
|
|
|
|
$query = id(new DiffusionCommitQuery())
|
|
->setViewer($user)
|
|
->withAuditorPHIDs($phids)
|
|
->withAuditStatus(DiffusionCommitQuery::AUDIT_STATUS_OPEN)
|
|
->withAuditAwaitingUser($user);
|
|
$commits = $query->execute();
|
|
|
|
$count = count($commits);
|
|
$type = PhabricatorApplicationStatusView::TYPE_WARNING;
|
|
$status[] = id(new PhabricatorApplicationStatusView())
|
|
->setType($type)
|
|
->setText(pht('%d Commit(s) Awaiting Audit', $count))
|
|
->setCount($count);
|
|
|
|
return $status;
|
|
}
|
|
|
|
}
|