Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105488621
PhabricatorAuthSSHKeyController.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
Mon, Mar 17, 15:24
Size
780 B
Mime Type
text/x-php
Expires
Wed, Mar 19, 15:24 (2 d)
Engine
blob
Format
Raw Data
Handle
24989899
Attached To
rPH Phabricator
PhabricatorAuthSSHKeyController.php
View Options
<?php
abstract
class
PhabricatorAuthSSHKeyController
extends
PhabricatorAuthController
{
protected
function
newKeyForObjectPHID
(
$object_phid
)
{
$viewer
=
$this
->
getViewer
();
$object
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$object_phid
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$object
)
{
return
null
;
}
// If this kind of object can't have SSH keys, don't let the viewer
// add them.
if
(!(
$object
instanceof
PhabricatorSSHPublicKeyInterface
))
{
return
null
;
}
return
PhabricatorAuthSSHKey
::
initializeNewSSHKey
(
$viewer
,
$object
);
}
}
Event Timeline
Log In to Comment