All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.nacos.spring.context.annotation.config.NacosPropertySourceBuilder Maven / Gradle / Ivy

/*
 * 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 com.alibaba.nacos.spring.context.annotation.config;

import static com.alibaba.nacos.spring.util.NacosBeanUtils.getNacosServiceFactoryBean;
import static com.alibaba.nacos.spring.util.NacosUtils.buildDefaultPropertySourceName;
import static com.alibaba.nacos.spring.util.NacosUtils.toProperties;
import static java.lang.String.format;

import java.util.Map;
import java.util.Properties;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.core.env.ConfigurableEnvironment;
import org.springframework.core.env.MapPropertySource;
import org.springframework.core.env.PropertySource;
import org.springframework.util.StringUtils;

import com.alibaba.nacos.spring.factory.NacosServiceFactory;
import com.alibaba.nacos.spring.util.config.NacosConfigLoader;

/**
 * Nacos {@link PropertySource} Builder
 *
 * @author Mercy
 * @see NacosPropertySource
 * @since 0.1.0
 */
class NacosPropertySourceBuilder {

	private final Logger logger = LoggerFactory.getLogger(getClass());

	private String name;

	private String dataId;

	private String groupId;

	private String type;

	private Properties properties;

	private ConfigurableEnvironment environment;

	private BeanFactory beanFactory;

	private NacosConfigLoader nacosConfigLoader;

	public NacosPropertySourceBuilder name(String name) {
		this.name = name;
		return this;
	}

	public NacosPropertySourceBuilder dataId(String dataId) {
		this.dataId = dataId;
		return this;
	}

	public NacosPropertySourceBuilder groupId(String groupId) {
		this.groupId = groupId;
		return this;
	}

	public NacosPropertySourceBuilder properties(Properties properties) {
		this.properties = properties;
		return this;
	}

	public NacosPropertySourceBuilder type(String type) {
		this.type = type;
		return this;
	}

	public NacosPropertySourceBuilder environment(ConfigurableEnvironment environment) {
		this.environment = environment;
		return this;
	}

	public NacosPropertySourceBuilder beanFactory(BeanFactory beanFactory) {
		this.beanFactory = beanFactory;
		return this;
	}

	/**
	 * Build Nacos {@link PropertySource}
	 *
	 * @return if Nacos config is absent , return null
	 */
	public PropertySource build() {

		nacosConfigLoader = new NacosConfigLoader(environment);

		NacosServiceFactory nacosServiceFactory = getNacosServiceFactoryBean(beanFactory);

		nacosConfigLoader.setNacosServiceFactory(nacosServiceFactory);

		String config = nacosConfigLoader.load(dataId, groupId, properties);

		if (!StringUtils.hasText(config)) {
			if (logger.isWarnEnabled()) {
				logger.warn(format(
						"There is no content for Nacos PropertySource from dataId[%s] , groupId[%s] , properties[%s].",
						dataId, groupId, properties));
			}
			return null;
		}

		Map properties = toProperties(dataId, groupId, config, type);

		if (!StringUtils.hasText(name)) {
			name = buildDefaultPropertySourceName(dataId, groupId, properties);
		}

		return new MapPropertySource(name, properties);
	}

	public NacosConfigLoader getNacosConfigLoader() {
		return nacosConfigLoader;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy