Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90711969
TokenGivenConduitAPIMethod.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, Nov 4, 02:17
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 6, 02:17 (2 d)
Engine
blob
Format
Raw Data
Handle
22123454
Attached To
rPH Phabricator
TokenGivenConduitAPIMethod.php
View Options
<?php
final
class
TokenGivenConduitAPIMethod
extends
TokenConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'token.given'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Query tokens given to objects.'
);
}
public
function
defineParamTypes
()
{
return
array
(
'authorPHIDs'
=>
'list<phid>'
,
'objectPHIDs'
=>
'list<phid>'
,
'tokenPHIDs'
=>
'list<phid>'
,
);
}
public
function
defineErrorTypes
()
{
return
array
();
}
public
function
defineReturnType
()
{
return
'list<dict>'
;
}
public
function
execute
(
ConduitAPIRequest
$request
)
{
$query
=
id
(
new
PhabricatorTokenGivenQuery
())
->
setViewer
(
$request
->
getUser
());
$author_phids
=
$request
->
getValue
(
'authorPHIDs'
);
if
(
$author_phids
)
{
$query
->
withAuthorPHIDs
(
$author_phids
);
}
$object_phids
=
$request
->
getValue
(
'objectPHIDs'
);
if
(
$object_phids
)
{
$query
->
withObjectPHIDs
(
$object_phids
);
}
$token_phids
=
$request
->
getValue
(
'tokenPHIDs'
);
if
(
$token_phids
)
{
$query
->
withTokenPHIDs
(
$token_phids
);
}
$given
=
$query
->
execute
();
return
$this
->
buildTokenGivenDicts
(
$given
);
}
}
Event Timeline
Log In to Comment