Initial source code
[oam/tr069-adapter.git] / netconf-server / src / main / java / org / commscope / tr069adapter / netconf / rpc / SoftwareActivateOperation.java
diff --git a/netconf-server/src/main/java/org/commscope/tr069adapter/netconf/rpc/SoftwareActivateOperation.java b/netconf-server/src/main/java/org/commscope/tr069adapter/netconf/rpc/SoftwareActivateOperation.java
new file mode 100644 (file)
index 0000000..ad0dac0
--- /dev/null
@@ -0,0 +1,108 @@
+/*\r
+ * ============LICENSE_START========================================================================\r
+ * ONAP : tr-069-adapter\r
+ * =================================================================================================\r
+ * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
+ * =================================================================================================\r
+ * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
+ * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
+ * may obtain a copy of the License at\r
+ *\r
+ * http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
+ * either express or implied. See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ * ===============LICENSE_END=======================================================================\r
+ */\r
+\r
+package org.commscope.tr069adapter.netconf.rpc;\r
+\r
+import org.commscope.tr069adapter.netconf.boot.NetConfServiceBooter;\r
+import org.commscope.tr069adapter.netconf.config.NetConfServerProperties;\r
+import org.opendaylight.netconf.api.DocumentedException;\r
+import org.opendaylight.netconf.api.xml.XmlElement;\r
+import org.opendaylight.netconf.api.xml.XmlNetconfConstants;\r
+import org.opendaylight.netconf.mapping.api.HandlingPriority;\r
+import org.opendaylight.netconf.mapping.api.NetconfOperation;\r
+import org.opendaylight.netconf.mapping.api.NetconfOperationChainedExecution;\r
+import org.slf4j.Logger;\r
+import org.slf4j.LoggerFactory;\r
+import org.w3c.dom.Document;\r
+\r
+public class SoftwareActivateOperation implements NetconfOperation {\r
+  private static final Logger logger = LoggerFactory.getLogger(SoftwareActivateOperation.class);\r
+  public static final String SOFT_MGMT_NAMESPACE = "urn:o-ran:software-management:1.0";\r
+\r
+  private String deviceID;\r
+\r
+  public SoftwareActivateOperation(String deviceID) {\r
+    this.deviceID = deviceID;\r
+  }\r
+\r
+  @Override\r
+  public HandlingPriority canHandle(final Document message) throws DocumentedException {\r
+    OperationNameAndNamespace operationNameAndNamespace = null;\r
+    operationNameAndNamespace = new OperationNameAndNamespace(message);\r
+    return canHandle(operationNameAndNamespace.getOperationName(),\r
+        operationNameAndNamespace.getNamespace());\r
+  }\r
+\r
+  @Override\r
+  public Document handle(Document requestMessage,\r
+      NetconfOperationChainedExecution subsequentOperation) throws DocumentedException {\r
+\r
+    logger.debug("sw-activate rpc recevied in netconf server");\r
+    final XmlElement requestElement = XmlElement.fromDomDocument(requestMessage);\r
+\r
+    String requestXml = XmlUtility.convertDocumentToString(requestElement);\r
+    logger.debug("sw-activate rpc recevied requestXml = {}", requestXml);\r
+    NetConfServerProperties config =\r
+        NetConfServiceBooter.getApplicationContext().getBean(NetConfServerProperties.class);\r
+\r
+    final String baseUrl = config.getMapperPath() + "/softwareActivate";\r
+    XmlUtility.invokeMapperCall(baseUrl, requestXml, deviceID);\r
+    return null;\r
+  }\r
+\r
+  protected HandlingPriority canHandle(final String operationName,\r
+      final String operationNamespace) {\r
+    return operationName.equals("software-activate")\r
+        && operationNamespace.equals(SOFT_MGMT_NAMESPACE)\r
+            ? HandlingPriority.HANDLE_WITH_DEFAULT_PRIORITY.increasePriority(1100)\r
+            : HandlingPriority.CANNOT_HANDLE;\r
+  }\r
+\r
+  public static final class OperationNameAndNamespace {\r
+    private final String operationName;\r
+    private final String namespace;\r
+\r
+    private final XmlElement operationElement;\r
+\r
+    public OperationNameAndNamespace(final Document message) throws DocumentedException {\r
+      XmlElement requestElement = null;\r
+      requestElement = getRequestElementWithCheck(message);\r
+      operationElement = requestElement.getOnlyChildElement();\r
+      operationName = operationElement.getName();\r
+      namespace = operationElement.getNamespace();\r
+    }\r
+\r
+    public String getOperationName() {\r
+      return operationName;\r
+    }\r
+\r
+    public String getNamespace() {\r
+      return namespace;\r
+    }\r
+\r
+    public XmlElement getOperationElement() {\r
+      return operationElement;\r
+    }\r
+  }\r
+\r
+  protected static XmlElement getRequestElementWithCheck(final Document message)\r
+      throws DocumentedException {\r
+    return XmlElement.fromDomElementWithExpected(message.getDocumentElement(),\r
+        XmlNetconfConstants.RPC_KEY, XmlNetconfConstants.URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0);\r
+  }\r
+}\r