Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104786059
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
Wed, Mar 12, 09:22
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Mar 14, 09:22 (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
24837073
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
defineParamTypes
()
{
return
array
(
'revisionID'
=>
'required int'
,
);
}
public
function
defineReturnType
()
{
return
'void'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR_NOT_FOUND'
=>
'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
)
->
needReviewerStatus
(
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
=
PhabricatorContentSource
::
newForSource
(
PhabricatorContentSource
::
SOURCE_CONDUIT
,
array
());
$editor
=
id
(
new
DifferentialTransactionEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromConduitRequest
(
$request
)
->
setContinueOnMissingFields
(
true
)
->
setContinueOnNoEffect
(
true
);
$editor
->
applyTransactions
(
$revision
,
$xactions
);
return
;
}
}
Event Timeline
Log In to Comment