| 12345678910111213141516171819202122232425262728293031323334 |
- package security
- const (
- TokenSourceExec = "TokenSourceExec"
- )
- var (
- ClientUnsafeFeatures = []string{
- TokenSourceExec,
- }
- ServerUnsafeFeatures = []string{
- TokenSourceExec,
- }
- )
- type UnsafeFeatures struct {
- features map[string]bool
- }
- func NewUnsafeFeatures(allowed []string) *UnsafeFeatures {
- features := make(map[string]bool)
- for _, f := range allowed {
- features[f] = true
- }
- return &UnsafeFeatures{features: features}
- }
- func (u *UnsafeFeatures) IsEnabled(feature string) bool {
- if u == nil {
- return false
- }
- return u.features[feature]
- }
|