push addional code
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / validation-rest / validation-rest-services / src / main / java / org / openecomp / sdcrests / validation / rest / services / ValidationImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.sdcrests.validation.rest.services;
22
23 import org.openecomp.sdc.validation.UploadValidationManager;
24 import org.openecomp.sdc.validation.types.ValidationFileResponse;
25 import org.openecomp.sdcrests.validation.rest.Validation;
26 import org.openecomp.sdcrests.validation.rest.mapping.MapValidationFileResponseToValidationFileResponseDto;
27 import org.openecomp.sdcrests.validation.types.ValidationFileResponseDto;
28 import org.springframework.beans.factory.annotation.Autowired;
29 import org.springframework.context.annotation.Scope;
30 import org.springframework.stereotype.Service;
31
32 import java.io.IOException;
33 import java.io.InputStream;
34 import javax.inject.Named;
35 import javax.ws.rs.core.Response;
36
37
38 @Named
39 @Service("validation")
40 @Scope(value = "prototype")
41 public class ValidationImpl implements Validation {
42
43   @Autowired
44   private UploadValidationManager uploadValidationManager;
45
46   @Override
47   public Response validateFile(String type, InputStream fileToValidate) {
48     ValidationFileResponse validationFileResponse = null;
49     try {
50       validationFileResponse = uploadValidationManager.validateFile(type, fileToValidate);
51     } catch (IOException e0) {
52       throw new RuntimeException(e0);
53     }
54
55     ValidationFileResponseDto validationFileResponseDto =
56         new MapValidationFileResponseToValidationFileResponseDto()
57             .applyMapping(validationFileResponse, ValidationFileResponseDto.class);
58
59     return Response.ok(validationFileResponseDto).build();
60   }
61
62
63 }