diff --git a/scm-webapp/src/main/java/sonia/scm/api/rest/resources/RepositoryRootResource.java b/scm-webapp/src/main/java/sonia/scm/api/rest/resources/RepositoryRootResource.java new file mode 100644 index 0000000000..32cc8efd3b --- /dev/null +++ b/scm-webapp/src/main/java/sonia/scm/api/rest/resources/RepositoryRootResource.java @@ -0,0 +1,315 @@ +/** + * Copyright (c) 2010, Sebastian Sdorra All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. 2. Redistributions in + * binary form must reproduce the above copyright notice, this list of + * conditions and the following disclaimer in the documentation and/or other + * materials provided with the distribution. 3. Neither the name of SCM-Manager; + * nor the names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * http://bitbucket.org/sdorra/scm-manager + * + */ + + + +package sonia.scm.api.rest.resources; + +//~--- non-JDK imports -------------------------------------------------------- + +import com.google.common.base.Function; +import com.google.common.base.Predicate; +import com.google.common.collect.Collections2; +import com.google.common.collect.Maps; +import com.google.inject.Inject; + +import sonia.scm.config.ScmConfiguration; +import sonia.scm.repository.Repository; +import sonia.scm.repository.RepositoryManager; +import sonia.scm.template.TemplateHandler; +import sonia.scm.url.UrlProvider; +import sonia.scm.url.UrlProviderFactory; +import sonia.scm.util.HttpUtil; + +//~--- JDK imports ------------------------------------------------------------ + +import java.io.IOException; +import java.io.StringWriter; + +import java.util.Collection; +import java.util.Map; + +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; + +/** + * + * @author Sebastian Sdorra + */ +@Path("help/repository-root/{type}.html") +public class RepositoryRootResource +{ + + /** Field description */ + public static final String TEMPLATE = "/repository-root"; + + //~--- constructors --------------------------------------------------------- + + /** + * Constructs ... + * + * + * + * @param configuration + * @param templateHandler + * @param repositoryManager + */ + @Inject + public RepositoryRootResource(ScmConfiguration configuration, + TemplateHandler templateHandler, + RepositoryManager repositoryManager) + { + this.configuration = configuration; + this.templateHandler = templateHandler; + this.repositoryManager = repositoryManager; + } + + //~--- methods -------------------------------------------------------------- + + /** + * Method description + * + * + * @param type + * + * @return + * + * @throws IOException + */ + @GET + @Produces(MediaType.TEXT_HTML) + public String renderRepositoriesRoot(@PathParam("type") final String type) + throws IOException + { + UrlProvider uiUrlProvider = + UrlProviderFactory.createUrlProvider(configuration.getBaseUrl(), + UrlProviderFactory.TYPE_WUI); + Collection repositories = + Collections2.transform( + Collections2.filter( + repositoryManager.getAll(), + new TypePredicate(type)), new RepositoryTransformFunction( + uiUrlProvider)); + Map environment = Maps.newHashMap(); + + environment.put("repositories", repositories); + + StringWriter writer = new StringWriter(); + + templateHandler.render(TEMPLATE, writer, environment); + + return writer.toString(); + } + + //~--- inner classes -------------------------------------------------------- + + /** + * Class description + * + * + * @version Enter version here..., 12/05/28 + * @author Enter your name here... + */ + private static class RepositoryTemplateElement + { + + /** + * Constructs ... + * + * + * @param repository + * @param urlProvider + */ + public RepositoryTemplateElement(Repository repository, + UrlProvider urlProvider) + { + this.repository = repository; + this.urlProvider = urlProvider; + } + + //~--- get methods -------------------------------------------------------- + + /** + * Method description + * + * + * @return + */ + public String getName() + { + return repository.getName(); + } + + /** + * Method description + * + * + * @return + */ + public Repository getRepository() + { + return repository; + } + + /** + * Method description + * + * + * @return + */ + public String getUIUrl() + { + return urlProvider.getRepositoryUrlProvider().getDetailUrl( + repository.getId()); + } + + /** + * Method description + * + * + * @return + */ + public String getUrl() + { + return repository.getUrl(); + } + + //~--- fields ------------------------------------------------------------- + + /** Field description */ + private Repository repository; + + /** Field description */ + private UrlProvider urlProvider; + } + + + /** + * Class description + * + * + * @version Enter version here..., 12/05/28 + * @author Enter your name here... + */ + private static class RepositoryTransformFunction + implements Function + { + + /** + * Constructs ... + * + * + * @param urlProvider + */ + public RepositoryTransformFunction(UrlProvider urlProvider) + { + this.urlProvider = urlProvider; + } + + //~--- methods ------------------------------------------------------------ + + /** + * Method description + * + * + * @param repository + * + * @return + */ + @Override + public RepositoryTemplateElement apply(Repository repository) + { + return new RepositoryTemplateElement(repository, urlProvider); + } + + //~--- fields ------------------------------------------------------------- + + /** Field description */ + private UrlProvider urlProvider; + } + + + /** + * Class description + * + * + * @version Enter version here..., 12/05/28 + * @author Enter your name here... + */ + private static class TypePredicate implements Predicate + { + + /** + * Constructs ... + * + * + * @param type + */ + public TypePredicate(String type) + { + this.type = type; + } + + //~--- methods ------------------------------------------------------------ + + /** + * Method description + * + * + * @param repository + * + * @return + */ + @Override + public boolean apply(Repository repository) + { + return type.equalsIgnoreCase(repository.getType()); + } + + //~--- fields ------------------------------------------------------------- + + /** Field description */ + private String type; + } + + + //~--- fields --------------------------------------------------------------- + + /** Field description */ + private ScmConfiguration configuration; + + /** Field description */ + private RepositoryManager repositoryManager; + + /** Field description */ + private TemplateHandler templateHandler; +} diff --git a/scm-webapp/src/main/resources/templates/repository-root.html b/scm-webapp/src/main/resources/templates/repository-root.html new file mode 100644 index 0000000000..a77762d266 --- /dev/null +++ b/scm-webapp/src/main/resources/templates/repository-root.html @@ -0,0 +1,100 @@ + + + + + SCM-Manager support information + + + + +

SCM-Manager Repositories

+ + + + +