Skip to content

Commit 5cbc35f

Browse files
feat: Add readme (#13)
Signed-off-by: Thomas Poignant <[email protected]>
1 parent a9a646b commit 5cbc35f

File tree

1 file changed

+127
-3
lines changed

1 file changed

+127
-3
lines changed

README.md

+127-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,129 @@
1-
# openfeature-swift-provider
2-
1+
# GO Feature Flag - OpenFeature Swift provider
32
[![CI](https://github.com/go-feature-flag/openfeature-swift-provider/actions/workflows/swift.yaml/badge.svg)](https://github.com/go-feature-flag/openfeature-swift-provider/actions/workflows/swift.yaml) [![codecov](https://codecov.io/gh/go-feature-flag/openfeature-swift-provider/graph/badge.svg?token=G6BAIREGQN)](https://codecov.io/gh/go-feature-flag/openfeature-swift-provider)
43

5-
Use GO Feature Flag with OpenFeature in your iOS / macOS / tvOS apps.
4+
5+
This repository contains the official Swift OpenFeature provider for accessing your feature flags with [**GO Feature Flag**](https://gofeatureflag.org).
6+
7+
In conjuction with the [OpenFeature SDK](https://openfeature.dev/docs/reference/concepts/provider) you will be able to evaluate your feature flags in your **iOS**/**tvOS**/**macOS** applications.
8+
9+
For documentation related to flags management in GO Feasture Flag, refer to the [GO Feature Flag documentation website](https://gofeatureflag.org/docs).
10+
11+
### Functionalities:
12+
- Managed the integration of the OpenFeature Swift SDK and GO Feature Flag relay-proxy.
13+
- Prefetch and cache flag evaluations in order to give the flag value in a efficient way.
14+
- Automatic configuration changes polling, to be informed as soon as a flag configuration has changed.
15+
- Automatic data collection about which flags have been accessed by the application
16+
17+
18+
## Dependency Setup
19+
20+
### Swift Package Manager
21+
22+
In the dependencies section of Package.swift add:
23+
```swift
24+
.package(url: "https://github.com/go-feature-flag/openfeature-swift-provider.git", from: "0.1.0")
25+
```
26+
27+
and in the target dependencies section add:
28+
```swift
29+
.product(name: "GOFeatureFlag", package: "openfeature-swift-provider"),
30+
```
31+
32+
### Xcode Dependencies
33+
34+
You have two options, both start from File > Add Packages... in the code menu.
35+
36+
First, ensure you have your GitHub account added as an option (+ > Add Source Control Account...). You will need to create a [Personal Access Token](https://github.com/settings/tokens) with the permissions defined in the Xcode interface.
37+
38+
1. Add as a remote repository
39+
* Search for `[email protected]:go-feature-flag/openfeature-swift-provider.git` and click "Add Package"
40+
2. Clone the repository locally
41+
* Clone locally using your preferred method
42+
* Use the "Add Local..." button to select the local folder
43+
44+
**Note:** Option 2 is only recommended if you are making changes to the SDK. You will also need to add the relevant OpenFeature SDK dependency manually.
45+
46+
## Getting started
47+
48+
### Initialize the provider
49+
50+
GO Feature Flag provider needs to be created and then set in the global OpenFeatureAPI.
51+
52+
The only required option to create a `GoFeatureFlagProvider` is the URL to your GO Feature Flag relay-proxy instance.
53+
54+
```swift
55+
import GOFeatureFlag
56+
import OpenFeature
57+
58+
59+
let options = GoFeatureFlagProviderOptions(endpoint: "https://your_domain.io")
60+
let provider = GoFeatureFlagProvider(options: options)
61+
62+
let evaluationContext = MutableContext(targetingKey: "myTargetingKey", structure: MutableStructure())
63+
OpenFeatureAPI.shared.setProvider(provider: provider, initialContext: evaluationContext)
64+
```
65+
66+
The evaluation context is the way for the client to specify contextual data that GO Feature Flag uses to evaluate the feature flags, it allows to define rules on the flag.
67+
68+
The `targetingKey` is mandatory for GO Feature Flag in order to evaluate the feature flag, it could be the id of a user, a session ID or anything you find relevent to use as identifier during the evaluation.
69+
70+
The `setProvider()` function is synchronous and returns immediately, however this does not mean that the provider is ready to be used. An asynchronous network request to the GO Feature Flag backend to fetch all the flags configured for your application must be completed by the provider first. The provider will then emit a `READY` event indicating you can start resolving flags.
71+
72+
If you prefer to wait until the fetch is done you can use the `async/await` compatible API available for waiting the Provider to become ready:
73+
74+
```swift
75+
await OpenFeatureAPI.shared.setProviderAndWait(provider: provider)
76+
```
77+
78+
### Update the Evaluation Context
79+
80+
During the usage of your application it may appears that the `EvaluationContext` should be updated. For example if a not logged in user, authentify himself you will probably have to update the evaluation context.
81+
82+
```swift
83+
let ctx = MutableContext(targetingKey: "myNewTargetingKey", structure: MutableStructure())
84+
OpenFeatureAPI.shared.setEvaluationContext(evaluationContext: ctx)
85+
```
86+
87+
`setEvaluationContext()` is a synchronous function similar to `setProvider()` and will fetch the new version of the feature flags based on this new `EvaluationContext`.
88+
89+
### Evaluate a feature flag
90+
The client is used to retrieve values for the current `EvaluationContext`. For example, retrieving a boolean value for the flag **"my-flag"**:
91+
92+
```swift
93+
let client = OpenFeatureAPI.shared.getClient()
94+
let result = client.getBooleanValue(key: "my-flag", defaultValue: false)
95+
```
96+
97+
GO Feature Flag supports different all OpenFeature supported types of feature flags, it means that you can use all the accessor directly
98+
- **Bool**: `client.getBooleanValue(key: "my-flag", defaultValue: false)`
99+
- **String**: `client.getStringValue(key: "my-flag", defaultValue: "default")`
100+
- **Integer**: `client.getIntegerValue(key: "my-flag", defaultValue: 1)`
101+
- **Double**: `client.getDoubleValue(key: "my-flag", defaultValue: 1.1)`
102+
- **Object**: `client.getObjectValue(key: "my-flag", defaultValue: Value.structure(["key":Value.integer("1234"))`
103+
104+
105+
> [!NOTE]
106+
> If you add a new flag in GO Feature Flag, expect some delay before having it available for the provider.
107+
> Refreshing the cache from remote happens when setting a new provider and/or evaluation context in the global OpenFeatureAPI, but also when a configuration change is detected during the polling.
108+
109+
### Handling Provider Events
110+
111+
When setting the provider or the context *(via `setEvaluationContext()` or `setProvider()`)* some events can be triggered to know the state of the provider.
112+
113+
To listen to them you can add an event handler via the `OpenFeatureAPI` shared instance:
114+
115+
```swift
116+
OpenFeatureAPI.shared.observe().sink { event in
117+
if event == .error {
118+
// An error has been emitted
119+
}
120+
}
121+
```
122+
123+
#### Existing type of events are:
124+
- `.ready`: Provider is ready.
125+
- `.error`: Provider in error.
126+
- `.configurationChanged`: Configuration has changed in GO Feature Flag.
127+
- `.PROVIDER_STALE`: Provider has not the latest version of the feature flags.
128+
- `.notReady`: Provider is not ready to evaluate the feature flags.
129+

0 commit comments

Comments
 (0)