mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 11:12:42 +01:00
71 lines
2 KiB
PHP
71 lines
2 KiB
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialRevisionRequestReviewTransaction
|
||
|
extends DifferentialRevisionActionTransaction {
|
||
|
|
||
|
const TRANSACTIONTYPE = 'differential.revision.request';
|
||
|
const ACTIONKEY = 'request-review';
|
||
|
|
||
|
protected function getRevisionActionLabel() {
|
||
|
return pht('Request Review');
|
||
|
}
|
||
|
|
||
|
protected function getRevisionActionDescription() {
|
||
|
return pht('This revision will be returned to reviewers for feedback.');
|
||
|
}
|
||
|
|
||
|
public function getColor() {
|
||
|
return 'sky';
|
||
|
}
|
||
|
|
||
|
public function generateOldValue($object) {
|
||
|
$status_review = ArcanistDifferentialRevisionStatus::NEEDS_REVIEW;
|
||
|
return ($object->getStatus() == $status_review);
|
||
|
}
|
||
|
|
||
|
public function applyInternalEffects($object, $value) {
|
||
|
$status_review = ArcanistDifferentialRevisionStatus::NEEDS_REVIEW;
|
||
|
$object->setStatus($status_review);
|
||
|
}
|
||
|
|
||
|
protected function validateAction($object, PhabricatorUser $viewer) {
|
||
|
$status_review = ArcanistDifferentialRevisionStatus::NEEDS_REVIEW;
|
||
|
if ($object->getStatus() == $status_review) {
|
||
|
throw new Exception(
|
||
|
pht(
|
||
|
'You can not request review of this revision because this '.
|
||
|
'revision is already under review and the action would have '.
|
||
|
'no effect.'));
|
||
|
}
|
||
|
|
||
|
if ($object->isClosed()) {
|
||
|
throw new Exception(
|
||
|
pht(
|
||
|
'You can not request review of this revision because it has '.
|
||
|
'already been closed. You can only request review of open '.
|
||
|
'revisions.'));
|
||
|
}
|
||
|
|
||
|
if (!$this->isViewerRevisionAuthor($object, $viewer)) {
|
||
|
throw new Exception(
|
||
|
pht(
|
||
|
'You can not request review of this revision because you are not '.
|
||
|
'the author of the revision.'));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function getTitle() {
|
||
|
return pht(
|
||
|
'%s requested review of this revision.',
|
||
|
$this->renderAuthor());
|
||
|
}
|
||
|
|
||
|
public function getTitleForFeed() {
|
||
|
return pht(
|
||
|
'%s requested review of %s.',
|
||
|
$this->renderAuthor(),
|
||
|
$this->renderObject());
|
||
|
}
|
||
|
|
||
|
}
|