mirror of
https://github.com/3ybactuk/marketplace-go-service-project.git
synced 2025-10-30 14:03:45 +03:00
60 lines
1.1 KiB
Go
60 lines
1.1 KiB
Go
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
type Config struct {
|
|
App struct {
|
|
EditInterval time.Duration `yaml:"edit_interval"`
|
|
}
|
|
|
|
Service struct {
|
|
Host string `yaml:"host"`
|
|
GRPCPort string `yaml:"grpc_port"`
|
|
HTTPPort string `yaml:"http_port"`
|
|
LogLevel string `yaml:"log_level"`
|
|
} `yaml:"service"`
|
|
|
|
DbShards []struct {
|
|
Host string `yaml:"host"`
|
|
Port string `yaml:"port"`
|
|
User string `yaml:"user"`
|
|
Password string `yaml:"password"`
|
|
DBName string `yaml:"db_name"`
|
|
} `yaml:"db_shards"`
|
|
}
|
|
|
|
func LoadConfig(filename string) (*Config, error) {
|
|
workDir, err := os.Getwd()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
cfgRoot := filepath.Join(workDir, "configs")
|
|
absCfgRoot, _ := filepath.Abs(cfgRoot)
|
|
|
|
filePath := filepath.Join(absCfgRoot, filepath.Clean(filename))
|
|
if !strings.HasPrefix(filePath, absCfgRoot) {
|
|
return nil, fmt.Errorf("invalid path")
|
|
}
|
|
|
|
f, err := os.Open(filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer f.Close()
|
|
|
|
config := &Config{}
|
|
if err := yaml.NewDecoder(f).Decode(config); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return config, nil
|
|
}
|