mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-08 04:48:28 +01:00
Summary: Ref T13210. See PHI841. This mirrors D19509 for Differential. Test Plan: Called `transaction.search` on a commit with a bunch of audit activity, got appropriate labels in the results. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13210 Differential Revision: https://secure.phabricator.com/D19760
74 lines
1.7 KiB
PHP
74 lines
1.7 KiB
PHP
<?php
|
|
|
|
final class DiffusionCommitResignTransaction
|
|
extends DiffusionCommitAuditTransaction {
|
|
|
|
const TRANSACTIONTYPE = 'diffusion.commit.resign';
|
|
const ACTIONKEY = 'resign';
|
|
|
|
protected function getCommitActionLabel() {
|
|
return pht('Resign as Auditor');
|
|
}
|
|
|
|
protected function getCommitActionDescription() {
|
|
return pht('You will resign as an auditor for this commit.');
|
|
}
|
|
|
|
public function getIcon() {
|
|
return 'fa-flag';
|
|
}
|
|
|
|
public function getColor() {
|
|
return 'orange';
|
|
}
|
|
|
|
protected function getCommitActionOrder() {
|
|
return 700;
|
|
}
|
|
|
|
public function getActionName() {
|
|
return pht('Resigned');
|
|
}
|
|
|
|
public function generateOldValue($object) {
|
|
$actor = $this->getActor();
|
|
return !$this->isViewerAnyActiveAuditor($object, $actor);
|
|
}
|
|
|
|
public function applyExternalEffects($object, $value) {
|
|
$status = PhabricatorAuditStatusConstants::RESIGNED;
|
|
$actor = $this->getActor();
|
|
$this->applyAuditorEffect($object, $actor, $value, $status);
|
|
}
|
|
|
|
protected function validateAction($object, PhabricatorUser $viewer) {
|
|
if (!$this->isViewerAnyActiveAuditor($object, $viewer)) {
|
|
throw new Exception(
|
|
pht(
|
|
'You can not resign from this commit because you are not an '.
|
|
'active auditor.'));
|
|
}
|
|
}
|
|
|
|
public function getTitle() {
|
|
return pht(
|
|
'%s resigned from this commit.',
|
|
$this->renderAuthor());
|
|
}
|
|
|
|
public function getTitleForFeed() {
|
|
return pht(
|
|
'%s resigned from %s.',
|
|
$this->renderAuthor(),
|
|
$this->renderObject());
|
|
}
|
|
|
|
public function getTransactionTypeForConduit($xaction) {
|
|
return 'resign';
|
|
}
|
|
|
|
public function getFieldValuesForConduit($object, $data) {
|
|
return array();
|
|
}
|
|
|
|
}
|