Skip to content
Permalink
28a72ba6bb
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
93 lines (70 sloc) 1.88 KB
package main
import (
"context"
"os"
"os/signal"
"syscall"
"github.com/bwmarrin/discordgo"
"github.com/honeycombio/beeline-go"
"github.com/optimizely/go-sdk/pkg/client"
"github.com/optimizely/go-sdk/pkg/entities"
)
func main() {
beeline.Init(beeline.Config{
WriteKey: os.Getenv("HONEYCOMB_KEY"),
Dataset: os.Getenv("HONEYCOMB_DATASET"),
})
defer beeline.Close()
// Open a simple Discord session
token := os.Getenv("DISCORD_TOKEN")
session, err := discordgo.New("Bot " + token)
if err != nil {
panic(err)
}
err = session.Open()
if err != nil {
panic(err)
}
// Wait for the user to cancel the process
defer func() {
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt, os.Kill)
<-sc
}()
session.Identify.Intents = discordgo.MakeIntent(discordgo.IntentsGuildMessages)
session.AddHandler(MessageRespond)
}
func getFeatureFlagState(ctx context.Context, id string, roles []string, flag string) bool {
ctx, span := beeline.StartSpan(ctx, "get_feature_flag_main")
defer span.Send()
optimizelyFactory := &client.OptimizelyFactory{
SDKKey: os.Getenv("OPTIMIZELY_KEY"),
}
optlyClient, err := optimizelyFactory.Client()
if err != nil {
panic(err)
}
defer optlyClient.Close()
beeline.AddField(ctx, "feature_flag_name", flag)
beeline.AddField(ctx, "feature_flag_role", roles)
enabled := false
for _, role := range roles {
ctx, span := beeline.StartSpan(ctx, "get_feature_flag")
defer span.Send()
beeline.AddField(ctx, "feature_flag_name", flag)
beeline.AddField(ctx, "feature_flag_role", role)
attributes := map[string]interface{}{
"role": role,
}
user := entities.UserContext{
ID: id,
Attributes: attributes,
}
enabled, _ := optlyClient.IsFeatureEnabled(flag, user)
beeline.AddField(ctx, "feature_flag_enabled", enabled)
if enabled {
return enabled
}
}
return enabled
}