me.snowdrop.licenses.properties.GeneratorProperties Maven / Gradle / Ivy
/*
* Copyright 2016-2017 Red Hat, Inc, and individual contributors.
*
* 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 me.snowdrop.licenses.properties;
import org.apache.commons.configuration2.Configuration;
import org.apache.commons.configuration2.builder.fluent.Configurations;
import org.apache.commons.configuration2.ex.ConfigurationException;
import java.util.AbstractMap;
import java.util.Map;
import java.util.Optional;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
/**
* @author Gytis Trikleris
*/
public class GeneratorProperties {
private static final String DEFAULT_FILE_PATH = "generator.properties";
private static final String DEFAULT_REPOSITORY_NAME = "Maven Central";
private static final String DEFAULT_REPOSITORY_URL = "http://repo1.maven.org/maven2";
private final Configuration configuration;
public GeneratorProperties() {
this(DEFAULT_FILE_PATH);
}
public GeneratorProperties(String filePath) {
try {
configuration = new Configurations().properties(filePath);
} catch (ConfigurationException e) {
throw new GeneratorPropertiesException("Couldn't load application properties", e);
}
}
public Map getRepositories() {
String joinedNames = configuration.getString(PropertyKeys.REPOSITORY_NAMES, DEFAULT_REPOSITORY_NAME);
String joinedUrls = configuration.getString(PropertyKeys.REPOSITORY_URLS, DEFAULT_REPOSITORY_URL);
String[] names = joinedNames.split(",");
String[] urls = joinedUrls.split(",");
if (names.length != urls.length) {
throw new GeneratorPropertiesException("Same number of repository names and urls is expected");
}
return IntStream.range(0, names.length)
.mapToObj(i -> new AbstractMap.SimpleEntry<>(names[i], urls[i]))
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
}
public Optional getLicenseServiceUrl() {
String url = configuration.getString(PropertyKeys.LICENSE_SERVICE_URL, null);
return Optional.ofNullable(url);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy