Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97862482
ConduitAPI_differential_find_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
Mon, Jan 6, 21:54
Size
2 KB
Mime Type
text/x-php
Expires
Wed, Jan 8, 21:54 (2 d)
Engine
blob
Format
Raw Data
Handle
23422199
Attached To
rPH Phabricator
ConduitAPI_differential_find_Method.php
View Options
<?php
/**
* @group conduit
*/
final
class
ConduitAPI_differential_find_Method
extends
ConduitAPIMethod
{
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_DEPRECATED
;
}
public
function
getMethodStatusDescription
()
{
return
"Replaced by 'differential.query'."
;
}
public
function
getMethodDescription
()
{
return
"Query Differential revisions which match certain criteria."
;
}
public
function
defineParamTypes
()
{
$types
=
array
(
'open'
,
'committable'
,
'revision-ids'
,
'phids'
,
);
$types
=
implode
(
', '
,
$types
);
return
array
(
'query'
=>
'required enum<'
.
$types
.
'>'
,
'guids'
=>
'required nonempty list<guids>'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty list<dict>'
;
}
public
function
defineErrorTypes
()
{
return
array
(
);
}
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