![JAR search and dependency download from the Maven repository](/logo.png)
org.modeshape.web.jcr.rest.handler.RestServerHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of modeshape-web-jcr-rest
Show all versions of modeshape-web-jcr-rest
ModeShape REST support library
/*
* ModeShape (http://www.modeshape.org)
*
* Licensed 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.modeshape.web.jcr.rest.handler;
import java.util.ArrayList;
import java.util.List;
import javax.jcr.Repository;
import javax.jcr.Value;
import javax.servlet.http.HttpServletRequest;
import org.modeshape.web.jcr.RepositoryManager;
import org.modeshape.web.jcr.rest.model.RestRepositories;
/**
* An class which returns POJO-based rest model instances.
*
* @author Horia Chiorean ([email protected])
*/
public class
RestServerHandler extends AbstractHandler {
/**
* Returns the list of JCR repositories available on this server
*
* @param request the servlet request; may not be null
* @return a list of available JCR repositories, as a {@link RestRepositories} instance.
*/
public RestRepositories getRepositories( HttpServletRequest request ) {
RestRepositories repositories = new RestRepositories();
for (String repositoryName : RepositoryManager.getJcrRepositoryNames()) {
addRepository(request, repositories, repositoryName);
}
return repositories;
}
private void addRepository( HttpServletRequest request,
RestRepositories repositories,
String repositoryName ) {
RestRepositories.Repository repository = repositories.addRepository(repositoryName, request);
try {
Repository jcrRepository = RepositoryManager.getRepository(repositoryName);
repository.setActiveSessionsCount(((org.modeshape.jcr.api.Repository)jcrRepository).getActiveSessionsCount());
for (String metadataKey : jcrRepository.getDescriptorKeys()) {
Value[] descriptorValues = jcrRepository.getDescriptorValues(metadataKey);
if (descriptorValues != null) {
List values = new ArrayList(descriptorValues.length);
for (Value descriptorValue : descriptorValues) {
values.add(descriptorValue.getString());
}
repository.addMetadata(metadataKey, values);
}
}
} catch (Exception e) {
logger.error(e, e.getMessage());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy