Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93168057
DifferentialFindConduitAPIMethod.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
Tue, Nov 26, 17:47
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 17:47 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
22584868
Attached To
rPH Phabricator
DifferentialFindConduitAPIMethod.php
View Options
<?php
final
class
DifferentialFindConduitAPIMethod
extends
DifferentialConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'differential.find'
;
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_DEPRECATED
;
}
public
function
getMethodStatusDescription
()
{
return
pht
(
"Replaced by '%s'."
,
'differential.query'
);
}
public
function
getMethodDescription
()
{
return
pht
(
'Query Differential revisions which match certain criteria.'
);
}
protected
function
defineParamTypes
()
{
$types
=
array
(
'open'
,
'committable'
,
'revision-ids'
,
'phids'
,
);
return
array
(
'query'
=>
'required '
.
$this
->
formatStringConstants
(
$types
),
'guids'
=>
'required nonempty list<guids>'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty list<dict>'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$type
=
$request
->
getValue
(
'query'
);
$guids
=
$request
->
getValue
(
'guids'
);
$results
=
array
();
if
(!
$guids
)
{
return
$results
;
}
$query
=
id
(
new
DifferentialRevisionQuery
())
->
setViewer
(
$request
->
getUser
());
switch
(
$type
)
{
case
'open'
:
$query
->
withStatus
(
DifferentialRevisionQuery
::
STATUS_OPEN
)
->
withAuthors
(
$guids
);
break
;
case
'committable'
:
$query
->
withStatus
(
DifferentialRevisionQuery
::
STATUS_ACCEPTED
)
->
withAuthors
(
$guids
);
break
;
case
'revision-ids'
:
$query
->
withIDs
(
$guids
);
break
;
case
'owned'
:
$query
->
withAuthors
(
$guids
);
break
;
case
'phids'
:
$query
->
withPHIDs
(
$guids
);
break
;
}
$revisions
=
$query
->
execute
();
foreach
(
$revisions
as
$revision
)
{
$diff
=
$revision
->
loadActiveDiff
();
if
(!
$diff
)
{
continue
;
}
$id
=
$revision
->
getID
();
$results
[]
=
array
(
'id'
=>
$id
,
'phid'
=>
$revision
->
getPHID
(),
'name'
=>
$revision
->
getTitle
(),
'uri'
=>
PhabricatorEnv
::
getProductionURI
(
'/D'
.
$id
),
'dateCreated'
=>
$revision
->
getDateCreated
(),
'authorPHID'
=>
$revision
->
getAuthorPHID
(),
'statusName'
=>
ArcanistDifferentialRevisionStatus
::
getNameForRevisionStatus
(
$revision
->
getStatus
()),
'sourcePath'
=>
$diff
->
getSourcePath
(),
);
}
return
$results
;
}
}
Event Timeline
Log In to Comment