Line data Source code
1 : // Copyright (C) 2019 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.inject.Inject; 18 : import com.google.inject.Singleton; 19 : import java.util.HashMap; 20 : import java.util.Map; 21 : import org.eclipse.jgit.lib.Config; 22 : 23 : @Singleton 24 : public class OperatorAliasConfig { 25 : private static final String SECTION = "operator-alias"; 26 : private static final String SUBSECTION_CHANGE = "change"; 27 : private final Config cfg; 28 : private final Map<String, String> changeQueryOperatorAliases; 29 : 30 : @Inject 31 149 : OperatorAliasConfig(@GerritServerConfig Config cfg) { 32 149 : this.cfg = cfg; 33 149 : changeQueryOperatorAliases = new HashMap<>(); 34 149 : loadChangeOperatorAliases(); 35 149 : } 36 : 37 : public Map<String, String> getChangeQueryOperatorAliases() { 38 149 : return changeQueryOperatorAliases; 39 : } 40 : 41 : private void loadChangeOperatorAliases() { 42 149 : for (String name : cfg.getNames(SECTION, SUBSECTION_CHANGE, true)) { 43 1 : changeQueryOperatorAliases.put(name, cfg.getString(SECTION, SUBSECTION_CHANGE, name)); 44 1 : } 45 149 : } 46 : }