The nodeUpdatePatch class has been refactored in to a separate updatePatch service that will be used to patch both nodes and ports. Change-Id: I725bfe92fb9f878db243dd987f07f1c8eb04440c
169 lines
5.6 KiB
JavaScript
169 lines
5.6 KiB
JavaScript
/*
|
|
* Copyright 2016 Cray Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
(function() {
|
|
'use strict';
|
|
|
|
/**
|
|
* Controller used to edit an existing Ironic node
|
|
*/
|
|
angular
|
|
.module('horizon.dashboard.admin.ironic')
|
|
.controller('EditNodeController', EditNodeController);
|
|
|
|
EditNodeController.$inject = [
|
|
'$rootScope',
|
|
'$controller',
|
|
'$uibModalInstance',
|
|
'horizon.framework.widgets.toast.service',
|
|
'horizon.app.core.openstack-service-api.ironic',
|
|
'horizon.dashboard.admin.ironic.events',
|
|
'horizon.dashboard.admin.ironic.edit-node.service',
|
|
'horizon.dashboard.admin.ironic.update-patch.service',
|
|
'$log',
|
|
'node'
|
|
];
|
|
|
|
function EditNodeController($rootScope,
|
|
$controller,
|
|
$uibModalInstance,
|
|
toastService,
|
|
ironic,
|
|
ironicEvents,
|
|
editNodeService,
|
|
updatePatchService,
|
|
$log,
|
|
node) {
|
|
var ctrl = this;
|
|
|
|
$controller('BaseNodeController',
|
|
{ctrl: ctrl,
|
|
$uibModalInstance: $uibModalInstance});
|
|
|
|
ctrl.modalTitle = gettext("Edit Node");
|
|
ctrl.submitButtonTitle = gettext("Update Node");
|
|
|
|
ctrl.node.instance_info = {};
|
|
|
|
ctrl.baseNode = null;
|
|
|
|
ctrl.propertyCollections.push({id: "instance_info",
|
|
title: "Instance Info",
|
|
addPrompt: "Add Instance Property",
|
|
placeholder: "Instance Property Name"});
|
|
|
|
init(node);
|
|
|
|
function init(node) {
|
|
ctrl._loadDrivers().then(function() {
|
|
_loadNodeData(node.uuid);
|
|
});
|
|
ctrl._getImages();
|
|
}
|
|
|
|
function _loadNodeData(nodeId) {
|
|
ironic.getNode(nodeId).then(function(response) {
|
|
var node = response.data;
|
|
|
|
ctrl.baseNode = node;
|
|
|
|
ctrl.node.name = node.name;
|
|
for (var i = 0; i < ctrl.drivers.length; i++) {
|
|
if (ctrl.drivers[i].name === node.driver) {
|
|
ctrl.selectedDriver = ctrl.drivers[i];
|
|
break;
|
|
}
|
|
}
|
|
|
|
ctrl.loadDriverProperties(node.driver).then(function() {
|
|
angular.forEach(node.driver_info, function(value, property) {
|
|
if (angular.isDefined(ctrl.driverProperties[property])) {
|
|
ctrl.driverProperties[property].inputValue = value;
|
|
}
|
|
});
|
|
});
|
|
|
|
ctrl.node.properties = angular.copy(node.properties);
|
|
ctrl.node.extra = angular.copy(node.extra);
|
|
ctrl.node.instance_info = angular.copy(node.instance_info);
|
|
ctrl.node.uuid = node.uuid;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @description Construct a patch that converts source node into
|
|
* target node
|
|
*
|
|
* @param {object} sourceNode - Source node
|
|
* @param {object} targetNode - Target node
|
|
* @return {object[]} Array of patch instructions
|
|
*/
|
|
function buildPatch(sourceNode, targetNode) {
|
|
var patcher = new updatePatchService.UpdatePatch();
|
|
|
|
patcher.buildPatch(sourceNode.name, targetNode.name, "/name");
|
|
patcher.buildPatch(sourceNode.driver, targetNode.driver, "/driver");
|
|
patcher.buildPatch(sourceNode.properties,
|
|
targetNode.properties,
|
|
"/properties");
|
|
patcher.buildPatch(sourceNode.extra,
|
|
targetNode.extra,
|
|
"/extra");
|
|
patcher.buildPatch(sourceNode.driver_info,
|
|
targetNode.driver_info,
|
|
"/driver_info");
|
|
patcher.buildPatch(sourceNode.instance_info,
|
|
targetNode.instance_info,
|
|
"/instance_info");
|
|
|
|
return patcher.getPatch();
|
|
}
|
|
|
|
ctrl.submit = function() {
|
|
$uibModalInstance.close();
|
|
|
|
angular.forEach(ctrl.driverProperties, function(property, name) {
|
|
$log.debug(name +
|
|
", required = " + property.isRequired() +
|
|
", active = " + property.isActive() +
|
|
", input-value = " + property.getInputValue() +
|
|
", default-value = " + property.getDefaultValue());
|
|
if (property.isActive() &&
|
|
property.getInputValue() &&
|
|
property.getInputValue() !== property.getDefaultValue()) {
|
|
$log.debug("Setting driver property " + name + " to " +
|
|
property.inputValue);
|
|
ctrl.node.driver_info[name] = property.inputValue;
|
|
}
|
|
});
|
|
|
|
$log.info("Updating node " + JSON.stringify(ctrl.baseNode));
|
|
$log.info("to " + JSON.stringify(ctrl.node));
|
|
|
|
var patch = buildPatch(ctrl.baseNode, ctrl.node);
|
|
$log.info("patch = " + JSON.stringify(patch.patch));
|
|
if (patch.status === updatePatchService.UpdatePatch.status.OK) {
|
|
ironic.updateNode(ctrl.baseNode.uuid, patch.patch).then(function() {
|
|
$rootScope.$emit(ironicEvents.EDIT_NODE_SUCCESS);
|
|
});
|
|
} else {
|
|
toastService.add('error',
|
|
gettext('Unable to create node update patch.'));
|
|
|
|
}
|
|
};
|
|
}
|
|
})();
|