blob: d8dd93c74c7eb5fcf390dfdcacee6c46c93b67f0 [file] [log] [blame]
// Copyright (C) 2019 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.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://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.gerrit.plugins.checks.api;
import static com.google.common.base.Preconditions.checkState;
import com.google.gerrit.extensions.restapi.RestCollection;
import com.google.gerrit.extensions.restapi.RestResource;
import com.google.gerrit.httpd.restapi.RestApiServlet;
import com.google.inject.Provider;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;
import javax.servlet.http.HttpServletResponse;
public abstract class ChecksRestApiServlet extends RestApiServlet {
private static final long serialVersionUID = 1L;
private final String correctServletPath;
ChecksRestApiServlet(
RestApiServlet.Globals globals,
Provider<? extends RestCollection<? extends RestResource, ? extends RestResource>> members,
String correctServletPath) {
super(globals, members);
this.correctServletPath = correctServletPath;
}
// TODO(dborowitz): Consider making
// RestApiServlet#service(HttpServletRequest, HttpServletResponse) non-final of overriding the
// non-HTTP overload.
@Override
public void service(ServletRequest servletRequest, ServletResponse servletResponse)
throws ServletException, IOException {
// This is...unfortunate. HttpPluginServlet (and/or ContextMapper) doesn't properly set the
// servlet path on the wrapped request. Based on what RestApiServlet produces for non-plugin
// requests, it should be:
// contextPath = "/plugins/checks"
// servletPath = "/<collection>/"
// pathInfo = <id>
// Instead it does:
// contextPath = "/plugins/checks"
// servletPath = ""
// pathInfo = "/<collection>/<id>"
// This results in RestApiServlet splitting the pathInfo into ["", "<collection>", "<id>"], and
// it passes the "" to RestCollection#parse, which understandably, but unfortunately, fails.
//
// This frankly seems like a bug that should be fixed, but it would quite likely break existing
// plugins in confusing ways. So, we work around it by introducing our own request wrapper with
// the correct paths.
HttpServletRequest req = (HttpServletRequest) servletRequest;
String pathInfo = req.getPathInfo();
// Ensure actual request object matches the format explained above.
checkState(
req.getContextPath().endsWith("/checks"),
"unexpected context path: %s",
req.getContextPath());
checkState(req.getServletPath().isEmpty(), "unexpected servlet path: %s", req.getServletPath());
checkState(
req.getPathInfo().startsWith(correctServletPath),
"unexpected servlet path: %s",
req.getServletPath());
String fixedPathInfo = pathInfo.substring(correctServletPath.length());
HttpServletRequestWrapper wrapped =
new HttpServletRequestWrapper(req) {
@Override
public String getServletPath() {
return correctServletPath;
}
@Override
public String getPathInfo() {
return fixedPathInfo;
}
};
super.service(wrapped, (HttpServletResponse) servletResponse);
}
}