Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99623342
DifferentialRevisionRequestReviewTransaction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jan 25, 20:20
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Jan 27, 20:20 (2 d)
Engine
blob
Format
Raw Data
Handle
23834665
Attached To
rPH Phabricator
DifferentialRevisionRequestReviewTransaction.php
View Options
<?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
(
DifferentialRevision
$revision
)
{
if
(
$revision
->
isDraft
())
{
return
pht
(
'This revision will be submitted to reviewers for feedback.'
);
}
else
{
return
pht
(
'This revision will be returned to reviewers for feedback.'
);
}
}
public
function
getColor
()
{
return
'sky'
;
}
protected
function
getRevisionActionOrder
()
{
return
200
;
}
public
function
getActionName
()
{
return
pht
(
'Requested Review'
);
}
public
function
generateOldValue
(
$object
)
{
return
$object
->
isNeedsReview
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$status_review
=
DifferentialRevisionStatus
::
NEEDS_REVIEW
;
$object
->
setModernRevisionStatus
(
$status_review
);
}
protected
function
validateAction
(
$object
,
PhabricatorUser
$viewer
)
{
if
(
$object
->
isNeedsReview
())
{
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.'
));
}
// When revisions automatically promote out of "Draft" after builds finish,
// the viewer may be acting as the Harbormaster application.
if
(!
$viewer
->
isOmnipotent
())
{
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
());
}
}
Event Timeline
Log In to Comment