config.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. Foreign foreign `yaml:"foreign"`
  38. }
  39. type server struct {
  40. Address string `yaml:"address"`
  41. CodeEnabled bool `yaml:"code_enabled"`
  42. TokenSign string `yaml:"token_sign"`
  43. }
  44. type database struct {
  45. Host string `yaml:"host"`
  46. User string `yaml:"user"`
  47. Password string `yaml:"password"`
  48. Port string `yaml:"port"`
  49. Name string `yaml:"name"`
  50. Timezone string `yaml:"timezone"`
  51. }
  52. type redis struct {
  53. Host string `yaml:"host"`
  54. Password string `yaml:"password"`
  55. }
  56. type logger struct {
  57. Path string `yaml:"path"`
  58. Name string `yaml:"name"`
  59. Level string `yaml:"level"`
  60. }
  61. type minio struct {
  62. Endpoint string `yaml:"endpoint"`
  63. Link string `yaml:"link"`
  64. AccessKey string `yaml:"access_key"`
  65. SecretKey string `yaml:"secret_key"`
  66. }
  67. type foreign struct {
  68. IotEdgeUrl string `yaml:"iot_edge_url"`
  69. SecurityRewindUrl string `yaml:"security_rewind_url"`
  70. }