mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-03 16:08:19 +02:00
Summary: Fixes T9762. Ref T10246. **Disabling Bindings**: Previously, there was no formal way to disable bindings. The internal callers sometimes check some informal property on the binding, but this is a common need and deserves first-class support in the UI. Allow bindings to be disabled. **Deleting Interfaces**: Previously, you could not delete interfaces. Now, you can delete unused interfaces. Also some minor cleanup and slightly less mysterious documentation. Test Plan: Disabled bindings and deleted interfaces. Reviewers: chad Reviewed By: chad Subscribers: yelirekim Maniphest Tasks: T9762, T10246 Differential Revision: https://secure.phabricator.com/D15345
72 lines
2.1 KiB
PHP
72 lines
2.1 KiB
PHP
<?php
|
|
|
|
final class AlmanacInterfaceDeleteController
|
|
extends AlmanacDeviceController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
|
|
$id = $request->getURIData('id');
|
|
$interface = id(new AlmanacInterfaceQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
))
|
|
->executeOne();
|
|
if (!$interface) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$device = $interface->getDevice();
|
|
$device_uri = $device->getURI();
|
|
|
|
if ($interface->loadIsInUse()) {
|
|
return $this->newDialog()
|
|
->setTitle(pht('Interface In Use'))
|
|
->appendParagraph(
|
|
pht(
|
|
'You can not delete this interface because it is currently in '.
|
|
'use. One or more services are bound to it.'))
|
|
->addCancelButton($device_uri);
|
|
}
|
|
|
|
if ($request->isFormPost()) {
|
|
$type_interface = AlmanacDeviceTransaction::TYPE_INTERFACE;
|
|
|
|
$xactions = array();
|
|
|
|
$v_old = array(
|
|
'id' => $interface->getID(),
|
|
) + $interface->toAddress()->toDictionary();
|
|
|
|
$xactions[] = id(new AlmanacDeviceTransaction())
|
|
->setTransactionType($type_interface)
|
|
->setOldValue($v_old)
|
|
->setNewValue(null);
|
|
|
|
$editor = id(new AlmanacDeviceEditor())
|
|
->setActor($viewer)
|
|
->setContentSourceFromRequest($request)
|
|
->setContinueOnNoEffect(true)
|
|
->setContinueOnMissingFields(true);
|
|
|
|
$editor->applyTransactions($device, $xactions);
|
|
|
|
return id(new AphrontRedirectResponse())->setURI($device_uri);
|
|
}
|
|
|
|
return $this->newDialog()
|
|
->setTitle(pht('Delete Interface'))
|
|
->appendParagraph(
|
|
pht(
|
|
'Remove interface %s on device %s?',
|
|
phutil_tag('strong', array(), $interface->renderDisplayAddress()),
|
|
phutil_tag('strong', array(), $device->getName())))
|
|
->addCancelButton($device_uri)
|
|
->addSubmitButton(pht('Delete Interface'));
|
|
}
|
|
|
|
}
|