Files
SCM-Manager/scm-plugins/scm-hg-plugin/src/main/java/sonia/scm/web/HgHookCallbackServlet.java

377 lines
10 KiB
Java
Raw Normal View History

/**
* Copyright (c) 2010, Sebastian Sdorra
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of SCM-Manager; nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* http://bitbucket.org/sdorra/scm-manager
*
*/
package sonia.scm.web;
//~--- non-JDK imports --------------------------------------------------------
2011-07-21 22:13:42 +02:00
import com.google.inject.Inject;
2011-10-08 15:31:10 +02:00
import com.google.inject.Provider;
import com.google.inject.Singleton;
2011-07-21 22:13:42 +02:00
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
2011-10-08 15:31:10 +02:00
import sonia.scm.repository.HgContext;
2011-07-22 13:08:12 +02:00
import sonia.scm.repository.HgHookManager;
2011-07-21 22:13:42 +02:00
import sonia.scm.repository.HgRepositoryHandler;
import sonia.scm.repository.HgRepositoryHookEvent;
2011-09-28 09:42:16 +02:00
import sonia.scm.repository.RepositoryHookType;
2011-07-21 22:13:42 +02:00
import sonia.scm.repository.RepositoryManager;
import sonia.scm.repository.RepositoryNotFoundException;
2011-10-15 15:55:17 +02:00
import sonia.scm.security.CipherUtil;
import sonia.scm.util.HttpUtil;
import sonia.scm.util.IOUtil;
import sonia.scm.util.Util;
2011-10-15 15:55:17 +02:00
import sonia.scm.web.security.WebSecurityContext;
2011-07-21 22:13:42 +02:00
//~--- JDK imports ------------------------------------------------------------
import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
*
* @author Sebastian Sdorra
*/
@Singleton
public class HgHookCallbackServlet extends HttpServlet
{
2011-09-28 09:42:16 +02:00
/** Field description */
public static final String HGHOOK_POST_RECEIVE = "changegroup";
/** Field description */
public static final String HGHOOK_PRE_RECEIVE = "pretxnchangegroup";
/** Field description */
public static final String PARAM_REPOSITORYPATH = "repositoryPath";
/** Field description */
private static final String PARAM_CHALLENGE = "challenge";
2011-10-15 15:55:17 +02:00
/** Field description */
private static final String PARAM_CREDENTIALS = "credentials";
/** Field description */
private static final String PARAM_NODE = "node";
/** Field description */
private static final Pattern REGEX_URL =
Pattern.compile("^/hook/hg/([^/]+)$");
/** the logger for HgHookCallbackServlet */
private static final Logger logger =
LoggerFactory.getLogger(HgHookCallbackServlet.class);
2011-07-21 22:13:42 +02:00
//~--- constructors ---------------------------------------------------------
/**
* Constructs ...
*
*
* @param repositoryManager
* @param handler
2011-07-22 13:08:12 +02:00
* @param hookManager
2011-10-08 15:31:10 +02:00
* @param contextProvider
2011-10-15 15:55:17 +02:00
* @param securityContextProvider
2011-07-21 22:13:42 +02:00
*/
@Inject
2011-10-15 15:55:17 +02:00
public HgHookCallbackServlet(
RepositoryManager repositoryManager, HgRepositoryHandler handler,
HgHookManager hookManager, Provider<HgContext> contextProvider,
Provider<WebSecurityContext> securityContextProvider)
2011-07-21 22:13:42 +02:00
{
this.repositoryManager = repositoryManager;
this.handler = handler;
2011-07-22 13:08:12 +02:00
this.hookManager = hookManager;
2011-10-08 15:31:10 +02:00
this.contextProvider = contextProvider;
2011-10-15 15:55:17 +02:00
this.securityContextProvider = securityContextProvider;
2011-07-21 22:13:42 +02:00
}
//~--- methods --------------------------------------------------------------
/**
* Method description
*
*
* @param request
* @param response
*
* @throws IOException
* @throws ServletException
*/
@Override
protected void doPost(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException
{
String strippedURI = HttpUtil.getStrippedURI(request);
Matcher m = REGEX_URL.matcher(strippedURI);
if (m.matches())
{
String repositoryId = getRepositoryName(request);
String type = m.group(1);
String challenge = request.getParameter(PARAM_CHALLENGE);
if (Util.isNotEmpty(challenge))
{
String node = request.getParameter(PARAM_NODE);
if (Util.isNotEmpty(node))
{
2011-10-15 15:55:17 +02:00
String credentials = request.getParameter(PARAM_CREDENTIALS);
if (Util.isNotEmpty(credentials))
{
authenticate(request, response, credentials);
}
hookCallback(response, repositoryId, type, challenge, node);
}
else if (logger.isDebugEnabled())
{
logger.debug("node parameter not found");
}
}
else if (logger.isDebugEnabled())
{
logger.debug("challenge parameter not found");
}
}
else
{
if (logger.isDebugEnabled())
{
logger.debug("url does not match");
}
response.sendError(HttpServletResponse.SC_BAD_REQUEST);
}
}
2011-10-15 15:55:17 +02:00
/**
* Method description
*
*
* @param request
* @param response
* @param credentials
*/
private void authenticate(HttpServletRequest request,
HttpServletResponse response, String credentials)
{
try
{
credentials = CipherUtil.getInstance().decode(credentials);
if (Util.isNotEmpty(credentials))
{
String[] credentialsArray = credentials.split(":");
if (credentialsArray.length >= 2)
{
WebSecurityContext context = securityContextProvider.get();
context.authenticate(request, response, credentialsArray[0],
credentialsArray[1]);
}
}
}
catch (Exception ex)
{
logger.error("could not authenticate user", ex);
}
}
/**
* Method description
*
*
* @param response
* @param repositoryName
2011-09-28 09:42:16 +02:00
* @param node
* @param type
2011-09-28 09:42:16 +02:00
*
* @throws IOException
*/
private void fireHook(HttpServletResponse response, String repositoryName,
String node, RepositoryHookType type)
throws IOException
{
try
{
2011-10-08 15:31:10 +02:00
if (type == RepositoryHookType.PRE_RECEIVE)
{
contextProvider.get().setPending(true);
}
2011-09-28 09:42:16 +02:00
repositoryManager.fireHookEvent(HgRepositoryHandler.TYPE_NAME,
repositoryName,
new HgRepositoryHookEvent(handler,
repositoryName, node, type));
}
catch (RepositoryNotFoundException ex)
{
if (logger.isErrorEnabled())
{
logger.error("could not find repository {}", repositoryName);
if (logger.isTraceEnabled())
{
logger.trace("repository not found", ex);
}
}
response.sendError(HttpServletResponse.SC_NOT_FOUND);
}
}
/**
* Method description
*
*
* @param response
* @param repositoryName
* @param typeName
2011-07-22 13:08:12 +02:00
* @param challenge
2011-07-21 21:24:27 +02:00
* @param node
*
* @throws IOException
*/
private void hookCallback(HttpServletResponse response,
2011-09-28 09:42:16 +02:00
String repositoryName, String typeName,
String challenge, String node)
throws IOException
{
2011-07-22 13:08:12 +02:00
if (hookManager.isAcceptAble(challenge))
2011-07-21 22:13:42 +02:00
{
2011-09-28 09:42:16 +02:00
RepositoryHookType type = null;
if (HGHOOK_PRE_RECEIVE.equals(typeName))
2011-07-21 22:13:42 +02:00
{
2011-09-28 09:42:16 +02:00
type = RepositoryHookType.PRE_RECEIVE;
2011-07-22 13:08:12 +02:00
}
2011-09-28 09:42:16 +02:00
else if (HGHOOK_POST_RECEIVE.equals(typeName))
2011-07-22 13:08:12 +02:00
{
2011-09-28 09:42:16 +02:00
type = RepositoryHookType.POST_RECEIVE;
}
2011-07-22 13:08:12 +02:00
2011-09-28 09:42:16 +02:00
if (type != null)
{
fireHook(response, repositoryName, node, type);
}
else
{
if (logger.isWarnEnabled())
{
logger.warn("unknown hook type {}", typeName);
2011-07-21 22:13:42 +02:00
}
2011-07-22 13:08:12 +02:00
2011-09-28 09:42:16 +02:00
response.sendError(HttpServletResponse.SC_BAD_REQUEST);
2011-07-22 13:08:12 +02:00
}
}
else
{
if (logger.isWarnEnabled())
{
logger.warn("hg hook challenge is not accept able");
2011-07-21 22:13:42 +02:00
}
response.sendError(HttpServletResponse.SC_BAD_REQUEST);
2011-07-21 22:13:42 +02:00
}
}
//~--- get methods ----------------------------------------------------------
/**
* Method description
*
*
* @param request
*
* @return
*/
private String getRepositoryName(HttpServletRequest request)
{
String name = null;
String path = request.getParameter(PARAM_REPOSITORYPATH);
if (Util.isNotEmpty(path))
{
int directoryLength =
handler.getConfig().getRepositoryDirectory().getAbsolutePath().length();
if (directoryLength < path.length())
{
name = IOUtil.trimSeperatorChars(path.substring(directoryLength));
}
else if (logger.isWarnEnabled())
{
logger.warn("path is shorter as the main hg repository path");
}
}
else if (logger.isWarnEnabled())
{
logger.warn("no repository path parameter found");
}
return name;
}
2011-07-21 22:13:42 +02:00
//~--- fields ---------------------------------------------------------------
2011-10-08 15:31:10 +02:00
/** Field description */
private Provider<HgContext> contextProvider;
2011-07-21 22:13:42 +02:00
/** Field description */
private HgRepositoryHandler handler;
2011-07-22 13:08:12 +02:00
/** Field description */
private HgHookManager hookManager;
2011-07-21 22:13:42 +02:00
/** Field description */
private RepositoryManager repositoryManager;
2011-10-15 15:55:17 +02:00
/** Field description */
private Provider<WebSecurityContext> securityContextProvider;
}