Sync Integ to Master
[sdc.git] / asdctool / src / main / java / org / openecomp / sdc / asdctool / impl / RestUtils.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.sdc.asdctool.impl;
22
23 import java.util.Properties;
24
25 import org.apache.http.HttpStatus;
26 import org.openecomp.sdc.common.http.client.api.HttpRequest;
27 import org.openecomp.sdc.common.http.client.api.HttpResponse;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30
31 /**
32  * Created by mlando on 2/23/2016.
33  */
34 public class RestUtils {
35
36         final static String DELETE_PRODUCT = "http://%s:%s/sdc2/rest/v1/catalog/products/%s";
37
38         private static Logger log = LoggerFactory.getLogger(RestUtils.class.getName());
39
40         public RestUtils() {
41         }
42
43         public Integer deleteProduct(String productUid, String beHost, String bePort, String adminUser) {
44                 String url = String.format(DELETE_PRODUCT, beHost, bePort, productUid);
45                 
46                 Properties headers = new Properties();
47                 headers.put("USER_ID", adminUser);
48                 try {
49                     HttpResponse<String> httpResponse = HttpRequest.delete(url, headers);
50             int status = httpResponse.getStatusCode();
51             if (status == HttpStatus.SC_OK) {
52                 log.debug("Product uid:{} succsesfully deleted", productUid);
53             }
54             else {
55                 log.error("Product uid:{} delete failed status {}", productUid, status);
56             }
57             return status;
58                 }
59                 catch(Exception e) {
60                     log.error("Product uid:{} delete failed with exception",productUid, e);
61                 }
62                 return null;            
63         }
64
65 }