
Since GWT 2.6.0 support for Java 7 is added. Simplify creation of classes in GWT's client code. Change-Id: I08ff2c189d2874a6b957072912912e4a6089cdd1
116 lines
3.8 KiB
Java
116 lines
3.8 KiB
Java
// Copyright (C) 2008 The Android Open Source Project
|
|
//
|
|
// 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 com.google.gerrit.client;
|
|
|
|
import com.google.gerrit.client.changes.ChangeInfo.RevisionInfo;
|
|
import com.google.gerrit.common.data.GitWebType;
|
|
import com.google.gerrit.common.data.ParameterizedString;
|
|
import com.google.gerrit.reviewdb.client.Branch;
|
|
import com.google.gerrit.reviewdb.client.PatchSet;
|
|
import com.google.gerrit.reviewdb.client.Project;
|
|
import com.google.gwt.http.client.URL;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
/** Link to an external gitweb server. */
|
|
public class GitwebLink {
|
|
protected String baseUrl;
|
|
|
|
protected GitWebType type;
|
|
|
|
public GitwebLink(com.google.gerrit.common.data.GitwebConfig link) {
|
|
baseUrl = link.baseUrl;
|
|
type = link.type;
|
|
}
|
|
|
|
/**
|
|
* Can we link to a patch set if it's a draft
|
|
*
|
|
* @param ps Patch set to check draft status
|
|
* @return true if it's not a draft, or we can link to drafts
|
|
*/
|
|
public boolean canLink(final PatchSet ps) {
|
|
return !ps.isDraft() || type.getLinkDrafts();
|
|
}
|
|
|
|
public boolean canLink(RevisionInfo revision) {
|
|
return revision.draft() || type.getLinkDrafts();
|
|
}
|
|
|
|
public String getLinkName() {
|
|
return "(" + type.getLinkName() + ")";
|
|
}
|
|
|
|
public String toRevision(String project, String commit) {
|
|
ParameterizedString pattern = new ParameterizedString(type.getRevision());
|
|
Map<String, String> p = new HashMap<>();
|
|
p.put("project", encode(project));
|
|
p.put("commit", encode(commit));
|
|
return baseUrl + pattern.replace(p);
|
|
}
|
|
|
|
public String toRevision(final Project.NameKey project, final PatchSet ps) {
|
|
return toRevision(project.get(), ps.getRevision().get());
|
|
}
|
|
|
|
public String toProject(final Project.NameKey project) {
|
|
ParameterizedString pattern = new ParameterizedString(type.getProject());
|
|
|
|
final Map<String, String> p = new HashMap<>();
|
|
p.put("project", encode(project.get()));
|
|
return baseUrl + pattern.replace(p);
|
|
}
|
|
|
|
public String toBranch(final Branch.NameKey branch) {
|
|
ParameterizedString pattern = new ParameterizedString(type.getBranch());
|
|
|
|
final Map<String, String> p = new HashMap<>();
|
|
p.put("project", encode(branch.getParentKey().get()));
|
|
p.put("branch", encode(branch.get()));
|
|
return baseUrl + pattern.replace(p);
|
|
}
|
|
|
|
public String toFile(String project, String commit, String file) {
|
|
Map<String, String> p = new HashMap<>();
|
|
p.put("project", encode(project));
|
|
p.put("commit", encode(commit));
|
|
p.put("file", encode(file));
|
|
|
|
ParameterizedString pattern = (file == null || file.isEmpty())
|
|
? new ParameterizedString(type.getRootTree())
|
|
: new ParameterizedString(type.getFile());
|
|
return baseUrl + pattern.replace(p);
|
|
}
|
|
|
|
public String toFileHistory(final Branch.NameKey branch, final String file) {
|
|
ParameterizedString pattern = new ParameterizedString(type.getFileHistory());
|
|
|
|
final Map<String, String> p = new HashMap<>();
|
|
p.put("project", encode(branch.getParentKey().get()));
|
|
p.put("branch", encode(branch.get()));
|
|
p.put("file", encode(file));
|
|
return baseUrl + pattern.replace(p);
|
|
}
|
|
|
|
private String encode(String segment) {
|
|
if (type.isUrlEncode()) {
|
|
return URL.encodeQueryString(type.replacePathSeparator(segment));
|
|
} else {
|
|
return segment;
|
|
}
|
|
}
|
|
}
|