Second part of onap rename
[appc.git] / appc-adapters / appc-iaas-adapter / appc-iaas-adapter-bundle / src / main / java / org / onap / appc / adapter / iaas / provider / operation / impl / LookupServer.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.adapter.iaas.provider.operation.impl;
26
27 import org.onap.appc.Constants;
28 import org.onap.appc.adapter.iaas.ProviderAdapter;
29 import org.onap.appc.adapter.iaas.impl.RequestContext;
30 import org.onap.appc.adapter.iaas.impl.RequestFailedException;
31 import org.onap.appc.adapter.iaas.impl.VMURL;
32 import org.onap.appc.adapter.iaas.provider.operation.common.enums.Operation;
33 import org.onap.appc.adapter.iaas.provider.operation.impl.base.ProviderServerOperation;
34 import org.onap.appc.configuration.Configuration;
35 import org.onap.appc.configuration.ConfigurationFactory;
36 import org.onap.appc.exceptions.APPCException;
37 import org.onap.appc.i18n.Msg;
38 import com.att.cdp.exceptions.ZoneException;
39 import com.att.cdp.zones.Context;
40 import com.att.cdp.zones.model.ModelObject;
41 import com.att.cdp.zones.model.Server;
42 import com.att.eelf.configuration.EELFLogger;
43 import com.att.eelf.configuration.EELFManager;
44 import com.att.eelf.i18n.EELFResourceManager;
45 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
46 import org.glassfish.grizzly.http.util.HttpStatus;
47 import java.io.IOException;
48 import java.util.Map;
49 import static org.onap.appc.adapter.utils.Constants.ADAPTER_NAME;
50
51 public class LookupServer extends ProviderServerOperation {
52
53     private static final EELFLogger logger = EELFManager.getInstance().getLogger(EvacuateServer.class);
54     private static final Configuration configuration = ConfigurationFactory.getConfiguration();
55
56
57     public Server lookupServer(Map<String, String> params, SvcLogicContext ctx) throws APPCException {
58         Server server = null;
59         RequestContext rc = new RequestContext(ctx);
60         rc.isAlive(); // should we test the return and fail if false?
61
62         String vm_url = null;
63         try {
64             // process vm_url
65             validateParametersExist(params, ProviderAdapter.PROPERTY_INSTANCE_URL,
66                     ProviderAdapter.PROPERTY_PROVIDER_NAME);
67
68             String appName = configuration.getProperty(Constants.PROPERTY_APPLICATION_NAME);
69             vm_url = params.get(ProviderAdapter.PROPERTY_INSTANCE_URL);
70             VMURL vm = VMURL.parseURL(vm_url);
71             if (validateVM(rc, appName, vm_url, vm)) {
72                 return null;
73             }
74
75             // use try with resource to ensure context is closed (returned to pool)
76             try (Context context = resolveContext(rc, params, appName, vm_url)) {
77                 // resloveContext & getContext call doFailure and log errors before returning null
78                 if (context != null) {
79                     rc.reset();
80                     server = lookupServer(rc, context, vm.getServerId());
81                     logger.debug(Msg.SERVER_FOUND, vm_url, context.getTenantName(), server.getStatus().toString());
82                     ctx.setAttribute("serverFound", "success");
83                     String msg = EELFResourceManager.format(Msg.SUCCESS_EVENT_MESSAGE, "LookupServer", vm_url);
84                     ctx.setAttribute(org.onap.appc.Constants.ATTRIBUTE_SUCCESS_MESSAGE, msg);
85                     doSuccess(rc);
86                 }
87             } catch (ZoneException e) {
88                 // server not found
89                 String msg = EELFResourceManager.format(Msg.SERVER_NOT_FOUND, e, vm_url);
90                 logger.error(msg);
91                 doFailure(rc, HttpStatus.NOT_FOUND_404, msg);
92                 ctx.setAttribute("serverFound", "failure");
93             } catch (IOException e) {
94                 // exception closing context
95                 String msg = EELFResourceManager.format(Msg.CLOSE_CONTEXT_FAILED, e, vm_url);
96                 logger.error(msg);
97             } catch (Exception e1) {
98                 String msg = EELFResourceManager.format(Msg.SERVER_OPERATION_EXCEPTION, e1,
99                         e1.getClass().getSimpleName(), Operation.LOOKUP_SERVICE.toString(), vm_url, "Unknown");
100                 logger.error(msg, e1);
101                 doFailure(rc, HttpStatus.INTERNAL_SERVER_ERROR_500, msg);
102             }
103
104         } catch (RequestFailedException e) {
105             // parameters not valid, unable to connect to provider
106             String msg = EELFResourceManager.format(Msg.SERVER_NOT_FOUND, e, vm_url);
107             logger.error(msg);
108             doFailure(rc, HttpStatus.NOT_FOUND_404, msg);
109             ctx.setAttribute("serverFound", "failure");
110         }
111         return server;
112     }
113
114     @Override
115     protected ModelObject executeProviderOperation(Map<String, String> params, SvcLogicContext context)
116             throws APPCException {
117         setMDC(Operation.LOOKUP_SERVICE.toString(), "App-C IaaS Adapter:LookupServer", ADAPTER_NAME);
118         logOperation(Msg.LOOKING_SERVER_UP, params, context);
119         return lookupServer(params, context);
120     }
121 }