2020-03-23 15:35:58 +01:00
|
|
|
/*
|
|
|
|
|
* MIT License
|
2011-03-27 13:47:47 +02:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
2011-03-27 13:47:47 +02:00
|
|
|
*
|
2020-03-23 15:35:58 +01: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
|
|
|
*
|
2020-03-23 15:35:58 +01: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
|
|
|
*
|
2020-03-23 15:35:58 +01: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
|
|
|
*/
|
2020-03-23 15:35:58 +01:00
|
|
|
|
2011-03-27 13:47:47 +02:00
|
|
|
package sonia.scm.template;
|
|
|
|
|
|
|
|
|
|
//~--- non-JDK imports --------------------------------------------------------
|
|
|
|
|
|
2012-08-12 20:51:51 +02:00
|
|
|
import com.google.common.collect.ImmutableSet;
|
2011-03-27 13:47:47 +02:00
|
|
|
import com.google.inject.Inject;
|
|
|
|
|
import com.google.inject.Singleton;
|
2012-08-12 20:51:51 +02:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
2011-03-27 13:47:47 +02:00
|
|
|
import sonia.scm.SCMContextProvider;
|
2013-12-27 17:17:59 +01:00
|
|
|
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;
|
2012-08-12 20:51:51 +02:00
|
|
|
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;
|
|
|
|
|
|
2012-08-12 20:51:51 +02:00
|
|
|
/**
|
|
|
|
|
* 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
|
2012-08-12 20:51:51 +02:00
|
|
|
* @param templateEngineFactory
|
2013-12-27 17:17:59 +01:00
|
|
|
* @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
|
|
|
{
|
2012-08-12 20:51:51 +02:00
|
|
|
this.templateEngineFactory = templateEngineFactory;
|
2013-12-27 17:17:59 +01:00
|
|
|
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);
|
2013-12-27 17:17:59 +01:00
|
|
|
params.put("configuration", configuration);
|
2011-03-27 13:47:47 +02:00
|
|
|
params.put("version", version);
|
2012-08-12 20:51:51 +02:00
|
|
|
|
2011-03-27 13:47:47 +02:00
|
|
|
Locale l = request.getLocale();
|
|
|
|
|
|
|
|
|
|
if (l == null)
|
|
|
|
|
{
|
2012-08-12 20:51:51 +02:00
|
|
|
if (logger.isTraceEnabled())
|
|
|
|
|
{
|
|
|
|
|
logger.trace("could not find locale in request, use englich");
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-27 13:47:47 +02:00
|
|
|
l = Locale.ENGLISH;
|
|
|
|
|
}
|
2012-08-12 20:51:51 +02:00
|
|
|
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;
|
2013-01-30 10:10:20 +01:00
|
|
|
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
|
|
|
|
2012-08-12 20:51:51 +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();
|
2012-08-12 20:51:51 +02:00
|
|
|
|
|
|
|
|
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("/"))
|
|
|
|
|
{
|
2012-08-12 20:51:51 +02:00
|
|
|
path = path.concat("index.mustache");
|
2011-03-27 13:47:47 +02:00
|
|
|
}
|
2012-08-12 22:22:51 +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 */
|
2013-12-27 17:17:59 +01:00
|
|
|
private final ScmConfiguration configuration;
|
|
|
|
|
|
2011-03-27 13:47:47 +02:00
|
|
|
/** Field description */
|
2013-12-27 17:17:59 +01:00
|
|
|
private final TemplateEngineFactory templateEngineFactory;
|
2011-03-27 13:47:47 +02:00
|
|
|
|
|
|
|
|
/** Field description */
|
2013-12-27 17:17:59 +01:00
|
|
|
private final String version;
|
2011-03-27 13:47:47 +02:00
|
|
|
}
|