Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F548090
PhabricatorAuthQueryPublicKeysConduitAPIMethod.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
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
Mon, May 12, 1:44 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
120531
Default Alt Text
PhabricatorAuthQueryPublicKeysConduitAPIMethod.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment