Divide the MSB source codes into two repos
[msb/apigateway.git] / apiroute / apiroute-service / src / main / java / org / onap / msb / apiroute / ApiRouteApp.java
1 /**
2  * Copyright 2016 ZTE, Inc. and others.
3  *
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  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.msb.apiroute;
18 import io.dropwizard.Application;
19 import io.dropwizard.assets.AssetsBundle;
20 import io.dropwizard.server.SimpleServerFactory;
21 import io.dropwizard.setup.Bootstrap;
22 import io.dropwizard.setup.Environment;
23 import io.swagger.jaxrs.config.BeanConfig;
24 import io.swagger.jaxrs.listing.ApiListingResource;
25
26 import org.onap.msb.apiroute.health.ApiRouteHealthCheck;
27 import org.onap.msb.apiroute.resources.ApiRouteResource;
28 import org.onap.msb.apiroute.resources.CustomRouteResource;
29 import org.onap.msb.apiroute.resources.IuiRouteResource;
30 import org.onap.msb.apiroute.resources.MicroServiceResource;
31 import org.onap.msb.apiroute.wrapper.InitRouteServiceWrapper;
32 import org.onap.msb.apiroute.wrapper.util.ConfigUtil;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35
36 import com.fasterxml.jackson.annotation.JsonInclude;
37
38 public class ApiRouteApp extends Application<ApiRouteAppConfig> {
39
40     private static final Logger LOGGER = LoggerFactory.getLogger(ApiRouteApp.class);
41
42     public static void main(String[] args) throws Exception {
43         new ApiRouteApp().run(args);
44         
45         InitRouteServiceWrapper.getInstance().initFilterConfig();
46         
47         InitRouteServiceWrapper.getInstance().initDataSynchro();
48         
49         InitRouteServiceWrapper.getInstance().initHealthCheck();
50     }
51
52
53     @Override
54     public String getName() {
55         return " MicroService Bus ";
56     }
57
58     @Override
59     public void initialize(Bootstrap<ApiRouteAppConfig> bootstrap) {
60       super.initialize(bootstrap);
61         
62     }
63
64     @Override
65     public void run(ApiRouteAppConfig configuration, Environment environment) throws Exception {
66      
67    
68       ConfigUtil.getInstance().initRootPath();
69      
70       
71        String iuiRootPath=ConfigUtil.getInstance().getIUI_ROOT_PATH();
72       
73         // new AssetsBundle("/iui-metrics", "/"+iuiRootPath+"/microservices/metrics","index.html", "iui-metrics").run(environment); 
74         
75         new AssetsBundle("/iui-route",  "/"+iuiRootPath+"/microservices", "index.html","iui-microservices").run(environment); 
76         
77         new AssetsBundle("/api-doc",  "/"+iuiRootPath+"/microservices/api-doc","index.html", "api-doc").run(environment);
78         
79         new AssetsBundle("/ext",  "/"+iuiRootPath+"/microservices/ext","index.html", "ext").run(environment);
80         
81         
82         
83
84         final ApiRouteHealthCheck healthCheck =new ApiRouteHealthCheck();
85         environment.healthChecks().register("consulCheck", healthCheck);
86         
87         environment.jersey().register(new ApiRouteResource());
88         environment.jersey().register(new IuiRouteResource());   
89         environment.jersey().register(new CustomRouteResource());
90         environment.jersey().register(new MicroServiceResource());
91         
92         // initSwaggerConfig(environment, configuration);
93         
94         ConfigUtil.getInstance().initConsulIp();
95         ConfigUtil.getInstance().initDiscoverInfo(configuration);
96         // InitRouteServiceWrapper.getInstance().initMetricsConfig(configuration);
97         
98         
99     }
100     
101
102     
103     
104
105
106     private void initSwaggerConfig(Environment environment, ApiRouteAppConfig configuration) {
107
108         environment.jersey().register(new ApiListingResource());
109         environment.getObjectMapper().setSerializationInclusion(JsonInclude.Include.NON_NULL);
110
111         BeanConfig config = new BeanConfig();
112         config.setTitle("ApiRoute RESTful API");
113         config.setVersion("1.0.0");
114         config.setResourcePackage("org.onap.msb.apiroute.resources");
115         SimpleServerFactory simpleServerFactory =(SimpleServerFactory) configuration.getServerFactory();
116         String basePath = simpleServerFactory.getApplicationContextPath();
117         String rootPath = simpleServerFactory.getJerseyRootPath();
118
119         rootPath = rootPath.substring(0, rootPath.indexOf("/*"));
120
121         basePath = basePath.equals("/") ? rootPath : (new StringBuilder()).append(basePath).append(rootPath).toString();
122
123         LOGGER.warn("getApplicationContextPath: " + basePath);
124         config.setBasePath(basePath);
125         config.setScan(true);
126     }
127     
128
129    
130
131 }