Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97240128
DifferentialUpdateRevisionConduitAPIMethod.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, Jan 3, 17:31
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Jan 5, 17:31 (2 d)
Engine
blob
Format
Raw Data
Handle
23362336
Attached To
rPH Phabricator
DifferentialUpdateRevisionConduitAPIMethod.php
View Options
<?php
final
class
DifferentialUpdateRevisionConduitAPIMethod
extends
DifferentialConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'differential.updaterevision'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Update a Differential revision.'
);
}
public
function
defineParamTypes
()
{
return
array
(
'id'
=>
'required revisionid'
,
'diffid'
=>
'required diffid'
,
'fields'
=>
'required dict'
,
'message'
=>
'required string'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty dict'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR_BAD_DIFF'
=>
'Bad diff ID.'
,
'ERR_BAD_REVISION'
=>
'Bad revision ID.'
,
'ERR_WRONG_USER'
=>
'You are not the author of this revision.'
,
'ERR_CLOSED'
=>
'This revision has already been closed.'
,
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$viewer
=
$request
->
getUser
();
$diff
=
id
(
new
DifferentialDiffQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$request
->
getValue
(
'diffid'
)))
->
executeOne
();
if
(!
$diff
)
{
throw
new
ConduitException
(
'ERR_BAD_DIFF'
);
}
$revision
=
id
(
new
DifferentialRevisionQuery
())
->
setViewer
(
$request
->
getUser
())
->
withIDs
(
array
(
$request
->
getValue
(
'id'
)))
->
needReviewerStatus
(
true
)
->
needActiveDiffs
(
true
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$revision
)
{
throw
new
ConduitException
(
'ERR_BAD_REVISION'
);
}
if
(
$revision
->
getStatus
()
==
ArcanistDifferentialRevisionStatus
::
CLOSED
)
{
throw
new
ConduitException
(
'ERR_CLOSED'
);
}
$this
->
applyFieldEdit
(
$request
,
$revision
,
$diff
,
$request
->
getValue
(
'fields'
,
array
()),
$request
->
getValue
(
'message'
));
return
array
(
'revisionid'
=>
$revision
->
getID
(),
'uri'
=>
PhabricatorEnv
::
getURI
(
'/D'
.
$revision
->
getID
()),
);
}
}
Event Timeline
Log In to Comment