1ed6d0a449657e315ebbe3f85396cea702f9133c
[portal/nonrtric-controlpanel.git] / webapp-backend / src / main / java / org / oransc / portal / nonrtric / controlpanel / controller / Html5PathsController.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
6  * Modifications Copyright (C) 2019 Nordix Foundation
7  * Modifications Copyright (C) 2020 Nordix Foundation
8  * %%
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ========================LICENSE_END===================================
21  */
22 package org.oransc.portal.nonrtric.controlpanel.controller;
23
24 import java.io.IOException;
25 import java.lang.invoke.MethodHandles;
26 import java.net.URL;
27
28 import javax.servlet.http.HttpServletRequest;
29 import javax.servlet.http.HttpServletResponse;
30
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.stereotype.Controller;
34 import org.springframework.web.bind.annotation.GetMapping;
35
36 /**
37  * Listens for requests to known Angular routes.
38  */
39 @Controller
40 public class Html5PathsController {
41
42     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
43
44     /**
45      * Forwards the browser to the index (main) page upon request of a known route.
46      * This unfortunately requires duplication of the Angular route strings in the
47      * path mappings on this method. Could switch to a regex pattern instead someday
48      * if the routes change too often.
49      *
50      * https://stackoverflow.com/questions/44692781/configure-spring-boot-to-redirect-404-to-a-single-page-app
51      *
52      * @param request
53      *        HttpServletRequest
54      * @param response
55      *        HttpServletResponse
56      * @throws IOException
57      *         On error
58      */
59     @GetMapping("/policy")
60     public void forwardAngularRoutes(HttpServletRequest request, HttpServletResponse response) throws IOException {
61         URL url = new URL(request.getScheme(), request.getServerName(), request.getServerPort(), "/index.html");
62         if (logger.isDebugEnabled())
63             logger.debug("forwardAngularRoutes: {} redirected to {}", request.getRequestURI(), url);
64         response.sendRedirect(url.toString());
65     }
66
67 }