Cleanup WebInitializer a bit
[netconf.git] / restconf / sal-rest-docgen / src / main / java / org / opendaylight / netconf / sal / rest / doc / jaxrs / WebInitializer.java
1 /*
2  * Copyright (c) 2018 Inocybe Technologies and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.netconf.sal.rest.doc.jaxrs;
9
10 import javax.servlet.ServletException;
11 import javax.ws.rs.core.Application;
12 import org.opendaylight.aaa.web.ResourceDetails;
13 import org.opendaylight.aaa.web.ServletDetails;
14 import org.opendaylight.aaa.web.WebContext;
15 import org.opendaylight.aaa.web.WebContextSecurer;
16 import org.opendaylight.aaa.web.WebServer;
17 import org.opendaylight.aaa.web.servlet.ServletSupport;
18 import org.opendaylight.yangtools.concepts.Registration;
19
20 /**
21  * Initializes the wep app.
22  *
23  * @author Thomas Pantelis
24  */
25 public final class WebInitializer implements AutoCloseable {
26     private final Registration registration;
27
28     public WebInitializer(final WebServer webServer, final WebContextSecurer webContextSecurer,
29             final ServletSupport servletSupport, final Application webApp) throws ServletException {
30         var webContextBuilder = WebContext.builder()
31             .contextPath("apidoc")
32             .supportsSessions(true)
33             .addServlet(ServletDetails.builder()
34                 .servlet(servletSupport.createHttpServletBuilder(webApp).build())
35                 .addUrlPattern("/swagger2/apis/*")
36                 .addUrlPattern("/openapi3/apis/*")
37                 .build())
38             .addResource(ResourceDetails.builder().name("/explorer").build());
39
40         webContextSecurer.requireAuthentication(webContextBuilder, "/swagger2/*", "/openapi3/*");
41
42         registration = webServer.registerWebContext(webContextBuilder.build());
43     }
44
45     @Override
46     public void close() {
47         registration.close();
48     }
49 }