HTTP/S Modifications
[holmes/rule-management.git] / rulemgt / src / main / java / org / onap / holmes / rulemgt / RuleActiveApp.java
1 /**
2  * Copyright 2017-2018 ZTE Corporation.
3  * <p>
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * <p>
8  * http://www.apache.org/licenses/LICENSE-2.0
9  * <p>
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.holmes.rulemgt;
18
19 import io.dropwizard.setup.Environment;
20 import lombok.extern.slf4j.Slf4j;
21 import org.onap.holmes.common.config.MicroServiceConfig;
22 import org.onap.holmes.common.dropwizard.ioc.bundle.IOCApplication;
23 import org.onap.holmes.common.exception.CorrelationException;
24 import org.onap.holmes.common.utils.HttpsUtils;
25 import org.onap.holmes.common.utils.MSBRegisterUtil;
26 import org.onap.holmes.common.utils.transactionid.TransactionIdFilter;
27 import org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling;
28 import org.onap.holmes.rulemgt.msb.MsbQuery;
29 import org.onap.holmes.rulemgt.resources.RuleMgtResources;
30 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;
31 import org.onap.msb.sdk.discovery.entity.Node;
32
33 import javax.servlet.DispatcherType;
34 import java.util.EnumSet;
35 import java.util.HashSet;
36 import java.util.Set;
37 import java.util.concurrent.Executors;
38 import java.util.concurrent.ScheduledExecutorService;
39 import java.util.concurrent.TimeUnit;
40
41 @Slf4j
42 public class RuleActiveApp extends IOCApplication<RuleAppConfig> {
43
44     public static void main(String[] args) throws Exception {
45         new RuleActiveApp().run(args);
46     }
47
48     @Override
49     public String getName() {
50         return "Holmes Rule Management ActiveApp APP ";
51     }
52
53     @Override
54     public void run(RuleAppConfig configuration, Environment environment) throws Exception {
55         super.run(configuration, environment);
56
57         environment.jersey().register(new RuleMgtResources());
58         try {
59             new MSBRegisterUtil().register2Msb(createMicroServiceInfo());
60         } catch (CorrelationException e) {
61             log.warn(e.getMessage(), e);
62         }
63
64         if (!"1".equals(System.getenv("TESTING"))) {
65             ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
66             service.scheduleAtFixedRate(
67                     new DcaeConfigurationPolling(MicroServiceConfig.getEnv(MicroServiceConfig.HOSTNAME)), 0,
68                     DcaeConfigurationPolling.POLLING_PERIOD, TimeUnit.MILLISECONDS);
69         }
70
71         environment.servlets().addFilter("customFilter", new TransactionIdFilter()).addMappingForUrlPatterns(EnumSet
72                 .allOf(DispatcherType.class), true, "/*");
73
74         new MsbQuery().startTimer();
75     }
76
77     private MicroServiceInfo createMicroServiceInfo() {
78         String msbAddrTemplate = (HttpsUtils.isHttpsEnabled() ? "https" : "http")
79                 + "://%s:%s/api/holmes-rule-mgmt/v1/healthcheck";
80         String[] serviceAddrInfo = MicroServiceConfig.getMicroServiceIpAndPort();
81         MicroServiceInfo msinfo = new MicroServiceInfo();
82         msinfo.setServiceName("holmes-rule-mgmt");
83         msinfo.setVersion("v1");
84         msinfo.setUrl("/api/holmes-rule-mgmt/v1");
85         msinfo.setProtocol("REST");
86         msinfo.setVisualRange("0|1");
87         msinfo.setEnable_ssl(HttpsUtils.isHttpsEnabled());
88         Set<Node> nodes = new HashSet<>();
89         Node node = new Node();
90         node.setIp(serviceAddrInfo[0]);
91         node.setPort("9101");
92         node.setCheckType("HTTP");
93         node.setCheckUrl(String.format(msbAddrTemplate, serviceAddrInfo[0], "9101"));
94         node.setCheckTimeOut("60s");
95         node.setCheckInterval("60s");
96         nodes.add(node);
97         msinfo.setNodes(nodes);
98         return msinfo;
99     }
100 }
101