Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98093137
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
Thu, Jan 9, 17:15
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jan 11, 17:15 (2 d)
Engine
blob
Format
Raw Data
Handle
23505571
Attached To
rPH Phabricator
FlagQueryConduitAPIMethod.php
View Options
<?php
final
class
FlagQueryConduitAPIMethod
extends
FlagConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'flag.query'
;
}
public
function
getMethodDescription
()
{
return
'Query flag markers.'
;
}
public
function
defineParamTypes
()
{
return
array
(
'ownerPHIDs'
=>
'optional list<phid>'
,
'types'
=>
'optional list<type>'
,
'objectPHIDs'
=>
'optional list<phid>'
,
'offset'
=>
'optional int'
,
'limit'
=>
'optional int (default = 100)'
,
);
}
public
function
defineReturnType
()
{
return
'list<dict>'
;
}
public
function
defineErrorTypes
()
{
return
array
(
);
}
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