blob: 35a03e93f33a5115a669269f06a2eb6400a9f4c3 [file] [log] [blame]
// Copyright 2008 Google Inc.
//
// 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.server.ssh;
import com.google.gerrit.client.data.ProjectCache;
import com.google.gerrit.client.reviewdb.Account;
import com.google.gerrit.client.reviewdb.Project;
import com.google.gerrit.client.reviewdb.ProjectRight;
import com.google.gerrit.client.reviewdb.ReviewDb;
import com.google.gerrit.client.rpc.BaseServiceImplementation;
import com.google.gerrit.client.rpc.Common;
import com.google.gerrit.git.InvalidRepositoryException;
import org.spearce.jgit.lib.Repository;
import java.io.IOException;
abstract class AbstractGitCommand extends AbstractCommand {
protected Repository repo;
protected Project proj;
protected Account userAccount;
protected ReviewDb db;
protected boolean isGerrit() {
return getName().startsWith("gerrit-");
}
@Override
protected final void run(final String[] args) throws IOException, Failure {
final String reqName = parseCommandLine(args);
String projectName = reqName;
if (projectName.endsWith(".git")) {
// Be nice and drop the trailing ".git" suffix, which we never keep
// in our database, but clients might mistakenly provide anyway.
//
projectName = projectName.substring(0, projectName.length() - 4);
}
if (projectName.startsWith("/")) {
// Be nice and drop the leading "/" if supplied by an absolute path.
// We don't have a file system hierarchy, just a flat namespace in
// the database's Project entities. We never encode these with a
// leading '/' but users might accidentally include them in Git URLs.
//
projectName = projectName.substring(1);
}
final ProjectCache.Entry cachedProj =
Common.getProjectCache().get(new Project.NameKey(projectName));
if (cachedProj == null) {
throw new Failure(1, "fatal: '" + reqName + "': not a Gerrit project");
}
proj = cachedProj.getProject();
if (ProjectRight.WILD_PROJECT.equals(proj.getId())) {
throw new Failure(1, "fatal: '" + reqName + "': not a valid project");
}
if (!BaseServiceImplementation.canRead(proj.getNameKey())) {
throw new Failure(1, "fatal: '" + reqName + "': not a Gerrit project");
}
try {
repo = getRepositoryCache().get(proj.getName());
} catch (InvalidRepositoryException e) {
throw new Failure(1, "fatal: '" + reqName + "': not a git archive");
}
db = openReviewDb();
try {
userAccount = Common.getAccountCache().get(getAccountId(), db);
if (userAccount == null) {
throw new Failure(1, "fatal: cannot query user database");
}
runImpl();
} finally {
closeDb();
}
}
protected void closeDb() {
if (db != null) {
db.close();
db = null;
}
}
protected abstract void runImpl() throws IOException, Failure;
protected abstract String parseCommandLine(String[] args) throws Failure;
}