Files
SCM-Manager/scm-webapp/src/main/java/sonia/scm/template/TemplateServlet.java

228 lines
5.8 KiB
Java
Raw Normal View History

/*
* MIT License
2011-03-27 13:47:47 +02:00
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
2011-03-27 13:47:47 +02:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
2011-03-27 13:47:47 +02:00
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
2011-03-27 13:47:47 +02:00
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
2011-03-27 13:47:47 +02:00
*/
2011-03-27 13:47:47 +02:00
package sonia.scm.template;
//~--- non-JDK imports --------------------------------------------------------
import com.google.common.collect.ImmutableSet;
2011-03-27 13:47:47 +02:00
import com.google.inject.Inject;
import com.google.inject.Singleton;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
2011-03-27 13:47:47 +02:00
import sonia.scm.SCMContextProvider;
import sonia.scm.config.ScmConfiguration;
2011-03-27 13:47:47 +02:00
import sonia.scm.util.IOUtil;
2018-08-27 15:45:56 +02:00
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
2011-03-27 13:47:47 +02:00
import java.io.IOException;
import java.io.Writer;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
2011-03-27 13:47:47 +02:00
2018-08-27 15:45:56 +02:00
//~--- JDK imports ------------------------------------------------------------
2011-03-27 13:47:47 +02:00
/**
*
* @author Sebastian Sdorra
*/
@Singleton
public class TemplateServlet extends HttpServlet
{
2011-04-18 18:57:55 +02:00
/** Field description */
public static final String CONTENT_TYPE = "text/html";
/** Field description */
public static final String ENCODING = "UTF-8";
2011-03-27 13:47:47 +02:00
/** Field description */
private static final long serialVersionUID = 3578555653924091546L;
/**
* the logger for TemplateServlet
*/
private static final Logger logger =
LoggerFactory.getLogger(TemplateServlet.class);
/** Field description */
private static final Set<Locale> DEFAULT_LOCALE =
ImmutableSet.of(Locale.ENGLISH, Locale.UK, Locale.US);
2011-03-27 13:47:47 +02:00
//~--- constructors ---------------------------------------------------------
/**
* Constructs ...
*
*
*
* @param context
* @param templateEngineFactory
* @param configuration
2011-03-27 13:47:47 +02:00
*/
@Inject
public TemplateServlet(SCMContextProvider context,
2018-08-27 15:45:56 +02:00
TemplateEngineFactory templateEngineFactory, ScmConfiguration configuration)
2011-03-27 13:47:47 +02:00
{
this.templateEngineFactory = templateEngineFactory;
this.configuration = configuration;
2011-03-27 13:47:47 +02:00
this.version = context.getVersion();
}
//~--- methods --------------------------------------------------------------
/**
* Method description
*
*
* @param request
* @param response
*
* @throws IOException
*/
@Override
2018-08-27 15:45:56 +02:00
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException
2011-03-27 13:47:47 +02:00
{
2018-08-27 15:45:56 +02:00
Map<String, Object> params = new HashMap<>();
2011-03-27 13:47:47 +02:00
String contextPath = request.getContextPath();
params.put("contextPath", contextPath);
params.put("configuration", configuration);
2011-03-27 13:47:47 +02:00
params.put("version", version);
2011-03-27 13:47:47 +02:00
Locale l = request.getLocale();
if (l == null)
{
if (logger.isTraceEnabled())
{
logger.trace("could not find locale in request, use englich");
}
2011-03-27 13:47:47 +02:00
l = Locale.ENGLISH;
}
else if (logger.isTraceEnabled())
{
logger.trace("found locale {} in request", l);
}
2011-03-27 13:47:47 +02:00
String locale = l.toString();
params.put("locale", locale);
2011-03-31 10:52:25 +02:00
String country = locale;
int i = country.indexOf('_');
2011-03-27 13:47:47 +02:00
if (i > 0)
{
2011-03-31 10:52:25 +02:00
country = country.substring(0, i);
2011-03-27 13:47:47 +02:00
}
2011-03-31 10:52:25 +02:00
params.put("country", country);
2011-03-27 13:47:47 +02:00
if (!DEFAULT_LOCALE.contains(l))
{
params.put("nonDefaultLocale", Boolean.TRUE);
}
2011-03-27 13:47:47 +02:00
String templateName = getTemplateName(contextPath, request.getRequestURI());
Writer writer = null;
try
{
2011-04-18 18:57:55 +02:00
response.setCharacterEncoding(ENCODING);
response.setContentType(CONTENT_TYPE);
2011-03-27 13:47:47 +02:00
writer = response.getWriter();
TemplateEngine engine = templateEngineFactory.getDefaultEngine();
Template template = engine.getTemplate(templateName);
if (template != null)
{
template.execute(writer, params);
}
else
{
if (logger.isWarnEnabled())
{
logger.warn("could not find template {}", templateName);
}
response.setStatus(HttpServletResponse.SC_NOT_FOUND);
}
2011-03-27 13:47:47 +02:00
}
finally
{
IOUtil.close(writer);
}
}
//~--- get methods ----------------------------------------------------------
/**
* Method description
*
*
* @param contextPath
* @param requestURI
*
* @return
*/
private String getTemplateName(String contextPath, String requestURI)
{
String path = requestURI.substring(contextPath.length());
if (path.endsWith("/"))
{
path = path.concat("index.mustache");
2011-03-27 13:47:47 +02:00
}
else
{
int index = path.lastIndexOf('.');
if (index > 0)
{
path = path.substring(0, index).concat(".mustache");
}
}
2011-03-27 13:47:47 +02:00
return path;
}
//~--- fields ---------------------------------------------------------------
2012-02-03 20:41:38 +01:00
/** Field description */
private final ScmConfiguration configuration;
2011-03-27 13:47:47 +02:00
/** Field description */
private final TemplateEngineFactory templateEngineFactory;
2011-03-27 13:47:47 +02:00
/** Field description */
private final String version;
2011-03-27 13:47:47 +02:00
}