Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F959743
TokenGivenConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 10:27 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
228484
Default Alt Text
TokenGivenConduitAPIMethod.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment