Java tutorial
/** * The contents of this file are subject to the OpenMRS Public License * Version 1.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://license.openmrs.org * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations * under the License. * * Copyright (C) OpenMRS, LLC. All Rights Reserved. */ package org.openmrs.module.webservices.rest.web.controller; import javax.servlet.http.HttpServletRequest; import org.openmrs.api.context.Context; import org.openmrs.module.webservices.docs.swagger.SwaggerSpecificationCreator; import org.openmrs.module.webservices.rest.web.RestConstants; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; @Controller("SwaggerSpecificationController") @RequestMapping("/module/webservices/rest/swagger.json") public class SwaggerSpecificationController { @RequestMapping(method = RequestMethod.GET) public @ResponseBody String getSwaggerSpecification(HttpServletRequest request) throws Exception { String swaggerSpecificationJSON = ""; StringBuilder baseUrl = new StringBuilder(); String scheme = request.getScheme(); int port = request.getServerPort(); baseUrl.append(scheme); // http, https baseUrl.append("://"); baseUrl.append(request.getServerName()); if ((scheme.equals("http") && port != 80) || (scheme.equals("https") && port != 443)) { baseUrl.append(':'); baseUrl.append(request.getServerPort()); } baseUrl.append(request.getContextPath()); String resourcesUrl = Context.getAdministrationService() .getGlobalProperty(RestConstants.URI_PREFIX_GLOBAL_PROPERTY_NAME, baseUrl.toString()); if (!resourcesUrl.endsWith("/")) { resourcesUrl += "/"; } resourcesUrl += "ws/rest"; String urlWithoutScheme = ""; /* Swagger appends scheme to urls, so we should remove it */ if (scheme.equals("http")) urlWithoutScheme = resourcesUrl.replace("http://", ""); else if (scheme.equals("https")) urlWithoutScheme = resourcesUrl.replace("https://", ""); SwaggerSpecificationCreator creator = new SwaggerSpecificationCreator(urlWithoutScheme); swaggerSpecificationJSON = creator.BuildJSON(); return swaggerSpecificationJSON; } }