Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107209497
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
Sat, Apr 5, 23:55
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Apr 7, 23:55 (2 d)
Engine
blob
Format
Raw Data
Handle
25345931
Attached To
rPH Phabricator
PhabricatorAuthSSHKeyController.php
View Options
<?php
abstract
class
PhabricatorAuthSSHKeyController
extends
PhabricatorAuthController
{
private
$keyObject
;
public
function
setSSHKeyObject
(
PhabricatorSSHPublicKeyInterface
$object
)
{
$this
->
keyObject
=
$object
;
return
$this
;
}
public
function
getSSHKeyObject
()
{
return
$this
->
keyObject
;
}
protected
function
loadSSHKeyObject
(
$object_phid
,
$need_edit
)
{
$viewer
=
$this
->
getViewer
();
$query
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$object_phid
));
if
(
$need_edit
)
{
$query
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
));
}
$object
=
$query
->
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
;
}
$this
->
keyObject
=
$object
;
return
$object
;
}
protected
function
newKeyForObjectPHID
(
$object_phid
)
{
$viewer
=
$this
->
getViewer
();
$object
=
$this
->
loadSSHKeyObject
(
$object_phid
,
true
);
if
(!
$object
)
{
return
null
;
}
return
PhabricatorAuthSSHKey
::
initializeNewSSHKey
(
$viewer
,
$object
);
}
protected
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$viewer
=
$this
->
getViewer
();
$key_object
=
$this
->
getSSHKeyObject
();
if
(
$key_object
)
{
$object_phid
=
$key_object
->
getPHID
();
$handles
=
$viewer
->
loadHandles
(
array
(
$object_phid
));
$handle
=
$handles
[
$object_phid
];
$uri
=
$key_object
->
getSSHPublicKeyManagementURI
(
$viewer
);
$crumbs
->
addTextCrumb
(
$handle
->
getObjectName
(),
$uri
);
}
return
$crumbs
;
}
}
Event Timeline
Log In to Comment