loader.go 1.4 KB

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