config.go 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. MonitNotice monitNotice `yaml:"monit-notice"`
  39. }
  40. type server struct {
  41. Address string `yaml:"address"`
  42. CodeEnabled bool `yaml:"code_enabled"`
  43. TokenSign string `yaml:"token_sign"`
  44. }
  45. type database struct {
  46. Host string `yaml:"host"`
  47. User string `yaml:"user"`
  48. Password string `yaml:"password"`
  49. Port string `yaml:"port"`
  50. Name string `yaml:"name"`
  51. Timezone string `yaml:"timezone"`
  52. }
  53. type redis struct {
  54. Host string `yaml:"host"`
  55. Password string `yaml:"password"`
  56. }
  57. type logger struct {
  58. Path string `yaml:"path"`
  59. Name string `yaml:"name"`
  60. Level string `yaml:"level"`
  61. }
  62. type minio struct {
  63. Endpoint string `yaml:"endpoint"`
  64. Link string `yaml:"link"`
  65. AccessKey string `yaml:"access_key"`
  66. SecretKey string `yaml:"secret_key"`
  67. }
  68. type foreign struct {
  69. IotEdgeUrl string `yaml:"iot_edge_url"`
  70. SecurityRewindUrl string `yaml:"security_rewind_url"`
  71. }
  72. type email struct {
  73. Host string `yaml:"host"`
  74. Port string `yaml:"port"`
  75. UserName string `yaml:"user-name"`
  76. PassWord string `yaml:"pass-word"`
  77. }
  78. type tencent struct {
  79. AppID string `yaml:"app_id"`
  80. SecretID string `yaml:"secret_id"`
  81. SecretKey string `yaml:"secret_key"`
  82. SmsKey string `yaml:"sms_key"`
  83. WarnSmsTemplateID string `yaml:"warn_sms_template_id"`
  84. }
  85. type sms struct {
  86. Tencent tencent `yaml:"tencent"`
  87. }
  88. type monitNotice struct {
  89. Email email `yaml:"email"`
  90. Sms sms `yaml:"sms"`
  91. }