Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93548375
FlagQueryConduitAPIMethod.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 29, 15:44
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 1, 15:44 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22661807
Attached To
rPH Phabricator
FlagQueryConduitAPIMethod.php
View Options
<?php
final
class
FlagQueryConduitAPIMethod
extends
FlagConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'flag.query'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Query flag markers.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'ownerPHIDs'
=>
'optional list<phid>'
,
'types'
=>
'optional list<type>'
,
'objectPHIDs'
=>
'optional list<phid>'
,
'offset'
=>
'optional int'
,
'limit'
=>
'optional int (default = 100)'
,
);
}
protected
function
defineReturnType
()
{
return
'list<dict>'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$query
=
new
PhabricatorFlagQuery
();
$query
->
setViewer
(
$request
->
getUser
());
$owner_phids
=
$request
->
getValue
(
'ownerPHIDs'
,
array
());
if
(
$owner_phids
)
{
$query
->
withOwnerPHIDs
(
$owner_phids
);
}
$object_phids
=
$request
->
getValue
(
'objectPHIDs'
,
array
());
if
(
$object_phids
)
{
$query
->
withObjectPHIDs
(
$object_phids
);
}
$types
=
$request
->
getValue
(
'types'
,
array
());
if
(
$types
)
{
$query
->
withTypes
(
$types
);
}
$query
->
needHandles
(
true
);
$query
->
setOffset
(
$request
->
getValue
(
'offset'
,
0
));
$query
->
setLimit
(
$request
->
getValue
(
'limit'
,
100
));
$flags
=
$query
->
execute
();
$results
=
array
();
foreach
(
$flags
as
$flag
)
{
$results
[]
=
$this
->
buildFlagInfoDictionary
(
$flag
);
}
return
$results
;
}
}
Event Timeline
Log In to Comment