Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99841159
ConduitAPI_differential_query_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
Sun, Jan 26, 22:05
Size
8 KB
Mime Type
text/x-php
Expires
Tue, Jan 28, 22:05 (2 d)
Engine
blob
Format
Raw Data
Handle
23832230
Attached To
rPH Phabricator
ConduitAPI_differential_query_Method.php
View Options
<?php
/**
* @group conduit
*/
final
class
ConduitAPI_differential_query_Method
extends
ConduitAPIMethod
{
public
function
getMethodDescription
()
{
return
"Query Differential revisions which match certain criteria."
;
}
public
function
defineParamTypes
()
{
$hash_types
=
ArcanistDifferentialRevisionHash
::
getTypes
();
$hash_types
=
implode
(
', '
,
$hash_types
);
$status_types
=
array
(
DifferentialRevisionQuery
::
STATUS_ANY
,
DifferentialRevisionQuery
::
STATUS_OPEN
,
DifferentialRevisionQuery
::
STATUS_ACCEPTED
,
DifferentialRevisionQuery
::
STATUS_CLOSED
,
);
$status_types
=
implode
(
', '
,
$status_types
);
$order_types
=
array
(
DifferentialRevisionQuery
::
ORDER_MODIFIED
,
DifferentialRevisionQuery
::
ORDER_CREATED
,
);
$order_types
=
implode
(
', '
,
$order_types
);
return
array
(
'authors'
=>
'optional list<phid>'
,
'ccs'
=>
'optional list<phid>'
,
'reviewers'
=>
'optional list<phid>'
,
'paths'
=>
'optional list<pair<callsign, path>>'
,
'commitHashes'
=>
'optional list<pair<enum<'
.
$hash_types
.
'>, string>>'
,
'status'
=>
'optional enum<'
.
$status_types
.
'>'
,
'order'
=>
'optional enum<'
.
$order_types
.
'>'
,
'limit'
=>
'optional uint'
,
'offset'
=>
'optional uint'
,
'ids'
=>
'optional list<uint>'
,
'phids'
=>
'optional list<phid>'
,
'subscribers'
=>
'optional list<phid>'
,
'responsibleUsers'
=>
'optional list<phid>'
,
'branches'
=>
'optional list<string>'
,
'arcanistProjects'
=>
'optional list<string>'
,
);
}
public
function
defineReturnType
()
{
return
'list<dict>'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR-INVALID-PARAMETER'
=>
'Missing or malformed parameter.'
,
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$authors
=
$request
->
getValue
(
'authors'
);
$ccs
=
$request
->
getValue
(
'ccs'
);
$reviewers
=
$request
->
getValue
(
'reviewers'
);
$status
=
$request
->
getValue
(
'status'
);
$order
=
$request
->
getValue
(
'order'
);
$path_pairs
=
$request
->
getValue
(
'paths'
);
$commit_hashes
=
$request
->
getValue
(
'commitHashes'
);
$limit
=
$request
->
getValue
(
'limit'
);
$offset
=
$request
->
getValue
(
'offset'
);
$ids
=
$request
->
getValue
(
'ids'
);
$phids
=
$request
->
getValue
(
'phids'
);
$subscribers
=
$request
->
getValue
(
'subscribers'
);
$responsible_users
=
$request
->
getValue
(
'responsibleUsers'
);
$branches
=
$request
->
getValue
(
'branches'
);
$arc_projects
=
$request
->
getValue
(
'arcanistProjects'
);
$query
=
id
(
new
DifferentialRevisionQuery
())
->
setViewer
(
$request
->
getUser
());
if
(
$authors
)
{
$query
->
withAuthors
(
$authors
);
}
if
(
$ccs
)
{
$query
->
withCCs
(
$ccs
);
}
if
(
$reviewers
)
{
$query
->
withReviewers
(
$reviewers
);
}
if
(
$path_pairs
)
{
$paths
=
array
();
foreach
(
$path_pairs
as
$pair
)
{
list
(
$callsign
,
$path
)
=
$pair
;
$paths
[]
=
$path
;
}
$path_map
=
id
(
new
DiffusionPathIDQuery
(
$paths
))->
loadPathIDs
();
if
(
count
(
$path_map
)
!=
count
(
$paths
))
{
$unknown_paths
=
array
();
foreach
(
$paths
as
$p
)
{
if
(!
idx
(
$path_map
,
$p
))
{
$unknown_paths
[]
=
$p
;
}
}
throw
id
(
new
ConduitException
(
'ERR-INVALID-PARAMETER'
))
->
setErrorDescription
(
'Unknown paths: '
.
implode
(
', '
,
$unknown_paths
));
}
$repos
=
array
();
foreach
(
$path_pairs
as
$pair
)
{
list
(
$callsign
,
$path
)
=
$pair
;
if
(!
idx
(
$repos
,
$callsign
))
{
$repos
[
$callsign
]
=
id
(
new
PhabricatorRepository
())->
loadOneWhere
(
'callsign = %s'
,
$callsign
);
if
(!
$repos
[
$callsign
])
{
throw
id
(
new
ConduitException
(
'ERR-INVALID-PARAMETER'
))
->
setErrorDescription
(
'Unknown repo callsign: '
.
$callsign
);
}
}
$repo
=
$repos
[
$callsign
];
$query
->
withPath
(
$repo
->
getID
(),
idx
(
$path_map
,
$path
));
}
}
if
(
$commit_hashes
)
{
$hash_types
=
ArcanistDifferentialRevisionHash
::
getTypes
();
foreach
(
$commit_hashes
as
$info
)
{
list
(
$type
,
$hash
)
=
$info
;
if
(
empty
(
$type
)
||
!
in_array
(
$type
,
$hash_types
)
||
empty
(
$hash
))
{
throw
new
ConduitException
(
'ERR-INVALID-PARAMETER'
);
}
}
$query
->
withCommitHashes
(
$commit_hashes
);
}
if
(
$status
)
{
$query
->
withStatus
(
$status
);
}
if
(
$order
)
{
$query
->
setOrder
(
$order
);
}
if
(
$limit
)
{
$query
->
setLimit
(
$limit
);
}
if
(
$offset
)
{
$query
->
setOffset
(
$offset
);
}
if
(
$ids
)
{
$query
->
withIDs
(
$ids
);
}
if
(
$phids
)
{
$query
->
withPHIDs
(
$phids
);
}
if
(
$responsible_users
)
{
$query
->
withResponsibleUsers
(
$responsible_users
);
}
if
(
$subscribers
)
{
$query
->
withSubscribers
(
$subscribers
);
}
if
(
$branches
)
{
$query
->
withBranches
(
$branches
);
}
if
(
$arc_projects
)
{
// This is sort of special-cased, but don't make arc do an extra round
// trip.
$projects
=
id
(
new
PhabricatorRepositoryArcanistProject
())
->
loadAllWhere
(
'name in (%Ls)'
,
$arc_projects
);
if
(!
$projects
)
{
return
array
();
}
$query
->
withArcanistProjectPHIDs
(
mpull
(
$projects
,
'getPHID'
));
}
$query
->
needRelationships
(
true
);
$query
->
needCommitPHIDs
(
true
);
$query
->
needDiffIDs
(
true
);
$query
->
needActiveDiffs
(
true
);
$query
->
needHashes
(
true
);
$revisions
=
$query
->
execute
();
$results
=
array
();
foreach
(
$revisions
as
$revision
)
{
$diff
=
$revision
->
getActiveDiff
();
if
(!
$diff
)
{
continue
;
}
$id
=
$revision
->
getID
();
$auxiliary_fields
=
$this
->
loadAuxiliaryFields
(
$revision
,
$request
->
getUser
());
$result
=
array
(
'id'
=>
$id
,
'phid'
=>
$revision
->
getPHID
(),
'title'
=>
$revision
->
getTitle
(),
'uri'
=>
PhabricatorEnv
::
getProductionURI
(
'/D'
.
$id
),
'dateCreated'
=>
$revision
->
getDateCreated
(),
'dateModified'
=>
$revision
->
getDateModified
(),
'authorPHID'
=>
$revision
->
getAuthorPHID
(),
'status'
=>
$revision
->
getStatus
(),
'statusName'
=>
ArcanistDifferentialRevisionStatus
::
getNameForRevisionStatus
(
$revision
->
getStatus
()),
'branch'
=>
$diff
->
getBranch
(),
'summary'
=>
$revision
->
getSummary
(),
'testPlan'
=>
$revision
->
getTestPlan
(),
'lineCount'
=>
$revision
->
getLineCount
(),
'diffs'
=>
$revision
->
getDiffIDs
(),
'commits'
=>
$revision
->
getCommitPHIDs
(),
'reviewers'
=>
array_values
(
$revision
->
getReviewers
()),
'ccs'
=>
array_values
(
$revision
->
getCCPHIDs
()),
'hashes'
=>
$revision
->
getHashes
(),
'auxiliary'
=>
$auxiliary_fields
,
);
// TODO: This is a hacky way to put permissions on this field until we
// have first-class support, see T838.
if
(
$revision
->
getAuthorPHID
()
==
$request
->
getUser
()->
getPHID
())
{
$result
[
'sourcePath'
]
=
$diff
->
getSourcePath
();
}
$results
[]
=
$result
;
}
return
$results
;
}
private
function
loadAuxiliaryFields
(
DifferentialRevision
$revision
,
PhabricatorUser
$user
)
{
$aux_fields
=
DifferentialFieldSelector
::
newSelector
()
->
getFieldSpecifications
();
foreach
(
$aux_fields
as
$key
=>
$aux_field
)
{
$aux_field
->
setUser
(
$user
);
if
(!
$aux_field
->
shouldAppearOnConduitView
())
{
unset
(
$aux_fields
[
$key
]);
}
}
$aux_fields
=
DifferentialAuxiliaryField
::
loadFromStorage
(
$revision
,
$aux_fields
);
return
mpull
(
$aux_fields
,
'getValueForConduit'
,
'getKeyForConduit'
);
}
}
Event Timeline
Log In to Comment