
hudson.scm.RepositoryBrowser Maven / Gradle / Ivy
package hudson.scm;
import hudson.ExtensionPoint;
import hudson.model.Describable;
import java.io.IOException;
import java.io.Serializable;
import java.net.URL;
import java.net.MalformedURLException;
/**
* Connects Hudson to repository browsers like ViewCVS or FishEye,
* so that Hudson can generate links to them.
*
*
* {@link RepositoryBrowser} instance is normally created as
* a result of job configuration, and stores immutable
* configuration information (such as the URL of the FishEye site).
*
*
* {@link RepositoryBrowser} is persisted with {@link SCM}.
*
*
* To have Hudson recognize {@link RepositoryBrowser}, add the descriptor
* to {@link RepositoryBrowsers#LIST}.
*
* @author Kohsuke Kawaguchi
* @since 1.89
* @see RepositoryBrowsers
*/
public abstract class RepositoryBrowser implements ExtensionPoint, Describable>, Serializable {
/**
* Determines the link to the given change set.
*
* @return
* null if this repository browser doesn't have any meaningful
* URL for a change set (for example, ViewCVS doesn't have
* any page for a change set, whereas FishEye does.)
*/
public abstract URL getChangeSetLink(E changeSet) throws IOException;
/**
* If the given string starts with '/', return a string that removes it.
*/
protected static String trimHeadSlash(String s) {
if(s.startsWith("/")) return s.substring(1);
return s;
}
/**
* Normalize the URL so that it ends with '/'.
*
* An attention is paid to preserve the query parameters in URL if any.
*/
protected static URL normalizeToEndWithSlash(URL url) {
if(url.getPath().endsWith("/"))
return url;
// normalize
String q = url.getQuery();
q = q!=null?('?'+q):"";
try {
return new URL(url,url.getPath()+'/'+q);
} catch (MalformedURLException e) {
// impossible
throw new Error(e);
}
}
private static final long serialVersionUID = 1L;
}