blob: ba126ef2daa1a06972040ccfd9b47b839870f67f [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.reseditor.resource;
import java.util.Iterator;
import javax.servlet.http.HttpServletRequest;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Properties;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Service;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ResourceProvider;
import org.apache.sling.api.resource.ResourceResolver;
import org.apache.sling.api.resource.SyntheticResource;
/**
* The Resource Provider that wraps all Resources under {@link ROOT_PATHELEMENT_NAME} with the {@link ResourceTypeResourceWrapper}.
*
*/
@Component
@Service
@Properties({
@Property(name=ResourceProvider.ROOTS, value=ResEditorResourceProvider.ROOT_PATHELEMENT_NAME)
})
public class ResEditorResourceProvider implements ResourceProvider{
public static final String ROOT_PATHELEMENT_NAME = "reseditor";
public static final String ABS_ROOT = "/" + ROOT_PATHELEMENT_NAME;
public static final String RESOURCE_EDITOR_PROVIDER_RESOURCE = "resource-editor.RESOURCE_EDITOR_PROVIDER_RESOURCE";
public static final String RESEDITOR_RESOURCE_TYPE = "sling/resource-editor/scripts";
/** ResourceProvider interface */
public Resource getResource(ResourceResolver resolver, HttpServletRequest req, String path) {
// Synthetic resource for the root, so that /reseditor works
if((ABS_ROOT).equals(path)) {
return new SyntheticResource(resolver, path, ROOT_PATHELEMENT_NAME);
}
Resource originalResource = resolver.resolve(req, path.substring(ROOT_PATHELEMENT_NAME.length()));
Resource newResource = new ResourceTypeResourceWrapper(originalResource);
return newResource;
}
/** ResourceProvider interface */
public Resource getResource(ResourceResolver resolver, String path) {
// Synthetic resource for the root, so that /reseditor works
if((ABS_ROOT).equals(path)) {
return new SyntheticResource(resolver, path, ROOT_PATHELEMENT_NAME);
}
Resource originalResource = resolver.resolve(path.substring(ROOT_PATHELEMENT_NAME.length()+1));
Resource newResource = new ResourceTypeResourceWrapper(originalResource);
return newResource;
}
/** ResourceProvider interface */
public Iterator<Resource> listChildren(Resource parent) {
ResourceResolver resourceResolver = parent.getResourceResolver();
Resource originalResource = resourceResolver.resolve("/");
Resource newResource = new ResourceTypeResourceWrapper(originalResource);
return newResource.listChildren();
}
}