/* * Licensed to DuraSpace under one or more contributor license agreements. * See the NOTICE file distributed with this work for additional information * regarding copyright ownership. * * DuraSpace 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.fcrepo.http.commons; import java.util.function.Supplier; import javax.inject.Inject; import javax.ws.rs.core.Context; import javax.ws.rs.core.HttpHeaders; import javax.ws.rs.core.UriInfo; import org.apache.jena.rdf.model.Resource; import org.fcrepo.http.commons.session.SessionFactory; import org.fcrepo.kernel.api.models.FedoraResource; import org.fcrepo.kernel.api.identifiers.IdentifierConverter; import org.fcrepo.kernel.api.services.BinaryService; import org.fcrepo.kernel.api.services.NodeService; import org.fcrepo.kernel.api.services.ContainerService; import org.fcrepo.kernel.api.services.VersionService; import org.fcrepo.kernel.api.services.functions.HierarchicalIdentifierSupplier; import org.fcrepo.kernel.api.services.functions.UniqueValueSupplier; import org.jvnet.hk2.annotations.Optional; import com.google.common.eventbus.EventBus; /** * Superclass for Fedora JAX-RS Resources, providing convenience fields and methods. * * @author ajs6f */ public class AbstractResource { /** * Useful for constructing URLs */ @Context protected UriInfo uriInfo; /** * For getting user agent */ @Context protected HttpHeaders headers; @Inject protected SessionFactory sessions; /** * The JCR node service */ @Inject protected NodeService nodeService; /** * The repository object service */ @Inject protected ContainerService containerService; /** * The bitstream service */ @Inject protected BinaryService binaryService; /** * The version service */ @Inject protected VersionService versionService; @Inject @Optional protected EventBus eventBus; /** * A resource that can mint new Fedora PIDs. */ @Inject @Optional protected Supplier<String> pidMinter; protected UniqueValueSupplier defaultPidMinter = new DefaultPathMinter(); /** * Convert a JAX-RS list of PathSegments to a JCR path * * @param idTranslator the id translator * @param originalPath the original path * @return String jcr path */ public static final String toPath(final IdentifierConverter<Resource, FedoraResource> idTranslator, final String originalPath) { final Resource resource = idTranslator.toDomain(originalPath); final String path = idTranslator.asString(resource); return path.isEmpty() ? "/" : path; } private static class DefaultPathMinter implements HierarchicalIdentifierSupplier { } }