2011-07-21 20:21:08 +02:00
|
|
|
/**
|
|
|
|
|
* 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
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-08-07 16:35:51 +02:00
|
|
|
package sonia.scm.web;
|
2011-07-21 20:21:08 +02:00
|
|
|
|
|
|
|
|
//~--- non-JDK imports --------------------------------------------------------
|
|
|
|
|
|
2011-07-21 22:13:42 +02:00
|
|
|
import com.google.inject.Inject;
|
2011-08-07 16:35:51 +02:00
|
|
|
import com.google.inject.Singleton;
|
2011-07-21 22:13:42 +02:00
|
|
|
|
2011-07-21 20:21:08 +02:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
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;
|
|
|
|
|
import sonia.scm.repository.RepositoryManager;
|
|
|
|
|
import sonia.scm.repository.RepositoryNotFoundException;
|
2011-08-07 16:35:51 +02:00
|
|
|
import sonia.scm.util.HttpUtil;
|
2011-07-21 22:13:42 +02:00
|
|
|
|
2011-07-21 20:21:08 +02:00
|
|
|
//~--- JDK imports ------------------------------------------------------------
|
|
|
|
|
|
2011-08-07 16:35:51 +02:00
|
|
|
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;
|
2011-07-21 20:21:08 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @author Sebastian Sdorra
|
|
|
|
|
*/
|
2011-08-07 16:35:51 +02:00
|
|
|
@Singleton
|
|
|
|
|
public class HgHookCallbackServlet extends HttpServlet
|
2011-07-21 20:21:08 +02:00
|
|
|
{
|
|
|
|
|
|
2011-08-07 16:35:51 +02:00
|
|
|
/** Field description */
|
|
|
|
|
private static final String PARAM_CHALLENGE = "challenge";
|
|
|
|
|
|
|
|
|
|
/** 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 */
|
2011-07-21 20:21:08 +02:00
|
|
|
private static final Logger logger =
|
2011-08-07 16:35:51 +02:00
|
|
|
LoggerFactory.getLogger(HgHookCallbackServlet.class);
|
2011-07-21 20:21:08 +02:00
|
|
|
|
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-07-21 22:13:42 +02:00
|
|
|
*/
|
|
|
|
|
@Inject
|
2011-08-07 16:35:51 +02:00
|
|
|
public HgHookCallbackServlet(RepositoryManager repositoryManager,
|
|
|
|
|
HgRepositoryHandler handler,
|
|
|
|
|
HgHookManager hookManager)
|
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-07-21 22:13:42 +02:00
|
|
|
}
|
|
|
|
|
|
2011-07-21 20:21:08 +02:00
|
|
|
//~--- methods --------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
2011-08-07 16:35:51 +02:00
|
|
|
* Method description
|
2011-07-21 20:21:08 +02:00
|
|
|
*
|
|
|
|
|
*
|
2011-08-07 16:35:51 +02:00
|
|
|
* @param response
|
2011-07-21 20:21:08 +02:00
|
|
|
* @param repositoryName
|
|
|
|
|
* @param type
|
2011-07-22 13:08:12 +02:00
|
|
|
* @param challenge
|
2011-07-21 21:24:27 +02:00
|
|
|
* @param node
|
2011-07-21 20:21:08 +02:00
|
|
|
*
|
2011-08-07 16:35:51 +02:00
|
|
|
* @throws IOException
|
2011-07-21 20:21:08 +02:00
|
|
|
*/
|
2011-08-07 16:35:51 +02:00
|
|
|
public void hookCallback(HttpServletResponse response, String repositoryName,
|
|
|
|
|
String type, String challenge, String node)
|
|
|
|
|
throws IOException
|
2011-07-21 20:21:08 +02:00
|
|
|
{
|
2011-07-22 13:08:12 +02:00
|
|
|
if (hookManager.isAcceptAble(challenge))
|
2011-07-21 22:13:42 +02:00
|
|
|
{
|
2011-07-22 13:08:12 +02:00
|
|
|
try
|
2011-07-21 22:13:42 +02:00
|
|
|
{
|
2011-07-22 13:08:12 +02:00
|
|
|
repositoryManager.fireHookEvent(HgRepositoryHandler.TYPE_NAME,
|
|
|
|
|
repositoryName,
|
|
|
|
|
new HgRepositoryHookEvent(handler,
|
|
|
|
|
repositoryName, node));
|
|
|
|
|
}
|
|
|
|
|
catch (RepositoryNotFoundException ex)
|
|
|
|
|
{
|
|
|
|
|
if (logger.isErrorEnabled())
|
2011-07-21 22:13:42 +02:00
|
|
|
{
|
2011-07-22 13:08:12 +02:00
|
|
|
logger.error("could not find repository {}", repositoryName);
|
|
|
|
|
|
|
|
|
|
if (logger.isTraceEnabled())
|
|
|
|
|
{
|
|
|
|
|
logger.trace("repository not found", ex);
|
|
|
|
|
}
|
2011-07-21 22:13:42 +02:00
|
|
|
}
|
2011-07-22 13:08:12 +02:00
|
|
|
|
2011-08-07 16:35:51 +02:00
|
|
|
response.sendError(HttpServletResponse.SC_NOT_FOUND);
|
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
|
|
|
}
|
2011-07-21 20:21:08 +02:00
|
|
|
|
2011-08-07 16:35:51 +02:00
|
|
|
response.sendError(HttpServletResponse.SC_BAD_REQUEST);
|
2011-07-21 22:13:42 +02:00
|
|
|
}
|
2011-08-07 16:35:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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);
|
2011-07-21 22:13:42 +02:00
|
|
|
|
2011-08-07 16:35:51 +02:00
|
|
|
if (m.matches())
|
|
|
|
|
{
|
|
|
|
|
String repositoryId = m.group(1);
|
|
|
|
|
String type = m.group(2);
|
|
|
|
|
String challenge = request.getParameter(PARAM_CHALLENGE);
|
|
|
|
|
String node = request.getParameter(PARAM_NODE);
|
|
|
|
|
|
|
|
|
|
hookCallback(response, repositoryId, type, challenge, node);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
response.sendError(HttpServletResponse.SC_BAD_REQUEST);
|
|
|
|
|
}
|
2011-07-21 20:21:08 +02:00
|
|
|
}
|
2011-07-21 22:13:42 +02:00
|
|
|
|
|
|
|
|
//~--- fields ---------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/** 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-07-21 20:21:08 +02:00
|
|
|
}
|