Line data Source code
1 : // Copyright (C) 2014 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.gerrit.server.securestore.SecureStore; 18 : import org.eclipse.jgit.lib.Config; 19 : 20 : class GerritConfig extends Config { 21 : private final Config gerritConfig; 22 : private final SecureStore secureStore; 23 : 24 : GerritConfig(Config noteDbConfigOverGerritConfig, Config gerritConfig, SecureStore secureStore) { 25 138 : super(noteDbConfigOverGerritConfig); 26 138 : this.gerritConfig = gerritConfig; 27 138 : this.secureStore = secureStore; 28 138 : } 29 : 30 : @Override 31 : public String getString(String section, String subsection, String name) { 32 16 : String secure = secureStore.get(section, subsection, name); 33 16 : if (secure != null) { 34 15 : return secure; 35 : } 36 16 : return super.getString(section, subsection, name); 37 : } 38 : 39 : @Override 40 : public String[] getStringList(String section, String subsection, String name) { 41 15 : String[] secure = secureStore.getList(section, subsection, name); 42 15 : if (secure != null && secure.length > 0) { 43 0 : return secure; 44 : } 45 15 : return super.getStringList(section, subsection, name); 46 : } 47 : 48 : @Override 49 : public String toText() { 50 : // Only show the contents of gerrit.config, hiding the implementation detail that some values 51 : // may come from secure.config (or another secure store) and notedb.config. 52 0 : return gerritConfig.toText(); 53 : } 54 : }