|
| 1 | +<p align="center"> |
| 2 | + <img width="400" src="https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/gofeatureflag.svg" alt="go-feature-flag logo" /> |
| 3 | + |
| 4 | +</p> |
| 5 | + |
| 6 | +# GO Feature Flag - OpenFeature PHP provider |
| 7 | +<p align="center"> |
| 8 | + <a href="https://packagist.org/packages/open-feature/go-feature-flag"><img src="https://img.shields.io/packagist/v/open-feature/go-feature-flag-provider?color=blue&logo=php" /></a> |
| 9 | + <a href="https://packagist.org/packages/open-feature/go-feature-flag"><img src="https://img.shields.io/packagist/dt/open-feature/go-feature-flag-provider?logo=php" /></a> |
| 10 | + <img alt="Packagist Version" src="https://img.shields.io/packagist/v/open-feature/go-feature-flag-provider?logo=php&color=blue"> |
| 11 | + <a href="https://gofeatureflag.org/"><img src="https://img.shields.io/badge/%F0%9F%93%92-Website-blue" alt="Documentation"></a> |
| 12 | + <a href="https://github.com/thomaspoignant/go-feature-flag/issues"><img src="https://img.shields.io/badge/%E2%9C%8F%EF%B8%8F-issues-red" alt="Issues"></a> |
| 13 | + <a href="https://gofeatureflag.org/slack"><img src="https://img.shields.io/badge/join-us%20on%20slack-gray.svg?longCache=true&logo=slack&colorB=green" alt="Join us on slack"></a> |
| 14 | +</p> |
| 15 | + |
| 16 | +This repository contains the official PHP OpenFeature provider for accessing your feature flags with [GO Feature Flag](https://gofeatureflag.org). |
| 17 | + |
| 18 | +In conjunction with the [OpenFeature SDK](https://openfeature.dev/docs/reference/concepts/provider) you will be able |
| 19 | +to evaluate your feature flags in your Ruby applications. |
| 20 | + |
| 21 | +For documentation related to flags management in GO Feature Flag, |
| 22 | +refer to the [GO Feature Flag documentation website](https://gofeatureflag.org/docs). |
| 23 | + |
| 24 | +### Functionalities: |
| 25 | +- Manage the integration of the OpenFeature PHP SDK and GO Feature Flag relay-proxy. |
| 26 | + |
| 27 | +## Dependency Setup |
| 28 | + |
| 29 | +### Composer |
| 30 | + |
| 31 | +```shell |
| 32 | +composer require open-feature/go-feature-flag-provider |
| 33 | +``` |
| 34 | +## Getting started |
| 35 | + |
| 36 | +### Initialize the provider |
| 37 | + |
| 38 | +The `GoFeatureFlagProvider` takes a config object as parameter to be initialized. |
| 39 | + |
| 40 | +The constructor of the config object has the following options: |
| 41 | + |
| 42 | +| **Option** | **Description** | |
| 43 | +|-----------------|------------------------------------------------------------------------------------------------------------------| |
| 44 | +| `endpoint` | **(mandatory)** The URL to access to the relay-proxy.<br />*(example: `https://relay.proxy.gofeatureflag.org/`)* | |
| 45 | +| `apiKey` | The token used to call the relay proxy. | |
| 46 | +| `customHeaders` | Any headers you want to add to call the relay-proxy. | |
| 47 | + |
| 48 | +The only required option to create a `GoFeatureFlagProvider` is the URL _(`endpoint`)_ to your GO Feature Flag relay-proxy instance. |
| 49 | + |
| 50 | +```php |
| 51 | +use OpenFeature\Providers\GoFeatureFlag\config\Config; |
| 52 | +use OpenFeature\Providers\GoFeatureFlag\GoFeatureFlagProvider; |
| 53 | +use OpenFeature\implementation\flags\MutableEvaluationContext; |
| 54 | +use OpenFeature\implementation\flags\Attributes; |
| 55 | +use OpenFeature\OpenFeatureAPI; |
| 56 | + |
| 57 | +$config = new Config('http://gofeatureflag.org', 'my-api-key); |
| 58 | +$provider = new GoFeatureFlagProvider($config); |
| 59 | + |
| 60 | +$api = OpenFeatureAPI::getInstance(); |
| 61 | +$api->setProvider($provider); |
| 62 | +$client = $api->getClient(); |
| 63 | +$evaluationContext = new MutableEvaluationContext( |
| 64 | + "214b796a-807b-4697-b3a3-42de0ec10a37", |
| 65 | + new Attributes(["email" => " [email protected]"]) |
| 66 | + ); |
| 67 | + |
| 68 | +$value = $client->getBooleanDetails('integer_key', false, $evaluationContext); |
| 69 | +if ($value) { |
| 70 | + echo "The flag is enabled"; |
| 71 | +} else { |
| 72 | + echo "The flag is disabled"; |
| 73 | +} |
| 74 | +``` |
| 75 | + |
| 76 | +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. |
| 77 | + |
| 78 | +The `targeting_key` is mandatory for GO Feature Flag to evaluate the feature flag, it could be the id of a user, a session ID or anything you find relevant to use as identifier during the evaluation. |
| 79 | + |
| 80 | + |
| 81 | +### Evaluate a feature flag |
| 82 | +The client is used to retrieve values for the current `EvaluationContext`. |
| 83 | +For example, retrieving a boolean value for the flag **"my-flag"**: |
| 84 | + |
| 85 | +```php |
| 86 | +$value = $client->getBooleanDetails('integer_key', false, $evaluationContext); |
| 87 | +if ($value) { |
| 88 | + echo "The flag is enabled"; |
| 89 | +} else { |
| 90 | + echo "The flag is disabled"; |
| 91 | +} |
| 92 | +``` |
| 93 | + |
| 94 | +GO Feature Flag supports different all OpenFeature supported types of feature flags, it means that you can use all the accessor directly |
| 95 | +```php |
| 96 | +// Bool |
| 97 | +$client->getBooleanDetails('my-flag-key', false, new MutableEvaluationContext("214b796a-807b-4697-b3a3-42de0ec10a37")); |
| 98 | +$client->getBooleanValue('my-flag-key', false, new MutableEvaluationContext("214b796a-807b-4697-b3a3-42de0ec10a37")); |
| 99 | + |
| 100 | +// String |
| 101 | +$client->getStringDetails('my-flag-key', "default", new MutableEvaluationContext("214b796a-807b-4697-b3a3-42de0ec10a37")); |
| 102 | +$client->getStringValue('my-flag-key', "default", new MutableEvaluationContext("214b796a-807b-4697-b3a3-42de0ec10a37")); |
| 103 | + |
| 104 | +// Integer |
| 105 | +$client->getIntegerDetails('my-flag-key', 1, new MutableEvaluationContext("214b796a-807b-4697-b3a3-42de0ec10a37")); |
| 106 | +$client->getIntegerValue('my-flag-key', 1, new MutableEvaluationContext("214b796a-807b-4697-b3a3-42de0ec10a37")); |
| 107 | + |
| 108 | +// Float |
| 109 | +$client->getFloatDetails('my-flag-key', 1.1, new MutableEvaluationContext("214b796a-807b-4697-b3a3-42de0ec10a37")); |
| 110 | +$client->getFloatValue('my-flag-key', 1.1, new MutableEvaluationContext("214b796a-807b-4697-b3a3-42de0ec10a37")); |
| 111 | + |
| 112 | +// Object |
| 113 | +$client->getObjectDetails('my-flag-key', ["default" => true], new MutableEvaluationContext("214b796a-807b-4697-b3a3-42de0ec10a37")); |
| 114 | +$client->getObjectValue('my-flag-key', ["default" => true], new MutableEvaluationContext("214b796a-807b-4697-b3a3-42de0ec10a37")); |
| 115 | +``` |
| 116 | + |
| 117 | +## Features status |
| 118 | + |
| 119 | +| Status | Feature | Description | |
| 120 | +|-------|-----------------|----------------------------------------------------------------------------| |
| 121 | +| ✅ | Flag evaluation | It is possible to evaluate all the type of flags | |
| 122 | +| ❌ | Caching | Mechanism is in place to refresh the cache in case of configuration change | |
| 123 | +| ❌ | Event Streaming | Not supported by the SDK | |
| 124 | +| ❌ | Logging | Not supported by the SDK | |
| 125 | +| ❌ | Flag Metadata | Not supported by the SDK | |
| 126 | + |
| 127 | + |
| 128 | +<sub>**Implemented**: ✅ | In-progress: ⚠️ | Not implemented yet: ❌</sub> |
| 129 | + |
| 130 | +## Contributing |
| 131 | +This project welcomes contributions from the community. |
| 132 | +If you're interested in contributing, see the [contributors' guide](https://github.com/thomaspoignant/go-feature-flag/blob/main/CONTRIBUTING.md) for some helpful tips. |
| 133 | + |
| 134 | +### PHP Versioning |
| 135 | +This library targets PHP version 8.0 and newer. As long as you have any compatible version of PHP on your system you should be able to utilize the OpenFeature SDK. |
| 136 | + |
| 137 | +This package also has a .tool-versions file for use with PHP version managers like asdf. |
| 138 | + |
| 139 | +### Installation and Dependencies |
| 140 | +Install dependencies with `composer install`, it will update the `composer.lock` with the most recent compatible versions. |
| 141 | + |
| 142 | +We value having as few runtime dependencies as possible. The addition of any dependencies requires careful consideration and review. |
| 143 | + |
0 commit comments