mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-12 23:08:37 +01:00
Summary: Ref T12964. This feels like a cheat, but works well. Just redirect the user back to the form they came from instead of to the key page. Test Plan: Add a key to a user profile, add a key to an Alamanac device. Grep for PhabricatorAuthSSHKeyTableView and check all locations. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T12964 Differential Revision: https://secure.phabricator.com/D18445
137 lines
4 KiB
PHP
137 lines
4 KiB
PHP
<?php
|
|
|
|
final class PhabricatorAuthSSHKeyEditController
|
|
extends PhabricatorAuthSSHKeyController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $this->getViewer();
|
|
$id = $request->getURIData('id');
|
|
|
|
if ($id) {
|
|
$key = id(new PhabricatorAuthSSHKeyQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
))
|
|
->executeOne();
|
|
if (!$key) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$is_new = false;
|
|
} else {
|
|
$key = $this->newKeyForObjectPHID($request->getStr('objectPHID'));
|
|
if (!$key) {
|
|
return new Aphront404Response();
|
|
}
|
|
$is_new = true;
|
|
}
|
|
|
|
$cancel_uri = $key->getObject()->getSSHPublicKeyManagementURI($viewer);
|
|
|
|
if ($key->getIsTrusted()) {
|
|
$id = $key->getID();
|
|
|
|
return $this->newDialog()
|
|
->setTitle(pht('Can Not Edit Trusted Key'))
|
|
->appendParagraph(
|
|
pht(
|
|
'This key is trusted. Trusted keys can not be edited. '.
|
|
'Use %s to revoke trust before editing the key.',
|
|
phutil_tag(
|
|
'tt',
|
|
array(),
|
|
"bin/almanac untrust-key --id {$id}")))
|
|
->addCancelButton($cancel_uri, pht('Okay'));
|
|
}
|
|
|
|
$token = id(new PhabricatorAuthSessionEngine())->requireHighSecuritySession(
|
|
$viewer,
|
|
$request,
|
|
$cancel_uri);
|
|
|
|
$v_name = $key->getName();
|
|
$e_name = strlen($v_name) ? null : true;
|
|
|
|
$v_key = $key->getEntireKey();
|
|
$e_key = strlen($v_key) ? null : true;
|
|
|
|
$validation_exception = null;
|
|
if ($request->isFormPost()) {
|
|
$type_create = PhabricatorTransactions::TYPE_CREATE;
|
|
$type_name = PhabricatorAuthSSHKeyTransaction::TYPE_NAME;
|
|
$type_key = PhabricatorAuthSSHKeyTransaction::TYPE_KEY;
|
|
|
|
$e_name = null;
|
|
$e_key = null;
|
|
|
|
$v_name = $request->getStr('name');
|
|
$v_key = $request->getStr('key');
|
|
|
|
$xactions = array();
|
|
|
|
if (!$key->getID()) {
|
|
$xactions[] = id(new PhabricatorAuthSSHKeyTransaction())
|
|
->setTransactionType(PhabricatorTransactions::TYPE_CREATE);
|
|
}
|
|
|
|
$xactions[] = id(new PhabricatorAuthSSHKeyTransaction())
|
|
->setTransactionType($type_name)
|
|
->setNewValue($v_name);
|
|
|
|
$xactions[] = id(new PhabricatorAuthSSHKeyTransaction())
|
|
->setTransactionType($type_key)
|
|
->setNewValue($v_key);
|
|
|
|
$editor = id(new PhabricatorAuthSSHKeyEditor())
|
|
->setActor($viewer)
|
|
->setContentSourceFromRequest($request)
|
|
->setContinueOnNoEffect(true);
|
|
|
|
try {
|
|
$editor->applyTransactions($key, $xactions);
|
|
return id(new AphrontRedirectResponse())->setURI($cancel_uri);
|
|
} catch (PhabricatorApplicationTransactionValidationException $ex) {
|
|
$validation_exception = $ex;
|
|
$e_name = $ex->getShortMessage($type_name);
|
|
$e_key = $ex->getShortMessage($type_key);
|
|
}
|
|
}
|
|
|
|
$form = id(new AphrontFormView())
|
|
->setUser($viewer)
|
|
->appendChild(
|
|
id(new AphrontFormTextControl())
|
|
->setLabel(pht('Name'))
|
|
->setName('name')
|
|
->setError($e_name)
|
|
->setValue($v_name))
|
|
->appendChild(
|
|
id(new AphrontFormTextAreaControl())
|
|
->setLabel(pht('Public Key'))
|
|
->setName('key')
|
|
->setValue($v_key)
|
|
->setError($e_key));
|
|
|
|
if ($is_new) {
|
|
$title = pht('Upload SSH Public Key');
|
|
$save_button = pht('Upload Public Key');
|
|
$form->addHiddenInput('objectPHID', $key->getObject()->getPHID());
|
|
} else {
|
|
$title = pht('Edit SSH Public Key');
|
|
$save_button = pht('Save Changes');
|
|
}
|
|
|
|
return $this->newDialog()
|
|
->setTitle($title)
|
|
->setWidth(AphrontDialogView::WIDTH_FORM)
|
|
->setValidationException($validation_exception)
|
|
->appendForm($form)
|
|
->addSubmitButton($save_button)
|
|
->addCancelButton($cancel_uri);
|
|
}
|
|
|
|
}
|