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