Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101988522
DifferentialCloseConduitAPIMethod.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, Feb 15, 22:06
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Feb 17, 22:06 (2 d)
Engine
blob
Format
Raw Data
Handle
24256767
Attached To
rPH Phabricator
DifferentialCloseConduitAPIMethod.php
View Options
<?php
final
class
DifferentialCloseConduitAPIMethod
extends
DifferentialConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'differential.close'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Close a Differential revision.'
);
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_FROZEN
;
}
public
function
getMethodStatusDescription
()
{
return
pht
(
'This method is frozen and will eventually be deprecated. New code '
.
'should use "differential.revision.edit" instead.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'revisionID'
=>
'required int'
,
);
}
protected
function
defineReturnType
()
{
return
'void'
;
}
protected
function
defineErrorTypes
()
{
return
array
(
'ERR_NOT_FOUND'
=>
pht
(
'Revision was not found.'
),
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$viewer
=
$request
->
getUser
();
$id
=
$request
->
getValue
(
'revisionID'
);
$revision
=
id
(
new
DifferentialRevisionQuery
())
->
withIDs
(
array
(
$id
))
->
setViewer
(
$viewer
)
->
needReviewers
(
true
)
->
executeOne
();
if
(!
$revision
)
{
throw
new
ConduitException
(
'ERR_NOT_FOUND'
);
}
$xactions
=
array
();
$xactions
[]
=
id
(
new
DifferentialTransaction
())
->
setTransactionType
(
DifferentialTransaction
::
TYPE_ACTION
)
->
setNewValue
(
DifferentialAction
::
ACTION_CLOSE
);
$content_source
=
$request
->
newContentSource
();
$editor
=
id
(
new
DifferentialTransactionEditor
())
->
setActor
(
$viewer
)
->
setContentSource
(
$request
->
newContentSource
())
->
setContinueOnMissingFields
(
true
)
->
setContinueOnNoEffect
(
true
);
$editor
->
applyTransactions
(
$revision
,
$xactions
);
return
;
}
}
Event Timeline
Log In to Comment