blob: fe1c353af27fa8464ff35cd588e7c6df3c70fb5a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 Cloudsmith Inc and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Cloudsmith Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.p2.testserver;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.osgi.service.http.HttpContext;
/**
* The SecureContext can be used to add basic authentication to a path. This
* implementation requires the user "Aladdin" to log in with the password "open
* sesame".
*/
public class SecuredArtifactsContext extends SecureContext {
public SecuredArtifactsContext(HttpContext defaultContext) {
super(defaultContext);
}
@Override
public boolean handleSecurity(HttpServletRequest request, HttpServletResponse response) {
String path = request.getRequestURI();
if (path == null)
return true;
if (path.contains("features/") //$NON-NLS-1$
|| path.contains("plugins/") //$NON-NLS-1$
|| path.contains("binaries/")) //$NON-NLS-1$
return super.handleSecurity(request, response);
return true;
}
}