Migrate from DW to Springboot
[holmes/rule-management.git] / rulemgt / src / main / java / org / onap / holmes / rulemgt / bolt / enginebolt / EngineWrapper.java
1 /**\r
2  * Copyright 2017-2021 ZTE Corporation.\r
3  * <p>\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  * <p>\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  * <p>\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 package org.onap.holmes.rulemgt.bolt.enginebolt;\r
17 \r
18 import com.google.gson.JsonObject;\r
19 import com.google.gson.JsonParser;\r
20 import lombok.extern.slf4j.Slf4j;\r
21 import org.onap.holmes.common.exception.CorrelationException;\r
22 import org.onap.holmes.rulemgt.bean.request.CorrelationCheckRule4Engine;\r
23 import org.onap.holmes.rulemgt.bean.request.CorrelationDeployRule4Engine;\r
24 import org.onap.holmes.rulemgt.constant.RuleMgtConstant;\r
25 import org.springframework.beans.factory.annotation.Autowired;\r
26 import org.springframework.stereotype.Service;\r
27 \r
28 @Service\r
29 @Slf4j\r
30 public class EngineWrapper {\r
31 \r
32     @Autowired\r
33     private EngineService engineService;\r
34 \r
35     public String deployEngine(CorrelationDeployRule4Engine correlationRule, String ip) throws CorrelationException {\r
36         String response = engineService.deploy(correlationRule, ip);\r
37         if (response != null) {\r
38             try {\r
39                 JsonObject json = JsonParser.parseString(response).getAsJsonObject();\r
40                 return json.get(RuleMgtConstant.PACKAGE).getAsString();\r
41             } catch (Exception e) {\r
42                 throw new CorrelationException("Failed to parse the value returned by the engine management service.", e);\r
43             }\r
44         } else {\r
45             throw new CorrelationException("Failed to deploy the rule!");\r
46         }\r
47     }\r
48 \r
49     public boolean deleteRuleFromEngine(String packageName, String ip) throws CorrelationException {\r
50         if (engineService.delete(packageName, ip)) {\r
51             return true;\r
52         } else {\r
53             throw new CorrelationException("Failed to delete the rule!");\r
54         }\r
55     }\r
56 \r
57     public boolean checkRuleFromEngine(CorrelationCheckRule4Engine correlationCheckRule4Engine, String ip)\r
58             throws CorrelationException {\r
59         log.info("Rule Contents: " + correlationCheckRule4Engine.getContent());\r
60         if (!engineService.check(correlationCheckRule4Engine, ip)) {\r
61             throw new CorrelationException("Failed to verify the rule. The contents of the rule are invalid.");\r
62         }\r
63         return true;\r
64     }\r
65 }\r