Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90449615
DifferentialRevisionActionTransaction.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
Fri, Nov 1, 19:09
Size
4 KB
Mime Type
text/x-php
Expires
Sun, Nov 3, 19:09 (2 d)
Engine
blob
Format
Raw Data
Handle
22077535
Attached To
rPH Phabricator
DifferentialRevisionActionTransaction.php
View Options
<?php
abstract
class
DifferentialRevisionActionTransaction
extends
DifferentialRevisionTransactionType
{
final
public
function
getRevisionActionKey
()
{
return
$this
->
getPhobjectClassConstant
(
'ACTIONKEY'
,
32
);
}
public
function
isActionAvailable
(
$object
,
PhabricatorUser
$viewer
)
{
try
{
$this
->
validateAction
(
$object
,
$viewer
);
return
true
;
}
catch
(
Exception
$ex
)
{
return
false
;
}
}
abstract
protected
function
validateAction
(
$object
,
PhabricatorUser
$viewer
);
abstract
protected
function
getRevisionActionLabel
();
protected
function
validateOptionValue
(
$object
,
$actor
,
array
$value
)
{
return
null
;
}
public
function
getCommandKeyword
()
{
return
null
;
}
public
function
getCommandAliases
()
{
return
array
();
}
public
function
getCommandSummary
()
{
return
null
;
}
protected
function
getRevisionActionOrder
()
{
return
1000
;
}
public
function
getActionStrength
()
{
return
3
;
}
public
function
getRevisionActionOrderVector
()
{
return
id
(
new
PhutilSortVector
())
->
addInt
(
$this
->
getRevisionActionOrder
());
}
protected
function
getRevisionActionGroupKey
()
{
return
DifferentialRevisionEditEngine
::
ACTIONGROUP_REVISION
;
}
protected
function
getRevisionActionDescription
()
{
return
null
;
}
public
static
function
loadAllActions
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getRevisionActionKey'
)
->
execute
();
}
protected
function
isViewerRevisionAuthor
(
DifferentialRevision
$revision
,
PhabricatorUser
$viewer
)
{
if
(!
$viewer
->
getPHID
())
{
return
false
;
}
return
(
$viewer
->
getPHID
()
===
$revision
->
getAuthorPHID
());
}
protected
function
getActionOptions
(
PhabricatorUser
$viewer
,
DifferentialRevision
$revision
)
{
return
array
(
array
(),
null
,
);
}
public
function
newEditField
(
DifferentialRevision
$revision
,
PhabricatorUser
$viewer
)
{
// Actions in the "review" group, like "Accept Revision", do not require
// that the actor be able to edit the revision.
$group_review
=
DifferentialRevisionEditEngine
::
ACTIONGROUP_REVIEW
;
$is_review
=
(
$this
->
getRevisionActionGroupKey
()
==
$group_review
);
$field
=
id
(
new
PhabricatorApplyEditField
())
->
setKey
(
$this
->
getRevisionActionKey
())
->
setTransactionType
(
$this
->
getTransactionTypeConstant
())
->
setCanApplyWithoutEditCapability
(
$is_review
)
->
setValue
(
true
);
if
(
$this
->
isActionAvailable
(
$revision
,
$viewer
))
{
$label
=
$this
->
getRevisionActionLabel
();
if
(
$label
!==
null
)
{
$field
->
setCommentActionLabel
(
$label
);
$description
=
$this
->
getRevisionActionDescription
();
$field
->
setActionDescription
(
$description
);
$group_key
=
$this
->
getRevisionActionGroupKey
();
$field
->
setCommentActionGroupKey
(
$group_key
);
// Currently, every revision action conflicts with every other
// revision action: for example, you can not simultaneously Accept and
// Reject a revision.
// Under some configurations, some combinations of actions are sort of
// technically permissible. For example, you could reasonably Reject
// and Abandon a revision if "anyone can abandon anything" is enabled.
// It's not clear that these combinations are actually useful, so just
// keep things simple for now.
$field
->
setActionConflictKey
(
'revision.action'
);
list
(
$options
,
$value
)
=
$this
->
getActionOptions
(
$viewer
,
$revision
);
if
(
count
(
$options
)
>
1
)
{
$field
->
setOptions
(
$options
);
$field
->
setValue
(
$value
);
}
}
}
return
$field
;
}
public
function
validateTransactions
(
$object
,
array
$xactions
)
{
$errors
=
array
();
$actor
=
$this
->
getActor
();
$action_exception
=
null
;
try
{
$this
->
validateAction
(
$object
,
$actor
);
}
catch
(
Exception
$ex
)
{
$action_exception
=
$ex
;
}
foreach
(
$xactions
as
$xaction
)
{
if
(
$action_exception
)
{
$errors
[]
=
$this
->
newInvalidError
(
$action_exception
->
getMessage
(),
$xaction
);
continue
;
}
$new
=
$xaction
->
getNewValue
();
if
(!
is_array
(
$new
))
{
continue
;
}
try
{
$this
->
validateOptionValue
(
$object
,
$actor
,
$new
);
}
catch
(
Exception
$ex
)
{
$errors
[]
=
$this
->
newInvalidError
(
$ex
->
getMessage
(),
$xaction
);
}
}
return
$errors
;
}
}
Event Timeline
Log In to Comment