blob: c7d4ea734731bc149117421e4b7630af696ebb49 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.freemarker.generator.cli.config;
import freemarker.cache.TemplateLoader;
import freemarker.template.Configuration;
import freemarker.template.Version;
import java.util.Properties;
import java.util.function.Supplier;
import static freemarker.core.TemplateClassResolver.ALLOWS_NOTHING_RESOLVER;
import static freemarker.template.Configuration.VERSION_2_3_29;
import static java.util.Objects.requireNonNull;
import static java.util.stream.Stream.of;
import static org.apache.freemarker.generator.base.FreeMarkerConstants.Configuration.SETTING_PREFIX;
import static org.apache.freemarker.generator.base.util.PropertiesTransformer.filterKeyPrefix;
import static org.apache.freemarker.generator.base.util.PropertiesTransformer.removeKeyPrefix;
/**
* Supply a FreeMarker configuration.
*/
public class ConfigurationSupplier implements Supplier<Configuration> {
private static final Version FREEMARKER_VERSION = VERSION_2_3_29;
private final Settings settings;
private final Supplier<TemplateLoader> templateLoader;
public ConfigurationSupplier(Settings settings, Supplier<TemplateLoader> templateLoader) {
this.settings = requireNonNull(settings);
this.templateLoader = requireNonNull(templateLoader);
}
@Override
public Configuration get() {
try {
final Configuration configuration = new Configuration(FREEMARKER_VERSION);
// apply safe default configuration
configuration.setAPIBuiltinEnabled(false);
configuration.setNewBuiltinClassResolver(ALLOWS_NOTHING_RESOLVER);
// apply all "freemarker.configuration.setting" values
configuration.setSettings(freeMarkerConfigurationSettings());
// override current configuration with caller-provided settings
configuration.setDefaultEncoding(settings.getTemplateEncoding().name());
configuration.setLocale(settings.getLocale());
configuration.setOutputEncoding(settings.getOutputEncoding().name());
configuration.setTemplateLoader(templateLoader.get());
return configuration;
} catch (Exception e) {
throw new RuntimeException("Failed to create FreeMarker configuration", e);
}
}
/**
* Slice through the given configuration to extract
* FreeMarker configuration settings.
*
* @return FreeMarker configuration settings
*/
private Properties freeMarkerConfigurationSettings() {
return of(settings.getConfiguration())
.map(p -> filterKeyPrefix(p, SETTING_PREFIX))
.map(p -> removeKeyPrefix(p, SETTING_PREFIX))
.findFirst().get();
}
}