| package message |
|
|
| import ( |
| "time" |
|
|
| "github.com/target/goalert/gadb" |
| ) |
|
|
| |
| type ThrottleConfigBuilder struct { |
| parent *ThrottleConfigBuilder |
|
|
| msgTypes []gadb.EnumOutgoingMessagesType |
| dstTypes []string |
|
|
| rules []builderRules |
| max time.Duration |
| } |
|
|
| func (b *ThrottleConfigBuilder) top() *ThrottleConfigBuilder { |
| if b.parent != nil { |
| return b.parent |
| } |
| return b |
| } |
|
|
| |
| func (b *ThrottleConfigBuilder) WithMsgTypes(msgTypes ...gadb.EnumOutgoingMessagesType) *ThrottleConfigBuilder { |
| return &ThrottleConfigBuilder{ |
| parent: b.top(), |
|
|
| msgTypes: msgTypes, |
| dstTypes: b.dstTypes, |
| } |
| } |
|
|
| |
| func (b *ThrottleConfigBuilder) WithDestTypes(destTypes ...string) *ThrottleConfigBuilder { |
| return &ThrottleConfigBuilder{ |
| parent: b.top(), |
|
|
| msgTypes: b.msgTypes, |
| dstTypes: destTypes, |
| } |
| } |
|
|
| func (b *ThrottleConfigBuilder) setMax(rules []ThrottleRule) { |
| for _, r := range rules { |
| if r.Per > b.max { |
| b.max = r.Per |
| } |
| } |
| } |
|
|
| |
| func (b *ThrottleConfigBuilder) AddRules(rules []ThrottleRule) { |
| b.top().rules = append(b.top().rules, builderRules{ |
| msgTypes: b.msgTypes, |
| dstTypes: b.dstTypes, |
| rules: rules, |
| }) |
| b.top().setMax(rules) |
| } |
|
|
| |
| func (b *ThrottleConfigBuilder) Config() ThrottleConfig { |
| var cfg builderConfig |
| |
| cfg.rules = append(cfg.rules, b.top().rules...) |
| cfg.max = b.max |
|
|
| return &cfg |
| } |
|
|
| type builderRules struct { |
| msgTypes []gadb.EnumOutgoingMessagesType |
| dstTypes []string |
| rules []ThrottleRule |
| } |
|
|
| func (r builderRules) match(msg Message) bool { |
| typeMatch := len(r.msgTypes) == 0 |
| for _, typ := range r.msgTypes { |
| if typ != msg.Type { |
| continue |
| } |
|
|
| typeMatch = true |
| break |
| } |
| if !typeMatch { |
| return false |
| } |
|
|
| destMatch := len(r.dstTypes) == 0 |
| for _, dst := range r.dstTypes { |
| if dst != msg.Dest.Type { |
| continue |
| } |
|
|
| destMatch = true |
| break |
| } |
|
|
| return destMatch |
| } |
|
|
| type builderConfig struct { |
| rules []builderRules |
| max time.Duration |
| } |
|
|
| func (cfg *builderConfig) MaxDuration() time.Duration { return cfg.max } |
| func (cfg *builderConfig) Rules(msg Message) []ThrottleRule { |
| var rules []ThrottleRule |
| for _, set := range cfg.rules { |
| if !set.match(msg) { |
| continue |
| } |
| rules = append(rules, set.rules...) |
| } |
|
|
| return rules |
| } |
|
|