config.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package config
  2. import (
  3. "gopkg.in/yaml.v2"
  4. "os"
  5. "sync"
  6. )
  7. var (
  8. instance *config
  9. once sync.Once
  10. )
  11. func init() {
  12. once.Do(func() {
  13. var conf config
  14. path, _ := os.Getwd()
  15. filePath := path + "/config/config.yaml"
  16. if f, err := os.Open(filePath); err != nil {
  17. panic(err)
  18. } else {
  19. err := yaml.NewDecoder(f).Decode(&conf)
  20. if err != nil {
  21. panic(err)
  22. }
  23. }
  24. instance = &conf
  25. })
  26. }
  27. //获取配置文档实例
  28. func Instance() *config {
  29. return instance
  30. }
  31. type config struct {
  32. Server server `yaml:"server"`
  33. Database database `yaml:"database"`
  34. Redis redis `yaml:"redis"`
  35. Logger logger `yaml:"logger"`
  36. Minio minio `yaml:"minio"`
  37. }
  38. type server struct {
  39. Address string `yaml:"address"`
  40. CodeEnabled bool `yaml:"code_enabled"`
  41. TokenSign string `yaml:"token_sign"`
  42. }
  43. type database struct {
  44. Host string `yaml:"host"`
  45. User string `yaml:"user"`
  46. Password string `yaml:"password"`
  47. Port string `yaml:"port"`
  48. Name string `yaml:"name"`
  49. Timezone string `yaml:"timezone"`
  50. }
  51. type redis struct {
  52. Host string `yaml:"host"`
  53. Password string `yaml:"password"`
  54. }
  55. type logger struct {
  56. Path string `yaml:"path"`
  57. Name string `yaml:"name"`
  58. Level string `yaml:"level"`
  59. }
  60. type minio struct {
  61. Endpoint string `yaml:"endpoint"`
  62. Link string `yaml:"link"`
  63. AccessKey string `yaml:"access_key"`
  64. SecretKey string `yaml:"secret_key"`
  65. }