| // Copyright (C) 2012 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.server.restapi.project; |
| |
| import static com.google.gerrit.server.project.BranchResource.BRANCH_KIND; |
| import static com.google.gerrit.server.project.ChildProjectResource.CHILD_PROJECT_KIND; |
| import static com.google.gerrit.server.project.CommitResource.COMMIT_KIND; |
| import static com.google.gerrit.server.project.DashboardResource.DASHBOARD_KIND; |
| import static com.google.gerrit.server.project.FileResource.FILE_KIND; |
| import static com.google.gerrit.server.project.LabelResource.LABEL_KIND; |
| import static com.google.gerrit.server.project.ProjectResource.PROJECT_KIND; |
| import static com.google.gerrit.server.project.TagResource.TAG_KIND; |
| |
| import com.google.gerrit.extensions.registration.DynamicMap; |
| import com.google.gerrit.extensions.registration.DynamicSet; |
| import com.google.gerrit.extensions.restapi.RestApiModule; |
| import com.google.gerrit.server.config.GerritConfigListener; |
| import com.google.gerrit.server.project.RefValidationHelper; |
| import com.google.gerrit.server.restapi.change.CherryPickCommit; |
| import com.google.gerrit.server.validators.ProjectCreationValidationListener; |
| |
| public class ProjectRestApiModule extends RestApiModule { |
| |
| @Override |
| protected void configure() { |
| bind(ProjectsCollection.class); |
| bind(DashboardsCollection.class); |
| |
| DynamicMap.mapOf(binder(), PROJECT_KIND); |
| DynamicMap.mapOf(binder(), CHILD_PROJECT_KIND); |
| DynamicMap.mapOf(binder(), BRANCH_KIND); |
| DynamicMap.mapOf(binder(), DASHBOARD_KIND); |
| DynamicMap.mapOf(binder(), FILE_KIND); |
| DynamicMap.mapOf(binder(), COMMIT_KIND); |
| DynamicMap.mapOf(binder(), TAG_KIND); |
| DynamicMap.mapOf(binder(), LABEL_KIND); |
| |
| DynamicSet.bind(binder(), GerritConfigListener.class).to(SetParent.class); |
| DynamicSet.bind(binder(), ProjectCreationValidationListener.class) |
| .to(CreateProject.ValidBranchListener.class); |
| |
| create(PROJECT_KIND).to(CreateProject.class); |
| put(PROJECT_KIND).to(PutProject.class); |
| get(PROJECT_KIND).to(GetProject.class); |
| get(PROJECT_KIND, "description").to(GetDescription.class); |
| put(PROJECT_KIND, "description").to(PutDescription.class); |
| delete(PROJECT_KIND, "description").to(PutDescription.class); |
| |
| get(PROJECT_KIND, "access").to(GetAccess.class); |
| post(PROJECT_KIND, "access").to(SetAccess.class); |
| put(PROJECT_KIND, "access:review").to(CreateAccessChange.class); |
| get(PROJECT_KIND, "check.access").to(CheckAccess.class); |
| |
| post(PROJECT_KIND, "check").to(Check.class); |
| |
| get(PROJECT_KIND, "parent").to(GetParent.class); |
| put(PROJECT_KIND, "parent").to(SetParent.class); |
| |
| child(PROJECT_KIND, "children").to(ChildProjectsCollection.class); |
| get(CHILD_PROJECT_KIND).to(GetChildProject.class); |
| |
| child(PROJECT_KIND, "labels").to(LabelsCollection.class); |
| create(LABEL_KIND).to(CreateLabel.class); |
| get(LABEL_KIND).to(GetLabel.class); |
| put(LABEL_KIND).to(SetLabel.class); |
| delete(LABEL_KIND).to(DeleteLabel.class); |
| postOnCollection(LABEL_KIND).to(PostLabels.class); |
| |
| get(PROJECT_KIND, "HEAD").to(GetHead.class); |
| put(PROJECT_KIND, "HEAD").to(SetHead.class); |
| |
| put(PROJECT_KIND, "ban").to(BanCommit.class); |
| |
| post(PROJECT_KIND, "index").to(Index.class); |
| |
| child(PROJECT_KIND, "branches").to(BranchesCollection.class); |
| create(BRANCH_KIND).to(CreateBranch.class); |
| post(PROJECT_KIND, "create.change").to(CreateChange.class); |
| put(BRANCH_KIND).to(PutBranch.class); |
| get(BRANCH_KIND).to(GetBranch.class); |
| delete(BRANCH_KIND).to(DeleteBranch.class); |
| post(PROJECT_KIND, "branches:delete").to(DeleteBranches.class); |
| get(BRANCH_KIND, "mergeable").to(CheckMergeability.class); |
| factory(RefValidationHelper.Factory.class); |
| get(BRANCH_KIND, "reflog").to(GetReflog.class); |
| child(BRANCH_KIND, "files").to(FilesCollection.class); |
| get(FILE_KIND, "content").to(GetContent.class); |
| |
| child(PROJECT_KIND, "commits").to(CommitsCollection.class); |
| get(PROJECT_KIND, "commits:in").to(CommitsIncludedInRefs.class); |
| get(COMMIT_KIND).to(GetCommit.class); |
| get(COMMIT_KIND, "in").to(CommitIncludedIn.class); |
| child(COMMIT_KIND, "files").to(FilesInCommitCollection.class); |
| |
| child(PROJECT_KIND, "tags").to(TagsCollection.class); |
| create(TAG_KIND).to(CreateTag.class); |
| get(TAG_KIND).to(GetTag.class); |
| put(TAG_KIND).to(PutTag.class); |
| delete(TAG_KIND).to(DeleteTag.class); |
| post(PROJECT_KIND, "tags:delete").to(DeleteTags.class); |
| |
| child(PROJECT_KIND, "dashboards").to(DashboardsCollection.class); |
| create(DASHBOARD_KIND).to(CreateDashboard.class); |
| get(DASHBOARD_KIND).to(GetDashboard.class); |
| put(DASHBOARD_KIND).to(SetDashboard.class); |
| delete(DASHBOARD_KIND).to(DeleteDashboard.class); |
| |
| get(PROJECT_KIND, "config").to(GetConfig.class); |
| put(PROJECT_KIND, "config").to(PutConfig.class); |
| post(COMMIT_KIND, "cherrypick").to(CherryPickCommit.class); |
| |
| factory(ProjectNode.Factory.class); |
| } |
| |
| /** Separately bind batch functionality. */ |
| public static class BatchModule extends RestApiModule { |
| @Override |
| protected void configure() { |
| get(PROJECT_KIND, "statistics.git").to(GetStatistics.class); |
| post(PROJECT_KIND, "gc").to(GarbageCollect.class); |
| post(PROJECT_KIND, "index.changes").to(IndexChanges.class); |
| } |
| } |
| } |