package org.opennaas.extensions.router.junos.actionssets.actions.ospfv3; import java.util.HashMap; import java.util.Map; import org.opennaas.core.resources.action.ActionException; import org.opennaas.core.resources.action.ActionResponse; import org.opennaas.core.resources.protocol.IProtocolSession; import org.opennaas.extensions.router.junos.actionssets.ActionConstants; import org.opennaas.extensions.router.junos.actionssets.actions.JunosAction; import org.opennaas.extensions.router.junos.commandsets.commands.EditNetconfCommand; import org.opennaas.extensions.router.model.ComputerSystem; import org.opennaas.extensions.router.model.EnabledLogicalElement.EnabledState; import org.opennaas.extensions.router.model.ManagedElement; import org.opennaas.extensions.router.model.OSPFService; import org.opennaas.extensions.router.model.RouteCalculationService.AlgorithmType; import org.opennaas.extensions.router.model.utils.IPUtilsHelper; public class ConfigureOSPFv3Action extends JunosAction { public ConfigureOSPFv3Action() { super(); initialize(); } /** * Initialize protocolName, ActionId and velocity template */ protected void initialize() { this.setActionID(ActionConstants.OSPFv3_CONFIGURE); setTemplate("/VM_files/ospfv3Configure.vm"); this.protocolName = "netconf"; } @Override public void executeListCommand(ActionResponse actionResponse, IProtocolSession protocol) throws ActionException { try { EditNetconfCommand command = new EditNetconfCommand(getVelocityMessage()); command.initialize(); actionResponse.addResponse(sendCommandToProtocol(command, protocol)); } catch (Exception e) { throw new ActionException(this.actionID + ": " + e.getMessage(), e); } validateAction(actionResponse); } @Override public void parseResponse(Object responseMessage, Object model) throws ActionException { // TODO Auto-generated method stub } @Override public boolean checkParams(Object params) throws ActionException { if (params == null) return false; if (!(params instanceof OSPFService)) return false; OSPFService service = (OSPFService) params; if (!service.getAlgorithmType().equals(AlgorithmType.OSPFV3)) return false; return true; } @Override public void prepareMessage() throws ActionException { if (template == null || template.equals("")) throw new ActionException("The path to Velocity template in Action " + getActionID() + " is null"); if (!checkParams(params)) { throw new ActionException("Invalid parameters in action " + getActionID() + "."); } // tell velocity if element is a logical router or a physical one if (((ComputerSystem) modelToUpdate).getElementName() != null) { // is logicalRouter, add LRName param ((ManagedElement) params).setElementName(((ComputerSystem) modelToUpdate).getElementName()); } else if (((ManagedElement) params).getElementName() == null) { // avoid accessing null value when processing velocity template. ((ManagedElement) params).setElementName(""); } IPUtilsHelper ipUtilsHelper = new IPUtilsHelper(); Map<String, Object> extraParams = new HashMap<String, Object>(); extraParams.put("disabledState", EnabledState.DISABLED.toString()); extraParams.put("enabledState", EnabledState.ENABLED.toString()); extraParams.put("ipUtilsHelper", ipUtilsHelper); try { setVelocityMessage(prepareVelocityCommand(params, template, extraParams)); } catch (Exception e) { throw new ActionException(e); } } }