X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fesr-server.git;a=blobdiff_plain;f=esr-mgr%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fwrapper%2FPnfManagerWrapper.java;h=30d66ccb5e4f2cae35899a7c53e51059485296c4;hp=b363c04545e24703bc401089a76219a6deb1fa01;hb=0836ecdc1d78e7fb3c5c8c9be5bd48c4d70e234f;hpb=16e963509621830d8828054750f9512b535b1948 diff --git a/esr-mgr/src/main/java/org/onap/aai/esr/wrapper/PnfManagerWrapper.java b/esr-mgr/src/main/java/org/onap/aai/esr/wrapper/PnfManagerWrapper.java index b363c04..30d66cc 100644 --- a/esr-mgr/src/main/java/org/onap/aai/esr/wrapper/PnfManagerWrapper.java +++ b/esr-mgr/src/main/java/org/onap/aai/esr/wrapper/PnfManagerWrapper.java @@ -15,19 +15,29 @@ */ package org.onap.aai.esr.wrapper; +import java.util.ArrayList; +import java.util.List; import javax.ws.rs.core.Response; +import org.onap.aai.esr.entity.aai.Pnf; +import org.onap.aai.esr.entity.aai.PnfList; import org.onap.aai.esr.entity.rest.PnfRegisterInfo; -import org.onap.aai.esr.externalservice.aai.ExternalSystemProxy; +import org.onap.aai.esr.exception.ExceptionUtil; +import org.onap.aai.esr.exception.ExtsysException; +import org.onap.aai.esr.externalservice.aai.NetworkProxy; +import org.onap.aai.esr.util.ExtsysUtil; +import org.onap.aai.esr.util.PnfManagerUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import com.google.gson.Gson; public class PnfManagerWrapper { private static PnfManagerWrapper pnfManagerWrapper; private static final Logger LOG = LoggerFactory.getLogger(PnfManagerWrapper.class); -// private static PnfManagerUtil pnfManagerUtil = new PnfManagerUtil(); - private static ExternalSystemProxy externalSystemProxy = new ExternalSystemProxy(); + private static PnfManagerUtil pnfManagerUtil = new PnfManagerUtil(); + private static NetworkProxy networkProxy = new NetworkProxy(); + ExtsysUtil extsysUtil = new ExtsysUtil(); /** * get PnfManagerWrapper instance. * @@ -35,21 +45,45 @@ public class PnfManagerWrapper { */ public static PnfManagerWrapper getInstance() { if (pnfManagerWrapper == null) { - pnfManagerWrapper = new PnfManagerWrapper(externalSystemProxy); + pnfManagerWrapper = new PnfManagerWrapper(networkProxy); } return pnfManagerWrapper; } - public PnfManagerWrapper(ExternalSystemProxy externalSystemProxy){ - PnfManagerWrapper.externalSystemProxy = externalSystemProxy; + public PnfManagerWrapper(NetworkProxy networkProxy){ + PnfManagerWrapper.networkProxy = networkProxy; } /** * @return */ public Response queryPnfList() { - // TODO Auto-generated method stub - return null; + List esrPnfList = new ArrayList<>(); + PnfList pnfList = new PnfList(); + try { + String pnflistStr = networkProxy.queryPnfList(); + pnfList = new Gson().fromJson(pnflistStr, PnfList.class); + LOG.info("Response from AAI by query PNF list: " + pnflistStr); + esrPnfList = getEsrPnfList(pnfList); + return Response.ok(esrPnfList).build(); + } catch (ExtsysException e) { + LOG.error("Query VNFM list failed !", e); + return Response.ok(esrPnfList).build(); + } + } + + /** + * @param pnfList + * @return + */ + private List getEsrPnfList(PnfList pnfList) { + List esrPnfList = new ArrayList<>(); + for (int i = 0; i < pnfList.getPnf().size(); i++) { + Pnf pnf = pnfList.getPnf().get(i); + PnfRegisterInfo pnfRegisterInfo = pnfManagerUtil.pnf2PnfRegisterInfo(pnf); + esrPnfList.add(pnfRegisterInfo); + } + return esrPnfList; } /** @@ -57,8 +91,22 @@ public class PnfManagerWrapper { * @return */ public Response queryPnfById(String pnfId) { - // TODO Auto-generated method stub - return null; + PnfRegisterInfo pnfRegisterInfo = queryPnf(pnfId); + return Response.ok(pnfRegisterInfo).build(); + } + + private PnfRegisterInfo queryPnf(String pnfId) { + Pnf pnf = new Pnf(); + PnfRegisterInfo pnfRegisterInfo = new PnfRegisterInfo(); + try { + String pnfStr = networkProxy.queryPNF(pnfId); + LOG.info("Response from AAI by query PNF: " + pnfStr); + pnf = new Gson().fromJson(pnfStr, Pnf.class); + pnfRegisterInfo = pnfManagerUtil.pnf2PnfRegisterInfo(pnf); + } catch (ExtsysException e) { + LOG.error("Query PNF detail failed! PNF ID: " + pnfId, e); + } + return pnfRegisterInfo; } /** @@ -66,8 +114,32 @@ public class PnfManagerWrapper { * @return */ public Response delPnf(String pnfId) { - // TODO Auto-generated method stub - return null; + String resourceVersion = getResourceVersion(pnfId); + try { + networkProxy.deletePnf(pnfId, resourceVersion); + return Response.noContent().build(); + } catch (ExtsysException e) { + LOG.error("Delete PNF from A&AI failed! PNF ID: " + pnfId + "resouce-version:" + resourceVersion, e); + throw ExceptionUtil.buildExceptionResponse(e.getMessage()); + } + } + + /** + * @param pnfId + * @return + */ + private String getResourceVersion(String pnfId) { + String resourceVersion = null; + try { + String pnfStr = networkProxy.queryPNF(pnfId); + Pnf pnf = new Gson().fromJson(pnfStr, Pnf.class); + if (pnf != null && pnf.getResourceVersion() != null) { + resourceVersion = pnf.getResourceVersion(); + } + } catch (ExtsysException e) { + LOG.error("Query PNF detail failed! PNF ID: " + pnfId, e); + } + return resourceVersion; } /** @@ -75,17 +147,34 @@ public class PnfManagerWrapper { * @param pnfId * @return */ - public Response updatePnf(PnfRegisterInfo pnf, String pnfId) { - // TODO Auto-generated method stub - return null; + public Response updatePnf(PnfRegisterInfo pnfRegisterInfo, String pnfId) { + String resourceVersion = getResourceVersion(pnfId); + Pnf pnf = pnfManagerUtil.pnfRegisterInfo2pnf(pnfRegisterInfo); + pnf.setResourceVersion(resourceVersion); + try { + networkProxy.registerPnf(pnfId, pnf); + return Response.ok().build(); + } catch (ExtsysException e) { + LOG.error("Update PNF failed !", e); + throw ExceptionUtil.buildExceptionResponse(e.getMessage()); + } } /** * @param pnf * @return */ - public Response registerPnf(PnfRegisterInfo pnf) { - // TODO Auto-generated method stub - return null; + public Response registerPnf(PnfRegisterInfo pnfRegisterInfo) { + LOG.info("Register PNF with ESR, register info: " + extsysUtil.objectToString(pnfRegisterInfo)); + Pnf pnf = pnfManagerUtil.pnfRegisterInfo2pnf(pnfRegisterInfo); + LOG.info("Register PNF with AAI, register info: " + extsysUtil.objectToString(pnf)); + String pnfName = pnf.getPnfName(); + try { + networkProxy.registerPnf(pnfName, pnf); + return Response.ok().build(); + } catch (ExtsysException e) { + LOG.error("Register PNF failed !", e); + throw ExceptionUtil.buildExceptionResponse(e.getMessage()); + } } }