From 55c7874d5c69118599c103b72cb72e29b4d3d2d0 Mon Sep 17 00:00:00 2001 From: patterniha Date: Mon, 24 Mar 2025 15:42:18 +0330 Subject: [PATCH] rename --- common/platform/filesystem/file.go | 2 +- common/platform/others.go | 4 ++-- common/platform/windows.go | 4 ++-- infra/conf/transport_internet.go | 2 +- transport/internet/tls/config.go | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/common/platform/filesystem/file.go b/common/platform/filesystem/file.go index 75943953..e4fe2a9a 100644 --- a/common/platform/filesystem/file.go +++ b/common/platform/filesystem/file.go @@ -29,7 +29,7 @@ func ReadAsset(file string) ([]byte, error) { return ReadFile(platform.GetAssetLocation(file)) } -func ReadCertificate(file string) ([]byte, error) { +func ReadCert(file string) ([]byte, error) { if filepath.IsAbs(file) { return ReadFile(file) } diff --git a/common/platform/others.go b/common/platform/others.go index 6b7738a7..3ebf0d6d 100644 --- a/common/platform/others.go +++ b/common/platform/others.go @@ -44,6 +44,6 @@ func GetAssetLocation(file string) string { } func GetCertLocation(file string) string { - certificatePath := NewEnvFlag(CertLocation).GetValue(getExecutableDir) - return filepath.Join(certificatePath, file) + certPath := NewEnvFlag(CertLocation).GetValue(getExecutableDir) + return filepath.Join(certPath, file) } diff --git a/common/platform/windows.go b/common/platform/windows.go index e251113d..8f98814b 100644 --- a/common/platform/windows.go +++ b/common/platform/windows.go @@ -26,6 +26,6 @@ func GetAssetLocation(file string) string { } func GetCertLocation(file string) string { - certificatePath := NewEnvFlag(CertLocation).GetValue(getExecutableDir) - return filepath.Join(certificatePath, file) + certPath := NewEnvFlag(CertLocation).GetValue(getExecutableDir) + return filepath.Join(certPath, file) } diff --git a/infra/conf/transport_internet.go b/infra/conf/transport_internet.go index f3afd2f9..e32be326 100644 --- a/infra/conf/transport_internet.go +++ b/infra/conf/transport_internet.go @@ -334,7 +334,7 @@ func (c *SplitHTTPConfig) Build() (proto.Message, error) { func readFileOrString(f string, s []string) ([]byte, error) { if len(f) > 0 { - return filesystem.ReadCertificate(f) + return filesystem.ReadCert(f) } if len(s) > 0 { return []byte(strings.Join(s, "\n")), nil diff --git a/transport/internet/tls/config.go b/transport/internet/tls/config.go index 197895cb..d6701a7d 100644 --- a/transport/internet/tls/config.go +++ b/transport/internet/tls/config.go @@ -109,12 +109,12 @@ func setupOcspTicker(entry *Certificate, callback func(isReloaded, isOcspstaplin for { var isReloaded bool if entry.CertificatePath != "" && entry.KeyPath != "" { - newCert, err := filesystem.ReadCertificate(entry.CertificatePath) + newCert, err := filesystem.ReadCert(entry.CertificatePath) if err != nil { errors.LogErrorInner(context.Background(), err, "failed to parse certificate") return } - newKey, err := filesystem.ReadCertificate(entry.KeyPath) + newKey, err := filesystem.ReadCert(entry.KeyPath) if err != nil { errors.LogErrorInner(context.Background(), err, "failed to parse key") return