Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102586878
ConduitAPI_maniphest_update_Method.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 22, 06:44
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Feb 24, 06:44 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24365308
Attached To
rPH Phabricator
ConduitAPI_maniphest_update_Method.php
View Options
<?php
/**
* @group conduit
*/
final
class
ConduitAPI_maniphest_update_Method
extends
ConduitAPI_maniphest_Method
{
public
function
getMethodDescription
()
{
return
"Update an existing Maniphest task."
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR-BAD-TASK'
=>
'No such maniphest task exists.'
,
'ERR-INVALID-PARAMETER'
=>
'Missing or malformed parameter.'
);
}
public
function
defineParamTypes
()
{
return
$this
->
getTaskFields
(
$is_new
=
false
);
}
public
function
defineReturnType
()
{
return
'nonempty dict'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$id
=
$request
->
getValue
(
'id'
);
$phid
=
$request
->
getValue
(
'phid'
);
if
((
$id
&&
$phid
)
||
(!
$id
&&
!
$phid
))
{
throw
new
Exception
(
"Specify exactly one of 'id' and 'phid'."
);
}
if
(
$id
)
{
$task
=
id
(
new
ManiphestTask
())->
load
(
$id
);
}
else
{
$task
=
id
(
new
ManiphestTask
())->
loadOneWhere
(
'phid = %s'
,
$phid
);
}
if
(!
$task
)
{
throw
new
ConduitException
(
'ERR-BAD-TASK'
);
}
$this
->
applyRequest
(
$task
,
$request
,
$is_new
=
false
);
return
$this
->
buildTaskInfoDictionary
(
$task
);
}
}
Event Timeline
Log In to Comment