app.go 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. package config
  2. import (
  3. "crypto/rsa"
  4. "crypto/tls"
  5. "fmt"
  6. "os"
  7. "strings"
  8. "sync"
  9. "time"
  10. "gitee.com/xuyiping_admin/pkg/di"
  11. )
  12. var (
  13. Module = di.Provide(Options)
  14. options *AppConfig
  15. appEnv string
  16. initOnce sync.Once
  17. )
  18. // AppConfig store all configuration options
  19. type AppConfig struct {
  20. FarmName string `yaml:"farm_name"`
  21. AppName string `yaml:"app_name"`
  22. AppEnv string `yaml:"app_environment"`
  23. Debug bool `yaml:"debug" env:"APP_DEBUG"`
  24. HTTPServerAddr string `yaml:"http_server_addr" env:"HTTP_SERVER_ADDR"`
  25. // 数据库配置 额外加载文件部分 database.yaml
  26. StoreSetting StoreSetting `json:"storeSetting" yaml:"store"`
  27. // redis 配置
  28. RedisSetting RedisSetting `json:"RedisSetting" yaml:"redis_setting"`
  29. JwtSecret string `json:"jwtSecret" yaml:"jwt_secret"`
  30. ExcelSetting ExcelSetting `json:"excelSetting" yaml:"excel_setting"`
  31. WechatSetting WechatSetting `json:"wechatSetting" yaml:"wechat_setting"`
  32. JwtTokenKeyConfig JwtTokenKeyConfig `json:"jwtTokenKeyConfig"`
  33. JwtExpireTime int `json:"jwtExpireTime" yaml:"jwt_expire_time"`
  34. // asynq 相关配置
  35. SideWorkSetting SideWorkSetting `yaml:"side_work_setting"`
  36. CronSetting CronSetting `json:"cron_setting" yaml:"cron"`
  37. }
  38. type CronSetting struct {
  39. // 是否启动任务时先跑一次
  40. CrontabStartRun bool `yaml:"crontab_start_run"`
  41. // CRONTAB 表达式
  42. UpdateCowInfo string `yaml:"update_cow_info"` // 更新牛只信息
  43. GenerateWorkOrder string `yaml:"generate_work_order"` // 生成工作单
  44. ImmunizationPlan string `yaml:"immunization_plan"` // 免疫计划
  45. SameTimePlan string `yaml:"same_time_plan"` // 同期
  46. UpdateSameTime string `yaml:"update_same_time"` // 更新同期
  47. SystemBasicCrontab string `yaml:"system_basic_crontab"` // 系统基础定时任务
  48. CowPregnant string `yaml:"cow_pregnant"` // 月度牛只怀孕清单
  49. }
  50. type JwtTokenKeyConfig struct {
  51. PrivateKey *rsa.PrivateKey `json:"privateKey"`
  52. PublicKey *rsa.PublicKey `json:"publicKey"`
  53. }
  54. type WechatSetting struct {
  55. Appid string `yaml:"appid"`
  56. Secret string `yaml:"secret"`
  57. }
  58. type ExcelSetting struct {
  59. SheetName string `yaml:"sheet_name"` // = "Sheet1" //默认Sheet名称
  60. Height float64 `yaml:"height"` // = 25.0 //默认行高度
  61. }
  62. // StoreSetting 数据库配置
  63. type StoreSetting struct {
  64. // 开启 SyDb SQL 记录
  65. DriverName string `yaml:"driver_name" json:"driver_name"`
  66. ShowSQL bool `yaml:"show_sql" json:"show_sql"`
  67. KptRW string `yaml:"kpt_rw" json:"kpt_rw"`
  68. KptMigr string `yaml:"kpt_migr" json:"kpt_migr"`
  69. }
  70. type RedisSetting struct {
  71. // sso 配置
  72. CacheRedis CacheRedisDB `json:"cache_redis" yaml:"cache_redis"`
  73. }
  74. type CacheRedisDB struct {
  75. Addr string `json:"addr" yaml:"addr"`
  76. DB int `json:"db" yaml:"db"`
  77. Requirepass string `json:"requirepass" yaml:"requirepass"`
  78. Expiry int `json:"expiry" yaml:"expiry"`
  79. }
  80. type SideWorkSetting struct {
  81. // Asynq 配置
  82. AsynqSetting AsynqSetting `json:"asynq_setting,omitempty" yaml:"asynq_setting"`
  83. }
  84. type AsynqSetting struct {
  85. Redis AsynqRedisSetting `json:"redis" yaml:"redis"`
  86. Queues map[string]int `json:"queues,omitempty" yaml:"queues"`
  87. Concurrency int `json:"concurrency,omitempty" yaml:"concurrency"`
  88. LogLevel int32 `json:"log_level,omitempty" yaml:"log_level"`
  89. }
  90. type AsynqRedisSetting struct {
  91. // Network type to use, either tcp or unix.
  92. // Default is tcp.
  93. Network string `json:"network,omitempty" yaml:"network"`
  94. // Redis server address in "host:port" format.
  95. Addr string `json:"addr,omitempty" yaml:"addr"`
  96. // Username to authenticate the current connection when Redis ACLs are used.
  97. // See: https://redis.io/commands/auth.
  98. Username string `json:"username,omitempty" yaml:"username"`
  99. // Password to authenticate the current connection.
  100. // See: https://redis.io/commands/auth.
  101. Password string `json:"password,omitempty" yaml:"password"`
  102. // Redis DB to select after connecting to a server.
  103. // See: https://redis.io/commands/select.
  104. DB int `json:"db,omitempty" yaml:"db"`
  105. // Dial timeout for establishing new connections.
  106. // Default is 5 seconds.
  107. DialTimeout time.Duration `json:"dialTimeout,omitempty" yaml:"dial_timeout"`
  108. // Timeout for socket reads.
  109. // If timeout is reached, read commands will fail with a timeout error
  110. // instead of blocking.
  111. //
  112. // Use value -1 for no timeout and 0 for default.
  113. // Default is 3 seconds.
  114. ReadTimeout time.Duration `json:"readTimeout,omitempty" yaml:"read_timeout"`
  115. // Timeout for socket writes.
  116. // If timeout is reached, write commands will fail with a timeout error
  117. // instead of blocking.
  118. //
  119. // Use value -1 for no timeout and 0 for default.
  120. // Default is ReadTimout.
  121. WriteTimeout time.Duration `json:"writeTimeout,omitempty" yaml:"write_timeout"`
  122. // Maximum number of socket connections.
  123. // Default is 10 connections per every CPU as reported by runtime.NumCPU.
  124. PoolSize int `json:"poolSize,omitempty" yaml:"pool_size"`
  125. // TLS Config used to connect to a server.
  126. // TLS will be negotiated only if this field is set.
  127. TLSConfig *tls.Config `json:"tlsConfig,omitempty" yaml:"tls_config"`
  128. }
  129. func (a *AppConfig) Name() string {
  130. return fmt.Sprintf("%s-%s", a.AppName, a.AppEnv)
  131. }
  132. // CacheNameSpace 作为 Key 的前缀,用来区分不同环境,不同 APP 下的 Key,防止缓存干扰
  133. // 踩坑记录:
  134. //
  135. // 如果使用 fmt.Sprintf("%s-%s-%s", a.AppName, a.AppRole, a.AppEnv),例如 sayam-http-production, sayam-consumer-production
  136. // 会导致 从 role http 写入的 key,从 role consumer 中取不出来,反之亦然
  137. // 支持更多的key空间, 可以更灵活的定义ns
  138. func (a *AppConfig) CacheNameSpace() string {
  139. cacheKeySpace := ""
  140. if a.FarmName != "" {
  141. cacheKeySpace = fmt.Sprintf("%s-%s-%s", a.AppName, a.AppEnv, a.FarmName)
  142. } else {
  143. cacheKeySpace = fmt.Sprintf("%s-%s", a.AppName, a.AppEnv)
  144. }
  145. return cacheKeySpace
  146. }
  147. func Options() *AppConfig {
  148. return options
  149. }
  150. func init() {
  151. appEnv = strings.ToLower(os.Getenv("APP_ENVIRONMENT"))
  152. cfg := &AppConfig{}
  153. var err error
  154. initOnce.Do(func() {
  155. switch appEnv {
  156. case "test":
  157. err = Initialize("app.test.yaml", cfg)
  158. case "development":
  159. err = Initialize("app.develop.yaml", cfg)
  160. case "production":
  161. err = Initialize("app.production.yaml", cfg)
  162. default:
  163. panic("err confing")
  164. }
  165. if err != nil {
  166. panic(err)
  167. }
  168. cfg.JwtTokenKeyConfig = openPrivateKey()
  169. options = cfg
  170. })
  171. }