Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95802499
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
Thu, Dec 19, 10:03
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Dec 21, 10:03 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23057388
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.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'authorPHIDs'
=>
'list<phid>'
,
'objectPHIDs'
=>
'list<phid>'
,
'tokenPHIDs'
=>
'list<phid>'
,
);
}
protected
function
defineReturnType
()
{
return
'list<dict>'
;
}
protected
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