org.eclipse.skalli.model.ext.maven.internal.GitBlitMavenPomResolver.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.skalli.model.ext.maven.internal.GitBlitMavenPomResolver.java

Source

/*******************************************************************************
 * Copyright (c) 2010-2014 SAP AG and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     SAP AG - initial API and implementation
 *******************************************************************************/
package org.eclipse.skalli.model.ext.maven.internal;

import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.text.MessageFormat;
import java.util.zip.ZipInputStream;

import org.apache.commons.lang.StringUtils;
import org.apache.http.HttpEntity;

public class GitBlitMavenPomResolver extends HttpMavenPomResolverBase {

    @Override
    protected String getProvider() {
        return "gitblit";
    }

    @Override
    protected URL resolvePath(String scmLocation, String relativePath) throws MalformedURLException {
        if (!isValidNormalizedPath(relativePath)) {
            throw new IllegalArgumentException("not a valid path: " + relativePath);
        }

        String repositoryRoot = getRepositoryRoot(scmLocation);
        if (StringUtils.isBlank(repositoryRoot)) {
            throw new IllegalArgumentException(
                    MessageFormat.format("{0} is not applicable for scmLocation={1}", getClass(), scmLocation));
        }

        StringBuilder sb = new StringBuilder();
        sb.append(repositoryRoot);
        sb.append("&p="); //$NON-NLS-1$

        String fileName = getPomFileName(relativePath);
        sb.append(fileName).append("&h=HEAD"); //$NON-NLS-1$

        return new URL(sb.toString());
    }

    @Override
    protected InputStream asPomInputStream(HttpEntity entity, String relativePath) throws IOException {
        ZipInputStream zipInputStream = new ZipInputStream(entity.getContent());
        return ZipHelper.getEntry(zipInputStream, getPomFileName(relativePath));
    }

}