| // Copyright (C) 2016 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.googlesource.gerrit.plugins.lfs; |
| |
| import static com.google.gerrit.extensions.api.lfs.LfsDefinitions.LFS_OBJECTS_PATH; |
| import static com.google.gerrit.extensions.api.lfs.LfsDefinitions.LFS_URL_REGEX_TEMPLATE; |
| import static com.google.gerrit.extensions.client.ProjectState.HIDDEN; |
| import static com.google.gerrit.extensions.client.ProjectState.READ_ONLY; |
| import static com.google.gerrit.server.permissions.ProjectPermission.ACCESS; |
| import static com.google.gerrit.server.permissions.ProjectPermission.PUSH_AT_LEAST_ONE_REF; |
| |
| import com.google.common.flogger.FluentLogger; |
| import com.google.gerrit.common.ProjectUtil; |
| import com.google.gerrit.reviewdb.client.Project; |
| import com.google.gerrit.server.CurrentUser; |
| import com.google.gerrit.server.permissions.PermissionBackend; |
| import com.google.gerrit.server.project.ProjectCache; |
| import com.google.gerrit.server.project.ProjectState; |
| import com.google.inject.Inject; |
| import com.google.inject.Singleton; |
| import com.googlesource.gerrit.plugins.lfs.auth.LfsAuthUserProvider; |
| import java.util.regex.Matcher; |
| import java.util.regex.Pattern; |
| import org.eclipse.jgit.lfs.errors.LfsException; |
| import org.eclipse.jgit.lfs.errors.LfsRepositoryNotFound; |
| import org.eclipse.jgit.lfs.errors.LfsRepositoryReadOnly; |
| import org.eclipse.jgit.lfs.errors.LfsUnauthorized; |
| import org.eclipse.jgit.lfs.errors.LfsUnavailable; |
| import org.eclipse.jgit.lfs.errors.LfsValidationError; |
| import org.eclipse.jgit.lfs.server.LargeFileRepository; |
| import org.eclipse.jgit.lfs.server.LfsObject; |
| import org.eclipse.jgit.lfs.server.LfsProtocolServlet; |
| |
| @Singleton |
| public class LfsApiServlet extends LfsProtocolServlet { |
| public static final String LFS_OBJECTS_REGEX_REST = |
| String.format(LFS_URL_REGEX_TEMPLATE, LFS_OBJECTS_PATH); |
| |
| private static final FluentLogger log = FluentLogger.forEnclosingClass(); |
| private static final long serialVersionUID = 1L; |
| private static final Pattern URL_PATTERN = Pattern.compile(LFS_OBJECTS_REGEX_REST); |
| |
| private final ProjectCache projectCache; |
| private final PermissionBackend permissionBackend; |
| private final LfsConfigurationFactory lfsConfigFactory; |
| private final LfsRepositoryResolver repoResolver; |
| private final LfsAuthUserProvider userProvider; |
| |
| @Inject |
| LfsApiServlet( |
| ProjectCache projectCache, |
| PermissionBackend permissionBackend, |
| LfsConfigurationFactory lfsConfigFactory, |
| LfsRepositoryResolver repoResolver, |
| LfsAuthUserProvider userProvider) { |
| this.projectCache = projectCache; |
| this.permissionBackend = permissionBackend; |
| this.lfsConfigFactory = lfsConfigFactory; |
| this.repoResolver = repoResolver; |
| this.userProvider = userProvider; |
| } |
| |
| @Override |
| protected LargeFileRepository getLargeFileRepository(LfsRequest request, String path, String auth) |
| throws LfsException { |
| String pathInfo = path.startsWith("/") ? path : "/" + path; |
| Matcher matcher = URL_PATTERN.matcher(pathInfo); |
| if (!matcher.matches()) { |
| throw new LfsException("no repository at " + pathInfo); |
| } |
| String projName = matcher.group(1); |
| Project.NameKey project = Project.NameKey.parse(ProjectUtil.stripGitSuffix(projName)); |
| ProjectState state = projectCache.get(project); |
| if (state == null || state.getProject().getState() == HIDDEN) { |
| throw new LfsRepositoryNotFound(project.get()); |
| } |
| authorizeUser(userProvider.getUser(auth, projName, request.getOperation()), state, request); |
| |
| if (request.isUpload() && state.getProject().getState() == READ_ONLY) { |
| throw new LfsRepositoryReadOnly(project.get()); |
| } |
| |
| LfsProjectConfigSection config = lfsConfigFactory.getProjectsConfig().getForProject(project); |
| // Only accept requests for projects where LFS is enabled. |
| // No config means we default to "not enabled". |
| if (config != null && config.isEnabled()) { |
| // For uploads, check object sizes against limit if configured |
| if (request.isUpload()) { |
| if (config.isReadOnly()) { |
| throw new LfsRepositoryReadOnly(project.get()); |
| } |
| |
| long maxObjectSize = config.getMaxObjectSize(); |
| if (maxObjectSize > 0) { |
| for (LfsObject object : request.getObjects()) { |
| if (object.getSize() > maxObjectSize) { |
| throw new LfsValidationError( |
| String.format( |
| "size of object %s (%d bytes) exceeds limit (%d bytes)", |
| object.getOid(), object.getSize(), maxObjectSize)); |
| } |
| } |
| } |
| } |
| |
| return repoResolver.get(project, config.getBackend()); |
| } |
| |
| throw new LfsUnavailable(project.get()); |
| } |
| |
| private void authorizeUser(CurrentUser user, ProjectState state, LfsRequest request) |
| throws LfsUnauthorized { |
| Project.NameKey projectName = state.getNameKey(); |
| if ((request.isDownload() |
| && !permissionBackend.user(user).project(projectName).testOrFalse(ACCESS)) |
| || (request.isUpload() |
| && !permissionBackend |
| .user(user) |
| .project(projectName) |
| .testOrFalse(PUSH_AT_LEAST_ONE_REF))) { |
| String op = request.getOperation().toLowerCase(); |
| String project = state.getProject().getName(); |
| String userName = user.getUserName().orElse("anonymous"); |
| log.atFine().log( |
| "operation %s unauthorized for user %s on project %s", op, userName, project); |
| throw new LfsUnauthorized(op, project); |
| } |
| } |
| } |