|
| 1 | +/* |
| 2 | + * Copyright 2025-2025 the original author or authors. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +package org.iromu.openfeature.boot.autoconfigure.gofeatureflag; |
| 18 | + |
| 19 | +import dev.openfeature.contrib.providers.gofeatureflag.GoFeatureFlagProvider; |
| 20 | +import dev.openfeature.contrib.providers.gofeatureflag.GoFeatureFlagProviderOptions; |
| 21 | +import dev.openfeature.sdk.FeatureProvider; |
| 22 | +import lombok.SneakyThrows; |
| 23 | +import lombok.extern.slf4j.Slf4j; |
| 24 | +import org.iromu.openfeature.boot.autoconfigure.ClientAutoConfiguration; |
| 25 | +import org.iromu.openfeature.boot.gofeatureflag.GoFeatureFlagCustomizer; |
| 26 | +import org.iromu.openfeature.boot.gofeatureflag.GoFeatureFlagProperties; |
| 27 | + |
| 28 | +import org.springframework.beans.factory.ObjectProvider; |
| 29 | +import org.springframework.boot.autoconfigure.AutoConfiguration; |
| 30 | +import org.springframework.boot.autoconfigure.AutoConfigureBefore; |
| 31 | +import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; |
| 32 | +import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; |
| 33 | +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
| 34 | +import org.springframework.boot.context.properties.EnableConfigurationProperties; |
| 35 | +import org.springframework.context.annotation.Bean; |
| 36 | + |
| 37 | +/** |
| 38 | + * Autoconfiguration for {@link GoFeatureFlagProvider}. |
| 39 | + * |
| 40 | + * @author Ivan Rodriguez |
| 41 | + */ |
| 42 | +@AutoConfiguration |
| 43 | +@AutoConfigureBefore(value = { ClientAutoConfiguration.class }, |
| 44 | + name = "org.iromu.openfeature.boot.autoconfigure.multiprovider.MultiProviderAutoConfiguration") |
| 45 | +@ConditionalOnClass({ GoFeatureFlagProvider.class }) |
| 46 | +@ConditionalOnProperty(prefix = GoFeatureFlagProperties.GOFEATUREFLAG_PREFIX, name = "enabled", havingValue = "true", |
| 47 | + matchIfMissing = true) |
| 48 | +@EnableConfigurationProperties(GoFeatureFlagProperties.class) |
| 49 | +@Slf4j |
| 50 | +public class GoFeatureFlagAutoConfiguration { |
| 51 | + |
| 52 | + @Bean |
| 53 | + @ConditionalOnMissingBean |
| 54 | + public GoFeatureFlagProviderOptions gofeatureflagProviderOptions( |
| 55 | + ObjectProvider<GoFeatureFlagCustomizer> customizers, GoFeatureFlagProperties gofeatureflagProperties) { |
| 56 | + GoFeatureFlagProviderOptions.GoFeatureFlagProviderOptionsBuilder builder = GoFeatureFlagProviderOptions |
| 57 | + .builder() |
| 58 | + .endpoint(gofeatureflagProperties.getEndpoint()) |
| 59 | + .apiKey(gofeatureflagProperties.getApiKey()); |
| 60 | + |
| 61 | + customizers.orderedStream().forEach((customizer) -> customizer.customize(builder)); |
| 62 | + |
| 63 | + return builder.build(); |
| 64 | + } |
| 65 | + |
| 66 | + @SneakyThrows |
| 67 | + @Bean |
| 68 | + @ConditionalOnMissingBean |
| 69 | + public FeatureProvider goFeatureFlagProvider(GoFeatureFlagProviderOptions gofeatureflagProviderOptions) { |
| 70 | + return new GoFeatureFlagProvider(gofeatureflagProviderOptions); |
| 71 | + } |
| 72 | + |
| 73 | +} |
0 commit comments