| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This package uses boltdb/bolt, a key-value store for storage. You do not need to connect another database! The HTTP routing is done by gorilla/mux.
Feature flags let you enable or disable some features of your application, for example when you're under unexpected traffic or when you want to let some users try a new feature you've been working on. They decouple feature release and code deployment, so that you can release features whenever you want, instead of whenever the code happens to ship.
With this package, you can enable the access of a feature for:
And you can combine things! You can give access to a feature for users in the group dev or admin and for users 1337 and 42 if you want to.
If you want to know everything about feature flags, check out this article.
You can grab this package with the following command:
go get gopkg.in/antoineaugusti/feature-flags.v0
And then build it:
cd ${GOPATH%/}/src/github.com/antoineaugusti/feature-flags
go build
From the -h flag:
Usage of ./feature-flags:
-a string
address to listen (default ":8080")
-d string
location of the database file (default "bolt.db")
This API does not ship with an authentication layer. You should not expose the API to the Internet. This API should be deployed behind a firewall, only your application servers should be allowed to send requests to the API.
Get a list of available feature flags.
[
{
"key":"homepage_v2",
"enabled":false,
"users":[],
"groups":[
"dev",
"admin"
],
"percentage":0
},
{
"key":"portfolio",
"enabled":false,
"users":[
1337,
42
],
"groups":[
"dev",
"admin"
],
"percentage":50
}
]Create a new feature flag.
Method: POST
Endpoint: /features
Input: The Content-Type HTTP header should be set to application/json
{
"key":"homepage_v2",
"enabled":false,
"users":[],
"groups":[
"dev",
"admin"
],
"percentage":0
}Responses:
{
"key":"homepage_v2",
"enabled":false,
"users":[],
"groups":[
"dev",
"admin"
],
"percentage":0
}{
"status":"invalid_json",
"message":"Cannot decode the given JSON payload"
}{
"status":"invalid_feature",
"message":"<reason>"
}Common reasons:
Get a specific feature flag.
{
"key":"homepage_v2",
"enabled":false,
"users":[],
"groups":[
"dev",
"admin"
],
"percentage":0
}{
"status":"feature_not_found",
"message":"The feature was not found"
}Remove a feature flag.
{
"status":"feature_deleted",
"message":"The feature was successfully deleted"
}{
"status":"feature_not_found",
"message":"The feature was not found"
}Update a feature flag.
Method: PATCH
Endpoint: /features/:featureKey
Input: The Content-Type HTTP header should be set to application/json
{
"enabled":true,
"users":[
13,
37
],
"groups":[
"dev"
],
"percentage":42
}Responses:
{
"key":"homepage_v2",
"users":[
13,
37
],
"groups":[
"dev"
],
"percentage":42
}{
"status":"feature_not_found",
"message":"The feature was not found"
}{
"status":"invalid_json",
"message":"Cannot decode the given JSON payload"
}{
"status":"invalid_feature",
"message":"<reason>"
}Common reason:
Get a list of accessible features for a user or a list of groups.
Method: POST
Endpoint: /features/access
Input: The Content-Type HTTP header should be set to application/json
{
"groups":[
"dev",
"test"
],
"user":42
}Responses:
Same as in POST /features. An empty array indicates that no known features are accessible for the given input.
{
"status":"invalid_json",
"message":"Cannot decode the given JSON payload"
}Check if a feature flag is enabled for a user or a list of groups.
Method: POST
Endpoint: /features/:featureKey/access
Input: The Content-Type HTTP header should be set to application/json
{
"groups":[
"dev",
"test"
],
"user":42
}Responses:
{
"status":"has_access",
"message":"The user has access to the feature"
}{
"status":"not_access",
"message":"The user does not have access to the feature"
}{
"status":"feature_not_found",
"message":"The feature was not found"
}{
"status":"invalid_json",
"message":"Cannot decode the given JSON payload"
}| Back | FazBrowse Home | New Git URL |