Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91377742
ManiphestInfoConduitAPIMethod.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
Sun, Nov 10, 12:37
Size
1019 B
Mime Type
text/x-php
Expires
Tue, Nov 12, 12:37 (2 d)
Engine
blob
Format
Raw Data
Handle
22253479
Attached To
rPH Phabricator
ManiphestInfoConduitAPIMethod.php
View Options
<?php
final
class
ManiphestInfoConduitAPIMethod
extends
ManiphestConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'maniphest.info'
;
}
public
function
getMethodDescription
()
{
return
'Retrieve information about a Maniphest task, given its id.'
;
}
public
function
defineParamTypes
()
{
return
array
(
'task_id'
=>
'required id'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty dict'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR_BAD_TASK'
=>
'No such maniphest task exists'
,
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$task_id
=
$request
->
getValue
(
'task_id'
);
$task
=
id
(
new
ManiphestTaskQuery
())
->
setViewer
(
$request
->
getUser
())
->
withIDs
(
array
(
$task_id
))
->
needSubscriberPHIDs
(
true
)
->
needProjectPHIDs
(
true
)
->
executeOne
();
if
(!
$task
)
{
throw
new
ConduitException
(
'ERR_BAD_TASK'
);
}
return
$this
->
buildTaskInfoDictionary
(
$task
);
}
}
Event Timeline
Log In to Comment