mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
* feat: add TLS utility. * chore: rename pkg/tls/tls.go to pkg/common/tls/tls.go . * feat: add util for kafka TLS config. * feat: setup TLS config for kafka consumer. * feat: add TLS config to kafka consumer group. * feat: add TLS config for kafka producer. * chore: add TLS config for kafka. * feat: add TLS config for kafka checker.
21 lines
541 B
Go
21 lines
541 B
Go
package kafka
|
|
|
|
import (
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/tls"
|
|
"github.com/Shopify/sarama"
|
|
)
|
|
|
|
// SetupTLSConfig set up the TLS config from config file.
|
|
func SetupTLSConfig(cfg *sarama.Config) {
|
|
if config.Config.Kafka.TLS != nil {
|
|
cfg.Net.TLS.Enable = true
|
|
cfg.Net.TLS.Config = tls.NewTLSConfig(
|
|
config.Config.Kafka.TLS.ClientCrt,
|
|
config.Config.Kafka.TLS.ClientKey,
|
|
config.Config.Kafka.TLS.CACrt,
|
|
[]byte(config.Config.Kafka.TLS.ClientKeyPwd),
|
|
)
|
|
}
|
|
}
|