Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93233968
PhabricatorAuthQueryPublicKeysConduitAPIMethod.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
Wed, Nov 27, 05:42
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Nov 29, 05:42 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22598591
Attached To
rPH Phabricator
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
);
}
}
Event Timeline
Log In to Comment