com.noelios.restlet.authentication.HttpBasicHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.restlet
Show all versions of org.apache.servicemix.bundles.restlet
This OSGi bundle wraps org.restlet, and com.noelios.restlet ${pkgVersion} jar files.
The newest version!
/**
* Copyright 2005-2008 Noelios Technologies.
*
* The contents of this file are subject to the terms of the following open
* source licenses: LGPL 3.0 or LGPL 2.1 or CDDL 1.0 (the "Licenses"). You can
* select the license that you prefer but you may not use this file except in
* compliance with one of these Licenses.
*
* You can obtain a copy of the LGPL 3.0 license at
* http://www.gnu.org/licenses/lgpl-3.0.html
*
* You can obtain a copy of the LGPL 2.1 license at
* http://www.gnu.org/licenses/lgpl-2.1.html
*
* You can obtain a copy of the CDDL 1.0 license at
* http://www.sun.com/cddl/cddl.html
*
* See the Licenses for the specific language governing permissions and
* limitations under the Licenses.
*
* Alternatively, you can obtain a royaltee free commercial license with less
* limitations, transferable or non-transferable, directly at
* http://www.noelios.com/products/restlet-engine
*
* Restlet is a registered trademark of Noelios Technologies.
*/
package com.noelios.restlet.authentication;
import java.io.UnsupportedEncodingException;
import java.util.logging.Level;
import org.restlet.data.ChallengeResponse;
import org.restlet.data.ChallengeScheme;
import org.restlet.data.Parameter;
import org.restlet.data.Request;
import org.restlet.util.Series;
import com.noelios.restlet.util.Base64;
/**
* Implements the HTTP BASIC authentication.
*
* @author Jerome Louvel
*/
public class HttpBasicHelper extends AuthenticationHelper {
/**
* Constructor.
*/
public HttpBasicHelper() {
super(ChallengeScheme.HTTP_BASIC, true, true);
}
@Override
public void formatCredentials(StringBuilder sb,
ChallengeResponse challenge, Request request,
Series httpHeaders) {
try {
final String credentials = challenge.getIdentifier() + ':'
+ new String(challenge.getSecret());
sb.append(Base64.encode(credentials.getBytes("ISO-8859-1"), false));
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(
"Unsupported encoding, unable to encode credentials");
}
}
@Override
public void parseResponse(ChallengeResponse cr, Request request) {
try {
final byte[] credentialsEncoded = Base64
.decode(cr.getCredentials());
if (credentialsEncoded == null) {
getLogger().warning(
"Cannot decode credentials: " + cr.getCredentials());
}
final String credentials = new String(credentialsEncoded,
"ISO-8859-1");
final int separator = credentials.indexOf(':');
if (separator == -1) {
// Log the blocking
getLogger().warning(
"Invalid credentials given by client with IP: "
+ ((request != null) ? request.getClientInfo()
.getAddress() : "?"));
} else {
cr.setIdentifier(credentials.substring(0, separator));
cr.setSecret(credentials.substring(separator + 1));
}
} catch (UnsupportedEncodingException e) {
getLogger().log(Level.WARNING, "Unsupported encoding error", e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy