blob: 066362b2f37a8321c75b7f8dc81dbb53b33cfdd7 [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.auth.core.impl;
import java.io.IOException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.sling.auth.core.AuthConstants;
import org.apache.sling.auth.core.AuthUtil;
import org.apache.sling.auth.core.spi.AuthenticationFeedbackHandler;
import org.apache.sling.auth.core.spi.AuthenticationHandler;
import org.apache.sling.auth.core.spi.AuthenticationInfo;
import org.apache.sling.commons.osgi.PropertiesUtil;
import org.osgi.framework.ServiceReference;
/**
* The <code>AuthenticationHandlerHolder</code> class represents an
* authentication handler service in the internal data structure of the
* {@link SlingAuthenticator}.
*/
final class AuthenticationHandlerHolder extends
AbstractAuthenticationHandlerHolder {
// the actual authentication handler
private final AuthenticationHandler handler;
// the supported authentication type of the handler
private final String authType;
// whether requestCredentials only for browsers
private final boolean browserOnlyRequestCredentials;
AuthenticationHandlerHolder(final String fullPath,
final AuthenticationHandler handler,
final ServiceReference serviceReference) {
super(fullPath, serviceReference);
final String browserOnly = PropertiesUtil.toString(serviceReference.getProperty(AuthConstants.AUTH_HANDLER_BROWSER_ONLY), null);
// assign the fields
this.handler = handler;
this.authType = PropertiesUtil.toString(serviceReference.getProperty(TYPE_PROPERTY), null);
this.browserOnlyRequestCredentials = "true".equalsIgnoreCase(browserOnly)
|| "yes".equalsIgnoreCase(browserOnly);
}
@Override
protected AuthenticationFeedbackHandler getFeedbackHandler() {
if (handler instanceof AuthenticationFeedbackHandler) {
return (AuthenticationFeedbackHandler) handler;
}
return null;
}
@Override
public AuthenticationInfo doExtractCredentials(HttpServletRequest request,
HttpServletResponse response) {
return handler.extractCredentials(request, response);
}
@Override
public boolean doRequestCredentials(HttpServletRequest request,
HttpServletResponse response) throws IOException {
// call handler if ok by its authentication type
if (doesRequestCredentials(request)) {
return handler.requestCredentials(request, response);
}
// no credentials have been requested
return false;
}
@Override
public void doDropCredentials(HttpServletRequest request,
HttpServletResponse response) throws IOException {
handler.dropCredentials(request, response);
}
@Override
public boolean equals(Object obj) {
// equality is the base class equality (based on the fullpath)
// and the encapsulated holders being the same.
if (super.equals(obj)) {
if (obj.getClass() == getClass()) {
AuthenticationHandlerHolder other = (AuthenticationHandlerHolder) obj;
return other.handler == handler;
}
}
// handlers are not the same, so the holders are not the same
return false;
}
@Override
public String toString() {
return handler.toString();
}
/**
* Returns <code>true</code> if the <code>requestCredentials</code> method
* of the held authentication handler should be called or not:
* <ul>
* <li>If the handler handles all clients or the request is assumed to be
* coming from a browser</li>
* <li>If the authentication handler is registered without an authentication
* type</li>
* <li>If the <code>sling:authRequestLogin</code> request parameter or
* attribute is not set</li>
* <li>If the <code>sling:authRequestLogin</code> is set to the same value
* as the authentication type of the held authentication handler.</li>
* <ul>
* <p>
* Otherwise <code>false</code> is returned and the
* <code>requestCredentials</code> method is not called.
*
* @param request The request object providing the <code>
* sling:authRequestLogin</code> parameter
* @return <code>true</code> if the <code>requestCredentials</code> method
* should be called.
*/
private boolean doesRequestCredentials(final HttpServletRequest request) {
if (browserOnlyRequestCredentials && !AuthUtil.isBrowserRequest(request)) {
return false;
}
if (authType == null) {
return true;
}
final String requestLogin = AuthUtil.getAttributeOrParameter(request, REQUEST_LOGIN_PARAMETER, null);
return requestLogin == null || authType.equals(requestLogin);
}
}