move templates API to a intended controller
[vid.git] / vid-app-common / src / main / java / org / onap / vid / controller / AsyncInstantiationController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.vid.controller;
22
23 import static org.onap.vid.utils.KotlinUtilsKt.JACKSON_OBJECT_MAPPER;
24
25 import java.util.List;
26 import java.util.UUID;
27 import javax.servlet.http.HttpServletRequest;
28 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
29 import org.onap.vid.dal.AsyncInstantiationRepository;
30 import org.onap.vid.exceptions.AccessDeniedException;
31 import org.onap.vid.model.JobAuditStatus;
32 import org.onap.vid.model.ServiceInfo;
33 import org.onap.vid.model.serviceInstantiation.ServiceInstantiation;
34 import org.onap.vid.mso.MsoResponseWrapper2;
35 import org.onap.vid.properties.Features;
36 import org.onap.vid.roles.RoleProvider;
37 import org.onap.vid.services.AsyncInstantiationBusinessLogic;
38 import org.onap.vid.services.AuditService;
39 import org.onap.vid.utils.SystemPropertiesWrapper;
40 import org.springframework.beans.factory.annotation.Autowired;
41 import org.springframework.web.bind.annotation.PathVariable;
42 import org.springframework.web.bind.annotation.RequestBody;
43 import org.springframework.web.bind.annotation.RequestMapping;
44 import org.springframework.web.bind.annotation.RequestMethod;
45 import org.springframework.web.bind.annotation.RequestParam;
46 import org.springframework.web.bind.annotation.RestController;
47 import org.togglz.core.manager.FeatureManager;
48
49
50 @RestController
51 @RequestMapping(AsyncInstantiationController.ASYNC_INSTANTIATION)
52 public class AsyncInstantiationController extends VidRestrictedBaseController {
53
54     public static final String ASYNC_INSTANTIATION = "asyncInstantiation";
55
56     protected final AsyncInstantiationBusinessLogic asyncInstantiationBL;
57     protected final AsyncInstantiationRepository asyncInstantiationRepository;
58     private final SystemPropertiesWrapper systemPropertiesWrapper;
59
60     private final RoleProvider roleProvider;
61
62     private final FeatureManager featureManager;
63
64     protected final AuditService auditService;
65
66     @Autowired
67     public AsyncInstantiationController(AsyncInstantiationBusinessLogic asyncInstantiationBL,
68         AsyncInstantiationRepository asyncInstantiationRepository, RoleProvider roleProvider,
69         FeatureManager featureManager, SystemPropertiesWrapper systemPropertiesWrapper,
70         AuditService auditService) {
71         this.asyncInstantiationBL = asyncInstantiationBL;
72         this.asyncInstantiationRepository = asyncInstantiationRepository;
73         this.roleProvider = roleProvider;
74         this.featureManager = featureManager;
75         this.systemPropertiesWrapper = systemPropertiesWrapper;
76         this.auditService = auditService;
77     }
78
79     /**
80      * Gets the new services status.
81      * @param request the request
82      * @return the services list
83      */
84     @RequestMapping(method = RequestMethod.GET)
85     public List<ServiceInfo> getServicesInfo(HttpServletRequest request,
86         @RequestParam(value = "serviceModelId", required = false) UUID serviceModelId) {
87         if (serviceModelId == null) {
88             return asyncInstantiationBL.getAllServicesInfo();
89         } else {
90             return  asyncInstantiationRepository.listInstantiatedServicesByServiceModelId(serviceModelId);
91         }
92     }
93     @RequestMapping(value = "bulk", method = RequestMethod.POST)
94     public MsoResponseWrapper2<List<String>> createBulkOfServices(@RequestBody ServiceInstantiation request, HttpServletRequest httpServletRequest) {
95         //Push to DB according the model
96         try {
97             LOGGER.debug(EELFLoggerDelegate.debugLogger, "incoming ServiceInstantiation request: "+ JACKSON_OBJECT_MAPPER.writeValueAsString(request));
98         }
99         catch (Exception e) {
100             LOGGER.error(EELFLoggerDelegate.errorLogger, "failed to log incoming ServiceInstantiation request ", e);
101         }
102         String userId = new ControllersUtils(systemPropertiesWrapper).extractUserId(httpServletRequest);
103
104         throwExceptionIfAccessDenied(request, httpServletRequest, userId);
105         List<UUID> uuids = asyncInstantiationBL.pushBulkJob(request, userId);
106         return new MsoResponseWrapper2(200, uuids);
107     }
108
109
110
111     @RequestMapping(value = "retryJobWithChangedData/{jobId}", method = RequestMethod.POST)
112     public MsoResponseWrapper2<List<String>> retryJobWithChangedData(@RequestBody ServiceInstantiation request, @PathVariable(value="jobId") UUID jobId, HttpServletRequest httpServletRequest) {
113
114         String userId = new ControllersUtils(systemPropertiesWrapper).extractUserId(httpServletRequest);
115         List<UUID> uuids =  asyncInstantiationBL.retryJob(request, jobId, userId);
116         return new MsoResponseWrapper2(200, uuids);
117     }
118
119     @RequestMapping(value = "job/{jobId}", method = RequestMethod.DELETE)
120     public void deleteServiceInfo(@PathVariable("jobId") UUID jobId) {
121         asyncInstantiationBL.deleteJob(jobId);
122     }
123
124     @RequestMapping(value = "hide/{jobId}", method = RequestMethod.POST)
125     public void hideServiceInfo(@PathVariable("jobId") UUID jobId) {
126         asyncInstantiationBL.hideServiceInfo(jobId);
127     }
128
129     @RequestMapping(value = "auditStatus/{jobId}", method = RequestMethod.GET)
130     public List<JobAuditStatus> getJobAuditStatus(HttpServletRequest request, @PathVariable(value="jobId") UUID jobId, @RequestParam(value="source") JobAuditStatus.SourceStatus source){
131         return auditService.getAuditStatuses(jobId, source);
132     }
133
134     @RequestMapping(value = "auditStatus/{jobId}/mso", method = RequestMethod.GET)
135     public List<JobAuditStatus> getJobMsoAuditStatusForAlaCarte(HttpServletRequest request,
136                                                                 @PathVariable(value="jobId") UUID jobId,
137                                                                 @RequestParam(value="requestId", required = false) UUID requestId,
138                                                                 @RequestParam(value="serviceInstanceId", required = false) UUID serviceInstanceId){
139         if (serviceInstanceId != null) {
140             return auditService.getAuditStatusFromMsoByInstanceId(JobAuditStatus.ResourceTypeFilter.SERVICE, serviceInstanceId, jobId);
141         }
142         if (requestId != null){
143             return auditService.getAuditStatusFromMsoByRequestId(jobId, requestId);
144         }
145         return auditService.getAuditStatusFromMsoByJobId(jobId);
146
147     }
148
149     @RequestMapping(value = "auditStatus/{type}/{instanceId}/mso", method = RequestMethod.GET)
150     public List<JobAuditStatus> getAuditStatusFromMsoByInstanceId(HttpServletRequest request,
151                                                                   @PathVariable(value="type") JobAuditStatus.ResourceTypeFilter resourceTypeFilter,
152                                                                   @PathVariable(value="instanceId") UUID instanceId) {
153         return auditService.getAuditStatusFromMsoByInstanceId(resourceTypeFilter, instanceId, null);
154     }
155
156     @RequestMapping(value = "/bulkForRetry/{jobId}", method = RequestMethod.GET)
157     public ServiceInstantiation getBulkForRetry(HttpServletRequest request, @PathVariable(value="jobId") UUID jobId) {
158         return asyncInstantiationBL.getBulkForRetry(jobId);
159     }
160
161     @RequestMapping(value = "retry/{jobId}", method = RequestMethod.POST)
162     public MsoResponseWrapper2<List<UUID>> retryJobRequest(HttpServletRequest httpServletRequest,
163                                                            @PathVariable(value="jobId") UUID jobId) {
164
165         String userId = new ControllersUtils(systemPropertiesWrapper).extractUserId(httpServletRequest);
166         List<UUID> uuids =  asyncInstantiationBL.retryJob(jobId, userId);
167
168         return new MsoResponseWrapper2(200, uuids);
169     }
170
171     @RequestMapping(value = "/auditStatusForRetry/{trackById}", method = RequestMethod.GET)
172     public JobAuditStatus getResourceAuditStatus(HttpServletRequest request, @PathVariable(value="trackById") String trackById) {
173         return auditService.getResourceAuditStatus(trackById);
174     }
175
176     private void throwExceptionIfAccessDenied(ServiceInstantiation request, HttpServletRequest httpServletRequest, String userId) {
177         if (featureManager.isActive(Features.FLAG_1906_INSTANTIATION_API_USER_VALIDATION) && !roleProvider.getUserRolesValidator(httpServletRequest).isServicePermitted(request.getGlobalSubscriberId(), request.getSubscriptionServiceType())) {
178             throw new AccessDeniedException(String.format("User %s is not allowed to make this request", userId));
179         }
180     }
181 }