/*- * ============LICENSE_START======================================================= * ONAP : APPC * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Copyright (C) 2017 Amdocs * ============================================================================= * 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. * * ECOMP is a trademark and service mark of AT&T Intellectual Property. * ============LICENSE_END========================================================= */ package org.onap.appc.dg.ssh.impl; import com.att.eelf.i18n.EELFResourceManager; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import java.util.Map; import org.onap.appc.adapter.ssh.Constants; import org.onap.appc.adapter.ssh.SshConnectionDetails; import org.onap.appc.adapter.ssh.SshDataAccessException; import org.onap.appc.adapter.ssh.SshDataAccessService; import org.onap.appc.dg.ssh.SshDBPlugin; import org.onap.appc.exceptions.APPCException; import org.onap.appc.i18n.Msg; import com.att.eelf.configuration.EELFLogger; import com.att.eelf.configuration.EELFManager; import org.onap.ccsdk.sli.core.sli.SvcLogicContext; public class SshDBPluginImpl implements SshDBPlugin { private static EELFLogger logger = EELFManager.getInstance().getApplicationLogger(); private static ObjectMapper mapper = new ObjectMapper(); private SshDataAccessService dataAccessService; public void setDataAccessService(SshDataAccessService dataAccessService) { this.dataAccessService = dataAccessService; } public void retrieveConnectionDetails(Map params, SvcLogicContext ctx) throws APPCException { SshConnectionDetails connectionDetails = new SshConnectionDetails(); //String vnfType = ctx.getAttribute("aai.prefix")+"."+"vnf-type"; String vnfType = params.get("vnf-type"); try { if (!dataAccessService.retrieveConnectionDetails(vnfType, connectionDetails)) { logger.error("Missing connection details for VNF type: " + vnfType); throw new APPCException("Missing configuration for " + vnfType + " in " + Constants.DEVICE_AUTHENTICATION_TABLE_NAME); } connectionDetails.setHost(params.get(Constants.VNF_HOST_IP_ADDRESS_FIELD_NAME)); ctx.setAttribute(Constants.CONNECTION_DETAILS_FIELD_NAME, mapper.writeValueAsString(connectionDetails)); } catch(APPCException e) { String msg = EELFResourceManager.format(Msg.APPC_EXCEPTION, vnfType, e.getMessage()); logger.error(msg); ctx.setAttribute(Constants.ATTRIBUTE_ERROR_MESSAGE,msg); throw e; } catch(SshDataAccessException e) { String msg = EELFResourceManager.format(Msg.SSH_DATA_EXCEPTION, e.getMessage()); logger.error(msg); ctx.setAttribute(Constants.ATTRIBUTE_ERROR_MESSAGE, msg); throw e; } catch (JsonProcessingException e) { String msg = EELFResourceManager.format(Msg.JSON_PROCESSING_EXCEPTION, e.getMessage()); logger.error(msg); ctx.setAttribute(Constants.ATTRIBUTE_ERROR_MESSAGE, msg); throw new APPCException(e); } } }