org.httprpc.kilo.IndexServlet Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.httprpc.kilo;
import jakarta.servlet.annotation.WebServlet;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.httprpc.kilo.beans.BeanAdapter;
import org.httprpc.kilo.io.JSONEncoder;
import org.httprpc.kilo.io.TemplateEncoder;
import java.io.IOException;
import java.util.ResourceBundle;
import static org.httprpc.kilo.util.Collections.*;
/**
* Generates an index of all active services.
*/
@WebServlet(urlPatterns = {""}, loadOnStartup = 1)
public class IndexServlet extends HttpServlet {
/**
* Generates the service index.
* {@inheritDoc}
*/
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
var serviceDescriptors = BeanAdapter.adapt(WebService.getServiceDescriptors());
var accept = request.getHeader("Accept");
if (accept != null && accept.equalsIgnoreCase("application/json")) {
response.setContentType("application/json;charset=UTF-8");
var jsonEncoder = new JSONEncoder();
jsonEncoder.write(serviceDescriptors, response.getOutputStream());
} else {
response.setContentType("text/html;charset=UTF-8");
var templateEncoder = new TemplateEncoder(IndexServlet.class.getResource("index.html"));
templateEncoder.setResourceBundle(ResourceBundle.getBundle(IndexServlet.class.getName(), request.getLocale()));
templateEncoder.write(mapOf(
entry("contextPath", request.getContextPath()),
entry("services", serviceDescriptors)
), response.getOutputStream());
}
}
}