Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F538295
PhabricatorAuthSSHKeyController.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
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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 8:40 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
119941
Default Alt Text
PhabricatorAuthSSHKeyController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment