mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
49 lines
1007 B
Go
49 lines
1007 B
Go
package serverconfigs
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/sslconfigs"
|
|
)
|
|
|
|
func NewTLSProtocolConfigFromJSON(configJSON []byte) (*TLSProtocolConfig, error) {
|
|
config := &TLSProtocolConfig{}
|
|
if len(configJSON) > 0 {
|
|
err := json.Unmarshal(configJSON, config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return config, nil
|
|
}
|
|
|
|
// TLSProtocolConfig TLS协议配置
|
|
type TLSProtocolConfig struct {
|
|
BaseProtocol `yaml:",inline"`
|
|
|
|
SSLPolicyRef *sslconfigs.SSLPolicyRef `yaml:"sslPolicyRef" json:"sslPolicyRef"`
|
|
SSLPolicy *sslconfigs.SSLPolicy `yaml:"sslPolicy" json:"sslPolicy"`
|
|
}
|
|
|
|
// Init 初始化
|
|
func (this *TLSProtocolConfig) Init(ctx context.Context) error {
|
|
err := this.InitBase()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if this.SSLPolicy != nil {
|
|
err := this.SSLPolicy.Init(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// AsJSON 转换为JSON
|
|
func (this *TLSProtocolConfig) AsJSON() ([]byte, error) {
|
|
return json.Marshal(this)
|
|
}
|