loader.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package config
  2. import (
  3. "fmt"
  4. "io/ioutil"
  5. "os"
  6. "gopkg.in/yaml.v3"
  7. )
  8. var config = Config{
  9. Port: 80,
  10. Sslport: 443,
  11. ServiceURL: "http://127.0.0.1",
  12. SystemID: "tenant-service",
  13. }
  14. // File the config file
  15. var File = "config/service.yaml"
  16. // Get returns loaded config
  17. func Get() Config {
  18. return config
  19. }
  20. // Load loads the config
  21. func Load() error {
  22. _, err := os.Stat(File)
  23. if err != nil {
  24. return err
  25. }
  26. data, err := ioutil.ReadFile(File)
  27. if err != nil {
  28. return fmt.Errorf("can't load config file: %s", err.Error())
  29. }
  30. err = yaml.Unmarshal(data, &config)
  31. if err != nil {
  32. return fmt.Errorf("can't unmarshal config file: %s", err.Error())
  33. }
  34. return readSecret()
  35. }
  36. func readSecret() error {
  37. secretFile := config.SecretFile
  38. if secretFile != "" {
  39. data, err := ioutil.ReadFile(secretFile)
  40. if err != nil {
  41. return fmt.Errorf("can't load secret file: %s", err.Error())
  42. }
  43. var secretConfig Secret = Secret{}
  44. err = yaml.Unmarshal(data, &secretConfig)
  45. if err != nil {
  46. return fmt.Errorf("can't unmarshal secret file: %s", err.Error())
  47. }
  48. mergeSecret(secretConfig)
  49. }
  50. return nil
  51. }
  52. func mergeSecret(secret Secret) {
  53. // config.MongoDB.Username = secret.MongoDB.Username
  54. // config.MongoDB.Password = secret.MongoDB.Password
  55. }