forked from redpanda-data/kminion
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig_sasl.go
47 lines (39 loc) · 1.2 KB
/
config_sasl.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package kafka
import "fmt"
const (
SASLMechanismPlain = "PLAIN"
SASLMechanismScramSHA256 = "SCRAM-SHA-256"
SASLMechanismScramSHA512 = "SCRAM-SHA-512"
SASLMechanismGSSAPI = "GSSAPI"
SASLMechanismOAuthBearer = "OAUTHBEARER"
)
// SASLConfig for Kafka Client
type SASLConfig struct {
Enabled bool `koanf:"enabled"`
Username string `koanf:"username"`
Password string `koanf:"password"`
Mechanism string `koanf:"mechanism"`
// SASL Mechanisms that require more configuration than username & password
GSSAPI SASLGSSAPIConfig `koanf:"gssapi"`
}
// SetDefaults for SASL Config
func (c *SASLConfig) SetDefaults() {
c.Enabled = false
c.Mechanism = SASLMechanismPlain
c.GSSAPI.SetDefaults()
}
// Validate SASL config input
func (c *SASLConfig) Validate() error {
if !c.Enabled {
return nil
}
switch c.Mechanism {
case SASLMechanismPlain, SASLMechanismScramSHA256, SASLMechanismScramSHA512, SASLMechanismGSSAPI:
// Valid and supported
case SASLMechanismOAuthBearer:
return fmt.Errorf("sasl mechanism '%v' is valid but not yet supported. Please submit an issue if you need it", c.Mechanism)
default:
return fmt.Errorf("given sasl mechanism '%v' is invalid", c.Mechanism)
}
return nil
}