blob: f35c55ef4d557d25bc616aea4af656d174a389f0 [file] [log] [blame]
// Copyright (C) 2018 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.renameproject;
import static com.google.gerrit.server.project.ProjectResource.PROJECT_KIND;
import static com.googlesource.gerrit.plugins.renameproject.RenameOwnProjectCapability.RENAME_OWN_PROJECT;
import static com.googlesource.gerrit.plugins.renameproject.RenameProjectCapability.RENAME_PROJECT;
import com.google.gerrit.extensions.annotations.Exports;
import com.google.gerrit.extensions.config.CapabilityDefinition;
import com.google.gerrit.extensions.events.LifecycleListener;
import com.google.gerrit.extensions.restapi.RestApiModule;
import com.google.inject.AbstractModule;
import com.google.inject.internal.UniqueAnnotations;
import com.googlesource.gerrit.plugins.renameproject.cache.CacheRenameHandler;
import com.googlesource.gerrit.plugins.renameproject.conditions.RenamePreconditions;
import com.googlesource.gerrit.plugins.renameproject.database.DatabaseRenameHandler;
import com.googlesource.gerrit.plugins.renameproject.database.IndexUpdateHandler;
import com.googlesource.gerrit.plugins.renameproject.fs.FilesystemRenameHandler;
import org.eclipse.jgit.transport.SshSessionFactory;
public class Module extends AbstractModule {
@Override
protected void configure() {
bind(LifecycleListener.class).annotatedWith(UniqueAnnotations.create()).to(RenameLog.class);
bind(CacheRenameHandler.class);
bind(CapabilityDefinition.class)
.annotatedWith(Exports.named(RENAME_PROJECT))
.to(RenameProjectCapability.class);
bind(CapabilityDefinition.class)
.annotatedWith(Exports.named(RENAME_OWN_PROJECT))
.to(RenameOwnProjectCapability.class);
bind(DatabaseRenameHandler.class);
bind(FilesystemRenameHandler.class);
bind(RenamePreconditions.class);
bind(IndexUpdateHandler.class);
bind(RevertRenameProject.class);
bind(SshSessionFactory.class).toProvider(RenameReplicationSshSessionFactoryProvider.class);
install(
new RestApiModule() {
@Override
protected void configure() {
post(PROJECT_KIND, "rename").to(RenameProject.class);
}
});
}
}