blob: 5e7ce25ac11bf9e366a788a28fdf7201f0dc8581 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.sling.engine.impl;
import java.io.IOException;
import java.net.URL;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.sling.api.request.RequestProgressTracker;
import org.apache.sling.api.resource.ResourceResolver;
import org.apache.sling.auth.core.AuthenticationSupport;
import org.apache.sling.commons.mime.MimeTypeService;
import org.apache.sling.engine.impl.parameters.ParameterSupport;
import org.apache.sling.engine.impl.request.SlingRequestProgressTracker;
import org.osgi.service.http.context.ServletContextHelper;
import org.osgi.service.http.whiteboard.annotations.RequireHttpWhiteboard;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* The <code>SlingHttpContext</code> implements the OSGi HttpContext used to
* register the {@link SlingMainServlet} with the OSGi HttpService.
*/
@RequireHttpWhiteboard
class SlingHttpContext extends ServletContextHelper {
/** Logger */
private final Logger log = LoggerFactory.getLogger(SlingHttpContext.class);
/**
* Resolves MIME types
*
* @see #getMimeType(String)
*/
private MimeTypeService mimeTypeService;
/**
* Handles security
*
* @see #handleSecurity(HttpServletRequest, HttpServletResponse)
*/
private AuthenticationSupport authenticationSupport;
public void setMimeTypeService(MimeTypeService mimeTypeService) {
this.mimeTypeService = mimeTypeService;
}
public void unsetMimeTypeService(MimeTypeService mimeTypeService) {
if (this.mimeTypeService == mimeTypeService) {
this.mimeTypeService = null;
}
}
public void setAuthenticationSupport(
AuthenticationSupport authenticationSupport) {
this.authenticationSupport = authenticationSupport;
}
public void unsetAuthenticationSupport(
AuthenticationSupport authenticationSupport) {
if (this.authenticationSupport == authenticationSupport) {
this.authenticationSupport = null;
}
}
// ---------- HttpContext interface ----------------------------------------
/**
* Returns the MIME type as resolved by the <code>MimeTypeService</code> or
* <code>null</code> if the service is not available.
*/
@Override
public String getMimeType(String name) {
MimeTypeService mtservice = mimeTypeService;
if (mtservice != null) {
return mtservice.getMimeType(name);
}
log.debug(
"getMimeType: MimeTypeService not available, cannot resolve mime type for {}",
name);
return null;
}
/**
* Always returns <code>null</code> because resources are all provided
* through the {@link SlingMainServlet}.
*/
@Override
public URL getResource(String name) {
return null;
}
/**
* Tries to authenticate the request using the
* <code>SlingAuthenticator</code>. If the authenticator or the Repository
* is missing this method returns <code>false</code> and sends a 503/SERVICE
* UNAVAILABLE status back to the client.
*/
@Override
public boolean handleSecurity(HttpServletRequest request,
HttpServletResponse response) throws IOException {
final SlingRequestProgressTracker t = new SlingRequestProgressTracker(request);
request.setAttribute(RequestProgressTracker.class.getName(), t);
final String timerName = "handleSecurity";
t.startTimer(timerName);
final AuthenticationSupport authenticator = this.authenticationSupport;
if (authenticator != null) {
// SLING-559: ensure correct parameter handling according to
// ParameterSupport
request = ParameterSupport.getParameterSupportRequestWrapper(request);
final boolean result = authenticator.handleSecurity(request, response);
t.logTimer(timerName, "authenticator {0} returns {1}", authenticator, result);
return result;
}
log.error("handleSecurity: AuthenticationSupport service missing. Cannot authenticate request.");
log.error("handleSecurity: Possible reason is missing Repository service. Check AuthenticationSupport dependencies.");
// send 503/SERVICE UNAVAILABLE, flush to ensure delivery
response.sendError(HttpServletResponse.SC_SERVICE_UNAVAILABLE,
"AuthenticationSupport service missing. Cannot authenticate request.");
response.flushBuffer();
// terminate this request now
return false;
}
@Override
public void finishSecurity(HttpServletRequest request, HttpServletResponse response) {
super.finishSecurity(request, response);
// get ResourceResolver (set by AuthenticationSupport)
final Object resolverObject = request.getAttribute(AuthenticationSupport.REQUEST_ATTRIBUTE_RESOLVER);
final ResourceResolver resolver = (resolverObject instanceof ResourceResolver)
? (ResourceResolver) resolverObject
: null;
if (resolver != null) {
// it's safe to call close() several times - checking isLive() can be expensive
resolver.close();
}
}
}