Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2890879
PhabricatorAuthQueryPublicKeysConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorAuthQueryPublicKeysConduitAPIMethod.php
View Options
<?php
final
class
PhabricatorAuthQueryPublicKeysConduitAPIMethod
extends
PhabricatorAuthConduitAPIMethod
{
public
function
getAPIMethodName
(
)
{
return
'auth.querypublickeys'
;
}
public
function
getMethodDescription
(
)
{
return
pht
(
'Query public keys.'
)
;
}
protected
function
defineParamTypes
(
)
{
return
array
(
'ids'
=>
'optional list<id>'
,
'phids'
=>
'optional list<phid>'
,
'objectPHIDs'
=>
'optional list<phid>'
,
'keys'
=>
'optional list<string>'
,
)
+
self
::
getPagerParamTypes
(
)
;
}
protected
function
defineReturnType
(
)
{
return
'result-set'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$viewer
=
$request
->
getUser
(
)
;
$query
=
id
(
new
PhabricatorAuthSSHKeyQuery
(
)
)
->
setViewer
(
$viewer
)
->
withIsActive
(
true
)
;
$ids
=
$request
->
getValue
(
'ids'
)
;
if
(
$ids
!==
null
)
{
$query
->
withIDs
(
$ids
)
;
}
$phids
=
$request
->
getValue
(
'phids'
)
;
if
(
$phids
!==
null
)
{
$query
->
withPHIDs
(
$phids
)
;
}
$object_phids
=
$request
->
getValue
(
'objectPHIDs'
)
;
if
(
$object_phids
!==
null
)
{
$query
->
withObjectPHIDs
(
$object_phids
)
;
}
$keys
=
$request
->
getValue
(
'keys'
)
;
if
(
$keys
!==
null
)
{
$key_objects
=
array
(
)
;
foreach
(
$keys
as
$key
)
{
$key_objects
[
]
=
PhabricatorAuthSSHPublicKey
::
newFromRawKey
(
$key
)
;
}
$query
->
withKeys
(
$key_objects
)
;
}
$pager
=
$this
->
newPager
(
$request
)
;
$public_keys
=
$query
->
executeWithCursorPager
(
$pager
)
;
$data
=
array
(
)
;
foreach
(
$public_keys
as
$public_key
)
{
$data
[
]
=
array
(
'id'
=>
$public_key
->
getID
(
)
,
'name'
=>
$public_key
->
getName
(
)
,
'phid'
=>
$public_key
->
getPHID
(
)
,
'objectPHID'
=>
$public_key
->
getObjectPHID
(
)
,
'isTrusted'
=>
(bool)
$public_key
->
getIsTrusted
(
)
,
'key'
=>
$public_key
->
getEntireKey
(
)
,
)
;
}
$results
=
array
(
'data'
=>
$data
,
)
;
return
$this
->
addPagerResults
(
$results
,
$pager
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 14:17 (3 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1125414
Default Alt Text
PhabricatorAuthQueryPublicKeysConduitAPIMethod.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment