Line data Source code
1 : // Copyright (C) 2021 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.config; 16 : 17 : import com.google.common.annotations.VisibleForTesting; 18 : import com.google.gerrit.server.project.ProjectConfig; 19 : import com.google.inject.Inject; 20 : import java.util.Optional; 21 : import javax.inject.Singleton; 22 : import org.eclipse.jgit.lib.StoredConfig; 23 : import org.eclipse.jgit.storage.file.FileBasedConfig; 24 : import org.eclipse.jgit.util.FS; 25 : 26 : @Singleton 27 : public class FileBasedAllProjectsConfigProvider implements AllProjectsConfigProvider { 28 : private final SitePaths sitePaths; 29 : 30 : @VisibleForTesting 31 : @Inject 32 153 : public FileBasedAllProjectsConfigProvider(SitePaths sitePaths) { 33 153 : this.sitePaths = sitePaths; 34 153 : } 35 : 36 : @Override 37 : public Optional<StoredConfig> get(AllProjectsName allProjectsName) { 38 152 : return Optional.of( 39 : new FileBasedConfig( 40 : sitePaths 41 : .etc_dir 42 152 : .resolve(allProjectsName.get()) 43 152 : .resolve(ProjectConfig.PROJECT_CONFIG) 44 152 : .toFile(), 45 : FS.DETECTED)); 46 : } 47 : }