blob: c0642c776cec9c9aafa66419cdd32390e05bc363 [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.resourceresolver.impl.urimapping;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.lang3.StringUtils;
import org.apache.sling.api.resource.LoginException;
import org.apache.sling.api.resource.ResourceResolver;
import org.apache.sling.api.resource.ResourceResolverFactory;
import org.apache.sling.api.resource.mapping.PathToUriMappingService;
import org.apache.sling.api.uri.SlingUri;
import org.apache.sling.api.uri.SlingUriBuilder;
import org.apache.sling.resourceresolver.impl.JcrNamespaceMangler;
import org.apache.sling.spi.urimapping.SlingUriMapper;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
import org.osgi.service.component.annotations.ReferenceCardinality;
import org.osgi.service.component.annotations.ReferencePolicy;
import org.osgi.service.component.annotations.ReferencePolicyOption;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Component
public class PathToUriMappingServiceImpl implements PathToUriMappingService {
private static final Logger LOG = LoggerFactory.getLogger(PathToUriMappingServiceImpl.class);
private static final String KEY_INTIAL = "intial";
private static final String SUBSERVICE_NAME_MAPPING = "mapping";
@Reference(cardinality = ReferenceCardinality.MULTIPLE, policy = ReferencePolicy.DYNAMIC, policyOption = ReferencePolicyOption.GREEDY)
volatile List<SlingUriMapper> resourceMappers;
@Reference(cardinality = ReferenceCardinality.OPTIONAL, policy = ReferencePolicy.DYNAMIC, policyOption = ReferencePolicyOption.GREEDY)
volatile ResourceResolverFactory resourceResolverFactory;
JcrNamespaceMangler jcrNamespaceMangler = new JcrNamespaceMangler();
@Activate
public void activate() {
if (resourceMappers != null) {
String resourceMappersStr = resourceMappers.stream().map(rm -> rm.getClass().toString()).collect(Collectors.joining("\n"));
LOG.info("Available Resource Mappers:\n{}", resourceMappersStr);
} else {
LOG.info("No Resource Mappers available");
}
}
public List<String> getAvailableResourceMappers() {
return resourceMappers.stream().map(rm -> rm.getClass().toString()).collect(Collectors.toList());
}
@NotNull
public MappingChainResult map(@Nullable HttpServletRequest request, @NotNull String resourcePath) {
try (ResourceResolver rr = getResourceResolver()) {
MappingChainContextInternal mappingContext = new MappingChainContextInternal(rr);
SlingUri resourceUri = SlingUriBuilder.parse(resourcePath, rr).build();
addIntermediateMapping(mappingContext, resourceUri, KEY_INTIAL);
if (resourceMappers != null) {
for (SlingUriMapper mapper : resourceMappers) {
String mapperName = mapper.getClass().getName();
LOG.trace("map(): Using {} for {}", mapperName, resourceUri);
SlingUri input = resourceUri;
resourceUri = mapper.map(resourceUri, request, mappingContext);
if (input != resourceUri) {
addIntermediateMapping(mappingContext, resourceUri, mapperName);
}
if (chancelChain(mappingContext, mapperName)) {
break;
}
}
}
if (LOG.isDebugEnabled()) {
logResult(mappingContext, "map()");
}
return new MappingChainResult(resourceUri, mappingContext.getIntermediateMappings());
}
}
@NotNull
public MappingChainResult resolve(@Nullable HttpServletRequest request, @Nullable String path) {
if (request == null) {
throw new IllegalArgumentException("Parameter HttpServletRequest must not be null");
}
try (ResourceResolver rr = getResourceResolver()) {
MappingChainContextInternal mappingContext = new MappingChainContextInternal(rr);
SlingUri resourceUri = path != null ? SlingUriBuilder.parse(unmangleNamespaces(path, rr), rr).build()
: getSlingUriFromRequest(request, rr);
addIntermediateMapping(mappingContext, resourceUri, KEY_INTIAL);
if (resourceMappers != null) {
for (SlingUriMapper mapper : reversedList(resourceMappers)) {
String mapperName = mapper.getClass().getName();
LOG.trace("resolve(): Using {} for {}", mapperName, resourceUri);
SlingUri input = resourceUri;
resourceUri = mapper.resolve(resourceUri, request, mappingContext);
if (input != resourceUri) {
addIntermediateMapping(mappingContext, resourceUri, mapperName);
}
if (chancelChain(mappingContext, mapperName)) {
break;
}
}
}
if (LOG.isDebugEnabled()) {
logResult(mappingContext, "resolve()");
}
return new MappingChainResult(resourceUri, mappingContext.getIntermediateMappings());
}
}
private String unmangleNamespaces(String path, ResourceResolver rr) {
return jcrNamespaceMangler.unmangleNamespaces(rr, LOG, path);
}
private boolean chancelChain(MappingChainContextInternal mappingContext, String name) {
if (mappingContext.isMarkedAsSkipRemainingChain()) {
LOG.debug("{} cancelled remaining chain", name);
return true;
} else {
return false;
}
}
private void addIntermediateMapping(MappingChainContextInternal mappingContext, SlingUri resourceUri, String name) {
mappingContext.addIntermediateMapping(name, resourceUri);
LOG.trace("{} ajusted SlingUri: {}", name, resourceUri);
}
private <T> List<T> reversedList(List<T> list) {
List<T> reversedList = new ArrayList<>(list);
Collections.reverse(reversedList);
return reversedList;
}
private void logResult(MappingChainContextInternal mappingContext, String method) {
Map<String, SlingUri> intermediateMappings = mappingContext.getIntermediateMappings();
if (intermediateMappings.size() == 1) {
LOG.debug("\n{}:\nUNCHANGED {}", method, intermediateMappings.values().iterator().next());
} else {
LOG.debug("\n{}:\n{}", method,
intermediateMappings.entrySet().stream()
.map(e -> StringUtils.leftPad(e.getKey().replaceAll("([a-z])[^.]*\\.(?=.*\\..*$)", "$1."), 50) + " -> "
+ e.getValue())
.collect(Collectors.joining("\n")));
}
}
protected ResourceResolver getResourceResolver() {
try {
final Map<String, Object> authenticationInfo = new HashMap<>();
authenticationInfo.put(ResourceResolverFactory.SUBSERVICE, SUBSERVICE_NAME_MAPPING);
ResourceResolver serviceResourceResolver = resourceResolverFactory.getServiceResourceResolver(authenticationInfo);
return serviceResourceResolver;
} catch (LoginException e) {
throw new IllegalStateException("Cannot create ResourceResolver: " + e, e);
}
}
private SlingUri getSlingUriFromRequest(final HttpServletRequest request, ResourceResolver rr) {
final StringBuilder sb = new StringBuilder();
if (request.getServletPath() != null) {
sb.append(request.getServletPath());
}
if (request.getPathInfo() != null) {
sb.append(request.getPathInfo());
}
String path = sb.toString();
// Get the path used to select the authenticator, if the SlingServlet
// itself has been requested without any more info, this will be empty
// and we assume the root (SLING-722)
if (path.length() == 0) {
path = "/";
}
return SlingUriBuilder.create()
.setResourceResolver(rr)
.setScheme(request.getScheme())
.setHost(request.getServerName())
.setPort(request.getServerPort())
.setPath(unmangleNamespaces(path, rr))
.setQuery(request.getQueryString())
.build();
}
}