feat: add common serialize package (#1601)
Signed-off-by: Jim Ma <majinjing3@gmail.com>
This commit is contained in:
parent
ecfe467585
commit
c5a8512cb6
|
|
@ -28,7 +28,6 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"regexp"
|
"regexp"
|
||||||
"strings"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"gopkg.in/yaml.v3"
|
"gopkg.in/yaml.v3"
|
||||||
|
|
@ -40,6 +39,7 @@ import (
|
||||||
logger "d7y.io/dragonfly/v2/internal/dflog"
|
logger "d7y.io/dragonfly/v2/internal/dflog"
|
||||||
"d7y.io/dragonfly/v2/pkg/dfnet"
|
"d7y.io/dragonfly/v2/pkg/dfnet"
|
||||||
netip "d7y.io/dragonfly/v2/pkg/net/ip"
|
netip "d7y.io/dragonfly/v2/pkg/net/ip"
|
||||||
|
"d7y.io/dragonfly/v2/pkg/serialize"
|
||||||
"d7y.io/dragonfly/v2/pkg/unit"
|
"d7y.io/dragonfly/v2/pkg/unit"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -175,7 +175,7 @@ func ConvertPattern(p string, defaultPattern commonv1.Pattern) commonv1.Pattern
|
||||||
|
|
||||||
type GlobalSecurityOption struct {
|
type GlobalSecurityOption struct {
|
||||||
AutoIssueCert bool `mapstructure:"autoIssueCert" yaml:"autoIssueCert"`
|
AutoIssueCert bool `mapstructure:"autoIssueCert" yaml:"autoIssueCert"`
|
||||||
CACert PEMContent `mapstructure:"caCert" yaml:"caCert"`
|
CACert serialize.PEMContent `mapstructure:"caCert" yaml:"caCert"`
|
||||||
TLSVerify bool `mapstructure:"tlsVerify" yaml:"tlsVerify"`
|
TLSVerify bool `mapstructure:"tlsVerify" yaml:"tlsVerify"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -528,9 +528,9 @@ type UnixListenOption struct {
|
||||||
type SecurityOption struct {
|
type SecurityOption struct {
|
||||||
// Insecure indicate enable tls or not
|
// Insecure indicate enable tls or not
|
||||||
Insecure bool `mapstructure:"insecure" yaml:"insecure"`
|
Insecure bool `mapstructure:"insecure" yaml:"insecure"`
|
||||||
CACert PEMContent `mapstructure:"caCert" yaml:"caCert"`
|
CACert serialize.PEMContent `mapstructure:"caCert" yaml:"caCert"`
|
||||||
Cert PEMContent `mapstructure:"cert" yaml:"cert"`
|
Cert serialize.PEMContent `mapstructure:"cert" yaml:"cert"`
|
||||||
Key PEMContent `mapstructure:"key" yaml:"key"`
|
Key serialize.PEMContent `mapstructure:"key" yaml:"key"`
|
||||||
TLSVerify bool `mapstructure:"tlsVerify" yaml:"tlsVerify"`
|
TLSVerify bool `mapstructure:"tlsVerify" yaml:"tlsVerify"`
|
||||||
TLSConfig *tls.Config `mapstructure:"tlsConfig" yaml:"tlsConfig"`
|
TLSConfig *tls.Config `mapstructure:"tlsConfig" yaml:"tlsConfig"`
|
||||||
}
|
}
|
||||||
|
|
@ -562,58 +562,10 @@ type ReloadOption struct {
|
||||||
Interval util.Duration `mapstructure:"interval" yaml:"interval"`
|
Interval util.Duration `mapstructure:"interval" yaml:"interval"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// PEMContent supports load PEM format from file or just inline PEM format content
|
|
||||||
type PEMContent string
|
|
||||||
|
|
||||||
func (p *PEMContent) UnmarshalJSON(b []byte) error {
|
|
||||||
var s string
|
|
||||||
err := json.Unmarshal(b, &s)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return p.loadPEM(s)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *PEMContent) UnmarshalYAML(node *yaml.Node) error {
|
|
||||||
var s string
|
|
||||||
switch node.Kind {
|
|
||||||
case yaml.ScalarNode:
|
|
||||||
if err := node.Decode(&s); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
return errors.New("invalid pem content")
|
|
||||||
}
|
|
||||||
|
|
||||||
return p.loadPEM(s)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *PEMContent) loadPEM(content string) error {
|
|
||||||
if content == "" {
|
|
||||||
*p = PEMContent("")
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
// inline PEM, just return
|
|
||||||
if strings.HasPrefix(strings.TrimSpace(content), "-----BEGIN ") {
|
|
||||||
val := strings.TrimSpace(content)
|
|
||||||
*p = PEMContent(val)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
file, err := os.ReadFile(content)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
val := strings.TrimSpace(string(file))
|
|
||||||
*p = PEMContent(val)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type tlsConfigFiles struct {
|
type tlsConfigFiles struct {
|
||||||
Cert PEMContent `yaml:"cert" json:"cert"`
|
Cert serialize.PEMContent `yaml:"cert" json:"cert"`
|
||||||
Key PEMContent `yaml:"key" json:"key"`
|
Key serialize.PEMContent `yaml:"key" json:"key"`
|
||||||
CACert PEMContent `yaml:"caCert" json:"caCert"`
|
CACert serialize.PEMContent `yaml:"caCert" json:"caCert"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type TLSConfig struct {
|
type TLSConfig struct {
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@ import (
|
||||||
"d7y.io/dragonfly/v2/cmd/dependency/base"
|
"d7y.io/dragonfly/v2/cmd/dependency/base"
|
||||||
"d7y.io/dragonfly/v2/manager/model"
|
"d7y.io/dragonfly/v2/manager/model"
|
||||||
"d7y.io/dragonfly/v2/pkg/dfnet"
|
"d7y.io/dragonfly/v2/pkg/dfnet"
|
||||||
|
"d7y.io/dragonfly/v2/pkg/serialize"
|
||||||
"d7y.io/dragonfly/v2/pkg/unit"
|
"d7y.io/dragonfly/v2/pkg/unit"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -225,9 +226,9 @@ func TestPeerHostOption_Load(t *testing.T) {
|
||||||
_cert, _ := os.ReadFile("./testdata/certs/sca.crt")
|
_cert, _ := os.ReadFile("./testdata/certs/sca.crt")
|
||||||
_key, _ := os.ReadFile("./testdata/certs/sca.key")
|
_key, _ := os.ReadFile("./testdata/certs/sca.key")
|
||||||
|
|
||||||
caCert := PEMContent(strings.TrimSpace(string(_caCert)))
|
caCert := serialize.PEMContent(strings.TrimSpace(string(_caCert)))
|
||||||
cert := PEMContent(strings.TrimSpace(string(_cert)))
|
cert := serialize.PEMContent(strings.TrimSpace(string(_cert)))
|
||||||
key := PEMContent(strings.TrimSpace(string(_key)))
|
key := serialize.PEMContent(strings.TrimSpace(string(_key)))
|
||||||
|
|
||||||
peerHostOption := &DaemonOption{
|
peerHostOption := &DaemonOption{
|
||||||
Options: base.Options{
|
Options: base.Options{
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,7 @@ import (
|
||||||
"d7y.io/dragonfly/v2/pkg/dfpath"
|
"d7y.io/dragonfly/v2/pkg/dfpath"
|
||||||
"d7y.io/dragonfly/v2/pkg/net/fqdn"
|
"d7y.io/dragonfly/v2/pkg/net/fqdn"
|
||||||
"d7y.io/dragonfly/v2/pkg/net/ip"
|
"d7y.io/dragonfly/v2/pkg/net/ip"
|
||||||
|
"d7y.io/dragonfly/v2/pkg/serialize"
|
||||||
"d7y.io/dragonfly/v2/pkg/unit"
|
"d7y.io/dragonfly/v2/pkg/unit"
|
||||||
"d7y.io/dragonfly/v2/version"
|
"d7y.io/dragonfly/v2/version"
|
||||||
)
|
)
|
||||||
|
|
@ -238,7 +239,7 @@ func initDecoderConfig(dc *mapstructure.DecoderConfig) {
|
||||||
reflect.TypeOf(util.Duration{}),
|
reflect.TypeOf(util.Duration{}),
|
||||||
reflect.TypeOf(&config.ProxyOption{}),
|
reflect.TypeOf(&config.ProxyOption{}),
|
||||||
reflect.TypeOf(config.TCPListenPortRange{}),
|
reflect.TypeOf(config.TCPListenPortRange{}),
|
||||||
reflect.TypeOf(config.PEMContent("")),
|
reflect.TypeOf(serialize.PEMContent("")),
|
||||||
reflect.TypeOf(config.URL{}),
|
reflect.TypeOf(config.URL{}),
|
||||||
reflect.TypeOf(config.CertPool{}),
|
reflect.TypeOf(config.CertPool{}),
|
||||||
reflect.TypeOf(config.Regexp{}):
|
reflect.TypeOf(config.Regexp{}):
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ import (
|
||||||
|
|
||||||
"d7y.io/dragonfly/v2/cmd/dependency/base"
|
"d7y.io/dragonfly/v2/cmd/dependency/base"
|
||||||
"d7y.io/dragonfly/v2/pkg/objectstorage"
|
"d7y.io/dragonfly/v2/pkg/objectstorage"
|
||||||
|
"d7y.io/dragonfly/v2/pkg/serialize"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Config struct {
|
type Config struct {
|
||||||
|
|
@ -250,10 +251,10 @@ type SecurityConfig struct {
|
||||||
Enable bool `yaml:"enable" mapstructure:"enable"`
|
Enable bool `yaml:"enable" mapstructure:"enable"`
|
||||||
|
|
||||||
// CACert is file path PEM-encoded certificate
|
// CACert is file path PEM-encoded certificate
|
||||||
CACert string `mapstructure:"caCert" yaml:"caCert"`
|
CACert serialize.PEMContent `mapstructure:"caCert" yaml:"caCert"`
|
||||||
|
|
||||||
// CAKey is file path of PEM-encoded private key.
|
// CAKey is file path of PEM-encoded private key.
|
||||||
CAKey string `mapstructure:"caKey" yaml:"caKey"`
|
CAKey serialize.PEMContent `mapstructure:"caKey" yaml:"caKey"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// New config instance.
|
// New config instance.
|
||||||
|
|
|
||||||
|
|
@ -157,7 +157,7 @@ func New(cfg *config.Config, d dfpath.Dfpath) (*Server, error) {
|
||||||
// Initialize global certificate.
|
// Initialize global certificate.
|
||||||
var options []rpcserver.Option
|
var options []rpcserver.Option
|
||||||
if cfg.Security.Enable {
|
if cfg.Security.Enable {
|
||||||
cert, err := tls.LoadX509KeyPair(cfg.Security.CACert, cfg.Security.CAKey)
|
cert, err := tls.X509KeyPair([]byte(cfg.Security.CACert), []byte(cfg.Security.CAKey))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,74 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 The Dragonfly Authors
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package serialize
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"os"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
)
|
||||||
|
|
||||||
|
// PEMContent supports load PEM format from file or just inline PEM format content
|
||||||
|
type PEMContent string
|
||||||
|
|
||||||
|
func (p *PEMContent) UnmarshalJSON(b []byte) error {
|
||||||
|
var s string
|
||||||
|
err := json.Unmarshal(b, &s)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return p.loadPEM(s)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *PEMContent) UnmarshalYAML(node *yaml.Node) error {
|
||||||
|
var s string
|
||||||
|
switch node.Kind {
|
||||||
|
case yaml.ScalarNode:
|
||||||
|
if err := node.Decode(&s); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return errors.New("invalid pem content")
|
||||||
|
}
|
||||||
|
|
||||||
|
return p.loadPEM(s)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *PEMContent) loadPEM(content string) error {
|
||||||
|
if content == "" {
|
||||||
|
*p = PEMContent("")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
// inline PEM, just return
|
||||||
|
if strings.HasPrefix(strings.TrimSpace(content), "-----BEGIN ") {
|
||||||
|
val := strings.TrimSpace(content)
|
||||||
|
*p = PEMContent(val)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
file, err := os.ReadFile(content)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
val := strings.TrimSpace(string(file))
|
||||||
|
*p = PEMContent(val)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue