Skip to content

Commit db59798

Browse files
authored
Merge pull request #46 from iromu/feature/gofeatureflag
spring-boot-starter-openfeature-gofeatureflag
2 parents c9e2ea5 + 57ce602 commit db59798

File tree

12 files changed

+363
-0
lines changed

12 files changed

+363
-0
lines changed

.idea/encodings.xml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
<module>spring-boot-starter-openfeature-flagd</module>
5959
<module>spring-boot-starter-openfeature-flagsmith</module>
6060
<module>spring-boot-starter-openfeature-flipt</module>
61+
<module>spring-boot-starter-openfeature-gofeatureflag</module>
6162
<module>spring-boot-starter-openfeature-jsonlogic</module>
6263
<module>spring-boot-starter-openfeature-multiprovider</module>
6364
<module>spring-boot-starter-openfeature-unleash</module>
@@ -82,6 +83,7 @@
8283
<flagd.version>0.11.8</flagd.version>
8384
<flagsmith.version>0.0.9</flagsmith.version>
8485
<flipt.version>0.1.1</flipt.version>
86+
<go-feature-flag.version>0.4.3</go-feature-flag.version>
8587
<jsonlogic-eval-provider.version>1.1.1</jsonlogic-eval-provider.version>
8688
<multiprovider.version>0.0.1</multiprovider.version>
8789
<unleash.version>0.1.0-alpha</unleash.version>

spring-boot-openfeature-dependencies/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@
5656
<artifactId>flipt</artifactId>
5757
<version>${flipt.version}</version>
5858
</dependency>
59+
<dependency>
60+
<groupId>dev.openfeature.contrib.providers</groupId>
61+
<artifactId>go-feature-flag</artifactId>
62+
<version>${go-feature-flag.version}</version>
63+
</dependency>
5964
<dependency>
6065
<groupId>dev.openfeature.contrib.providers</groupId>
6166
<artifactId>jsonlogic-eval-provider</artifactId>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
config.stopBubbling = true
2+
lombok.addLombokGeneratedAnnotation = true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2025-2025 the original author or authors.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ https://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
18+
<project xmlns="http://maven.apache.org/POM/4.0.0"
19+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21+
<modelVersion>4.0.0</modelVersion>
22+
<parent>
23+
<groupId>org.iromu.openfeature</groupId>
24+
<artifactId>spring-boot-openfeature</artifactId>
25+
<version>${revision}</version>
26+
<relativePath>../pom.xml</relativePath>
27+
</parent>
28+
29+
<artifactId>spring-boot-starter-openfeature-gofeatureflag</artifactId>
30+
31+
<dependencyManagement>
32+
<dependencies>
33+
<dependency>
34+
<groupId>org.springframework.boot</groupId>
35+
<artifactId>spring-boot-dependencies</artifactId>
36+
<version>${spring-boot.version}</version>
37+
<type>pom</type>
38+
<scope>import</scope>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.iromu.openfeature</groupId>
42+
<artifactId>spring-boot-openfeature-dependencies</artifactId>
43+
<version>${revision}</version>
44+
<type>pom</type>
45+
<scope>import</scope>
46+
</dependency>
47+
</dependencies>
48+
</dependencyManagement>
49+
50+
<dependencies>
51+
<dependency>
52+
<groupId>org.iromu.openfeature</groupId>
53+
<artifactId>spring-boot-openfeature-autoconfigure</artifactId>
54+
<version>${revision}</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.projectlombok</groupId>
58+
<artifactId>lombok</artifactId>
59+
<optional>true</optional>
60+
<scope>provided</scope>
61+
</dependency>
62+
<dependency>
63+
<groupId>dev.openfeature.contrib.providers</groupId>
64+
<artifactId>go-feature-flag</artifactId>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.springframework.boot</groupId>
68+
<artifactId>spring-boot-starter-test</artifactId>
69+
<scope>test</scope>
70+
</dependency>
71+
<dependency>
72+
<groupId>com.squareup.okhttp3</groupId>
73+
<artifactId>mockwebserver</artifactId>
74+
<version>${mockwebserver.version}</version>
75+
<scope>test</scope>
76+
</dependency>
77+
</dependencies>
78+
<build>
79+
<plugins>
80+
<plugin>
81+
<groupId>org.jacoco</groupId>
82+
<artifactId>jacoco-maven-plugin</artifactId>
83+
</plugin>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-compiler-plugin</artifactId>
87+
<configuration>
88+
<annotationProcessorPaths>
89+
<path>
90+
<groupId>org.springframework.boot</groupId>
91+
<artifactId>spring-boot-configuration-processor</artifactId>
92+
</path>
93+
<path>
94+
<groupId>org.projectlombok</groupId>
95+
<artifactId>lombok</artifactId>
96+
</path>
97+
</annotationProcessorPaths>
98+
<compilerArgs>
99+
<arg>-parameters</arg>
100+
</compilerArgs>
101+
</configuration>
102+
</plugin>
103+
</plugins>
104+
</build>
105+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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.gofeatureflag;
18+
19+
import dev.openfeature.contrib.providers.gofeatureflag.GoFeatureFlagProviderOptions;
20+
21+
/**
22+
* Callback interface that can be used to customize GoFeatureFlag with a
23+
* {@link GoFeatureFlagProviderOptions.GoFeatureFlagProviderOptionsBuilder}.
24+
*
25+
* @author Ivan Rodriguez
26+
*/
27+
@FunctionalInterface
28+
public interface GoFeatureFlagCustomizer {
29+
30+
/**
31+
* Callback to customize a
32+
* {@link GoFeatureFlagProviderOptions.GoFeatureFlagProviderOptionsBuilder} instance.
33+
* @param builder an GoFeatureFlagProviderOptions builder to customize
34+
*/
35+
void customize(GoFeatureFlagProviderOptions.GoFeatureFlagProviderOptionsBuilder builder);
36+
37+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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.gofeatureflag;
18+
19+
import lombok.Data;
20+
import org.iromu.openfeature.boot.autoconfigure.gofeatureflag.GoFeatureFlagAutoConfiguration;
21+
22+
import org.springframework.boot.context.properties.ConfigurationProperties;
23+
24+
/**
25+
* Spring properties for {@link GoFeatureFlagAutoConfiguration}.
26+
*
27+
* @author Ivan Rodriguez
28+
*/
29+
@ConfigurationProperties(prefix = GoFeatureFlagProperties.GOFEATUREFLAG_PREFIX)
30+
@Data
31+
public class GoFeatureFlagProperties {
32+
33+
/**
34+
* Prefix for Spring properties.
35+
*/
36+
public static final String GOFEATUREFLAG_PREFIX = "spring.openfeature.gofeatureflag";
37+
38+
private boolean enabled = true;
39+
40+
/**
41+
* (mandatory) endpoint contains the DNS of your GO Feature Flag relay proxy. example:
42+
* https://mydomain.com/gofeatureflagproxy/
43+
*/
44+
private String endpoint;
45+
46+
/**
47+
* (optional) If the relay proxy is configured to authenticate the requests, you
48+
* should provide an API Key to the provider. Please ask the administrator of the
49+
* relay proxy to provide an API Key. (This feature is available only if you are using
50+
* GO Feature Flag relay proxy v1.7.0 or above) Default: null
51+
*/
52+
private String apiKey;
53+
54+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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.gofeatureflag;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
org.iromu.openfeature.boot.autoconfigure.gofeatureflag.GoFeatureFlagAutoConfiguration

0 commit comments

Comments
 (0)