Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98280431
ManiphestGetTaskTransactionsConduitAPIMethod.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, Jan 11, 17:55
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 13, 17:55 (2 d)
Engine
blob
Format
Raw Data
Handle
23533585
Attached To
rPH Phabricator
ManiphestGetTaskTransactionsConduitAPIMethod.php
View Options
<?php
final
class
ManiphestGetTaskTransactionsConduitAPIMethod
extends
ManiphestConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'maniphest.gettasktransactions'
;
}
public
function
getMethodDescription
()
{
return
'Retrieve Maniphest Task Transactions.'
;
}
public
function
defineParamTypes
()
{
return
array
(
'ids'
=>
'required list<int>'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty list<dict<string, wild>>'
;
}
public
function
defineErrorTypes
()
{
return
array
(
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$results
=
array
();
$task_ids
=
$request
->
getValue
(
'ids'
);
if
(!
$task_ids
)
{
return
$results
;
}
$tasks
=
id
(
new
ManiphestTaskQuery
())
->
setViewer
(
$request
->
getUser
())
->
withIDs
(
$task_ids
)
->
execute
();
$tasks
=
mpull
(
$tasks
,
null
,
'getPHID'
);
$transactions
=
array
();
if
(
$tasks
)
{
$transactions
=
id
(
new
ManiphestTransactionQuery
())
->
setViewer
(
$request
->
getUser
())
->
withObjectPHIDs
(
mpull
(
$tasks
,
'getPHID'
))
->
needComments
(
true
)
->
execute
();
}
foreach
(
$transactions
as
$transaction
)
{
$task_phid
=
$transaction
->
getObjectPHID
();
if
(
empty
(
$tasks
[
$task_phid
]))
{
continue
;
}
$task_id
=
$tasks
[
$task_phid
]->
getID
();
$comments
=
null
;
if
(
$transaction
->
hasComment
())
{
$comments
=
$transaction
->
getComment
()->
getContent
();
}
$results
[
$task_id
][]
=
array
(
'taskID'
=>
$task_id
,
'transactionType'
=>
$transaction
->
getTransactionType
(),
'oldValue'
=>
$transaction
->
getOldValue
(),
'newValue'
=>
$transaction
->
getNewValue
(),
'comments'
=>
$comments
,
'authorPHID'
=>
$transaction
->
getAuthorPHID
(),
'dateCreated'
=>
$transaction
->
getDateCreated
(),
);
}
return
$results
;
}
}
Event Timeline
Log In to Comment