Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92656934
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
Fri, Nov 22, 11:24
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 11:24 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22479655
Attached To
rPH Phabricator
ManiphestGetTaskTransactionsConduitAPIMethod.php
View Options
<?php
final
class
ManiphestGetTaskTransactionsConduitAPIMethod
extends
ManiphestConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'maniphest.gettasktransactions'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Retrieve Maniphest task transactions.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'ids'
=>
'required list<int>'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty list<dict<string, wild>>'
;
}
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
,
'transactionPHID'
=>
$transaction
->
getPHID
(),
'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