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     @RequestMapping(method = RequestMethod.GET)
80     public List<ServiceInfo> getServicesInfo(HttpServletRequest request) {
81         return asyncInstantiationBL.getAllServicesInfo();
82     }
83
84     @RequestMapping(value = "bulk", method = RequestMethod.POST)
85     public MsoResponseWrapper2<List<String>> createBulkOfServices(@RequestBody ServiceInstantiation request, HttpServletRequest httpServletRequest) {
86         //Push to DB according the model
87         try {
88             LOGGER.debug(EELFLoggerDelegate.debugLogger, "incoming ServiceInstantiation request: "+ JACKSON_OBJECT_MAPPER.writeValueAsString(request));
89         }
90         catch (Exception e) {
91             LOGGER.error(EELFLoggerDelegate.errorLogger, "failed to log incoming ServiceInstantiation request ", e);
92         }
93         String userId = new ControllersUtils(systemPropertiesWrapper).extractUserId(httpServletRequest);
94
95         throwExceptionIfAccessDenied(request, httpServletRequest, userId);
96         List<UUID> uuids = asyncInstantiationBL.pushBulkJob(request, userId);
97         return new MsoResponseWrapper2(200, uuids);
98     }
99
100
101
102     @RequestMapping(value = "retryJobWithChangedData/{jobId}", method = RequestMethod.POST)
103     public MsoResponseWrapper2<List<String>> retryJobWithChangedData(@RequestBody ServiceInstantiation request, @PathVariable(value="jobId") UUID jobId, HttpServletRequest httpServletRequest) {
104
105         String userId = new ControllersUtils(systemPropertiesWrapper).extractUserId(httpServletRequest);
106         List<UUID> uuids =  asyncInstantiationBL.retryJob(request, jobId, userId);
107         return new MsoResponseWrapper2(200, uuids);
108     }
109
110     @RequestMapping(value = "job/{jobId}", method = RequestMethod.DELETE)
111     public void deleteServiceInfo(@PathVariable("jobId") UUID jobId) {
112         asyncInstantiationBL.deleteJob(jobId);
113     }
114
115     @RequestMapping(value = "hide/{jobId}", method = RequestMethod.POST)
116     public void hideServiceInfo(@PathVariable("jobId") UUID jobId) {
117         asyncInstantiationBL.hideServiceInfo(jobId);
118     }
119
120     @RequestMapping(value = "auditStatus/{jobId}", method = RequestMethod.GET)
121     public List<JobAuditStatus> getJobAuditStatus(HttpServletRequest request, @PathVariable(value="jobId") UUID jobId, @RequestParam(value="source") JobAuditStatus.SourceStatus source){
122         return auditService.getAuditStatuses(jobId, source);
123     }
124
125     @RequestMapping(value = "auditStatus/{jobId}/mso", method = RequestMethod.GET)
126     public List<JobAuditStatus> getJobMsoAuditStatusForAlaCarte(HttpServletRequest request,
127                                                                 @PathVariable(value="jobId") UUID jobId,
128                                                                 @RequestParam(value="requestId", required = false) UUID requestId,
129                                                                 @RequestParam(value="serviceInstanceId", required = false) UUID serviceInstanceId){
130         if (serviceInstanceId != null) {
131             return auditService.getAuditStatusFromMsoByInstanceId(JobAuditStatus.ResourceTypeFilter.SERVICE, serviceInstanceId, jobId);
132         }
133         if (requestId != null){
134             return auditService.getAuditStatusFromMsoByRequestId(jobId, requestId);
135         }
136         return auditService.getAuditStatusFromMsoByJobId(jobId);
137
138     }
139
140     @RequestMapping(value = "auditStatus/{type}/{instanceId}/mso", method = RequestMethod.GET)
141     public List<JobAuditStatus> getAuditStatusFromMsoByInstanceId(HttpServletRequest request,
142                                                                   @PathVariable(value="type") JobAuditStatus.ResourceTypeFilter resourceTypeFilter,
143                                                                   @PathVariable(value="instanceId") UUID instanceId) {
144         return auditService.getAuditStatusFromMsoByInstanceId(resourceTypeFilter, instanceId, null);
145     }
146
147     @RequestMapping(value = "/bulkForRetry/{jobId}", method = RequestMethod.GET)
148     public ServiceInstantiation getBulkForRetry(HttpServletRequest request, @PathVariable(value="jobId") UUID jobId) {
149         return asyncInstantiationBL.getBulkForRetry(jobId);
150     }
151
152     @RequestMapping(value = "retry/{jobId}", method = RequestMethod.POST)
153     public MsoResponseWrapper2<List<UUID>> retryJobRequest(HttpServletRequest httpServletRequest,
154                                                            @PathVariable(value="jobId") UUID jobId) {
155
156         String userId = new ControllersUtils(systemPropertiesWrapper).extractUserId(httpServletRequest);
157         List<UUID> uuids =  asyncInstantiationBL.retryJob(jobId, userId);
158
159         return new MsoResponseWrapper2(200, uuids);
160     }
161
162     @RequestMapping(value = "/auditStatusForRetry/{trackById}", method = RequestMethod.GET)
163     public JobAuditStatus getResourceAuditStatus(HttpServletRequest request, @PathVariable(value="trackById") String trackById) {
164         return auditService.getResourceAuditStatus(trackById);
165     }
166
167     private void throwExceptionIfAccessDenied(ServiceInstantiation request, HttpServletRequest httpServletRequest, String userId) {
168         if (featureManager.isActive(Features.FLAG_1906_INSTANTIATION_API_USER_VALIDATION) && !roleProvider.getUserRolesValidator(httpServletRequest).isServicePermitted(request.getGlobalSubscriberId(), request.getSubscriptionServiceType())) {
169             throw new AccessDeniedException(String.format("User %s is not allowed to make this request", userId));
170         }
171     }
172 }