Move "refs/..." constants to a RefNames class
This class lives in gerrit-reviewdb because "refs/changes/" needs to be referenced from PatchSet in reviewdb/client (and other UI classes). Rename constants to all use REFS_* instead of being inconsistent. Change-Id: I76e6ee7e63a4549b51a43698fb50b54a19dabfc6
This commit is contained in:
@@ -15,9 +15,9 @@
|
||||
package com.google.gerrit.rules;
|
||||
|
||||
import com.google.gerrit.common.Version;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.server.config.GerritServerConfig;
|
||||
import com.google.gerrit.server.config.SitePaths;
|
||||
import com.google.gerrit.server.git.GitRepositoryManager;
|
||||
import com.google.gerrit.server.util.TimeUtil;
|
||||
import com.google.inject.Inject;
|
||||
import com.google.inject.assistedinject.Assisted;
|
||||
@@ -79,7 +79,7 @@ public class PrologCompiler implements Callable<PrologCompiler.Status> {
|
||||
}
|
||||
|
||||
public Status call() throws IOException, CompileException {
|
||||
ObjectId metaConfig = git.resolve(GitRepositoryManager.REF_CONFIG);
|
||||
ObjectId metaConfig = git.resolve(RefNames.REFS_CONFIG);
|
||||
if (metaConfig == null) {
|
||||
return Status.NO_RULES;
|
||||
}
|
||||
|
||||
@@ -20,6 +20,7 @@ import com.google.common.collect.ImmutableList;
|
||||
import com.google.common.collect.Lists;
|
||||
import com.google.gerrit.extensions.registration.DynamicSet;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.server.config.GerritServerConfig;
|
||||
import com.google.gerrit.server.config.SitePaths;
|
||||
import com.google.gerrit.server.git.GitRepositoryManager;
|
||||
@@ -66,7 +67,7 @@ import java.util.Map;
|
||||
* <p>
|
||||
* Rules are loaded from the {@code site_path/cache/rules/rules-SHA1.jar}, where
|
||||
* {@code SHA1} is the SHA1 of the Prolog {@code rules.pl} in a project's
|
||||
* {@link GitRepositoryManager#REF_CONFIG} branch.
|
||||
* {@link RefNames#REFS_CONFIG} branch.
|
||||
*/
|
||||
@Singleton
|
||||
public class RulesCache {
|
||||
|
||||
@@ -29,11 +29,11 @@ import com.google.gerrit.extensions.restapi.RestReadView;
|
||||
import com.google.gerrit.extensions.restapi.TopLevelResource;
|
||||
import com.google.gerrit.reviewdb.client.AccountGroup;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.server.CurrentUser;
|
||||
import com.google.gerrit.server.account.GroupBackend;
|
||||
import com.google.gerrit.server.account.GroupControl;
|
||||
import com.google.gerrit.server.config.AllProjectsName;
|
||||
import com.google.gerrit.server.git.GitRepositoryManager;
|
||||
import com.google.gerrit.server.git.MetaDataUpdate;
|
||||
import com.google.gerrit.server.git.ProjectConfig;
|
||||
import com.google.gerrit.server.group.GroupJson;
|
||||
@@ -154,7 +154,7 @@ public class ListAccess implements RestReadView<TopLevelResource> {
|
||||
|
||||
public ProjectAccessInfo(ProjectControl pc, ProjectConfig config) {
|
||||
final RefControl metaConfigControl =
|
||||
pc.controlForRef(GitRepositoryManager.REF_CONFIG);
|
||||
pc.controlForRef(RefNames.REFS_CONFIG);
|
||||
local = Maps.newHashMap();
|
||||
ownerOf = Sets.newHashSet();
|
||||
Map<AccountGroup.UUID, Boolean> visibleGroups =
|
||||
|
||||
@@ -28,11 +28,11 @@ import com.google.gerrit.reviewdb.client.Branch;
|
||||
import com.google.gerrit.reviewdb.client.Change;
|
||||
import com.google.gerrit.reviewdb.client.PatchSet;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.server.ReviewDb;
|
||||
import com.google.gerrit.server.CurrentUser;
|
||||
import com.google.gerrit.server.IdentifiedUser;
|
||||
import com.google.gerrit.server.change.Mergeable.MergeableInfo;
|
||||
import com.google.gerrit.server.git.GitRepositoryManager;
|
||||
import com.google.gerrit.server.git.MetaDataUpdate;
|
||||
import com.google.gerrit.server.git.ProjectConfig;
|
||||
import com.google.gerrit.server.git.WorkQueue.Executor;
|
||||
@@ -110,11 +110,11 @@ public class MergeabilityChecker implements GitReferenceUpdatedListener {
|
||||
@Override
|
||||
public void onGitReferenceUpdated(GitReferenceUpdatedListener.Event event) {
|
||||
String ref = event.getRefName();
|
||||
if (ref.startsWith(Constants.R_HEADS) || ref.equals(GitRepositoryManager.REF_CONFIG)) {
|
||||
if (ref.startsWith(Constants.R_HEADS) || ref.equals(RefNames.REFS_CONFIG)) {
|
||||
executor.submit(new BranchUpdateTask(schemaFactory,
|
||||
new Project.NameKey(event.getProjectName()), ref));
|
||||
}
|
||||
if (ref.equals(GitRepositoryManager.REF_CONFIG)) {
|
||||
if (ref.equals(RefNames.REFS_CONFIG)) {
|
||||
Project.NameKey p = new Project.NameKey(event.getProjectName());
|
||||
try {
|
||||
ProjectConfig oldCfg = parseConfig(p, event.getOldObjectId());
|
||||
@@ -124,7 +124,7 @@ public class MergeabilityChecker implements GitReferenceUpdatedListener {
|
||||
new ProjectUpdateTask(schemaFactory, p).call();
|
||||
} catch (Exception e) {
|
||||
String msg = "Failed to update mergeability flags for project " + p.get()
|
||||
+ " on update of " + GitRepositoryManager.REF_CONFIG;
|
||||
+ " on update of " + RefNames.REFS_CONFIG;
|
||||
log.error(msg, e);
|
||||
Throwables.propagateIfPossible(e);
|
||||
throw new RuntimeException(msg, e);
|
||||
@@ -132,7 +132,7 @@ public class MergeabilityChecker implements GitReferenceUpdatedListener {
|
||||
}
|
||||
} catch (ConfigInvalidException | IOException e) {
|
||||
String msg = "Failed to update mergeability flags for project " + p.get()
|
||||
+ " on update of " + GitRepositoryManager.REF_CONFIG;
|
||||
+ " on update of " + RefNames.REFS_CONFIG;
|
||||
log.error(msg, e);
|
||||
throw new RuntimeException(msg, e);
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
package com.google.gerrit.server.git;
|
||||
|
||||
import static com.google.gerrit.server.git.GitRepositoryManager.REF_REJECT_COMMITS;
|
||||
import static com.google.gerrit.reviewdb.client.RefNames.REFS_REJECT_COMMITS;
|
||||
|
||||
import com.google.gerrit.common.errors.PermissionDeniedException;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
@@ -96,7 +96,7 @@ public class BanCommit {
|
||||
NotesBranchUtil notesBranchUtil = notesBranchUtilFactory.create(project,
|
||||
repo, inserter);
|
||||
NoteMap newlyCreated =
|
||||
notesBranchUtil.commitNewNotes(banCommitNotes, REF_REJECT_COMMITS,
|
||||
notesBranchUtil.commitNewNotes(banCommitNotes, REFS_REJECT_COMMITS,
|
||||
createPersonIdent(), buildCommitMessage(commitsToBan, reason));
|
||||
|
||||
for (Note n : banCommitNotes) {
|
||||
|
||||
@@ -19,6 +19,7 @@ import com.google.common.cache.LoadingCache;
|
||||
import com.google.gerrit.extensions.events.GitReferenceUpdatedListener;
|
||||
import com.google.gerrit.reviewdb.client.Change;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.server.ReviewDb;
|
||||
import com.google.gerrit.server.cache.CacheModule;
|
||||
import com.google.gwtorm.server.SchemaFactory;
|
||||
@@ -72,7 +73,7 @@ public class ChangeCache implements GitReferenceUpdatedListener {
|
||||
|
||||
@Override
|
||||
public void onGitReferenceUpdated(GitReferenceUpdatedListener.Event event) {
|
||||
if (event.getRefName().startsWith("refs/changes/")) {
|
||||
if (event.getRefName().startsWith(RefNames.REFS_CHANGES)) {
|
||||
cache.invalidate(new Project.NameKey(event.getProjectName()));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,27 +31,6 @@ import java.util.SortedSet;
|
||||
* environment.
|
||||
*/
|
||||
public interface GitRepositoryManager {
|
||||
/** Note tree listing commits we refuse {@code refs/meta/reject-commits} */
|
||||
public static final String REF_REJECT_COMMITS = "refs/meta/reject-commits";
|
||||
|
||||
/** Configuration settings for a project {@code refs/meta/config} */
|
||||
public static final String REF_CONFIG = "refs/meta/config";
|
||||
|
||||
/** Configurations of project-specific dashboards (canned search queries). */
|
||||
public static String REFS_DASHBOARDS = "refs/meta/dashboards/";
|
||||
|
||||
/**
|
||||
* Prefix applied to merge commit base nodes.
|
||||
* <p>
|
||||
* References in this directory should take the form
|
||||
* {@code refs/cache-automerge/xx/yyyy...} where xx is
|
||||
* the first two digits of the merge commit's object
|
||||
* name, and yyyyy... is the remaining 38. The reference
|
||||
* should point to a treeish that is the automatic merge
|
||||
* result of the merge commit's parents.
|
||||
*/
|
||||
public static final String REFS_CACHE_AUTOMERGE = "refs/cache-automerge/";
|
||||
|
||||
/**
|
||||
* Get (or open) a repository by name.
|
||||
*
|
||||
|
||||
@@ -39,6 +39,7 @@ import com.google.gerrit.reviewdb.client.ChangeMessage;
|
||||
import com.google.gerrit.reviewdb.client.PatchSet;
|
||||
import com.google.gerrit.reviewdb.client.PatchSetApproval;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.client.Project.SubmitType;
|
||||
import com.google.gerrit.reviewdb.client.RevId;
|
||||
import com.google.gerrit.reviewdb.server.ReviewDb;
|
||||
@@ -579,7 +580,7 @@ public class MergeOp {
|
||||
}
|
||||
|
||||
if (mergeTip != null && (branchTip == null || branchTip != mergeTip)) {
|
||||
if (GitRepositoryManager.REF_CONFIG.equals(branchUpdate.getName())) {
|
||||
if (RefNames.REFS_CONFIG.equals(branchUpdate.getName())) {
|
||||
try {
|
||||
ProjectConfig cfg =
|
||||
new ProjectConfig(destProject.getProject().getNameKey());
|
||||
@@ -606,7 +607,7 @@ public class MergeOp {
|
||||
mergeTip);
|
||||
}
|
||||
|
||||
if (GitRepositoryManager.REF_CONFIG.equals(branchUpdate.getName())) {
|
||||
if (RefNames.REFS_CONFIG.equals(branchUpdate.getName())) {
|
||||
projectCache.evict(destProject.getProject());
|
||||
destProject = projectCache.get(destProject.getProject().getNameKey());
|
||||
repoManager.setProjectDescription(
|
||||
|
||||
@@ -40,6 +40,7 @@ import com.google.gerrit.common.data.PermissionRule;
|
||||
import com.google.gerrit.common.data.PermissionRule.Action;
|
||||
import com.google.gerrit.common.data.RefConfigSection;
|
||||
import com.google.gerrit.reviewdb.client.AccountGroup;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.client.AccountProjectWatch.NotifyType;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.Project.State;
|
||||
@@ -370,7 +371,7 @@ public class ProjectConfig extends VersionedMetaData {
|
||||
|
||||
@Override
|
||||
protected String getRefName() {
|
||||
return GitRepositoryManager.REF_CONFIG;
|
||||
return RefNames.REFS_CONFIG;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
package com.google.gerrit.server.git;
|
||||
|
||||
import com.google.common.collect.Iterables;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.server.project.ProjectState;
|
||||
|
||||
import org.eclipse.jgit.errors.ConfigInvalidException;
|
||||
@@ -38,7 +39,7 @@ public class ProjectLevelConfig extends VersionedMetaData {
|
||||
|
||||
@Override
|
||||
protected String getRefName() {
|
||||
return GitRepositoryManager.REF_CONFIG;
|
||||
return RefNames.REFS_CONFIG;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
|
||||
package com.google.gerrit.server.git;
|
||||
|
||||
import static com.google.gerrit.reviewdb.client.RefNames.REFS_CHANGES;
|
||||
import static com.google.gerrit.server.git.MultiProgressMonitor.UNKNOWN;
|
||||
import static com.google.gerrit.server.mail.MailUtil.getRecipientsFromApprovals;
|
||||
import static com.google.gerrit.server.mail.MailUtil.getRecipientsFromFooters;
|
||||
@@ -58,6 +59,7 @@ import com.google.gerrit.reviewdb.client.PatchSet;
|
||||
import com.google.gerrit.reviewdb.client.PatchSetApproval;
|
||||
import com.google.gerrit.reviewdb.client.PatchSetInfo;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.client.RevId;
|
||||
import com.google.gerrit.reviewdb.server.ReviewDb;
|
||||
import com.google.gerrit.server.ApprovalsUtil;
|
||||
@@ -156,8 +158,8 @@ public class ReceiveCommits {
|
||||
private static final Logger log =
|
||||
LoggerFactory.getLogger(ReceiveCommits.class);
|
||||
|
||||
public static final Pattern NEW_PATCHSET =
|
||||
Pattern.compile("^refs/changes/(?:[0-9][0-9]/)?([1-9][0-9]*)(?:/new)?$");
|
||||
public static final Pattern NEW_PATCHSET = Pattern.compile(
|
||||
"^" + REFS_CHANGES + "(?:[0-9][0-9]/)?([1-9][0-9]*)(?:/new)?$");
|
||||
|
||||
private static final FooterKey CHANGE_ID = new FooterKey("Change-Id");
|
||||
|
||||
@@ -168,12 +170,12 @@ public class ReceiveCommits {
|
||||
private enum Error {
|
||||
CONFIG_UPDATE("You are not allowed to perform this operation.\n"
|
||||
+ "Configuration changes can only be pushed by project owners\n"
|
||||
+ "who also have 'Push' rights on " + GitRepositoryManager.REF_CONFIG),
|
||||
+ "who also have 'Push' rights on " + RefNames.REFS_CONFIG),
|
||||
UPDATE("You are not allowed to perform this operation.\n"
|
||||
+ "To push into this reference you need 'Push' rights."),
|
||||
DELETE("You need 'Push' rights with the 'Force Push'\n"
|
||||
+ "flag set to delete references."),
|
||||
DELETE_CHANGES("Cannot delete from 'refs/changes'"),
|
||||
DELETE_CHANGES("Cannot delete from '" + REFS_CHANGES + "'"),
|
||||
CODE_REVIEW("You need 'Push' rights to upload code review requests.\n"
|
||||
+ "Verify that you are pushing to the right branch.");
|
||||
|
||||
@@ -397,8 +399,8 @@ public class ReceiveCommits {
|
||||
Map<String, Ref> filteredRefs = Maps.newHashMapWithExpectedSize(refs.size());
|
||||
for (Map.Entry<String, Ref> e : refs.entrySet()) {
|
||||
String name = e.getKey();
|
||||
if (!name.startsWith("refs/changes/")
|
||||
&& !name.startsWith(GitRepositoryManager.REFS_CACHE_AUTOMERGE)) {
|
||||
if (!name.startsWith(REFS_CHANGES)
|
||||
&& !name.startsWith(RefNames.REFS_CACHE_AUTOMERGE)) {
|
||||
filteredRefs.put(name, e.getValue());
|
||||
}
|
||||
}
|
||||
@@ -914,8 +916,8 @@ public class ReceiveCommits {
|
||||
validateNewCommits(ctl, cmd);
|
||||
batch.addCommand(cmd);
|
||||
} else {
|
||||
if (GitRepositoryManager.REF_CONFIG.equals(ctl.getRefName())) {
|
||||
errors.put(Error.CONFIG_UPDATE, GitRepositoryManager.REF_CONFIG);
|
||||
if (RefNames.REFS_CONFIG.equals(ctl.getRefName())) {
|
||||
errors.put(Error.CONFIG_UPDATE, RefNames.REFS_CONFIG);
|
||||
} else {
|
||||
errors.put(Error.UPDATE, ctl.getRefName());
|
||||
}
|
||||
@@ -944,13 +946,13 @@ public class ReceiveCommits {
|
||||
|
||||
private void parseDelete(final ReceiveCommand cmd) {
|
||||
RefControl ctl = projectControl.controlForRef(cmd.getRefName());
|
||||
if (ctl.getRefName().startsWith("refs/changes/")) {
|
||||
if (ctl.getRefName().startsWith(REFS_CHANGES)) {
|
||||
errors.put(Error.DELETE_CHANGES, ctl.getRefName());
|
||||
reject(cmd, "cannot delete changes");
|
||||
} else if (ctl.canDelete()) {
|
||||
batch.addCommand(cmd);
|
||||
} else {
|
||||
if (GitRepositoryManager.REF_CONFIG.equals(ctl.getRefName())) {
|
||||
if (RefNames.REFS_CONFIG.equals(ctl.getRefName())) {
|
||||
reject(cmd, "cannot delete project configuration");
|
||||
} else {
|
||||
errors.put(Error.DELETE, ctl.getRefName());
|
||||
@@ -1222,7 +1224,7 @@ public class ReceiveCommits {
|
||||
*/
|
||||
private NoteMap loadRejectCommitsMap() throws IOException {
|
||||
try {
|
||||
Ref ref = repo.getRef(GitRepositoryManager.REF_REJECT_COMMITS);
|
||||
Ref ref = repo.getRef(RefNames.REFS_REJECT_COMMITS);
|
||||
if (ref == null) {
|
||||
return NoteMap.newEmptyMap();
|
||||
}
|
||||
@@ -1232,7 +1234,7 @@ public class ReceiveCommits {
|
||||
return NoteMap.read(rw.getObjectReader(), map);
|
||||
} catch (IOException badMap) {
|
||||
throw new IOException("Cannot load "
|
||||
+ GitRepositoryManager.REF_REJECT_COMMITS, badMap);
|
||||
+ RefNames.REFS_REJECT_COMMITS, badMap);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1424,7 +1426,7 @@ public class ReceiveCommits {
|
||||
for (Ref ref : allRefs.values()) {
|
||||
if (ref.getObjectId() == null) {
|
||||
continue;
|
||||
} else if (ref.getName().startsWith("refs/changes/")) {
|
||||
} else if (ref.getName().startsWith(REFS_CHANGES)) {
|
||||
existing.add(ref.getObjectId());
|
||||
} else if (ref.getName().startsWith(R_HEADS)
|
||||
|| (forRef != null && forRef.equals(ref.getName()))) {
|
||||
@@ -2057,7 +2059,7 @@ public class ReceiveCommits {
|
||||
&& ctl.canUploadMerges()
|
||||
&& !projectControl.getProjectState().isUseSignedOffBy()
|
||||
&& Iterables.isEmpty(rejectCommits)
|
||||
&& !GitRepositoryManager.REF_CONFIG.equals(ctl.getRefName())
|
||||
&& !RefNames.REFS_CONFIG.equals(ctl.getRefName())
|
||||
&& !(MagicBranch.isMagicBranch(cmd.getRefName())
|
||||
|| NEW_PATCHSET.matcher(cmd.getRefName()).matches())) {
|
||||
return;
|
||||
@@ -2233,7 +2235,7 @@ public class ReceiveCommits {
|
||||
private SetMultimap<ObjectId, Ref> changeRefsById() throws IOException {
|
||||
if (refsById == null) {
|
||||
refsById = HashMultimap.create();
|
||||
for (Ref r : repo.getRefDatabase().getRefs("refs/changes/").values()) {
|
||||
for (Ref r : repo.getRefDatabase().getRefs(REFS_CHANGES).values()) {
|
||||
if (PatchSet.isRef(r.getName())) {
|
||||
refsById.put(r.getObjectId(), r);
|
||||
}
|
||||
@@ -2340,6 +2342,6 @@ public class ReceiveCommits {
|
||||
}
|
||||
|
||||
private static boolean isConfig(final ReceiveCommand cmd) {
|
||||
return cmd.getRefName().equals(GitRepositoryManager.REF_CONFIG);
|
||||
return cmd.getRefName().equals(RefNames.REFS_CONFIG);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,6 +21,7 @@ import com.google.common.collect.Sets;
|
||||
import com.google.gerrit.reviewdb.client.Change;
|
||||
import com.google.gerrit.reviewdb.client.PatchSet;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.server.ReviewDb;
|
||||
import com.google.gerrit.server.util.MagicBranch;
|
||||
import com.google.gwtorm.server.OrmException;
|
||||
@@ -164,8 +165,8 @@ public class ReceiveCommitsAdvertiseRefsHook implements AdvertiseRefsHook {
|
||||
}
|
||||
|
||||
private static boolean skip(String name) {
|
||||
return name.startsWith("refs/changes/")
|
||||
|| name.startsWith(GitRepositoryManager.REFS_CACHE_AUTOMERGE)
|
||||
return name.startsWith(RefNames.REFS_CHANGES)
|
||||
|| name.startsWith(RefNames.REFS_CACHE_AUTOMERGE)
|
||||
|| MagicBranch.isMagicBranch(name);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,9 +19,11 @@ import com.google.common.collect.Maps;
|
||||
import com.google.gerrit.reviewdb.client.Change;
|
||||
import com.google.gerrit.reviewdb.client.PatchSet;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.server.ReviewDb;
|
||||
import com.google.gerrit.server.project.ProjectControl;
|
||||
import com.google.gwtorm.server.OrmException;
|
||||
|
||||
import org.eclipse.jgit.lib.Constants;
|
||||
import org.eclipse.jgit.lib.Ref;
|
||||
import org.eclipse.jgit.lib.RefDatabase;
|
||||
@@ -68,9 +70,9 @@ public class VisibleRefFilter extends AbstractAdvertiseRefsHook {
|
||||
|
||||
public Map<String, Ref> filter(Map<String, Ref> refs, boolean filterTagsSeperately) {
|
||||
if (projectCtl.allRefsAreVisibleExcept(
|
||||
ImmutableSet.of(GitRepositoryManager.REF_CONFIG))) {
|
||||
ImmutableSet.of(RefNames.REFS_CONFIG))) {
|
||||
Map<String, Ref> r = Maps.newHashMap(refs);
|
||||
r.remove(GitRepositoryManager.REF_CONFIG);
|
||||
r.remove(RefNames.REFS_CONFIG);
|
||||
return r;
|
||||
}
|
||||
|
||||
@@ -79,7 +81,7 @@ public class VisibleRefFilter extends AbstractAdvertiseRefsHook {
|
||||
final List<Ref> deferredTags = new ArrayList<Ref>();
|
||||
|
||||
for (Ref ref : refs.values()) {
|
||||
if (ref.getName().startsWith(GitRepositoryManager.REFS_CACHE_AUTOMERGE)) {
|
||||
if (ref.getName().startsWith(RefNames.REFS_CACHE_AUTOMERGE)) {
|
||||
continue;
|
||||
} else if (PatchSet.isRef(ref.getName())) {
|
||||
// Reference to a patch set is visible if the change is visible.
|
||||
|
||||
@@ -18,12 +18,12 @@ import com.google.common.base.CharMatcher;
|
||||
import com.google.gerrit.common.Nullable;
|
||||
import com.google.gerrit.common.PageLinks;
|
||||
import com.google.gerrit.extensions.registration.DynamicSet;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.server.GerritPersonIdent;
|
||||
import com.google.gerrit.server.IdentifiedUser;
|
||||
import com.google.gerrit.server.config.CanonicalWebUrl;
|
||||
import com.google.gerrit.server.config.GerritServerConfig;
|
||||
import com.google.gerrit.server.events.CommitReceivedEvent;
|
||||
import com.google.gerrit.server.git.GitRepositoryManager;
|
||||
import com.google.gerrit.server.git.ProjectConfig;
|
||||
import com.google.gerrit.server.git.ReceiveCommits;
|
||||
import com.google.gerrit.server.git.ValidationError;
|
||||
@@ -311,7 +311,7 @@ public class CommitValidators {
|
||||
CommitReceivedEvent receiveEvent) throws CommitValidationException {
|
||||
IdentifiedUser currentUser = (IdentifiedUser) refControl.getCurrentUser();
|
||||
|
||||
if (GitRepositoryManager.REF_CONFIG.equals(refControl.getRefName())) {
|
||||
if (RefNames.REFS_CONFIG.equals(refControl.getRefName())) {
|
||||
List<CommitValidationMessage> messages =
|
||||
new LinkedList<CommitValidationMessage>();
|
||||
|
||||
|
||||
@@ -22,12 +22,12 @@ import com.google.gerrit.reviewdb.client.Branch;
|
||||
import com.google.gerrit.reviewdb.client.PatchSet;
|
||||
import com.google.gerrit.reviewdb.client.PatchSetApproval;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.server.ReviewDb;
|
||||
import com.google.gerrit.server.IdentifiedUser;
|
||||
import com.google.gerrit.server.config.AllProjectsName;
|
||||
import com.google.gerrit.server.git.CodeReviewCommit;
|
||||
import com.google.gerrit.server.git.CommitMergeStatus;
|
||||
import com.google.gerrit.server.git.GitRepositoryManager;
|
||||
import com.google.gerrit.server.git.ProjectConfig;
|
||||
import com.google.gerrit.server.project.ProjectCache;
|
||||
import com.google.gerrit.server.project.ProjectState;
|
||||
@@ -96,7 +96,7 @@ public class MergeValidators {
|
||||
final Branch.NameKey destBranch,
|
||||
final PatchSet.Id patchSetId)
|
||||
throws MergeValidationException {
|
||||
if (GitRepositoryManager.REF_CONFIG.equals(destBranch.get())) {
|
||||
if (RefNames.REFS_CONFIG.equals(destBranch.get())) {
|
||||
final Project.NameKey newParent;
|
||||
try {
|
||||
ProjectConfig cfg =
|
||||
|
||||
@@ -18,6 +18,7 @@ package com.google.gerrit.server.patch;
|
||||
import com.google.common.cache.CacheLoader;
|
||||
import com.google.gerrit.reviewdb.client.AccountDiffPreference.Whitespace;
|
||||
import com.google.gerrit.reviewdb.client.Patch;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.server.git.GitRepositoryManager;
|
||||
import com.google.inject.Inject;
|
||||
|
||||
@@ -249,7 +250,7 @@ public class PatchListLoader extends CacheLoader<PatchListKey, PatchList> {
|
||||
public static RevTree automerge(Repository repo, RevWalk rw, RevCommit b,
|
||||
boolean save) throws IOException {
|
||||
String hash = b.name();
|
||||
String refName = GitRepositoryManager.REFS_CACHE_AUTOMERGE
|
||||
String refName = RefNames.REFS_CACHE_AUTOMERGE
|
||||
+ hash.substring(0, 2)
|
||||
+ "/"
|
||||
+ hash.substring(2);
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
package com.google.gerrit.server.project;
|
||||
|
||||
import static com.google.gerrit.server.git.GitRepositoryManager.REFS_DASHBOARDS;
|
||||
import static com.google.gerrit.reviewdb.client.RefNames.REFS_DASHBOARDS;
|
||||
|
||||
import com.google.common.base.Joiner;
|
||||
import com.google.common.base.Objects;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
package com.google.gerrit.server.project;
|
||||
|
||||
import static com.google.gerrit.server.git.GitRepositoryManager.REFS_DASHBOARDS;
|
||||
import static com.google.gerrit.reviewdb.client.RefNames.REFS_DASHBOARDS;
|
||||
|
||||
import com.google.common.base.Splitter;
|
||||
import com.google.common.base.Strings;
|
||||
|
||||
@@ -18,6 +18,7 @@ import com.google.common.collect.Lists;
|
||||
import com.google.common.collect.Sets;
|
||||
import com.google.gerrit.extensions.restapi.ResourceNotFoundException;
|
||||
import com.google.gerrit.extensions.restapi.RestReadView;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.server.git.GitRepositoryManager;
|
||||
import com.google.inject.Inject;
|
||||
|
||||
@@ -115,7 +116,7 @@ public class ListBranches implements RestReadView<ProjectResource> {
|
||||
if (refControl.isVisible()) {
|
||||
if (ref.getName().startsWith(Constants.R_HEADS)) {
|
||||
branches.add(createBranchInfo(ref, refControl, targets));
|
||||
} else if (GitRepositoryManager.REF_CONFIG.equals(ref.getName())) {
|
||||
} else if (RefNames.REFS_CONFIG.equals(ref.getName())) {
|
||||
configBranch = createBranchInfo(ref, refControl, targets);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
package com.google.gerrit.server.project;
|
||||
|
||||
import static com.google.gerrit.server.git.GitRepositoryManager.REFS_DASHBOARDS;
|
||||
import static com.google.gerrit.reviewdb.client.RefNames.REFS_DASHBOARDS;
|
||||
|
||||
import com.google.common.collect.Lists;
|
||||
import com.google.gerrit.extensions.restapi.ResourceNotFoundException;
|
||||
|
||||
@@ -26,6 +26,7 @@ import com.google.gerrit.extensions.restapi.RestReadView;
|
||||
import com.google.gerrit.extensions.restapi.TopLevelResource;
|
||||
import com.google.gerrit.reviewdb.client.AccountGroup;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.server.CurrentUser;
|
||||
import com.google.gerrit.server.OutputFormat;
|
||||
import com.google.gerrit.server.StringUtil;
|
||||
@@ -85,7 +86,7 @@ public class ListProjects implements RestReadView<TopLevelResource> {
|
||||
Ref head = git.getRef(Constants.HEAD);
|
||||
return head != null
|
||||
&& head.isSymbolic()
|
||||
&& GitRepositoryManager.REF_CONFIG.equals(head.getLeaf().getName());
|
||||
&& RefNames.REFS_CONFIG.equals(head.getLeaf().getName());
|
||||
}
|
||||
},
|
||||
ALL {
|
||||
|
||||
@@ -26,6 +26,7 @@ import com.google.gerrit.extensions.events.NewProjectCreatedListener;
|
||||
import com.google.gerrit.extensions.registration.DynamicSet;
|
||||
import com.google.gerrit.reviewdb.client.AccountGroup;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.client.Project.SubmitType;
|
||||
import com.google.gerrit.server.GerritPersonIdent;
|
||||
import com.google.gerrit.server.IdentifiedUser;
|
||||
@@ -109,7 +110,7 @@ public class PerformCreateProject {
|
||||
final Project.NameKey nameKey = createProjectArgs.getProject();
|
||||
try {
|
||||
final String head =
|
||||
createProjectArgs.permissionsOnly ? GitRepositoryManager.REF_CONFIG
|
||||
createProjectArgs.permissionsOnly ? RefNames.REFS_CONFIG
|
||||
: createProjectArgs.branch.get(0);
|
||||
final Repository repo = repoManager.createRepository(nameKey);
|
||||
try {
|
||||
|
||||
@@ -30,6 +30,7 @@ import com.google.gerrit.common.data.Permission;
|
||||
import com.google.gerrit.common.data.PermissionRule;
|
||||
import com.google.gerrit.reviewdb.client.AccountGroup;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.client.Project.InheritableBoolean;
|
||||
import com.google.gerrit.rules.PrologEnvironment;
|
||||
import com.google.gerrit.rules.RulesCache;
|
||||
@@ -164,7 +165,7 @@ public class ProjectState {
|
||||
try {
|
||||
Repository git = gitMgr.openRepository(getProject().getNameKey());
|
||||
try {
|
||||
Ref ref = git.getRef(GitRepositoryManager.REF_CONFIG);
|
||||
Ref ref = git.getRef(RefNames.REFS_CONFIG);
|
||||
if (ref == null || ref.getObjectId() == null) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -23,10 +23,10 @@ import com.google.gerrit.common.data.PermissionRule;
|
||||
import com.google.gerrit.common.data.RefConfigSection;
|
||||
import com.google.gerrit.common.errors.InvalidNameException;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.server.CurrentUser;
|
||||
import com.google.gerrit.server.IdentifiedUser;
|
||||
import com.google.gerrit.server.InternalUser;
|
||||
import com.google.gerrit.server.git.GitRepositoryManager;
|
||||
import com.google.gerrit.server.group.SystemGroupBackend;
|
||||
|
||||
import dk.brics.automaton.RegExp;
|
||||
@@ -161,7 +161,7 @@ public class RefControl {
|
||||
|
||||
/** @return true if this user can submit patch sets to this ref */
|
||||
public boolean canSubmit() {
|
||||
if (GitRepositoryManager.REF_CONFIG.equals(refName)) {
|
||||
if (RefNames.REFS_CONFIG.equals(refName)) {
|
||||
// Always allow project owners to submit configuration changes.
|
||||
// Submitting configuration changes modifies the access control
|
||||
// rules. Allowing this to be done by a non-project-owner opens
|
||||
@@ -175,7 +175,7 @@ public class RefControl {
|
||||
|
||||
/** @return true if the user can update the reference as a fast-forward. */
|
||||
public boolean canUpdate() {
|
||||
if (GitRepositoryManager.REF_CONFIG.equals(refName)
|
||||
if (RefNames.REFS_CONFIG.equals(refName)
|
||||
&& !projectControl.isOwner()) {
|
||||
// Pushing requires being at least project owner, in addition to push.
|
||||
// Pushing configuration changes modifies the access control
|
||||
@@ -211,7 +211,7 @@ public class RefControl {
|
||||
}
|
||||
|
||||
private boolean canPushWithForce() {
|
||||
if (!canWrite() || (GitRepositoryManager.REF_CONFIG.equals(refName)
|
||||
if (!canWrite() || (RefNames.REFS_CONFIG.equals(refName)
|
||||
&& !projectControl.isOwner())) {
|
||||
// Pushing requires being at least project owner, in addition to push.
|
||||
// Pushing configuration changes modifies the access control
|
||||
@@ -294,7 +294,7 @@ public class RefControl {
|
||||
* @return {@code true} if the user specified can delete a Git ref.
|
||||
*/
|
||||
public boolean canDelete() {
|
||||
if (!canWrite() || (GitRepositoryManager.REF_CONFIG.equals(refName))) {
|
||||
if (!canWrite() || (RefNames.REFS_CONFIG.equals(refName))) {
|
||||
// Never allow removal of the refs/meta/config branch.
|
||||
// Deleting the branch would destroy all Gerrit specific
|
||||
// metadata about the project, including its access rules.
|
||||
|
||||
@@ -29,6 +29,7 @@ import com.google.gerrit.common.data.Permission;
|
||||
import com.google.gerrit.common.data.PermissionRule;
|
||||
import com.google.gerrit.common.data.PermissionRule.Action;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.client.Project.InheritableBoolean;
|
||||
import com.google.gerrit.server.GerritPersonIdent;
|
||||
import com.google.gerrit.server.config.AllProjectsName;
|
||||
@@ -97,7 +98,7 @@ public class AllProjectsCreator {
|
||||
initAllProjects(git);
|
||||
|
||||
RefUpdate u = git.updateRef(Constants.HEAD);
|
||||
u.link(GitRepositoryManager.REF_CONFIG);
|
||||
u.link(RefNames.REFS_CONFIG);
|
||||
} catch (RepositoryNotFoundException err) {
|
||||
String name = allProjectsName.get();
|
||||
throw new IOException("Cannot create repository " + name, err);
|
||||
@@ -131,7 +132,7 @@ public class AllProjectsCreator {
|
||||
AccessSection all = config.getAccessSection(AccessSection.ALL, true);
|
||||
AccessSection heads = config.getAccessSection(AccessSection.HEADS, true);
|
||||
AccessSection tags = config.getAccessSection("refs/tags/*", true);
|
||||
AccessSection meta = config.getAccessSection(GitRepositoryManager.REF_CONFIG, true);
|
||||
AccessSection meta = config.getAccessSection(RefNames.REFS_CONFIG, true);
|
||||
AccessSection magic = config.getAccessSection("refs/for/" + AccessSection.ALL, true);
|
||||
|
||||
grant(config, cap, GlobalCapability.ADMINISTRATE_SERVER, admin);
|
||||
|
||||
@@ -32,6 +32,7 @@ import com.google.gerrit.common.data.LabelType;
|
||||
import com.google.gerrit.common.data.Permission;
|
||||
import com.google.gerrit.common.data.PermissionRule;
|
||||
import com.google.gerrit.reviewdb.client.AccountGroup;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.client.PatchSetApproval.LabelId;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.Project.InheritableBoolean;
|
||||
@@ -186,7 +187,7 @@ class Schema_53 extends SchemaVersion {
|
||||
// Grant out read on the config branch by default.
|
||||
//
|
||||
if (config.getProject().getNameKey().equals(systemConfig.wildProjectName)) {
|
||||
AccessSection meta = config.getAccessSection(GitRepositoryManager.REF_CONFIG, true);
|
||||
AccessSection meta = config.getAccessSection(RefNames.REFS_CONFIG, true);
|
||||
Permission read = meta.getPermission(READ, true);
|
||||
read.getRule(config.resolve(projectOwners), true);
|
||||
}
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
package com.google.gerrit.server.schema;
|
||||
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.reviewdb.client.RefNames;
|
||||
import com.google.gerrit.reviewdb.server.ReviewDb;
|
||||
import com.google.gerrit.server.git.GitRepositoryManager;
|
||||
import com.google.inject.Inject;
|
||||
@@ -44,8 +45,8 @@ public class Schema_56 extends SchemaVersion {
|
||||
keysOne = new HashSet<String>();
|
||||
keysTwo = new HashSet<String>();
|
||||
|
||||
keysOne.add(GitRepositoryManager.REF_CONFIG);
|
||||
keysTwo.add(GitRepositoryManager.REF_CONFIG);
|
||||
keysOne.add(RefNames.REFS_CONFIG);
|
||||
keysTwo.add(RefNames.REFS_CONFIG);
|
||||
keysTwo.add(Constants.HEAD);
|
||||
}
|
||||
|
||||
@@ -73,10 +74,10 @@ public class Schema_56 extends SchemaVersion {
|
||||
try {
|
||||
RefUpdate update = git.updateRef(Constants.HEAD);
|
||||
update.disableRefLog();
|
||||
update.link(GitRepositoryManager.REF_CONFIG);
|
||||
update.link(RefNames.REFS_CONFIG);
|
||||
} catch (IOException err) {
|
||||
ui.message("warning: " + name.get() + ": Cannot update HEAD to "
|
||||
+ GitRepositoryManager.REF_CONFIG + ": " + err.getMessage());
|
||||
+ RefNames.REFS_CONFIG + ": " + err.getMessage());
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
|
||||
Reference in New Issue
Block a user