aboutsummaryrefslogtreecommitdiffstats
path: root/asdc-controller/src/main/java/org/openecomp/mso/asdc/client/test/rest/ASDCRestInterface.java
blob: ae434b1d3c0d62b8391ec126e012baa5ed99e2f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.mso.asdc.client.test.rest;


import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;

import org.openecomp.mso.asdc.client.ASDCController;
import org.openecomp.mso.asdc.client.test.emulators.DistributionClientEmulator;
import org.openecomp.mso.asdc.client.test.emulators.JsonNotificationData;
import org.openecomp.mso.asdc.client.test.emulators.JsonStatusData;
import org.openecomp.mso.asdc.installer.heat.ToscaResourceInstaller;
import org.openecomp.mso.logger.MessageEnum;
import org.openecomp.mso.logger.MsoLogger;

/**
 * This is a TEST only rest interface.  It is not used in production, it is used to aid in testing the ASDC service on jboss without the need to be connected 
 * to the ASDC service broker.  It starts the test at the treatNotification step and simulates both the notification step as well as the artifact download step.
 * 
 * i.e. http://localhost:8080/asdc/treatNotification/v1
 * 
 * i.e. http://localhost:8080/asdc/statusData/v1
 * 
 * @author jm5423
 *
 */

@Path("/")
public class ASDCRestInterface {

	private static DistributionClientEmulator distributionClientEmulator;
	
	private static JsonNotificationData notifDataWithoutModuleInfo;
	
	private static JsonStatusData statusData;
	
	private static final MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.ASDC);
    
	@GET
	@Path("/treatNotification/v1")
	@Produces(MediaType.APPLICATION_JSON)
	public Response invokeASDCService(String request) {
		
		try{
			distributionClientEmulator = new DistributionClientEmulator("resource-examples/");
			notifDataWithoutModuleInfo = JsonNotificationData.instantiateNotifFromJsonFile("resource-examples/");
		
			ASDCController asdcController = new ASDCController("asdc-controller1", distributionClientEmulator);
			LOGGER.info(MessageEnum.ASDC_INIT_ASDC_CLIENT_EXC, notifDataWithoutModuleInfo.getServiceUUID(), "ASDC", "initASDC()");
			asdcController.initASDC();
			LOGGER.info(MessageEnum.ASDC_INIT_ASDC_CLIENT_EXC, notifDataWithoutModuleInfo.getServiceUUID(), "ASDC", "treatNotification()");
			asdcController.treatNotification(notifDataWithoutModuleInfo);
			LOGGER.info(MessageEnum.ASDC_INIT_ASDC_CLIENT_EXC, notifDataWithoutModuleInfo.getServiceUUID(), "ASDC", "closeASDC()");
			asdcController.closeASDC();
		}catch(Exception e){
			System.out.println("Error caught " + e.getMessage());
			LOGGER.error(MessageEnum.ASDC_GENERAL_EXCEPTION,
					"Exception caught during ASDCRestInterface", "ASDC", "invokeASDCService", MsoLogger.ErrorCode.BusinessProcesssError, "Exception in invokeASDCService", e);
		}
		System.out.println("ASDC Updates are complete");
		LOGGER.info(MessageEnum.ASDC_ARTIFACT_DEPLOY_SUC, notifDataWithoutModuleInfo.getServiceUUID(), "ASDC", "ASDC Updates Are Complete");
		
		return null;
	}
	
	@GET
	@Path("/statusData/v1")
	@Produces(MediaType.APPLICATION_JSON)
	public Response invokeASDCStatusData(String request) {
		
		ToscaResourceInstaller toscaInstaller = new ToscaResourceInstaller();
		
		try{
			distributionClientEmulator = new DistributionClientEmulator("resource-examples/");
			statusData = JsonStatusData.instantiateNotifFromJsonFile("resource-examples/");
		
			ASDCController asdcController = new ASDCController("asdc-controller1", distributionClientEmulator);
			//LOGGER.info(MessageEnum.ASDC_INIT_ASDC_CLIENT_EXC, notifDataWithoutModuleInfo.getServiceUUID(), "ASDC", "initASDC()");
			asdcController.initASDC();
			//LOGGER.info(MessageEnum.ASDC_INIT_ASDC_CLIENT_EXC, notifDataWithoutModuleInfo.getServiceUUID(), "ASDC", "treatNotification()");
			toscaInstaller.installTheComponentStatus(statusData);
			//asdcController.treatNotification(notifDataWithoutModuleInfo);
			//LOGGER.info(MessageEnum.ASDC_INIT_ASDC_CLIENT_EXC, notifDataWithoutModuleInfo.getServiceUUID(), "ASDC", "closeASDC()");
			asdcController.closeASDC();
		}catch(Exception e){
			System.out.println("Error caught " + e.getMessage());
			LOGGER.error(MessageEnum.ASDC_GENERAL_EXCEPTION,
					"Exception caught during ASDCRestInterface", "ASDC", "invokeASDCService", MsoLogger.ErrorCode.BusinessProcesssError, "Exception in invokeASDCService", e);
		}
		System.out.println("ASDC Updates are complete");
		LOGGER.info(MessageEnum.ASDC_ARTIFACT_DEPLOY_SUC, statusData.getDistributionID(), "ASDC", "ASDC Updates Are Complete");
		
		return null;
	}
}